/********** Template CSS **********/
/* Ensure the container can hold the absolute arrow */
.position-relative {
    position: relative;
}

/* Position the arrow at the bottom center of the video */
.scroll-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.scroll-arrow {
    text-decoration: none;
    color: #ffffff; /* White arrow */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.3s;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.5); /* Makes it visible over light video parts */
}

.arrow-text {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: bold;
}

.scroll-arrow i {
    font-size: 2.5rem;
    line-height: 1;
    animation: bounceNoticeable 2s infinite;
}

/* Hover effect */
.scroll-arrow:hover {
    color: #ffcc00; /* Changes color when hovered */
    opacity: 0.8;
}

/* The Bouncing Animation */
@keyframes bounceNoticeable {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-15px);}
    60% {transform: translateY(-7px);}
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}


/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 40px 0;
    color: var(--bs-white);
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
    }
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    /* padding-top: 200px; */
    /* background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) top center no-repeat; */
    /* background-size: cover; */
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white);
}


/*** Title ***/
.title {
    margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

/* .title .title-center {
    text-align: center;
} */

.title .title-center {
  text-align: center;
  font-weight: 700;
  color: #f9e29c;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
 
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    /* border-bottom: 1px solid var(--bs-white); */
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    /* border-bottom: 1px solid var(--bs-white); */
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3rem solid rgba(0, 0, 0, .5);
    border-radius: 300px;
    z-index: 1;
    display: none;
}

.service-item.service-item-left {
    border-radius: 500px 0 0 500px;
background: linear-gradient(to right, #9f92a2, #eeeaee);}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
background: linear-gradient(to left, #9f92a2, #eeeaee);}

@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
      border-radius: 500px 500px 0 0;
    background: linear-gradient(to bottom, #886C90, #EEEAEE);
    text-align: center;
    }
}


/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: none;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--bs-dark);
    border-radius: 100px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
@keyframes footerAnimatedBg {
	0% {
        background-position: 0 0;
    }

	100% {
        background-position: -1000px 0;
    }
}

.footer {
	background-image: url(../img/footer-bg.png);
	background-position: 0px 0px;
    background-repeat: repeat-x;
	animation: footerAnimatedBg 50s linear infinite;
}

:root {
    --gold: #d4af37;
    --gold-bright: #f9e29c;
}

.halo-orbit-box {
    position: relative;
    width: 600px; /* Large enough for the orbit outside the image */
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#haloCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10; /* Above the image */
}

.image-mask {
    width: 380px; /* Image is smaller than the orbit container */
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}

.gold-shimmer {
    background: linear-gradient(90deg, #8a6d3b, #f1e095, #8a6d3b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    font-weight: bold;
    letter-spacing: 5px;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.gold-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
}:root {
    --gold-main: #d4af37;
    --gold-soft: rgba(212, 175, 55, 0.3);
    --obsidian: #080808;
}

.kinetic-venn-section { background-color: var(--obsidian); overflow: hidden; }
.gold-text { color: var(--gold-main); }
.serif-text { font-family: "Inter", sans-serif; font-style: italic; }

.venn-motion-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
}

/* Base Circle Style */
.sliding-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #9f92a2;
  border: 1px solid rgb(155, 140, 159);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  color: #000;
  font-weight: 500;
  mix-blend-mode: color-burn;
}
/* Individual Animation Paths (Moving from outside to inside) */
.c-body {
    top: 50%; left: 50%;
    animation: moveBody 8s ease-in-out infinite;
}

.c-med {
    top: 50%; left: 50%;
    animation: moveMed 8s ease-in-out infinite;
}

.c-tech {
    top: 50%; left: 50%;
    animation: moveTech 8s ease-in-out infinite;
}

/* Body Engineering: Top to Center */
@keyframes moveBody {
    0%, 100% { transform: translate(-50%, -110%); } /* Out */
    50% { transform: translate(-50%, -65%); }      /* Collapsed/Inside */
}

/* Medical Knowledge: Bottom Left to Center */
@keyframes moveMed {
    0%, 100% { transform: translate(-105%, 10%); }  /* Out */
    50% { transform: translate(-75%, -35%); }       /* Collapsed/Inside */
}

/* Technology: Bottom Right to Center */
@keyframes moveTech {
    0%, 100% { transform: translate(5%, 10%); }     /* Out */
    50% { transform: translate(-25%, -35%); }       /* Collapsed/Inside */
}

/* Central Glow that intensifies when circles collapse */
.center-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    background: #886c90;
    filter: blur(70px);
    opacity: 0.3;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.3); }
}

/* Tagline Styling */
.fabulous-footer {
    position: absolute;
    bottom: 40px; right: 20px;
    display: flex; align-items: center; gap: 15px;
}

.gold-shimmer-text {
    letter-spacing: 5px;
    color: var(--gold-main);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.f-line { width: 50px; height: 1px; background: var(--gold-main); }

:root {
    --gold: #d4af37;
    --obsidian: #080808;
}

.expert-scrimbg {
    background: #eeeaee;
    position: relative;
    z-index: 5;
}

.scrim-text {
    position: absolute;
    top: 50%; left: 10%;
    transform: translateY(-50%);
    font-size: 20vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.05);
    z-index: 1;
}

/* Container for the overlap */
.layered-expert-stack {
    display: flex;
    flex-direction: column;
}

/* Portrait Styling */
.glass-portrait-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Content Card Styling */
.expert-content-overlap {
    position: relative;
    width: 100%;
    margin-top: -80px; /* Overlap for mobile */
    z-index: 10; /* Ensures card is ALWAYS on top */
}

.glass-content-card {
  background: rgb(238, 234, 238);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 40px 80px rgb(185, 162, 185);
}
/* --- DESKTOP VIEW REFINEMENT --- */
@media (min-width: 992px) {
    .layered-expert-stack {
        min-height: 800px;
        display: block; /* Switch from flex to allow absolute positioning */
    }

    .glass-portrait-container {
        position: absolute;
        right: 0;
        top: 50px;
        width: 600px;
        height: 750px;
        margin: 0;
    }

    .expert-content-overlap {
        position: relative;
        width: 60%;
        margin-top: 100px; /* Offset from top */
        margin-left: 0;
    }
}

/* Image Shimmer & Sharpness */
.cinematic-portrait {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.8s ease;
}

.shimmer-mask-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 30%), transparent 0%, rgba(0,0,0,0.6) 70%);
    pointer-events: none;
    z-index: 3;
}

.aesthetic-footer {
    background-color: #9f92a2;
    color: #fff;
    font-family: "Inter", sans-serif;
}

/* Footer Background Stencil */
.footer-scrim-text {
    position: absolute;
    top: 20%; left: -5%;
    font-size: 25vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.04);
    z-index: 1;
    pointer-events: none;
    line-height: 0.8;
}

.ls-neg { letter-spacing: -5px; }
.ls-3 { letter-spacing: 3px; }
.ls-2 { letter-spacing: 2px; }

.gold-text { color: #d4af37; }
.dot { color: #d4af37; font-size: 1.2em; }

/* The Glass Button */
.btn-footer-glass {
  display: inline-block;
  padding: 12px 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.4s ease;
  font-size: 12px;
  letter-spacing: normal;
}

.btn-footer-glass:hover {
    background: #d4af37;
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Links & Text */
.footer-list {
    font-size: 0.95rem;
    line-height: 2;
}

.footer-list a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-list a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.footer-bottom-bar {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Responsiveness */
@media (max-width: 991px) {
    .ls-neg { letter-spacing: -2px; }
    .display-1 { font-size: 4rem; }
    .footer-scrim-text { top: 10%; font-size: 40vw; }
}

@media (min-width: 1200px) {
  .display-1 {
    font-size: 8rem;
  }
}/* 1. Trigger Styling (Top Right) */
.menu-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    z-index: 1001;
}

.menu-label-text {
    color: #ffffff; /* Explicitly White */
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 0.8rem;
}

.hamburger-icon span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff; /* Explicitly White */
    margin: 5px 0;
    transition: 0.3s;
}

/* 2. Full-Screen Panel Styling */
.full-screen-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #886c90; /* Luxury Black Background */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Animation: Origin from Top-Right */
    visibility: hidden;
    opacity: 0;
    clip-path: circle(0% at 95% 5%); /* Start as a tiny dot at top-right */
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.full-screen-menu-panel.active {
    visibility: visible;
    opacity: 1;
    clip-path: circle(150% at 95% 5%); /* Expand to cover screen */
}

/* 3. Panel Content */
.close-label {
    color: #ffffff;
    letter-spacing: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.menu-close-wrap {
    position: absolute;
    top: 30px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.close-icon-x {
    color: #d4af37; /* Gold for contrast */
    font-size: 3rem;
    line-height: 1;
}

.nav-link-item {
  display: block;
  font-size: 1.875em;
  color: #ffffff;
  text-decoration: none;
  margin: 10px 0;
  transition: 0.4s;
  font-weight: 900;
  text-align: center;
}

/* .nav-link-item:hover {
    color: #d4af37;  
    opacity: 1;
    transform: translateX(15px);
} */

/* Mobile Adjustments */
@media (max-width: 768px) {
    .nav-link-item { font-size: 2.5rem; }
}/* Cursor Elements */
.cursor-dot, .cursor-outline {
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-dot { width: 6px; height: 6px; background: #d4af37; }
.cursor-outline {
    width: 40px; height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: width 0.3s, height 0.3s;
}

/* The Exact Sparkle Style */
.magic-dust {
    position: fixed;
    pointer-events: none;
    background: #fff;
    border-radius: 50%;
    z-index: 10000;
    box-shadow: 0 0 8px #d4af37; /* The golden glow */
    animation: magic-flicker 1s forwards ease-out;
}

@keyframes magic-flicker {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    30% { opacity: 0.8; }
    100% { 
        transform: translate(var(--drift-x), var(--drift-y)) scale(0); 
        opacity: 0; 
    }
}

:root {
  --gold: #886c90;
  --gold-bright: #f9e29c;
  --gold-glow: rgb(136, 108, 144);
}
     
        .design-stage {
            position: relative;
            height: 800px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* --- CIRCLES --- */
        .hud-circle {
            position: absolute;
            border-radius: 50%;
            z-index: 1;
            pointer-events: none;
        }

        /* Inner spinning circle */
     .inner-spin {
  width: 600px;
  height: 600px;
  border: 1px dashed #886c90;
  animation: rotateFull 20s linear infinite;
  background: #886c90;
}

        /* Outer bouncy glow circle */
        .outer-bounce {
            width: 720px; height: 720px;
            border: 2px dashed #886c90;
            animation: bounceGlow 4s infinite ease-in-out;
        }

        @keyframes rotateFull { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        @keyframes bounceGlow {
            0%, 100% { transform: scale(1); box-shadow: 0 0 20px var(--gold-glow); }
            50% { transform: scale(1.05); box-shadow: 0 0 50px var(--gold); opacity: 0.8; }
        }
        .headline {
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 1;
}
 

        /* --- MODEL IMAGE --- */
        .model-img {
            height: 750px;
            z-index: 10;
            position: relative;
            filter: drop-shadow(0 0 30px #000);
        }

        /* --- POINTERS (FIXED OVERLAP) --- */
        .right-side-stack {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column; /* Stacks items vertically */
            gap: 80px;              /* Creates the clean gap between Acne, Fillers, etc. */
            z-index: 20;
        }

        .pointer-box {
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: 0.3s;
              color: #fff;
        }

        /* .dot {
            width: 10px; height: 10px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 0 10px var(--gold);
        } */

        .line {
            width: 80px; height: 1px;
            background: rgba(255,255,255,0.2);
            margin: 0 15px;
            position: relative;
            overflow: hidden;
        }

        .line::after {
            content: '';
            position: absolute;
            left: 0; top: 0; height: 100%; width: 0;
            background: var(--gold-bright);
            transition: width 0.4s ease;
        }

        .label {
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            white-space: nowrap; /* Prevents text from breaking and overlapping */
        }

        /* HOVER EFFECTS */
        .pointer-box:hover .label { color: var(--gold-bright); text-shadow: 0 0 10px var(--gold-bright); }
        .pointer-box:hover .line::after { width: 100%; }

        .pos-wrinkles { position: absolute; left: 0; top: 50%; flex-direction: row-reverse; z-index: 20;  color: #fff; }
         :root {
        --gold-bright: #f9e29c;
    }

    .typing-section {
        position: relative;
        height: 50vh;
        width: 100%;
        background: #000; /* Solid black to contrast with particles */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
    }

    /* Particle Background Styling */
    #particles-js {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .content-wrapper {
        position: relative;
        z-index: 2; /* Sits above particles */
        padding: 20px;
    }

    /* TYPING EFFECT */
 .typing-header {
  font-weight: 700;
  font-size: 3em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0 auto;
  display: inline-block;
  width: 0;
  animation: typing 3.5s steps(40, end) forwards, blink-caret .75s step-end infinite;
  background: linear-gradient(rgb(252, 246, 186) 20%, rgb(191, 149, 63) 80%) padding-box text;
  -webkit-text-fill-color: transparent;
}

.sub-text {
  color: #ccc;
  max-width: 1051px;
  margin: 20px auto 0;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s ease forwards 4s;
}

    /* Keyframes */
    @keyframes typing {
        from { width: 0 }
        to { width: 100% }
    }

    @keyframes blink-caret {
        from, to { border-color: transparent }
        50% { border-color: var(--gold-bright) }
    }

    @keyframes fadeIn {
        to { opacity: 1; }
    }
    .reveal-section {
        position: relative;
        background: #000;
        padding: 100px 0;
        overflow: hidden;
        min-height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #particle-canvas {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        z-index: 1;
    }

    .relative-z { position: relative; z-index: 2; }

    /* Typing Effect Styling */
    .typing-text {
font-weight: 700;
  color: #886c90;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  border-right: 3px solid #886c90;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  margin: 0 auto;

    }

    /* Triggered via JS */
    .start-typing {
        animation: typing 3s steps(40) forwards, blink 0.7s infinite;
    }

    .fade-in-text {
        opacity: 0;
        color: #5d5c5d;
        margin-top: 20px;
        transition: 1s ease-out;
    }

    .fade-in-text.visible { opacity: 1; }

    /* Stats Styling */
    .border-top-gold { border-top: 1px solid rgba(212, 175, 55, 0.2); }
    .stats-headline { font-weight: 700; font-size: 2rem; text-transform: uppercase; }
    .gold-text { color: #eee; }
    .stat-number { font-size: 4rem; font-weight: 700; color: #fff;  }
    .stat-label { color: #888; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }

    @keyframes typing { from { width: 0 } to { width: 100% } }
    @keyframes blink { 50% { border-color: transparent } }

    
    

    .reveal-section {
    position: relative;
    padding: 100px 0;
    background: #050505; /* Deep black */
    overflow: hidden;
}
#bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    /* This adds a subtle bloom effect to the particles */
    filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.5)); 
}

.relative-z {
    position: relative;
    z-index: 2; /* Keeps content above the animation */
}

/* .gold-text {
    background: linear-gradient(to right, #886c90, #F1D38E, #886c90);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
} */

.border-top-gold {
    border-top: 1px solid rgba(197, 160, 89, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #886c90;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    color: #555;
     max-width: 200px;
}

.reveal-section {
    position: relative;
    padding: 120px 0;
    background: #f0f0f0;
    overflow: hidden;
}

#plexus-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6; /* Subtle enough not to distract from text */
    pointer-events: none;
}

.relative-z {
    position: relative;
    z-index: 2; /* Ensures text stays readable above the animation */
}

/* .gold-text {
    background: linear-gradient(to right, #886c90, #F1D38E, #886c90);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */
/* Sidebar Styling */
.service-sidebar {
    padding-left: 20px;
    border-left: 1px solid rgba(197, 160, 89, 0.2);
}

.svc-link {
display: block;
  padding: 5px 0;
  color: #888;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0px;
  transition: all 0.3s ease;
  position: relative;
}

.svc-link:hover, .svc-link.active {
    color: #886c90;
}

/* The vertical gold line that follows the active link */
.svc-link.active::before {
    content: "";
    position: absolute;
    left: -22px; /* Position exactly on the border */
    top: 25%;
    width: 3px;
    height: 50%;
    background: #886c90;
    box-shadow: 0 0 8px #886c90;
}

/* Refinement to your existing design */
.gold-text {
  color: #886C90 !important;}

.service-item {
    transition: transform 0.4s ease;
}

/* Optional: Subtle highlight when active */
.service-item:target {
    background: rgba(197, 160, 89, 0.05);
    border-radius: 15px;
}
/* Custom FAQ Styling */
.custom-faq-section {
  background: #f0f0f0;
  padding: 80px 0;
}

/* .gold-grad-text {
    background: linear-gradient(to right, #886c90, #F1D38E, #886c90);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
} */

.accordion-item.bg-transparent {
    border: none !important;
    border-bottom: 1px solid rgba(159, 146, 162, 0.3) !important;
}

.accordion-button {
    font-size: 1.1rem;
    padding: 25px 15px;
    color: #1d151e !important;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #eeeaee !important;    box-shadow: none;
}

/* Adjusting the BS5 Arrow to Gold */
.accordion-button::after {
    filter: sepia(100%) saturate(1000%) hue-rotate(10deg);
}

.accordion-body {
    color:rgb(136, 108, 144);
    line-height: 1.8;
    padding-bottom: 30px;
}

/* Container Styling */
.appointment-section {
    background:radial-gradient(circle at center, #886c90 0%, #000 100%)
}

.booking-form-container {
    background: rgba(255, 255, 255, 0.03); /* Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 60px;
    border-radius: 20px;
}

/* Custom Input Styling */
.custom-input label {
    color: #888 !important;
}

.custom-input .form-control {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 0;
    color: #fff !important;
    padding-left: 0;
    transition: all 0.3s ease;
}

/* Focus State: Gold Glow */
.custom-input .form-control:focus {
    background-color: transparent !important;
    box-shadow: none;
    border-bottom: 2px solid #886c90;
}

/* Floating Label adjustment for Dark Theme */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #886c90 !important;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Submit Button */
.btn-appointment-submit {
    background: linear-gradient(45deg, #886c90, #F1D38E);
    color: #000;
    border: none;
    padding: 15px 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-appointment-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
    filter: brightness(1.1);
}

/* Typography refinement */
.ls-2 { letter-spacing: 2px; }
/* Glass Card Effect */
.booking-glass-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
}

/* Gold Gradient Text */
.gold-grad-text {
    background: linear-gradient(to right, #886c90, #F1D38E, #886c90);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    font-weight: 700;
}

/* Input Fields */
.custom-input .form-control {
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 0;
    color: #fff !important;
    padding-left: 0;
}

.custom-input .form-control:focus {
    box-shadow: none;
    border-bottom: 2px solid #F1D38E;
}

/* Custom Checkbox Styling */
.custom-checkbox .form-check-input {
    background-color: transparent;
    border: 1px solid #886c90;
}

.custom-checkbox .form-check-input:checked {
    background-color: #886c90;
    border-color: #F1D38E;
}

/* Submit Button */
.gold-submit-btn {
    background: linear-gradient(45deg, #886c90, #F1D38E);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    padding: 18px 80px;
    border: none;
    border-radius: 50px;
    letter-spacing: 2px;
    transition: 0.4s;
}

.gold-submit-btn:hover {
    letter-spacing: 4px;
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.4);
    transform: scale(1.05);
}



@media (max-width:765px) {
.outer-bounce{ display: none;}
.model-img {
  max-height: 330px;
  z-index: 10;
  position: relative;
  filter: drop-shadow(0 0 30px #000);
}

.inner-spin {
 display: none;
}
.design-stage {
  position: relative;
  height:360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.typing-text {
  font-weight: 700;
  color: #886c90;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  border-right: 3px solid #886c90;
  white-space: unset;
  overflow: hidden;
  width: 0;
  margin: 0 auto;

}}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1d151e;  background-color: #eeeaee;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-family: "Josefin Sans",sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #886c90;
}
.bg-secondary {
  background-color: #9f92a2 !important;
}
.bg-light {
  background-color: #eeeaee !important;
}

.text-dark {
  color: #1d151e !important;
}
/* Custom Tab Styling to mimic your original pill buttons */
        .nav-tabs-custom {
            border-bottom: none;
            gap: 20px;
        }
        .nav-tabs-custom .nav-link {
            cursor: pointer;
            border: 2px solid #ddd !important;
            border-radius: 30px !important;
            font-weight: bold;
            color: #555;
            padding: 8px 24px;
            transition: all 0.3s ease;
            background: transparent;
        }
        .nav-tabs-custom .nav-link:hover {
     background-color: #eeeaee !important;
  border-color: #eeeaee !important;
  color: #b38ab3 !important;
        }
       .nav-tabs-custom .nav-link.active {
  background-color: #eeeaee !important;
  border-color: #eeeaee !important;
  color: #b38ab3 !important;
}

        /* Card Custom Styling */
        .cards {
            background: #ffffff;
            border: 1px solid #eaeaea;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            padding: 20px;
        }
        .cards:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }
        .image-container {
            background-color: #f8f9fa;
            border-radius: 8px;
            margin: 0 auto;
        }


        .therapy-section {
            background-color: #fafafa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .section-title {
            color: #886c90; /* Deep purple */
            font-weight: 400;
            letter-spacing: 1px;
        }

        .section-subtitle {
            color: #886c90; /* Deep purple */
            font-size: 1.05rem;
            max-width: 900px;
            margin: 0 auto;
        }

        /* The Outer Wrapper creates the offset dashed border */
        .card-offset-wrapper {
            position: relative;
            padding: 10px; /* Space to let the dashed border show through */
            height: 100%;
        }

        /* Dashed Border Background Layer */
        .card-offset-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: calc(100% - 8px);
            height: calc(100% - 8px);
            border: 1.5px dashed #a082a4; /* Lighter purple for dashed border */
            border-radius: 12px;
            z-index: 1;
            pointer-events: none;
        }

        /* Actual Content Card (Slightly shifted down/right to create the offset) */
        .custom-therapy-card {
            position: relative;
            z-index: 2;
            background-color: #f3ecf2; /* Soft lavender background */
            border-radius: 10px;
            padding: 2.5rem 1.5rem;
            height: 100%;
            margin-top: 8px;
            margin-left: 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            border: none;
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
        }

        /* Smooth interactive hover effect */
        .card-offset-wrapper:hover .custom-therapy-card {
            transform: translate(-4px, -4px);
            box-shadow: 0 10px 20px rgba(92, 45, 97, 0.12); /* Deep purple soft shadow */
        }

        .card-heading {
            color: #886c90; /* Deep purple */
            font-weight: 600;
            font-size: 1.15rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        .card-desc {
            color: #333333; /* Dark gray */
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 0;
        }.why-choose-section {
            background-color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding: 80px 0;
        }

        /* Heading Styles */
        .why-choose-us h2 {
            color: #886c90; /* Deep Purple */
            font-size: 2.25rem;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 0.5px;
        }

        .why-choose-us .description {
            color: #666666;
            font-size: 1.1rem;
            font-weight: 400;
            max-width: 700px;
        }

        /* Hover Row Box styling */
        .hover-box {
            background-color: transparent;
            border-radius: 12px;
            padding: 15px;
            transition: all 0.3s ease-in-out;
            cursor: pointer;
        }

        .hover-box:hover {
            background-color: #fcf8fc;
            transform: translateX(5px);
        }

        /* Icon Container Wrapper */
        .icon-container {
            width: 72px;
            height: 72px;
            min-width: 72px; /* Prevent shrinking in flexbox */
            background-color: #f3ecf2; /* Soft purple */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        /* Bootstrap Icon Styling */
        .icon-container em {
            color: #886c90; /* Initial Deep Purple Icon color */
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        /* Hover States for Icon and Circle background */
        .hover-box:hover .icon-container {
            background-color: #886c90; /* Background turns deep purple */
        }

        .hover-box:hover .icon-container i {
            color: #ffffff; /* Icon color turns white */
        }

        /* Text Content alongside icons */
        .feature-title {
            color: #886c90; /* Deep Purple */
            font-weight: 700;
            font-size: 1.05rem;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .feature-desc {
            color: #555555;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        /* Responsive tweak for side image */
        .side-image {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
        }.benefits-section {
            background-color: #fafafa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding: 80px 0;
        }

        /* Section Headings */
        .benefits-section h2 {
            color: #886c90; /* Deep Purple */
            font-size: 2.25rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .benefits-section .description {
            color: #666666;
            font-size: 1.1rem;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Card container styling */
        .benefit-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 2.5rem 1.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border: 1px solid #eee8f0;
            box-shadow: 0 4px 15px rgba(92, 45, 97, 0.03);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            cursor: pointer;
        }

        /* Smooth scale and depth shadow on hover */
        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(92, 45, 97, 0.08);
            border-color: #dfd2e0;
        }

        /* Circular Icon Wrapper */
        .benefit-icon-container {
            width: 76px;
            height: 76px;
            background-color: #f3ecf2; /* Soft Lavender */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;  display: none;  
            transition: all 0.3s ease;
        }

        /* Icon styling */
        .benefit-icon-container em {
            color: #886c90; /* Deep Purple */
            font-size: 1.85rem;
            transition: all 0.3s ease;
        }

        /* Hover actions for icon circle */
        .benefit-card:hover .benefit-icon-container {
            background-color: #886c90; /* Background flips to Deep Purple */
        }

        .benefit-card:hover .benefit-icon-container em {
            color: #ffffff; /* Icon turns White */
        }

        /* Inner typography */
        .benefit-title {
            color: #886c90; /* Deep Purple */
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .benefit-desc {
            color: #555555;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 0;
        }  /* Treatment Card Box Styling */
    .treatment-box {
        background-color: #fdfafc;
        border: 1px solid #f3ecf2;
        border-radius: 20px;
        padding: 40px 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        overflow: hidden;
    }

    /* Elegant Top Color-accent Border on Hover */
    .treatment-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #5c2d61;
        transform: scaleX(0);
        transition: transform 0.4s ease;
        transform-origin: left;
    }

    .treatment-box:hover::before {
        transform: scaleX(1);
    }

    /* Hover Lift and Glow Effects */
    .treatment-box:hover {
        transform: translateY(-8px);
        background-color: #ffffff;
        border-color: #dfd2e0;
        box-shadow: 0 15px 35px rgba(92, 45, 97, 0.08);
    }

    /* Icon Container */
    .treatment-icon-box {
        width: 64px;
        height: 64px;
        background-color: rgba(92, 45, 97, 0.06);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: all 0.4s ease;
    }

    .treatment-icon-box i {
        color: #5c2d61;
        font-size: 1.6rem;
        transition: all 0.4s ease;
    }

    .treatment-box:hover .treatment-icon-box {
        background-color: #5c2d61;
    }

    .treatment-box:hover .treatment-icon-box i {
        color: #ffffff;
    }

    /* Card Content Typography */
    .treatment-title {
        color: #5c2d61;
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .treatment-desc {
        color: #666666;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* Custom Modern Load More Button */
    .btn-loadmore {
        background-color: transparent;
        color: #5c2d61;
        border: 2px solid #5c2d61;
        padding: 12px 35px;
        font-weight: 700;
        border-radius: 50px;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .btn-loadmore:hover {
        background-color: #5c2d61;
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(92, 45, 97, 0.15);
        transform: translateY(-2px);
    }

      

    .step-process-section .section-title {
        color: #5c2d61; /* Brand Purple */
        font-weight: 800;
        letter-spacing: 0.5px;
        font-size: 2.2rem;
    }

    .step-process-section .section-desc {
        color: #666666;
        font-size: 1.05rem;
        max-width: 700px;
    }

    /* Timeline Container & Base Track */
    .timeline-container {
        position: relative;
        padding-left: 20px;
    }

    /* Vertical connector line behind the nodes */
    .timeline-line {
        position: absolute;
        top: 20px;
        left: 55px;
        bottom: 20px;
        width: 3px;
        background: linear-gradient(to bottom, #f3ecf2 0%, #5c2d61 50%, #f3ecf2 100%);
        z-index: 1;
    }

    /* Badge Wrapper (Contains both Number & Hover Icon) */
    .timeline-badge-wrapper {
        position: relative;
        width: 70px;
        height: 70px;
        z-index: 2;
        flex-shrink: 0;
    }

    /* Default Number Node */
    .timeline-number {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fcf8fc;
        border: 2px solid #dfd2e0;
        color: #5c2d61;
        font-weight: 800;
        font-size: 1.4rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        box-shadow: 0 4px 10px rgba(92, 45, 97, 0.05);
    }

    /* Hidden Icon to show on hover */
    .timeline-icon {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #5c2d61;
        color: #ffffff;
        font-size: 1.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: scale(0);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        box-shadow: 0 8px 16px rgba(92, 45, 97, 0.2);
    }

    /* Clean Card Layout on the Right */
    .timeline-card {
        background-color: #fdfafc;
        border: 1px solid #f3ecf2;
        border-radius: 16px;
        padding: 24px 30px;
        width: 100%;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        box-shadow: 0 2px 10px rgba(0,0,0,0.01);
    }

    .step-title {
        color: #5c2d61;
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 8px;
        transition: color 0.3s ease;
    }

    .step-desc {
        color: #555555;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* Interactive Hover State: Triggered when hovering over any timeline row */
    .timeline-item:hover .timeline-number {
        transform: scale(0.6);
        opacity: 0;
    }

    .timeline-item:hover .timeline-icon {
        transform: scale(1);
        opacity: 1;
    }

    .timeline-item:hover .timeline-card {
        background-color: #ffffff;
        border-color: #dfd2e0;
        transform: translateX(10px);
        box-shadow: 0 10px 25px rgba(92, 45, 97, 0.08);
    }

    /* Mobile Adaptability Adjustments */
    @media (max-width: 576px) {
        .timeline-line {
            left: 35px;
        }
        .timeline-badge-wrapper {
            width: 44px;
            height: 44px;
            margin-right: 12px !important;
        }
        .timeline-number {
            font-size: 1.1rem;
        }
        .timeline-icon {
            font-size: 1.1rem;
        }
        .timeline-card {
            padding: 16px 20px;
        }
        .step-title {
            font-size: 1.05rem;
        }
        .step-desc {
            font-size: 0.88rem;
        }
    }
    /* Section Background and Fonts */
.candidates-section {
    background-color: #faf6fa; /* Light, luxury lavender background tint */
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.candidates-section .section-title {
    color: #5c2d61; /* Brand Purple */
    font-weight: 800;
    font-size: 2.15rem;
    letter-spacing: -0.5px;
}

.candidates-section .section-desc {
    color: #666666;
    font-size: 1.05rem;
    max-width: 650px;
}

/* Base Card Style */
.candidate-card {
    background-color: #ffffff;
    border: 1px solid #efe5ee;
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(92, 45, 97, 0.02);
}

/* Card Hover States */
.candidate-card:hover {
    transform: translateY(-6px);
    border-color: #dfd2e0;
    box-shadow: 0 15px 30px rgba(92, 45, 97, 0.07);
}

/* Circular Icon Badge */
.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(92, 45, 97, 0.06); /* Soft Purple Accent */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.card-icon-wrapper em {
    color: #5c2d61;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

/* Interactive Icon Transformations on Hover */
.candidate-card:hover .card-icon-wrapper {
    background-color: #5c2d61;
}

.candidate-card:hover .card-icon-wrapper em {
    color: #ffffff;
}

/* Card Typography */
.card-headline {
    color: #5c2d61;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.card-body-text {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Featured suitability / FAQ Card Accent Styles */
.featured-faq-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefbfc 100%);
    border-left: 5px solid #5c2d61; /* Strong Brand Left-border Accent */
}

.faq-icon-wrapper {
    width: 76px;
    height: 76px;
    background-color: #5c2d61;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(92, 45, 97, 0.15);
}

.faq-icon-wrapper i {
    color: #ffffff;
    font-size: 2.2rem;
}

.featured-headline {
    color: #5c2d61;
    font-size: 1.3rem;
}

/* Mobile Responsiveness Fine-Tuning */
@media (max-width: 768px) {
    .candidate-card {
        padding: 25px 20px;
    }
    .featured-faq-card .text-md-start {
        text-align: center !important;
    }
    .faq-icon-wrapper {
        margin-bottom: 10px;
    }
}/* Base Section Settings */
.why-choose-section {
    background-color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.why-choose-section .section-title {
    color: #5c2d61; /* Brand Purple */
    font-weight: 800;
    font-size: 2.1rem;
    line-height: 1.35;
}

/* Elegant Title Accent Underline */
.title-underline {
    width: 60px;
    height: 4px;
    background-color: #5c2d61;
    border-radius: 2px;
}

/* Feature Card Styling */
.feature-card {
    background-color: #fdfafc;
    border: 1px solid #f3ecf2;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    border-color: #dfd2e0;
    box-shadow: 0 12px 25px rgba(92, 45, 97, 0.07);
}

/* Highlighted (5th) Personalised Care Card */
.feature-card.highlight-card {
    background: linear-gradient(135deg, #5c2d61 0%, #461f4a 100%);
    border: none;
}

.feature-card.highlight-card .feature-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.15);
}

.feature-card.highlight-card .feature-icon-wrapper i {
    color: #ffffff;
}

/* Icon Container Badge */
.feature-icon-wrapper {
    width: 54px;
    height: 54px;
    background-color: rgba(92, 45, 97, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;  display: none;
    transition: all 0.3s ease;
}

.feature-icon-wrapper i {
    color: #5c2d61;
    font-size: 1.45rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background-color: #5c2d61;
}

.feature-card:hover .feature-icon-wrapper i {
    color: #ffffff;
}

/* Typography Inside Cards */
.feature-title {
    color: #5c2d61;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-desc {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 0;
}

/* Bottom Call to Action Section */
.cta-banner-card {
    background-color: #faf4fa;
    border: 1px dashed #dcbcdb;
    border-radius: 20px;
}

.cta-heading {
    color: #5c2d61;
    font-weight: 800;
    font-size: 1.3rem;
}

.cta-desc {
    color: #555555;
    font-size: 1rem;
    max-width: 680px;
    line-height: 1.6;
}

/* Brand Button styling */
.btn-brand-cta {
    background-color: #5c2d61;
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(92, 45, 97, 0.15);
    transition: all 0.3s ease;
}

.btn-brand-cta:hover {
    background-color: #461f4a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(92, 45, 97, 0.25);
}

/* Mobile Screen Support */
@media (max-width: 576px) {
    .feature-card {
        flex-direction: column;
        gap: 15px;
        padding: 24px;
    }
    .why-choose-section .section-title {
        font-size: 1.6rem;
    }
    .cta-heading {
        font-size: 1.15rem;
    }
    .cta-desc {
        font-size: 0.9rem;
    }
}

.btn-call {
            background-color: var(--primary-color);
            color: #fff !important;
            border-radius: 30px;
            padding: 8px 24px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-call:hover {
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }

        /* --- Hero Section --- */
        .hero-section {
            padding: 120px 0 80px 0;
            background: linear-gradient(135deg, #fdfbf7 0%, #eef2f7 100%);
            position: relative;
        }
        .hero-title {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        @media(min-width: 992px) {
            .hero-title { font-size: 4rem; }
        }
        .hero-badge {
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--accent-color);
            text-transform: uppercase;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 2px;
            padding: 8px 16px;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 20px;
        }
        .video-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .video-wrapper iframe {
            aspect-ratio: 16/9;
            width: 100%;
            border: 0;
        }

        /* --- Content Blocks --- */
        .section-padding {
            padding: 90px 0;
        }
        .accent-border-left {
            border-left: 4px solid var(--accent-color);
            padding-left: 20px;
        }
        .quote-card {
            background-color: #fcfbf7;
            border-left: 5px solid var(--accent-color);
            border-radius: 0 15px 15px 0;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

        /* --- Brain / Science Section --- */
        .science-section {
            background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
        }
        .highlight-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(11, 21, 40, 0.04);
            border: 1px solid rgba(0,0,0,0.03);
            height: 100%;
            transition: transform 0.3s ease;
        }
        .highlight-card:hover {
            transform: translateY(-5px);
        }
        .icon-circle {
            width: 60px;
            height: 60px;
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 25px;
        }

        /* --- Pillars Section --- */
        .pillar-card {
            background-color: #ffffff;
            border: none;
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        .pillar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .pillar-card:hover::before {
            opacity: 1;
        }
        .pillar-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.07);
        }
        .pillar-number {
            font-size: 3rem;
            font-family: var(--font-serif);
            color: rgba(212, 175, 55, 0.15);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 15px;
        }

        /* --- CTA Block --- */
        .cta-section {
            background: linear-gradient(rgba(11, 21, 40, 0.95), rgba(11, 21, 40, 0.95)), url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&q=80&w=1200') no-repeat center center/cover;
            color: #ffffff;
            padding: 100px 0;
        }
        .cta-section h2 {
            color: #ffffff;
        }
        .btn-gold {
            background-color: var(--accent-color);
            color: var(--primary-color) !important;
            font-weight: 700;
            padding: 15px 40px;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-color);
        }
        .btn-gold:hover {
            background-color: transparent;
            color: #ffffff !important;
            border-color: #ffffff;
        }