
.wc_section{
    width: 1400px;
    margin: 0 auto;

}
.tabs-wc_section {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    padding-bottom: 8px;
}

.tab-button {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    color: #000000;
    position: relative;
    transition: color 0.3s ease;
    outline: none;
}

.tab-button:hover {
    color: #D4AF35;
    background: transparent;
}

.tab-button::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.tab-button.active {
    color: #D4AF35;
    background: transparent;
}

.tab-button.active::after {
    background-color: #D4AF35;
}


.content-area {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.background-circles-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 700px;
    z-index: 0;
    opacity: 0.8;
}
.bg-circle {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bg-circle.outermost {
    width: 650px;
    height: 650px;
    background-color: #d4af3630;
}
.bg-circle.outer {
    width: 500px;
    height: 500px;
    background-color: #d4af3650;
}
.bg-circle.medium {
    width: 350px;
    height: 350px;
    background-color: #d4af3670;
}
.bg-circle.inner {
    width: 200px;
    height: 200px;
    background-color: #d4af3680;
}
.bg-circle.smallest {
    width: 100px;
    height: 100px;
    background-color: #D4AF36;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-circle.smallest img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}


.tab-content {
    display: none;
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.tab-content.active {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.left-options {
    width: 700px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
    z-index: 1;
    position: relative;
    align-items: center;
    height: 700px;
}

.option-item {
    height: 100px;
    width: 100px;
    line-height: 0px;
    border-radius: 50%;
    background-color: #fcfcfc;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    position: absolute;

}
.option-item i {
    font-size: 18px;
}
.option-item svg {
    width: 18px;
}

.option-item.one {
    top: 80px;
    left: 130px;
}

.option-item.one.active .bg-circle.outermost{
    background-color: #D4AF36 !important;
}

.option-item.two {
    top: 180px;
    right: 210px;
}

.option-item.three {
	top: 435px;
	left: 90px;
}
.option-item.four {
    top: 450px;
    right: 200px;
}

.option-item:hover {
    background-color: #D4AF36;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.option-item.active {
    background-color: #D4AF36;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.option-item img {
    width: 30px;
    height: 30px;
    filter: brightness(0);
    transition: filter 0.3s ease;
}

.option-item.active img {
    filter: brightness(0) invert(1);
}

.option-item span {
    font-weight: bold;
    display: block;
    line-height: 2;
}

.accordion-wc_section {
    width: 500px;
    z-index: 1;
    position: relative;
}

.accordion-item:last-of-type {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: #F9F3E3;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    transition: background-color 0.3s ease;
    border-radius: 5px;
    margin-bottom: 10px;
}

.accordion-item.active .accordion-header {
    background: #D4AF38;
    color: #fff;
}

.accordion-icon {
    font-size: 30px;
    font-weight: normal;
    transition: transform 0.3s ease;
    line-height: 1;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #4B5564;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 20px;
    padding-top: 10px;
}

.accordion-content h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #0056b3;
    font-size: 15px;
}

.accordion-content p {
    margin-bottom: 10px;
}

.dynopay-link {
    display: block;
    padding: 20px 25px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-top: 1px solid #eee;
    transition: color 0.3s ease;
    font-size: 18px;
    text-transform: capitalize;
}

.dynopay-link:hover {
    color: #000;
}


@media(max-width: 1440px) {

.tabs-wc_section {
	margin-bottom: 30px;
}
    .wc_section{
        width: 100%;
        margin: 0 auto;
        padding: 0 50px;
    }
.left-options {
	width: 540px;
	height: 650px;
}
    .accordion-wc_section {
        width: 340px;
    }
    .background-circles-layer {
        width: 550px;
        height: 550px;
    }
    .option-item {
	height: 90px;
	width: 90px;
	padding-top: 30px;
    }
    .option-item span {
        font-size: 15px;
    }
    .option-item.two {
	top: 110px;
	right: 120px;
}
.option-item.three {
	top: 335px;
	left: 90px;
}
.option-item.four {
    top: 350px;
    right: 100px;
}

    .bg-circle.outermost { width: 500px; height: 500px; }
    .bg-circle.outer { width: 400px; height: 400px; }
    .bg-circle.medium { width: 300px; height: 300px; }
    .bg-circle.inner { width: 200px; height: 200px; }
    .bg-circle.smallest { width: 120px; height: 120px; }

}

@media (max-width: 1024px) {

    .wc_section{
        width: 100%;
        margin: 0 auto;
        padding: 0 25px;
    }
    .tabs-wc_section {
	flex-direction: column;
}
.tabs-wc_section {
    margin-bottom: 20px;
    align-items: center;
}

.left-options {
	width: 540px;
	height: 550px;
}
    .accordion-wc_section {
        width: 400px;
    }
    .background-circles-layer {
        width: 550px;
        height: 550px;
    }
    .option-item {
	height: 90px;
	width: 90px;
	padding-top: 30px;
    }
    .option-item span {
        font-size: 15px;
    }
    .option-item.two {
	top: 110px;
	right: 120px;
}
.option-item.three {
	top: 335px;
	left: 90px;
}
.option-item.four {
    top: 350px;
    right: 100px;
}

    .bg-circle.outermost { width: 500px; height: 500px; }
    .bg-circle.outer { width: 400px; height: 400px; }
    .bg-circle.medium { width: 300px; height: 300px; }
    .bg-circle.inner { width: 200px; height: 200px; }
    .bg-circle.smallest { width: 120px; height: 120px; }
}

@media (max-width: 767px) {

    .wc_section{
        width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }
.tabs-wc_section {
	margin-bottom: 30px;
}

.left-options {
	width: 400px;
	height: 430px;
}
    .accordion-wc_section {
        width: 400px;
    }
    .background-circles-layer {
        width: 400px;
        height: 400px;
    }
    .option-item {
	height: 90px;
	width: 90px;
	padding-top: 25px;
    }
    .option-item span {
        font-size: 15px;
    }
    .option-item.one {
	top: 40px;
	left: 60px;
}
.option-item.two {
	top: 50px;
	right: 60px;
}
.option-item.three {
	top: 250px;
	left: 60px;
}
.option-item.four {
	top: 220px;
	right: 50px;
}

    .bg-circle.outermost { width: 400px; height: 400px; }
    .bg-circle.outer { width: 400px; height: 400px; }
    .bg-circle.medium { width: 300px; height: 300px; }
    .bg-circle.inner { width: 200px; height: 200px; }
    .bg-circle.smallest { width: 120px; height: 120px; }
}




/* ===============
advance feature section 
=============== */


/* Radial reveal animation */
@keyframes radialReveal {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes radialHide {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Pill-shaped trigger styling */
.interactive-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: 0 2px;
}

.interactive-trigger .icon i {
    font-size: 35px;
}
.interactive-trigger .icon svg {
    width: 35px;
}

.interactive-trigger {
  background: #EFDFAD;
  color: #000;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 35px;
  transition: all 0.5s ease;
  margin-bottom: 20px;
  line-height: 1.2;
}

.para {
  font-weight: 300;
  font-size: 35px;
}

/* Hover effect */
.interactive-trigger:hover {
  background: #D4AF36;
  transform: scale(1.02);
}

/* Tooltip-style expanded details */
.expanded-details {
    position: absolute;
    top: 0px;
    left: 0;
    background-color: #D4AF36;
    color: #000;
    padding: 25px;
    border-radius: 35px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
    display: none;
    margin-top: 0px;
    line-height: 1.4;
    animation: radialReveal 0.6s ease-out forwards;
}

.expanded-details.hiding {
  animation: radialHide 0.5s ease-out forwards;
  display: block;
}

.expanded-details span {
  display: inline-block;
  margin: 0 0 15px;
  font-size: 35px;
  color: #000;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}

.expanded-details p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.4;
}

.expanded-details a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 25px;
  font-size: 28px;
  color: #000;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}
.close-btn:hover {
  color: #000;
  background-color: transparent;
}
.close-btn:focus {
  color: #000;
  background-color: transparent;
}

.icon {
  font-size: 36px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .interactive-trigger {
    font-size: 32px;
    padding: 12px 20px;
  }
  .para {
    font-size: 32px;
  }
  .expanded-details h3 {
    font-size: 24px;
  }
  .expanded-details p,
  .expanded-details a {
    font-size: 18px;
  }
  .icon {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  /* Mobile-specific popup styles */
  .expanded-details {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: none;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 20px;
    margin-top: 0;
    animation: mobileReveal 0.3s ease-out forwards;
  }
  
  @keyframes mobileReveal {
    0% {
      opacity: 0;
      transform: translate(-50%, -40%);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
  
  .expanded-details.hiding {
    animation: mobileHide 0.3s ease-out forwards;
  }
  
  @keyframes mobileHide {
    0% {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
    100% {
      opacity: 0;
      transform: translate(-50%, -40%);
    }
  }
  
  .interactive-trigger {
    font-size: 22px;
    padding: 10px 16px;
  }
  .para {
    font-size: 22px;
  }
  .expanded-details span {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .expanded-details p,
  .expanded-details a {
    font-size: 16px;
  }
  .icon {
    font-size: 24px;
  }
  .close-btn {
    font-size: 24px;
    top: 10px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .interactive-trigger {
    font-size: 18px;
    padding: 8px 14px;
    gap: 8px;
  }
  .para {
    font-size: 18px;
  }
  .expanded-details span {
    font-size: 18px;
    gap: 8px;
  }
  .expanded-details p,
  .expanded-details a {
    font-size: 14px;
  }
  .icon {
    font-size: 20px;
  }
  .close-btn {
    font-size: 20px;
  }
}

