 /* ===== HERO SLIDER STYLES ===== */

/* Hero Slider Container */
#hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Hero Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide video,
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Navigation Dots */
#hero-slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 30;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #C2A5CF;
    border-color: #C2A5CF;
    transform: scale(1.2);
}

.slider-dot:hover {
    border-color: #C2A5CF;
    transform: scale(1.1);
}




/* Tab Content Styles */
.tab-content {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
}

/* Tab Button Styles */
.tab-button {
    width: 100%;
    text-align: left;
    padding: 12px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1.2;
}

.tab-button.active {
    background-color: #5E376E; /* primary-light */
    color: #FEF9F4; /* neutral-cream */
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(94, 55, 110, 0.3);
    transform: translateX(2px);
}

.tab-button:not(.active) {
    background-color: #FEF9F4; /* neutral-cream */
    border-color: rgba(194, 165, 207, 0.66); /* accent-lavender with 66% opacity */
    color: #13001A; /* primary-dark */
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.tab-button:not(.active):hover {
    background-color: rgba(94, 55, 110, 0.1);
    border-color: #009688; /* accent-teal */
    transform: translateX(1px);
    box-shadow: 0 1px 4px rgba(0, 150, 136, 0.2);
}



/* Mobile Menu Button */
.mobile-menu-btn {
    display: none; /* Hidden by default */
    flex-direction: column;
    gap: 4px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Show mobile menu button only on mobile and tablet */
@media (max-width: 1023px) {
    .mobile-menu-btn {
        display: flex;
    }
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: #FEF9F4; /* neutral-cream */
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn:hover span {
    background-color: #ABEBF0; /* accent-cyan */
}

.mobile-menu-btn:active span {
    transform: scale(0.95);
}

/* Hamburger menu rotation when active */
.mobile-menu-btn.active {
    transform: rotate(90deg);
}

.mobile-menu-btn.active span {
    background-color: #ABEBF0; /* accent-cyan */
}

/* ===== FEATURE ICON ANIMATIONS ===== */

/* Feature Icon Hover Animation */
.feature-icon {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-icon:hover {
    transform: scale(1.05);
}

/* Feature Icon 1 Animation */
.feature-icon:hover #outer-circle-1 {
    animation: featureIcon1Outer 0.6s ease-in-out forwards;
}

.feature-icon:hover #middle-circle-1 {
    animation: featureIcon1Middle 0.6s ease-in-out forwards;
}

.feature-icon:hover #inner-circle-1 {
    animation: featureIcon1Inner 0.6s ease-in-out forwards;
}

.feature-icon:hover #center-dot-1 {
    animation: featureIcon1Center 0.6s ease-in-out forwards;
}

/* Feature Icon 2 Animation */
.feature-icon:hover #outer-circle-2 {
    animation: featureIcon2Outer 0.6s ease-in-out forwards;
}

.feature-icon:hover #middle-circle-2 {
    animation: featureIcon2Middle 0.6s ease-in-out forwards;
}

.feature-icon:hover #inner-circle-2 {
    animation: featureIcon2Inner 0.6s ease-in-out forwards;
}

.feature-icon:hover #center-dot-2 {
    animation: featureIcon2Center 0.6s ease-in-out forwards;
}

/* Feature Icon 3 Animation */
.feature-icon:hover #outer-circle-3 {
    animation: featureIcon3Outer 0.6s ease-in-out forwards;
}

.feature-icon:hover #middle-circle-3 {
    animation: featureIcon3Middle 0.6s ease-in-out forwards;
}

.feature-icon:hover #inner-circle-3 {
    animation: featureIcon3Inner 0.6s ease-in-out forwards;
}

.feature-icon:hover #center-dot-3 {
    animation: featureIcon3Center 0.6s ease-in-out forwards;
}

/* Keyframes for Feature Icon 1 */
@keyframes featureIcon1Outer {
    0% {
        stroke: url(#paint0_linear_2078_826);
    }
    100% {
        stroke: #0C1717;
    }
}

@keyframes featureIcon1Middle {
    0% {
        stroke: url(#paint1_linear_2078_826);
    }
    100% {
        stroke: #0C1717;
    }
}

@keyframes featureIcon1Inner {
    0% {
        stroke: url(#paint2_linear_2078_826);
    }
    100% {
        stroke: #0C1717;
    }
}

@keyframes featureIcon1Center {
    0% {
        stroke: #A52DDB;
    }
    100% {
        stroke: #A52DDB;
    }
}

/* Keyframes for Feature Icon 2 */
@keyframes featureIcon2Outer {
    0% {
        stroke: url(#paint0_linear_2078_826);
    }
    100% {
        stroke: #0C1717;
    }
}

@keyframes featureIcon2Middle {
    0% {
        stroke: url(#paint1_linear_2078_826);
    }
    100% {
        stroke: #0C1717;
    }
}

@keyframes featureIcon2Inner {
    0% {
        stroke: url(#paint2_linear_2078_826);
    }
    100% {
        stroke: #0C1717;
    }
}

@keyframes featureIcon2Center {
    0% {
        stroke: #A52DDB;
    }
    100% {
        stroke: #A52DDB;
    }
}

/* Keyframes for Feature Icon 3 */
@keyframes featureIcon3Outer {
    0% {
        stroke: url(#paint0_linear_2078_826);
    }
    100% {
        stroke: #0C1717;
    }
}

@keyframes featureIcon3Middle {
    0% {
        stroke: url(#paint1_linear_2078_826);
    }
    100% {
        stroke: #0C1717;
    }
}

@keyframes featureIcon3Inner {
    0% {
        stroke: url(#paint2_linear_2078_826);
    }
    100% {
        stroke: #0C1717;
    }
}

@keyframes featureIcon3Center {
    0% {
        stroke: #A52DDB;
    }
    100% {
        stroke: #A52DDB;
    }
}

/* ===== FEATURE CARD ICON ANIMATIONS ===== */
#home-feature-card-1 .icon-wrapper {
    display: inline-flex;
    justify-content: start;
    align-items: center;
    transition: transform 0.6s ease;
  }
  
  #home-feature-card-1 .animated-icon {
    width: 122px;
    height: 122px;
    transition: all 0.6s ease;
    transform-origin: center; /* ✅ Keep scaling centered */
  }
  
  /* Default colors (from first SVG) */
  #home-feature-card-1 .ring-1,
  #home-feature-card-1 .ring-2,
  #home-feature-card-1 .ring-3 {
    stroke: url(#paint0_linear);
    transition: stroke 0.6s ease, stroke-width 0.6s ease;
  }
  
  #home-feature-card-1 .ring-4 {
    stroke: #A52DDB;
    stroke-width: 2;
    transition: stroke 0.6s ease, stroke-width 0.6s ease;
  }
  
  /* Hover transition */
  #home-feature-card-1:hover .icon-wrapper .animated-icon {
    width: 121px;
    height: 120px;
    transform: scale(0.98);
  }
  
  /* Animate gradient rings to solid #0C1717 */
  #home-feature-card-1:hover .icon-wrapper .ring-1,
  #home-feature-card-1:hover .icon-wrapper .ring-2,
  #home-feature-card-1:hover .icon-wrapper .ring-3 {
    animation: colorToDark 0.6s forwards;
  }
  
  /* Keep inner purple ring consistent */
  #home-feature-card-1:hover .icon-wrapper .ring-4 {
    stroke: #A52DDB;
    stroke-width: 2;
  }
  
  /* Keyframe for gradient → dark color transition */
  @keyframes colorToDark {
    0% {
      stroke: url(#paint0_linear);
    }
    100% {
      stroke: #0C1717;
    }
  }
  

  /* ===== FEATURE CARD 2 ICON ANIMATION ===== */
#home-feature-card-2 .icon-wrapper {
    display: inline-flex;
    justify-content: start;
    align-items: center;
    transition: transform 0.6s ease;
  }
  
  #home-feature-card-2 .animated-icon {
    width: 121px;
    height: 121px;
    transition: all 0.6s ease;
    transform-origin: center; /* ✅ Keeps scaling centered */
  }
  
  /* Default gradient rings */
  #home-feature-card-2 .ring-1,
  #home-feature-card-2 .ring-2,
  #home-feature-card-2 .ring-3 {
    stroke: url(#paint0_linear_2085_842);
    transition: stroke 0.6s ease, stroke-width 0.6s ease;
  }
  
  /* Inner purple ring */
  #home-feature-card-2 .ring-4 {
    stroke: #A52DDB;
    stroke-width: 2;
    transition: stroke 0.6s ease, stroke-width 0.6s ease;
  }
  
  /* Hover effect */
  #home-feature-card-2:hover .icon-wrapper .animated-icon {
    transform: scale(0.96);
    transition: transform 0.6s ease;
  }
  
  /* Change outer rings to solid #0C1717 */
  #home-feature-card-2:hover .icon-wrapper .ring-1,
  #home-feature-card-2:hover .icon-wrapper .ring-2,
  #home-feature-card-2:hover .icon-wrapper .ring-3 {
    animation: colorToDark2 0.6s forwards;
  }
  
  /* Keep purple center consistent */
  #home-feature-card-2:hover .icon-wrapper .ring-4 {
    stroke: #A52DDB;
    stroke-width: 2;
  }
  
  /* Gradient → solid animation */
  @keyframes colorToDark2 {
    0% {
      stroke: url(#paint0_linear_2085_842);
    }
    100% {
      stroke: #0C1717;
    }
  }

  
  /* ===== FEATURE CARD 3 ICON ANIMATION ===== */
 /* ===== FEATURE CARD 3 ICON ANIMATION ===== */
#home-feature-card-3 .icon-wrapper {
    display: inline-flex;
    justify-content: start; /* center align the icon */
    align-items: center;
    transition: transform 0.6s ease;
  }
  
  #home-feature-card-3 .animated-icon {
    width: 121px;
    height: 121px;
    transition: all 0.6s ease;
    transform-origin: center; /* keeps scaling centered */
  }
  
  /* Default outer/middle/inner rings (gradient) */
  #home-feature-card-3 .ring-1,
  #home-feature-card-3 .ring-2,
  #home-feature-card-3 .ring-3 {
    stroke: url(#paint0_linear_2085_730);
    transition: stroke 0.6s ease, stroke-width 0.6s ease;
  }
  
  /* Inner purple curve */
  #home-feature-card-3 .ring-4 {
    stroke: #A52DDB;
    stroke-width: 2;
    transition: stroke 0.6s ease, stroke-width 0.6s ease;
  }
  
  /* Hover: slightly scale down */
  #home-feature-card-3:hover .icon-wrapper .animated-icon {
    transform: scale(1.1);
  }
  
  /* Hover: gradient rings → solid dark */
  #home-feature-card-3:hover .icon-wrapper .ring-1,
  #home-feature-card-3:hover .icon-wrapper .ring-2,
  #home-feature-card-3:hover .icon-wrapper .ring-3 {
    animation: colorToDark3 0.6s forwards;
  }
  
  /* Keep purple curve consistent */
  #home-feature-card-3:hover .icon-wrapper .ring-4 {
    stroke: #A52DDB;
    stroke-width: 2;
  }
  
  /* Keyframes: gradient → solid dark transition */
  @keyframes colorToDark3 {
    0% {
      stroke: url(#paint0_linear_2085_730);
    }
    100% {
      stroke: #0C1717;
    }
  }
  
  