       :root {
            --primary: #c8288d; /* Exact pink from the template */
            --dark: #7f4799; /* Eggplant dark purple */
            --text-grey: #6b6b6b;
            --bg-light: #fbf5f8; /* Soft pink-ish white for sections */
            --white: #ffffff;
            --font-headings: 'Jost', sans-serif;
            --font-body: 'Poppins', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: var(--font-body);
            color: var(--text-grey);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-headings);
            color: var(--dark);
            font-weight: 700;
        }

        a { text-decoration: none; }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: var(--font-body);
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--dark);
            color: var(--white);
        }

        .subtitle {
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 10px;
        }

        /* ----- HEADER ----- */
        .header {
            background: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        }
        
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-only {
            display: none;
        }

        .logo {
            display: flex;
            align-items: center;
            font-family: var(--font-headings);
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
        }
        
        .logo img {
            height: 80px; /* Standard logo height */
            width:90px;
            object-fit: contain;
            display: block;
            border-radius: 50%;
        }

        .logo i {
            color: var(--primary);
            font-size: 24px;
            margin-right: 8px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            margin: 0;
            padding: 0;
            flex: 1;
            justify-content: center;
        }

        .nav-links a {
            color: var(--dark);
            font-weight: 600;
            font-size: 17px;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-links a.active, .nav-links a:hover {
            color: var(--primary);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        /* ----- HERO SECTION ----- */
        .hero {
            background: linear-gradient(to right, #ffffff, #fbf5f8);
            padding: 60px 0 80px;
            position: relative;
        }
        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .hero-content {
            flex: 1;
            max-width: 520px;
            z-index: 2;
        }
        .hero-content h1 {
            font-size: 50px;
            line-height: 1.15;
            margin: 15px 0 20px;
            letter-spacing: -1px;
        }
        .hero-content p {
            font-size: 15px;
            margin-bottom: 35px;
            color: #777777fd;
        }
        .hero-btns {
            display: flex;
            gap: 25px;
            align-items: center;
        }
        .btn-play {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: color 0.3s;
        }
        .btn-play i {
            font-size: 38px;
            color: var(--white);
            background: var(--dark);
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        .btn-play:hover {
            color: var(--primary);
        }
        .btn-play:hover i {
            background: var(--primary);
        }
        .hero-image {
            flex: 1;
            position: relative;
            text-align: right;
            padding-left: 40px;
        }
        .hero-image > img {
            max-width: 100%;
            border-radius: 20px;
            z-index: 1;
            position: relative;
        }
        
        .about-us-section {
            padding: 60px 0;
            background: #fbf5f8;
            position: relative;
            z-index: 10;
        }
        .about-us-container {
            display: flex;
            align-items: center;
            gap: 80px;
        }
        .about-content {
            flex: 1.2;
        }
        .about-content h2 {
            font-size: 42px;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.1;
        }
        .about-content p {
            font-size: 15px;
            color: #777;
            margin-bottom: 30px;
            line-height: 1.7;
        }
        .about-skills-title {
            font-size: 20px;
            color: var(--dark);
            font-weight: 700;
            margin-bottom: 15px;
            align-items: center;
        }
        .dashed-divider {
            border-top: 1px dashed #e5e5e5;
            margin-bottom: 30px;
        }
        .about-skills-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px 20px;
            margin-bottom: 40px;
        }
        .about-skills-list div {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: var(--dark);
            font-weight: 500;
        }
        .about-skills-list i {
            color: var(--primary);
            margin-right: 12px;
            font-size: 12px;
        }

        .about-image {
            flex: 1;
            text-align: center;
            position: relative;
            transform: translateY(-40px);
        }
        .about-image-bg {
            border-radius: 50%;
            padding: 0;
            display: inline-flex;
            background: #dcc0dc;
            width: 400px;
            height: 400px;
            align-items: center;
            justify-content: center;
        }
        .about-image img {
            max-width: 100%;
            display: block;
            border-radius: 50%;
            width: 380px;
            height: 380px;
            object-fit: cover;
            border: 6px solid #ffffff;
            box-shadow: 0 0 0 2px #fbf5f8;
        }



        /* ----- SERVICES SECTION ----- */
        .services {
            text-align: center;
            padding: 60px 0 80px;
            background: linear-gradient(135deg, #fbf5f8 0%, #ffffff 100%);
        }
        .services h2 {
            font-size: 40px;
            margin-bottom: 60px;
            font-weight: 700;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            text-align: left;
        }

        /* NEW SERVICE CARD STYLING */
        .service-card-new {
            background: var(--white);
            border-radius: 20px;
            padding: 20px 18px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            border-left: 5px solid transparent;
            position: relative;
            overflow: hidden;
            height: auto;
            min-height: 240px;
            display: flex;
            flex-direction: column;
        }

        .service-card-new::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--dark));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card-new:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 50px rgba(200, 40, 141, 0.15);
            border-left-color: var(--primary);
            background: linear-gradient(135deg, #fbf5f8 0%, #ffffff 100%);
        }

        .service-card-new:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary), var(--dark));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--white);
            margin-bottom: 10px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .service-card-new:hover .service-icon {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 10px 25px rgba(200, 40, 141, 0.3);
        }

        .service-card-new h3 {
            font-size: 15px;
            color: var(--dark);
            margin-bottom: 5px;
            margin-top: 0;
            font-weight: 700;
            letter-spacing: 0.3px;
            line-height: 1.3;
        }

        .service-card-new > p {
            font-size: 11px;
            color: #999;
            margin-bottom: 10px;
            margin-top: 0;
            line-height: 1.3;
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
            flex-grow: 1;
            overflow-y: auto;
        }

        .service-list li {
            font-size: 15px;
            color: var(--text-grey);
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            transition: all 0.3s ease;
            line-height: 1.3;
        }

        .service-list li i {
            color: var(--primary);
            font-size: 11px;
            min-width: 14px;
            text-align: center;
            font-weight: 600;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .service-card-new:hover .service-list li {
            color: var(--dark);
            padding-left: 3px;
        }

        .service-card-new:hover .service-list li i {
            color: var(--dark);
            transform: scale(1.2);
        }


        /* ----- TIMELINE SECTION ----- */
        .timeline {
            background: var(--bg-light);
            text-align: center;
            padding: 50px 0;
        }
        .timeline h2 {
            font-size: 36px;
            margin-bottom: 50px;
        }
        .timeline-wrapper {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 20px;
            padding-bottom: 20px;
        }
        .timeline-line {
            position: absolute;
            bottom: 33px;
            left: 5%;
            width: 90%;
            height: 2px;
            background: #eab4d1;
            z-index: 1;
        }
        .timeline-item {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 11%;
        }
        .timeline-item img {
            height: 120px;
            margin-bottom: 20px;
            object-fit: contain;
        }
        .month-chip {
            background: var(--white);
            color: var(--text-grey);
            font-weight: 600;
            padding: 6px 0;
            width: 90px;
            text-align: center;
            border-radius: 20px;
            font-size: 13px;
            border: 1px solid #ddd;
            transition: all 0.3s;
            cursor: pointer;
        }
        .timeline-item.active .month-chip {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        /* ----- NEW APPOINTMENT SECTION ----- */
        .appointment {
            position: relative;
            background: var(--white);
            overflow: hidden;
            display: flex;
            align-items: center;
            margin-top: 40px;
            margin-bottom: 40px;
        }
        .apt-container {
            width: 100%;
            display: flex;
            align-items: stretch;
            min-height: 450px;
        }
        .apt-content {
            flex: 1.4;
            padding: 40px 5% 40px 10%; /* Space from left edge */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .apt-image {
            flex: 1;
            background: url('main.webp') center/cover no-repeat;
            min-height: 100%;
            filter: grayscale(100%) contrast(1.1);
        }
        .apt-subtitle {
            color: var(--primary);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .apt-content h2 {
            font-size: 46px;
            color: var(--dark);
            margin-bottom: 40px;
            line-height: 1.2;
        }
        .apt-content h2 span { color: var(--primary); }
        .apt-form {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 850px;
        }
        .apt-input-group {
            position: relative;
        }
        .apt-input-group i {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
            font-size: 14px;
            pointer-events: none;
        }
        .apt-form input, .apt-form select {
            width: 100%;
            padding: 16px 45px 16px 25px;
            border: 1px solid #e5d8df;
            border-radius: 30px;
            font-family: var(--font-body);
            font-size: 14px;
            outline: none;
            background: var(--white);
            color: var(--text-grey);
            appearance: none;
            transition: all 0.3s;
        }
        .apt-form input::placeholder { color: #888; }
        .apt-form input:focus, .apt-form select:focus {
            border-color: var(--primary);
        }
        .btn-apt {
            background-color: var(--primary);
            color: var(--white);
            width: 100%;
            height: 100%;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            font-size: 15px;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .btn-apt:hover { background-color: var(--dark); }

        /* ----- NUTRITION SECTION ----- */
        .nutrition {
            padding: 60px 0;
            background: var(--white);
        }
        .nutrition .container {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        .nutrition-img { flex: 1; text-align: center; }
        .nutrition-img img { max-width: 100%; max-height: 550px; object-fit: contain; }
        .nutrition-content { flex: 1.1; }
        .nutrition-content h2 { font-size: 42px; color: var(--dark); line-height: 1.25; margin-bottom: 20px; letter-spacing: -0.5px; }
        .nutrition-content p { font-size: 15px; color: #777; line-height: 1.7; margin-bottom: 35px; max-width: 95%; }
        .check-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .check-list li {
            font-weight: 500;
            color: var(--text-grey);
            display: flex;
            align-items: center;
            font-size: 14px;
        }
        .check-list i {
            color: var(--primary);
            margin-right: 12px;
            font-size: 12px;
        }

        /* ----- SERVICES TABS SECTION ----- */
        .services-tabs {
            background-color: #fafbfc;
            padding: 60px 0;
            text-align: center;
        }
        .services-tabs h2 {
            font-size: 46px;
            color: var(--dark);
            margin-bottom: 50px;
        }
        .tab-nav {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.03);
            margin-bottom: 60px;
            flex-wrap: wrap;
        }
        .tab-btn {
            padding: 18px 25px;
            background: transparent;
            border: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 15px;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 12px;
            border-right: 1px solid #f0f0f0;
        }
        .tab-btn:last-child { border-right: none; }
        .tab-btn i { font-size: 22px; color: var(--primary); transition: 0.3s; }
        .tab-btn.active {
            background: var(--primary);
            color: var(--white);
            border-radius: 18px;
            box-shadow: 0 5px 15px rgba(200, 40, 141, 0.25);
            border-right: none;
        }
        .tab-btn.active i { color: var(--white); }
        .tab-content {
            display: flex;
            align-items: center;
            gap: 60px;
            text-align: left;
            transition: opacity 0.3s ease;
        }
        .tab-text { flex: 1.2; }
        .tab-text h3 { font-size: 34px; line-height: 1.35; margin-bottom: 20px; color: var(--dark); }
        .tab-text p { font-size: 15px; color: #777; margin-bottom: 30px; line-height: 1.6; }
        .tab-text ul { list-style: none; margin-bottom: 40px; }
        .tab-text ul li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-grey);
        }
        .tab-text ul i {
            color: var(--primary);
            margin-right: 12px;
            font-size: 14px;
        }
        .tab-image { flex: 1; }
        .tab-image img { width: 100%; height: auto; border-radius: 25px; object-fit: cover; }

        /* ----- FAQ SECTION ----- */
        .faq {
            padding: 60px 0;
        }
        .faq .container {
            display: flex;
            align-items: flex-start;
            gap: 60px;
        }
        .faq-img { flex: 1; }
        .faq-img img { width: 100%; border-radius: 20px; }
        .faq-content { flex: 1.2; }
        .faq-content h2 { font-size: 34px; margin-bottom: 15px; }
        .faq-content > p { font-size: 15px; margin-bottom: 30px; }
        
        .accordion { border-top: 1px solid #eee; }
        .accordion-item {
            border-bottom: 1px solid #eee;
        }
        .accordion-header {
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--dark);
            font-size: 16px;
            transition: color 0.3s;
        }
        .accordion-header:hover { color: var(--primary); }
        .accordion-header i { font-size: 14px; transition: transform 0.3s; }
        .accordion-body {
            display: none;
            padding-bottom: 20px;
            color: var(--text-grey);
            font-size: 14px;
        }
        .accordion-item.active .accordion-body { display: block; }
        .accordion-item.active .accordion-header { color: var(--primary); }

        /* ----- TESTIMONIALS SECTION ----- */
        .testimonials {
            background-color: #fafbfc;
            padding: 60px 0;
            text-align: left;
            overflow: hidden;
        }
        .testi-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 50px;
        }
        .talk-to-doctor {
            display: flex;
            align-items: center;
            background: var(--white);
            padding: 8px 8px 8px 25px;
            border-radius: 40px;
            gap: 20px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.04);
        }
        .avatars-group {
            display: flex;
        }
        .avatars-group img {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 2px solid var(--white);
            margin-left: -15px;
        }
        .avatars-group img:first-child { margin-left: 0; }
        
        .testimonials-grid {
            display: flex;
            gap: 40px;
            overflow-x: auto;
            padding: 40px 5% 60px; /* Large side padding for full-width feel */
        }
        .testimonials-grid::-webkit-scrollbar { display: none; }
        .testi-card {
            background: var(--white);
            border-radius: 24px;
            display: block; /* No more flex since image is gone */
            min-width: calc(33.33% - 27px); /* 3 cards on screen */
            box-shadow: 0 15px 45px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid #f0f0f0;
        }
        @media (max-width: 992px) {
            .testi-card { min-width: calc(50% - 20px); }
        }
        @media (max-width: 600px) {
            .testi-card { min-width: 85%; }
        }
        .testi-img-wrapper {
            width: 250px;
            position: relative;
            flex-shrink: 0;
        }
        .testi-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(200, 40, 141, 0.4);
            transition: 0.3s;
        }
        .play-btn:hover { transform: translate(-50%, -50%) scale(1.1); color: var(--white); }
        .testi-content { 
            flex: 1; 
            padding: 40px 30px; 
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .stars { color: #f5b301; margin-bottom: 15px; font-size: 13px; display:flex; align-items:center; }
        .testi-content p {
            font-size: 14px;
            line-height: 1.8;
            color: #777;
            margin-bottom: 30px;
        }
        .user-info {
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
        }
        .user-info img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
        }
        .user-info h5 { margin: 0 0 4px; font-size: 15px; color: var(--dark); }
        .user-info span { font-size: 12px; color: #888; }
        .quote-icon {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 40px;
            color: transparent;
            -webkit-text-stroke: 1.5px var(--primary);
        }

        /* ----- FOOTER ----- */
        .footer {
            background: var(--dark);
            color: #a496ab;
            padding: 50px 0 20px; /* Reduced padding kept as requested */
            position: relative;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1fr 2.5fr;
            gap: 60px;
            padding-bottom: 25px; /* Reduced from 40px */
            border-bottom: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 15px;
            align-items: start;
        }
        .footer .logo {
            color: var(--white);
            margin-bottom: 25px;
        }
        .footer .logo img {
            height: 100px;
            width: auto;
            border-radius: 50%;
            object-fit: contain;
        }
        .footer h4 {
            color: var(--white);
            font-size: 18px;
            margin-bottom: 25px;
        }
        .footer ul { list-style: none; }
        .footer ul li { margin-bottom: 12px; }
        .footer ul a {
            color: #a496ab;
            transition: 0.3s;
        }
        .footer ul a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .socials {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }
        .socials a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            font-size: 14px;
        }
        .socials a:hover {
            background: var(--primary);
        }
        .newsletter-form {
            display: flex;
            background: rgba(255,255,255,0.05);
            border-radius: 30px;
            padding: 5px;
            margin-top: 20px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .newsletter-form input {
            background: transparent;
            border: none;
            padding: 10px 15px;
            color: var(--white);
            outline: none;
            flex: 1;
            font-size: 13px;
        }
        .newsletter-form input::placeholder { color: #a496ab; }
        .newsletter-form button {
            background: var(--primary);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: var(--white);
            cursor: pointer;
            transition: 0.3s;
        }
        .newsletter-form button:hover {
            background: var(--white);
            color: var(--dark);
        }
        .footer-bottom {
            text-align: center;
            font-size: 13px;
        }

        /* ----- HAMBURGER MENU ----- */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            background: none;
            border: none;
            z-index: 1100;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--dark);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* Mobile nav overlay */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.4);
            z-index: 900;
        }
        .mobile-nav-overlay.active { display: block; }

        /* ----- RESPONSIVENESS ----- */

        /* Large tablets */
        @media (max-width: 1100px) {
            .hero-content h1 { font-size: 42px; }
            .apt-content h2 { font-size: 38px; }
            .services-tabs h2 { font-size: 38px; }
            .about-content h2 { font-size: 36px; }
            .nutrition-content h2 { font-size: 36px; }
        }

        /* Tablets */
        @media (max-width: 991px) {
            /* Header */
            .hamburger { display: flex; }
            .nav-links {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0; right: -280px;
                width: 270px;
                height: 100vh;
                background: var(--white);
                box-shadow: -5px 0 20px rgba(0,0,0,0.1);
                padding: 80px 30px 40px;
                gap: 5px;
                z-index: 1000;
                transition: right 0.35s ease;
                overflow-y: auto;
            }
            .nav-links.open { right: 0; }
            .nav-links li { border-bottom: 1px solid #f0e8f0; padding-bottom: 8px; }
            .nav-links a { font-size: 16px; padding: 8px 0; }
            .mobile-only {
                display: block;
                width: 100%;
                margin-top: 20px;
            }
            .mobile-btn {
                background: var(--primary);
                color: var(--white) !important;
                padding: 14px 20px;
                border-radius: 30px;
                text-align: center;
                justify-content: center !important;
                font-weight: 700;
                letter-spacing: 1px;
                box-shadow: 0 4px 12px rgba(200, 40, 141, 0.25);
            }
            .nav-actions .btn { display: none; }

            /* Hero */
            .hero { padding: 40px 0 60px; }
            .hero .container { flex-direction: column; text-align: center; }
            .hero-content { margin-bottom: 30px; max-width: 100%; }
            .hero-content h1 { font-size: 38px; }
            .hero-btns { justify-content: center; flex-wrap: wrap; gap: 15px; }
            .hero-image { padding-left: 0; width: 100%; max-width: 500px; margin: 0 auto; }

            /* About */
            .about-us-container { flex-direction: column; gap: 40px; }
            .about-content h2 { font-size: 34px; }
            .about-image { text-align: center; }
            .about-badges { flex-wrap: wrap; }
            .badge-card { min-width: 200px; }

            /* Stats */
            .stats .container { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .stat-item h2 { font-size: 80px; }

            /* Services */
            .services-grid { grid-template-columns: repeat(2, 1fr); }

            /* Timeline */
            .timeline-wrapper { flex-wrap: wrap; justify-content: center; gap: 15px; }
            .timeline-line { display: none; }
            .timeline-item { width: calc(25% - 15px); }

            /* Appointment */
            .apt-container { flex-direction: column; }
            .apt-image { min-height: 250px; width: 100%; }
            .apt-content { padding: 40px 5%; }
            .apt-content h2 { font-size: 36px; }
            .apt-form { grid-template-columns: repeat(2, 1fr); }

            /* Nutrition */
            .nutrition .container { flex-direction: column-reverse; gap: 40px; }
            .nutrition-content h2 { font-size: 34px; }

            /* Tabs */
            .services-tabs h2 { font-size: 34px; }
            .tab-nav { width: 100%; }
            .tab-btn { padding: 14px 18px; font-size: 14px; }
            .tab-content { flex-direction: column; gap: 30px; }
            .tab-text h3 { font-size: 28px; }

            /* FAQ */
            .faq .container { flex-direction: column; gap: 40px; }
            .faq-content h2 { font-size: 28px; }

            /* Testimonials */
            .testi-header { flex-direction: column; align-items: flex-start; gap: 20px; }
            .testi-card { min-width: calc(85% - 15px); }

            /* Footer */
            .footer-top { grid-template-columns: 1fr 1.5fr; gap: 30px; }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .logo img { height: 50px; }
            /* Hero */
            .hero { padding: 30px 0 50px; }
            .hero-content h1 { font-size: 30px; letter-spacing: -0.5px; }
            .hero-content p { font-size: 14px; }

            /* About */
            .about-content h2 { font-size: 28px; }
            .about-skills-list { grid-template-columns: 1fr; }
            .about-badges { flex-direction: column; }

            /* Stats */
            .stats .container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .stat-item h2 { font-size: 60px; letter-spacing: -1px; }
            .stat-item p { font-size: 11px; letter-spacing: 0.5px; }

            /* Services */
            .services-grid { grid-template-columns: 1fr; }
            .services h2 { font-size: 28px; }

            /* Timeline */
            .timeline-wrapper { 
                display: grid; 
                grid-template-columns: repeat(3, 1fr); 
                gap: 20px 10px; 
                padding: 20px 0;
            }
            .timeline-line { display: none; }
            .timeline-item { width: 100%; display: flex; flex-direction: column; align-items: center; }
            .timeline-item img { height: 70px; margin-bottom: 10px; }
            .month-chip { width: 100%; max-width: 85px; font-size: 11px; padding: 4px 0; }

            /* Appointment */
            .apt-form { grid-template-columns: 1fr; }
            .apt-content h2 { font-size: 28px; }
            .apt-content { padding: 30px 20px; }

            /* Nutrition */
            .nutrition-content h2 { font-size: 28px; }
            .check-list { grid-template-columns: 1fr; }

            /* Tabs */
            .services-tabs h2 { font-size: 26px; }
            .tab-nav { flex-direction: column; width: 100%; border-radius: 15px; }
            .tab-btn { border-right: none; border-bottom: 1px solid #f0f0f0; width: 100%; justify-content: flex-start; }
            .tab-btn:last-child { border-bottom: none; }
            .tab-btn.active { border-radius: 12px; }
            .tab-content { flex-direction: column; gap: 25px; }
            .tab-text h3 { font-size: 24px; }

            /* FAQ */
            .faq-content h2 { font-size: 26px; }
            .accordion-header { font-size: 14px; }

            /* Testimonials */
            .testi-card { flex-direction: column; min-width: calc(90% - 10px); }
            .testi-img-wrapper { width: 100%; height: 200px; }
            .testi-content { padding: 25px 20px; }
            .user-info { flex-direction: column; align-items: flex-start; gap: 8px; }

            /* Footer */
            .footer-top { grid-template-columns: 1fr; }
            .footer { padding: 40px 0 20px; }
        }

        /* Small phones */
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .hero-content h1 { font-size: 26px; }
            .btn { padding: 10px 20px; font-size: 14px; }
            .hero-btns { flex-direction: column; align-items: center; }

            .stats .container { grid-template-columns: 1fr 1fr; }
            .stat-item h2 { font-size: 48px; }

            .apt-content h2 { font-size: 24px; }
            .services-tabs h2 { font-size: 22px; }

            .testi-header .talk-to-doctor { flex-wrap: wrap; gap: 10px; padding: 12px 15px; }

            .modal-content { width: 95%; }
        }

        /* ----- VIDEO MODAL ----- */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.85);
            z-index: 999999;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none; visibility: hidden; transition: 0.3s;
        }
        .modal-overlay.active { opacity: 1; pointer-events: auto; visibility: visible; }
        .modal-content {
            position: relative; width: 80%; max-width: 900px; aspect-ratio: 16/9;
            background: #000; border-radius: 15px; overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }
        .close-modal {
            position: absolute; top: -45px; right: 0; background: none; border: none;
            color: #fff; font-size: 40px; cursor: pointer; line-height: 1; transition: 0.3s;
        }
        .close-modal:hover { color: var(--primary); }

        /* ----- HIDE GLOBAL SCROLLBAR ----- */
        ::-webkit-scrollbar { display: none; }
        html, body {
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }

        /* ----- WHATSAPP FLOAT ----- */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: float 3s ease-in-out infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #128C7E;
            color: #FFF;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        @media screen and (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
        }

/* ----- NEW CERTIFICATION CARDS ----- */
.certification-cards-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.certification-card {
    background: var(--white);
    border: 1px solid #ffdaed;
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    min-width: 380px;
    max-width: 480px;
    box-shadow: 0 10px 30px rgba(200, 40, 141, 0.03);
    transition: all 0.4s ease;
    position: relative;
}

.certification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(200, 40, 141, 0.1);
    border-color: var(--primary);
}

.cert-logo-container {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-logo-container {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-logo-container img {
    width: 75px; /* Slightly larger logo since background is gone */
    height: 75px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.cert-info {
    display: flex;
    flex-direction: column;
}

.cert-badge {
    background: var(--primary);
    color: #fff;
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(200, 40, 141, 0.2);
}

.cert-title {
    font-size: 22px;
    color: var(--dark);
    font-weight: 700;
    margin: 0 0 4px 0;
    font-family: var(--font-headings);
}

.cert-subtitle {
    font-size: 15px;
    color: #777;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.cert-desc {
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.cert-footer {
    font-size: 15px;
    color: var(--dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cert-footer::before {
    content: '';
    width: 15px;
    height: 2px;
    background: var(--primary);
    display: inline-block;
}

@media (max-width: 992px) {
    .certification-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .certification-card {
        flex-direction: column;
        text-align: center;
        padding: 35px 20px;
    }
    .cert-info {
        align-items: center;
    }
}