.elementor-11666 .elementor-element.elementor-element-6ff5bbe{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-16px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-11666 .elementor-element.elementor-element-3f036ad{width:100%;max-width:100%;}.elementor-11666 .elementor-element.elementor-element-3f036ad > .elementor-widget-container{margin:-13px 0px 0px 0px;}.elementor-11666 .elementor-element.elementor-element-4ab7059{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:-30px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--z-index:9999;}.elementor-11666 .elementor-element.elementor-element-e2e452e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:36px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--z-index:0;}.elementor-11666 .elementor-element.elementor-element-462c384{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11666 .elementor-element.elementor-element-f7ba967{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11666 .elementor-element.elementor-element-02040cc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11666 .elementor-element.elementor-element-fdb5b73{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11666 .elementor-element.elementor-element-0c7b1ae{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11666 .elementor-element.elementor-element-08e42d0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11666 .elementor-element.elementor-element-59c78b8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b008349 */.premium-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 5% 60px;
            overflow: hidden;
            background: linear-gradient(-45deg, #faf8f5, #f4ebd2, #fdfbf7, #faf8f5);
            background-size: 400% 400%;
            animation: heroBgFlow 12s ease infinite;
            padding-bottom: 160px;
            z-index:0;
        }

        /* Ambient Background Glows */
        .hero-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            z-index: 0;
            opacity: 0.15;
        }
        .glow-1 {
            width: 500px;
            height: 500px;
            background: #d4af37;
            top: -100px;
            left: -100px;
        }
        .glow-2 {
            width: 400px;
            height: 400px;
            background: #b38924;
            bottom: -50px;
            right: -50px;
        }

        .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1300px;
            width: 100%;
            z-index: 2;
            position: relative;
            gap: 60px;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
        }

        .tag-wrap {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .tag-line {
            width: 40px;
            height: 1px;
            background: #c89d34;
        }

        .tag-text {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #a47b20;
        }
        
        

        .hero-content h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 65px;
            font-weight: 500;
            line-height: 1.1;
            color: #1a1a1a;
            margin-bottom: 30px;
        }

        .hero-content h1 span#rotating-text {
            display: inline-block;
            font-style: italic;
            background: linear-gradient(90deg, #d4af37, #b38924, #fcecae, #d4af37);
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 35px;
            animation: textGradientFlow 4s linear infinite;
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        /* Reusable class for the gradient text animation */
        .gradient-text {
            display: inline-block;
            background: linear-gradient(90deg, #d4af37, #b38924, #fcecae, #d4af37);
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textGradientFlow 4s linear infinite;
        }

        .hero-content h1 span#rotating-text.hide {
            opacity: 0;
            transform: translateY(15px);
        }

        @keyframes textGradientFlow {
            0% { background-position: 0% center; }
            100% { background-position: 300% center; }
        }

        @keyframes heroBgFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-desc {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 45px;
            padding-left: 20px;
            border-left: 2px solid rgba(200, 157, 52, 0.3);
        }

        .hero-btns {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .btn-primary {
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #d4af37, #b38924);
            background: linear-gradient(135deg, #d4af37, #b38924) padding-box,
                        linear-gradient(135deg, #d4af37, #fcecae, #b38924, #d4af37) border-box;
            background-size: 100% 100%, 300% 300%;
            border: 2px solid transparent;
            color: #fff;
            padding: 16px 36px;
            padding: 14px 34px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            box-shadow: 0 15px 30px rgba(200, 157, 52, 0.2);
            transition: all 0.4s ease;
            animation: btnAnimatedBorder 4s ease infinite;
        }

        @keyframes btnAnimatedBorder {
            0% { background-position: 0% 0%, 0% 50%; }
            50% { background-position: 0% 0%, 100% 50%; }
            100% { background-position: 0% 0%, 0% 50%; }
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(200, 157, 52, 0.3);
        }

        .btn-secondary {
            display: inline-block;
            color: #1a1a1a;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            border: 1px solid rgba(26, 26, 26, 0.1);
            transition: all 0.4s ease;
        }

        .btn-secondary:hover {
            border-color: #c89d34;
            color: #a47b20;
            background: rgba(200, 157, 52, 0.05);
        }

        .hero-visual {
            flex: 1;
            position: relative;
            max-width: 500px;
        }

        /* The Video Container with Studio-like Lighting */
        .visual-frame {
            position: relative;
            aspect-ratio: 3/3;
            border-radius: 30px;
            padding: 3px;
            background: linear-gradient(135deg, #d4af37, #fcecae, #b38924, #d4af37);
            background-size: 300% 300%;
            animation: gradientBorder 6s ease infinite;
            box-shadow: 0 30px 60px rgba(200, 137, 36, 0.15);
        }

        .visual-frame-inner {
            width: 100%;
            height: 100%;
            border-radius: 27px;
            overflow: hidden;
            position: relative;
            background:transparent;
        }

        /* Inner decorative border line */
        .visual-frame-inner::before {
            content: '';
            position: absolute;
            inset: 20px;
            border: 1px solid rgba(200, 157, 52, 0.25);
            border-radius: 15px;
            pointer-events: none;
            z-index: 2;
        }

        .visual-frame-inner img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .small-video-frame {
            position: absolute;
            bottom: -150px;
            right: 30px;
            width: 250px;
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            z-index: 9999;
            border: 3px solid #fff;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            margin-right:-70px;
           
        }

        .small-video-frame iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            border: none;
            transform: translate(-50%, -50%) scale(1.8); /* Scale to hide the black bars/player controls */
            pointer-events: none;
            z-index:99999;
        }

        /* Floating Stats Glassmorphism Card */
        .floating-stats {
            position: absolute;
            bottom: 10px;
            left: -190px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding-top: 5px;
            padding: 5px 25px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border: 1px solid rgba(255,255,255,1);
            z-index: 10;
        }

        .stat-divider {
            width: 1px;
            height: 40px;
            background: rgba(200, 157, 52, 0.2);
        }

        .stat-item h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            color: #b38924;
            line-height: 1;
            margin-bottom: 5px;
        }

        .stat-item span {
            font-size: 19px;
            color: #555;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .hero-content h1 { font-size: 56px; }
            .floating-stats { left: -20px; padding: 20px; gap: 20px; }
        }

        @media (max-width: 991px) {
            .container {
                flex-direction: column;
                text-align: center;
            }
            .hero-desc {
                border-left: none;
                padding-left: 0;
                margin: 0 auto 35px;
            }
            .tag-wrap { justify-content: center; }
            .hero-btns { justify-content: center; }
            .hero-visual { margin-top: 40px; width: 100%; }
            .floating-stats {
                position: relative;
                bottom: auto;
                left: auto;
                margin: -40px auto 0;
                width: max-content;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 { font-size: 44px; }
            .hero-btns { flex-direction: column; }
            .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
            .floating-stats { flex-wrap: wrap; text-align: center; }
            .stat-divider { display: none; }
            .small-video-frame  {
                display:none;
            }
        }

        /* About Dr Section */
        .about-dr-section {
            padding: 100px 5%;
            background-color: #fff;
            overflow: hidden;
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 80px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-image-col {
            flex: 1;
            position: relative;
        }

        .about-image-wrapper {
            position: relative;
            border-radius: 30px;
            padding: 3px;
            background: linear-gradient(135deg, #d4af37, #fcecae, #b38924, #d4af37);
            background-size: 300% 300%;
            animation: gradientBorder 6s ease infinite;
            box-shadow: 0 30px 60px rgba(200, 137, 36, 0.15);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .about-image-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 70px rgba(200, 137, 36, 0.25);
        }

        @keyframes gradientBorder {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .about-image-inner {
            width: 100%;
            height: 100%;
            border-radius: 27px;
            overflow: hidden;
            position: relative;
        }

        .about-image-inner img {
            width: 100%;
            display: block;
            object-fit: cover;
            aspect-ratio: 3/4;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .about-image-wrapper:hover .about-image-inner img {
            transform: scale(1.08);
        }

        .experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: linear-gradient(135deg, #d4af37, #b38924);
            color: #fff;
            padding: 25px 35px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(200, 157, 52, 0.3);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 2;
            animation: floatBadge 4s ease-in-out infinite;
        }

        @keyframes floatBadge {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .exp-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 56px;
            font-weight: 600;
            line-height: 1;
        }

        .exp-text {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.4;
        }

        .about-content-col {
            flex: 1.1;
        }

        .about-content-col h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 52px;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .dr-credentials {
            color: #b38924;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 35px;
            letter-spacing: 0.5px;
        }

        .about-paragraphs-wrapper {
            display: grid;
            position: relative;
            margin-bottom: 30px;
        }

        .about-para {
            grid-area: 1 / 1;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .about-para.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .about-para p {
            font-size: 17px;
            line-height: 1.8;
            color: #555;
            margin: 0;
        }

        .about-controls {
            display: flex;
            gap: 12px;
            margin-bottom: 40px;
        }

        .about-dot {
            width: 30px;
            height: 4px;
            background: rgba(200, 157, 52, 0.2);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .about-dot.active, .about-dot:hover {
            background: #b38924;
            width: 50px;
        }

        /* Memberships Flip Section */
        .membership-section {
            margin-top: 30px;
        }

        .membership-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            color: #b38924;
            margin-bottom: 15px;
            font-weight: 600;
            text-align: center;
        }

        .membership-flip-container {
            position: relative;
            width: 220px;
            height: 80px;
            perspective: 1000px;
            margin: 0 auto;
        }

        .mem-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            border: 1px solid rgba(200, 157, 52, 0.2);
            border-radius: 12px;
            background: #fff;
            padding: 10px 20px;
            opacity: 0;
            transform: rotateX(90deg);
            transform-origin: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .mem-img.active { animation: flipIn 0.6s forwards; }
        .mem-img.exit { animation: flipOut 0.6s forwards; }

        @keyframes flipIn { 0% { transform: rotateX(90deg); opacity: 0; } 100% { transform: rotateX(0deg); opacity: 1; } }
        @keyframes flipOut { 0% { transform: rotateX(0deg); opacity: 1; } 100% { transform: rotateX(-90deg); opacity: 0; } }

        @media (max-width: 991px) {
            .about-container { flex-direction: column; gap: 50px; }
            .about-image-col { width: 100%; max-width: 450px; margin: 0 auto; }
            .experience-badge { right: 20px; bottom: -20px; padding: 20px 25px; }
            .exp-num { font-size: 42px; }
            .about-content-col h2 { font-size: 42px; }
        }

        /* Services Split Layout (Premium) */
        .services-split-section {
            padding: 60px 5%;
            background-color: transparent;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-header {
            margin-bottom: 40px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .services-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 56px;
            color: #1a1a1a;
            margin-top: 10px;
        }

        .services-split-layout {
            display: flex;
            gap: 60px;
            align-items: center;
            background: #fff;
            padding: 50px 60px;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.03);
            border: 1px solid rgba(200, 157, 52, 0.1);
        }

        .services-list-left {
            flex: 0 0 35%;
            display: flex;
            flex-direction: column;
            gap: 8px;
            border-right: 1px solid rgba(200, 157, 52, 0.2);
            padding-right: 40px;
        }

        .service-tab {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            color: #555;
            cursor: pointer;
            padding: 10px 18px;
            border-radius: 12px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
            border: 1px solid transparent;
        }

        .service-tab:hover {
            color: #b38924;
            background: rgba(200, 157, 52, 0.05);
        }

        .service-tab.active {
            color: #b38924;
            background: rgba(200, 157, 52, 0.1);
            border-color: rgba(200, 157, 52, 0.2);
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(200, 157, 52, 0.05);
        }

        .tab-number {
            font-size: 13px;
            opacity: 0.6;
            font-weight: 500;
        }

        .services-info-right {
            flex: 1;
            position: relative;
            min-height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-content-card {
            display: none;
            animation: fadeUp 0.5s ease forwards;
        }

        .service-content-card.active {
            display: block;
        }

        .service-card-inner {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .service-text-col {
            flex: 1.2;
            position: relative;
            padding-top: 15px;
        }

        .service-img-col {
            flex: 1;
            position: relative;
        }

        .service-img-col img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: contain;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(200, 157, 52, 0.1);
            border: 1px solid rgba(200, 157, 52, 0.2);
            display: block;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .content-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 140px;
            line-height: 1;
            color: rgba(200, 157, 52, 0.1);
            position: absolute;
            top: -50px;
            right: 0;
            font-weight: 600;
            z-index: 0;
            pointer-events: none;
        }

        .content-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 52px;
            color: #1a1a1a;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .content-desc {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
            max-width: 90%;
        }

        .content-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 34px;
            background: linear-gradient(135deg, #d4af37, #b38924);
            padding: 14px 32px;
            background: linear-gradient(135deg, #d4af37, #b38924) padding-box,
                        linear-gradient(135deg, #d4af37, #fcecae, #b38924, #d4af37) border-box;
            background-size: 100% 100%, 300% 300%;
            border: 2px solid transparent;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 20px rgba(200, 157, 52, 0.2);
            animation: btnAnimatedBorder 4s ease infinite;
        }

        .content-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(200, 157, 52, 0.3);
        }

        @media (max-width: 991px) {
            .services-split-layout {
                flex-direction: column;
                padding: 40px 30px;
                gap: 40px;
            }
            .service-card-inner {
                flex-direction: column;
                gap: 30px;
            }
            .services-list-left {
                border-right: none;
                border-bottom: 1px solid rgba(200, 157, 52, 0.2);
                padding-right: 0;
                padding-bottom: 30px;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: left;
            }
            .service-tab {
                padding: 8px 16px;
                font-size: 14px;
            }
            .services-info-right {
                min-height: 300px;
                text-align: center;
                align-items: center;
            }
            .content-number {
                font-size: 100px;
                top: -20px;
                right: 50%;
                transform: translateX(50%);
            }
            .content-desc { max-width: 100%; }
        }
        @media (max-width: 768px) {
            .services-header h2 { font-size: 40px; }
            .content-title { font-size: 36px; }
            .content-desc { font-size: 16px; }
            .services-split-layout { padding: 30px 20px; }
        }

        /* Why Choose Section */
        .why-choose-section {
            padding: 60px 5%;
            background-color: transparent;
            position: relative;
        }

        .why-choose-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 80px;
            align-items: center;
        }

        .why-choose-content {
            flex: 1;
            max-width: 500px;
        }

        .why-choose-content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 52px;
            color: #1a1a1a;
            margin-bottom: 30px;
            line-height: 1.1;
        }

        .why-choose-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        .why-choose-grid {
            flex: 1.2;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .why-card {
            display: none;
            background: #fff;
            position: relative;
            background: transparent;
            padding: 35px 25px;
            border-radius: 24px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03);
            border: 1px solid rgba(200, 157, 52, 0.1);
            transition: all 0.4s ease;
            z-index: 1;
        }

        .why-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #d4af37, #fcecae, #b38924, #d4af37);
            background-size: 300% 300%;
            animation: gradientBorder 6s ease infinite;
            border-radius: 24px;
            z-index: -2;
        }

        .why-card::after {
            content: '';
            position: absolute;
            inset: 2px;
            background: #fff;
            border-radius: 22px;
            z-index: -1;
            transition: all 0.4s ease;
        }

        .why-card.active {
            display: block;
            animation: whyCardEnter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
        }

        .why-card:nth-child(even).active {
            animation-delay: 0.15s;
        }

        @keyframes whyCardEnter {
            0% { opacity: 0; transform: translateY(30px) scale(0.95); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }

        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(200, 157, 52, 0.1);
            border-color: rgba(200, 157, 52, 0.3);
        }

        .why-icon {
            width: 55px;
            height: 55px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(200, 157, 52, 0.1), rgba(200, 157, 52, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b38924;
            margin-bottom: 20px;
        }

        .why-icon svg {
            width: 28px;
            height: 28px;
        }

        .why-card h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .why-card p {
            font-size: 14px;
            color: #777;
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .why-choose-container {
                flex-direction: column;
                gap: 50px;
            }
            .why-choose-content {
                max-width: 800px;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .why-choose-content p {
                max-width: 600px;
            }
        }

        @media (max-width: 768px) {
            .why-choose-content h2 { font-size: 40px; }
            .why-choose-grid {
                grid-template-columns: 1fr;
                width: 100%;
            }
        }

        /* Team Section */
        .team-section {
            padding: 80px 5%;
            background-color: #faf8f5;
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-header {
            text-align: center;
            margin-bottom: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .team-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 56px;
            color: #1a1a1a;
            margin-top: 10px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-left:5%;
        }

        .team-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            border: 1px solid rgba(200, 157, 52, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(200, 157, 52, 0.15);
            border-color: rgba(200, 157, 52, 0.3);
        }

        .doctor-img-wrap {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .doctor-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .team-card:hover .doctor-img-wrap img {
            transform: scale(1.08);
        }

        .doctor-socials {
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 12px;
            padding: 20px 0 15px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            transition: bottom 0.4s ease, opacity 0.4s ease;
            opacity: 0;
        }

        .team-card:hover .doctor-socials {
            bottom: 0;
            opacity: 1;
        }

        .doctor-socials a {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.4);
        }

        .doctor-socials a:hover {
            background: #d4af37;
            border-color: #d4af37;
            transform: translateY(-3px);
        }

        .doctor-info {
            padding: 25px 20px;
            text-align: center;
            position: relative;
            background: #fff;
            z-index: 2;
        }

        .doctor-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            color: #1a1a1a;
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }

        .team-card:hover .doctor-info h3 {
            color: #b38924;
        }

        .doc-role {
            display: block;
            font-size: 13px;
            color: #b38924;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            opacity: 0.8;
        }

        .doctor-info p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        @media (max-width: 1024px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .team-header h2 { font-size: 40px; }
        }

        @media (max-width: 600px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Google Reviews Section (Pure CSS Marquee) */
        .reviews-section {
            padding: 80px 5%;
            background-color: #fff;
            overflow: hidden;
        }

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .reviews-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 56px;
            color: #1a1a1a;
            margin-top: 10px;
        }

        .reviews-slider {
            position: relative;
            width: 100vw;
            max-width: 100%;
            left: 50%;
            transform: translateX(-50%);
            overflow: hidden;
            padding: 20px 0;
        }

        .reviews-slider::before,
        .reviews-slider::after {
            content: '';
            position: absolute;
            top: 0;
            width: 15vw;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .reviews-slider::before {
            left: 0;
            background: linear-gradient(to right, #fff, transparent);
        }

        .reviews-slider::after {
            right: 0;
            background: linear-gradient(to left, #fff, transparent);
        }

        .reviews-track {
            display: flex;
            width: max-content;
            animation: scrollReviews 40s linear infinite;
        }

        .reviews-track:hover {
            animation-play-state: paused;
        }

        .reviews-group {
            display: flex;
            gap: 30px;
            padding-right: 30px; /* Matches gap to make the loop seamless */
        }

        @keyframes scrollReviews {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .review-card {
            width: 380px;
            background: #faf8f5;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(200, 157, 52, 0.1);
            display: flex;
            flex-direction: column;
            gap: 20px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(200, 157, 52, 0.1);
            border-color: rgba(200, 157, 52, 0.3);
        }

        .google-stars {
            color: #fbbc04;
            font-size: 22px;
            letter-spacing: 2px;
        }

        .review-text {
            font-size: 15px;
            color: #555;
            line-height: 1.7;
            font-style: italic;
            flex-grow: 1;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: auto;
        }

        .reviewer-img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #d4af37, #b38924);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 18px;
        }

        .reviewer-details h4 {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            color: #1a1a1a;
            margin-bottom: 4px;
            font-weight: 600;
        }

        .reviewer-details span {
            font-size: 12px;
            color: #777;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .google-icon {
            width: 14px;
            height: 14px;
        }

        @media (max-width: 768px) {
            .reviews-header h2 { font-size: 40px; }
            .review-card { width: 320px; padding: 25px; }
            .reviews-slider::before,
            .reviews-slider::after { width: 10vw; }
        }

        /* Video Section (iPhone frames) */
        /* Video Section (iPhone frames) */
        .video-section {
            padding: 40px 5% 80px; /* 40px top, 5% sides, 80px bottom */
            background-color: #fff;
        }

        .video-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .video-header {
            text-align: center;
            margin-bottom: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .video-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 56px;
            color: #1a1a1a;
            margin-top: 10px;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            justify-items: center;
        }

        .iphone-frame {
            width: 100%;
            max-width: 280px;
            aspect-ratio: 9/19.5;
            position: relative;
            background: #111;
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 20px 40px rgba(200, 157, 52, 0.15), 
                        inset 0 0 0 2px #555;
            border: 1px solid #c89d34;
            transition: transform 0.4s ease;
        }

        .iphone-frame:hover {
            transform: translateY(-10px);
        }

        .iphone-notch {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 110px;
            height: 25px;
            background: #111;
            border-bottom-left-radius: 16px;
            border-bottom-right-radius: 16px;
            z-index: 10;
        }

        /* Optional: camera dot in notch */
        .iphone-notch::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 25%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: #1a1a1a;
            border-radius: 50%;
            box-shadow: inset 0 0 2px rgba(255,255,255,0.8);
        }

        .iphone-screen {
            width: 100%;
            height: 100%;
            background: #000;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
        }

        .iphone-screen iframe,
        .iphone-screen video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            transform: translate(-50%, -50%);
            border: none;
            object-fit: cover;
        }

        /* Helper class for portrait videos (scales slightly to fill the 9:19.5 iPhone screen) */
        .iphone-screen iframe.portrait-video {
            transform: translate(-50%, -50%) scale(1.45);
            pointer-events: none;
        }

        @media (max-width: 1024px) {
            .video-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
        }

        @media (max-width: 768px) {
            .video-section {
                padding-left: 0;
                padding-right: 0;
            }
            .video-header {
                padding: 0 5%;
            }
            .video-header h2 { font-size: 40px; }
            
            .video-grid { 
                display: flex;
                align-items: center;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 20px;
                padding: 10px 5% 40px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .video-grid::-webkit-scrollbar {
                display: none;
            }
            .iphone-frame {
                flex: 0 0 280px;
                scroll-snap-align: center;
            }
        }

        /* Social Buttons Section */
        .social-section {
            padding: 40px 5%;
            background-color: #fff;
            border-bottom: 1px solid rgba(200, 157, 52, 0.1);
        }

        .social-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 30px;
            border-radius: 50px;
            background: linear-gradient(#faf8f5, #faf8f5) padding-box,
                        linear-gradient(135deg, #d4af37, #fcecae, #b38924, #d4af37) border-box;
            background-size: 100% 100%, 300% 300%;
            border: 2px solid transparent;
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
            white-space: nowrap;
            animation: btnAnimatedBorder 4s ease infinite;
        }

        .social-btn:hover {
            background: linear-gradient(135deg, #d4af37, #b38924) padding-box,
                        linear-gradient(135deg, #d4af37, #fcecae, #b38924, #d4af37) border-box;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(200, 157, 52, 0.2);
        }

        @media (max-width: 768px) {
            .social-section {
                padding: 20px 5%;
            }
            .social-container {
                justify-content: flex-start;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                gap: 15px;
                padding: 5px 0;
            }
            .social-container::-webkit-scrollbar {
                display: none;
            }
            .social-btn {
                scroll-snap-align: start;
                flex: 0 0 auto;
                padding: 10px 24px;
                font-size: 14px;
            }
        }

         /* F&Q Section */
         .ka-faq{
  background:#fff;                 /* WHITE BACKGROUND */
  padding:60px 20px;               /* EQUAL TOP & BOTTOM PADDING */
  font-family:'Poppins',sans-serif;
}

.ka-faq-container{
  max-width:1100px;
  margin:auto;
}

.ka-faq-title{
  text-align:center;
  color:#C08E28;
  font-size:38px;
  font-weight:600;
  margin-bottom:50px;
}

.ka-faq-title span{
  display:block;
  font-size:16px;
  color:#444;                      /* BLACKISH TEXT */
  margin-top:10px;
  letter-spacing:1px;
}

.ka-faq-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.ka-faq-item{
  border:1px solid rgba(192,142,40,0.35);
  border-radius:14px;
  overflow:hidden;
  background:#fff;                 /* WHITE CARD */
  transition:all 0.3s ease;
}

.ka-faq-item:hover{
  border-color:#C08E28;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.ka-faq-question{
  width:100%;
  background:none;
  border:none;
  color:#000;                      /* BLACK FONT */
  padding:22px 26px;
  font-size:18px;
  font-weight:500;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.ka-faq-icon{
  font-size:26px;
  color:#C08E28;
  transition:transform 0.3s ease;
}

.ka-faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 26px;
  color:#333;                      /* DARK GRAY TEXT */
  line-height:1.7;
  font-size:15px;
  transition:max-height 0.4s ease, padding 0.3s ease;
}

.ka-faq-item.active .ka-faq-answer{
  max-height:300px;
  padding:0 26px 22px;
}

.ka-faq-item.active .ka-faq-icon{
  transform:rotate(45deg);
}

/* MOBILE */
@media(max-width:768px){
  .ka-faq-title{
    font-size:28px;
  }
  .ka-faq-question{
    font-size:16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d1671f3 *//* Unique Landscape Video Section */
        .unique-video-section {
            padding: 80px 5%;
            background-color: #faf8f5;
            overflow: hidden;
        }

        .uv-container {
            display: flex;
            align-items: center;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .uv-text-col {
            flex: 1;
        }

        .uv-animated-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: 52px;
            color: #1a1a1a;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        /* Continuous shine text animation */
        .shine-text {
            display: inline-block;
            background: linear-gradient(90deg, #1a1a1a, #d4af37, #1a1a1a);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shineTextAnim 4s linear infinite;
        }

        @keyframes shineTextAnim {
            to { background-position: 200% center; }
        }

        .uv-desc {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }

        .uv-list-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            color: #1a1a1a;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .uv-list {
            list-style: none;
            padding: 0;
            margin-bottom: 35px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .uv-list li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            font-size: 16px;
            color: #555;
            line-height: 1.6;
        }

        .uv-list-icon {
            color: #b38924;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(200, 157, 52, 0.1);
            font-size: 12px;
            margin-top: 2px;
            font-weight: bold;
        }

        /* Unique Video Flip Container */
        .uv-flip-wrapper {
            display: grid;
            perspective: 1000px;
            margin-bottom: 30px;
        }

        .uv-flip-item {
            grid-area: 1 / 1;
            opacity: 0;
            transform: rotateX(90deg);
            transform-origin: center;
            pointer-events: none;
        }

        .uv-flip-item.active { animation: flipIn 0.6s forwards; z-index: 2; pointer-events: auto; }
        .uv-flip-item.exit { animation: flipOut 0.6s forwards; z-index: 1; pointer-events: none; }


        .uv-video-col {
            flex: 1.2;
            position: relative;
            perspective: 1000px;
        }

        /* Unique Asymmetrical Leaf Design for Video */
        .uv-video-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 60px 0 60px 0;
            padding: 4px;
            background: linear-gradient(135deg, #d4af37, #fcecae, #b38924, #d4af37);
            background-size: 300% 300%;
            animation: gradientBorder 6s ease infinite;
            box-shadow: 0 30px 60px rgba(200, 137, 36, 0.15);
            transform: rotateY(-8deg); /* Subtle 3D turn */
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
        }

        .uv-video-wrapper:hover {
            transform: rotateY(0deg) translateY(-10px);
            box-shadow: 0 40px 80px rgba(200, 137, 36, 0.25);
        }

        .uv-video-inner {
            width: 100%;
            height: 100%;
            border-radius: 56px 0 56px 0;
            overflow: hidden;
            background: #000;
            position: relative;
        }

        .uv-video-inner iframe {
            position: absolute;
            top: 0;
            left: 0;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            transform: translate(-50%, -50%) scale(1.15);
            border: none;
            pointer-events: none;
        }

        @media (max-width: 991px) {
            .uv-container { flex-direction: column; text-align: center; }
            .uv-video-col { width: 100%; }
            .uv-video-wrapper { transform: none; }
            .uv-video-wrapper:hover { transform: translateY(-10px); }
            .uv-text-col .tag-wrap { justify-content: center; }
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3622b64 */.ka-faq{
  background:#fff;                 /* WHITE BACKGROUND */
  padding:60px 20px;               /* EQUAL TOP & BOTTOM PADDING */
  font-family:'Poppins',sans-serif;
}

.ka-faq-container{
  max-width:1100px;
  margin:auto;
}

.ka-faq-title{
  text-align:center;
  color:#C08E28;
  font-size:38px;
  font-weight:600;
  margin-bottom:50px;
}

.ka-faq-title span{
  display:block;
  font-size:16px;
  color:#444;                      /* BLACKISH TEXT */
  margin-top:10px;
  letter-spacing:1px;
}

.ka-faq-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.ka-faq-item{
  border:1px solid rgba(192,142,40,0.35);
  border-radius:14px;
  overflow:hidden;
  background:#fff;                 /* WHITE CARD */
  transition:all 0.3s ease;
}

.ka-faq-item:hover{
  border-color:#C08E28;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.ka-faq-question{
  width:100%;
  background:none;
  border:none;
  color:#000;                      /* BLACK FONT */
  padding:22px 26px;
  font-size:18px;
  font-weight:500;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.ka-faq-icon{
  font-size:26px;
  color:#C08E28;
  transition:transform 0.3s ease;
}

.ka-faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 26px;
  color:#333;                      /* DARK GRAY TEXT */
  line-height:1.7;
  font-size:15px;
  transition:max-height 0.4s ease, padding 0.3s ease;
}

.ka-faq-item.active .ka-faq-answer{
  max-height:300px;
  padding:0 26px 22px;
}

.ka-faq-item.active .ka-faq-icon{
  transform:rotate(45deg);
}

/* MOBILE */
@media(max-width:768px){
  .ka-faq-title{
    font-size:28px;
  }
  .ka-faq-question{
    font-size:16px;
  }
}/* End custom CSS */