
       
        .about-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
            overflow: hidden;
        }

        .about-hero-left {
            background: var(--primary-color);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 60px 80px 72px;
            overflow: hidden;
            z-index: 1;
        }

        .about-hero-left::before {
            content: '';
            position: absolute;
            width: 460px;
            height: 460px;
            border-radius: 50%;
            border: 64px solid rgba(255, 255, 255, 0.06);
            top: -140px;
            left: -140px;
            pointer-events: none;
        }

        .about-hero-left::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 44px solid rgba(244, 180, 0, 0.16);
            bottom: 40px;
            right: -100px;
            pointer-events: none;
        }

        .about-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.14);
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            padding: 8px 18px;
            border-radius: 100px;
            width: fit-content;
            margin-bottom: 32px;
            border: 1px solid rgba(255, 255, 255, 0.22);
        }

        .about-hero-left h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 4vw, 54px);
            font-weight: 700;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 26px;
        }

        .about-hero-left h1 em {
            font-style: italic;
            color: var(--accent-color);
        }

        .about-hero-left>p {
            font-size: 16px;
            line-height: 1.82;
            color: rgba(255, 255, 255, 0.82);
            max-width: 420px;
            margin-bottom: 44px;
        }

        .about-stats-row {
            display: flex;
            gap: 36px;
        }

        .about-stat-num {
            font-size: 38px;
            font-weight: 800;
            color: var(--accent-color);
            line-height: 1;
        }

        .about-stat-label {
            font-size: 11px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.65);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-top: 5px;
        }

        .about-hero-right {
            background: #ffffff;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 72px 80px 56px;
        }

        .about-hero-right::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color) 0%, var(--accent-color) 100%);
        }

        .about-eyebrow {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .about-eyebrow::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(26, 139, 132, 0.15);
        }

        .about-mission-quote {
            font-family: 'Playfair Display', serif;
            font-size: clamp(20px, 2.2vw, 28px);
            font-style: italic;
            color: var(--text-color);
            line-height: 1.55;
            margin-bottom: 38px;
            position: relative;
            padding-left: 26px;
        }

        .about-mission-quote::before {
            content: '\201C';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 90px;
            color: #e8f6f5;
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }

        .about-values-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding: 0;
            margin: 0;
        }

        .about-value-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 18px;
            background: #e8f6f5;
            border-radius: 12px;
            border-left: 3px solid var(--primary-color);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .about-value-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
        }

        .about-value-icon {
            width: 38px;
            height: 38px;
            min-width: 38px;
            background: var(--primary-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
        }

        .about-value-text h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 3px;
        }

        .about-value-text p {
            font-size: 13px;
            color: var(--muted-text);
            line-height: 1.55;
            margin: 0;
        }

        /* ── SECTION 2 — MEET THE DOCTOR ── */
        .about-doctor {
            background: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .about-doctor::before {
            content: 'DR. VIJAY';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: clamp(80px, 14vw, 180px);
            font-weight: 800;
            color: rgba(26, 139, 132, 0.035);
            white-space: nowrap;
            pointer-events: none;
            letter-spacing: 6px;
        }

        .about-doctor-inner {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 360px 1fr;
            gap: 72px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .about-doctor-card {
            position: relative;
        }

        .about-doctor-img {
            border-radius: 24px;
            overflow: hidden;
            background: #e8f6f5;
            aspect-ratio: 3/4;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .about-doctor-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 45%, rgba(15, 94, 90, 0.9) 100%);
        }

        .about-doctor-avatar {
            font-size: 110px;
            color: var(--primary-color);
            opacity: 0.2;
        }

        .about-doctor-badge {
            position: absolute;
            bottom: 24px;
            left: 24px;
            right: 24px;
            z-index: 2;
        }

        .about-doctor-badge h3 {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin: 0 0 4px;
        }

        .about-doctor-badge span {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.78);
            font-weight: 500;
        }

        .about-doctor-role-tag {
            position: absolute;
            top: 20px;
            right: -14px;
            background: var(--accent-color);
            color: #1f1f1f;
            font-size: 11px;
            font-weight: 800;
            padding: 9px 18px;
            border-radius: 100px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
            white-space: nowrap;
            z-index: 3;
        }

        .about-doctor-creds {
            margin-top: 18px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            list-style: none;
            padding: 0;
        }

        .about-cred-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--muted-text);
            font-weight: 500;
        }

        .about-cred-item i {
            color: var(--primary-color);
            width: 16px;
            font-size: 13px;
        }

        .about-doctor-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 3vw, 42px);
            font-weight: 700;
            color: var(--text-color);
            line-height: 1.22;
            margin-bottom: 20px;
        }

        .about-doctor-content h2 em {
            font-style: italic;
            color: var(--primary-color);
        }

        .about-doctor-content>p {
            font-size: 15px;
            line-height: 1.88;
            color: var(--muted-text);
            margin-bottom: 36px;
        }

        .about-expertise-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 36px;
        }

        .about-expertise-card {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 18px 16px;
            border: 1px solid rgba(26, 139, 132, 0.15);
            border-radius: 14px;
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
        }

        .about-expertise-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }

        .about-exp-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
            background: #e8f6f5;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 17px;
        }

        .about-expertise-card h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-color);
            margin: 0 0 3px;
        }

        .about-expertise-card p {
            font-size: 12px;
            color: var(--muted-text);
            line-height: 1.5;
            margin: 0;
        }

        .about-award-strip {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .about-award-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fffbef;
            border: 1px solid rgba(244, 180, 0, 0.35);
            border-radius: 100px;
            padding: 9px 16px;
            font-size: 12px;
            font-weight: 700;
            color: #7a5a00;
        }

        .about-award-badge i {
            color: var(--accent-color);
        }

        /* ── SECTION 3 — FACILITY & WHY CHOOSE ── */
        .about-facility {
            background: var(--text-color);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .about-facility::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(26, 139, 132, 0.22) 0%, transparent 65%);
            top: -260px;
            right: -200px;
            pointer-events: none;
        }

        .about-facility::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(244, 180, 0, 0.1) 0%, transparent 65%);
            bottom: -150px;
            left: -150px;
            pointer-events: none;
        }

        .about-facility-inner {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .about-facility-top {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: end;
            margin-bottom: 64px;
        }

        .about-facility-eyebrow {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent-color);
            margin-bottom: 14px;
        }

        .about-facility-top h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(30px, 3.5vw, 46px);
            font-weight: 700;
            color: #fff;
            line-height: 1.22;
            margin: 0;
        }

        .about-facility-top h2 em {
            font-style: italic;
            color: var(--accent-color);
        }

        .about-facility-top p {
            font-size: 15px;
            line-height: 1.88;
            color: rgba(255, 255, 255, 0.58);
            margin: 0;
        }

        .about-bento {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .about-bento-card {
            border-radius: 20px;
            padding: 30px 26px;
            position: relative;
            overflow: hidden;
            transition: transform 0.25s;
        }

        .about-bento-card:hover {
            transform: translateY(-5px);
        }

        .about-bento-card.bc-teal {
            background: var(--primary-color);
            grid-column: span 2;
        }

        .about-bento-card.bc-gold {
            background: var(--accent-color);
        }

        .about-bento-card.bc-glass {
            background: rgba(255, 255, 255, 0.055);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .about-bento-card.bc-teal-soft {
            background: rgba(26, 139, 132, 0.2);
            border: 1px solid rgba(26, 139, 132, 0.3);
        }

        .about-bento-card.bc-full {
            grid-column: span 3;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            gap: 36px;
        }

        .about-bento-num {
            position: absolute;
            top: 16px;
            right: 22px;
            font-size: 72px;
            font-weight: 800;
            line-height: 1;
            opacity: 0.07;
            color: #fff;
        }

        .bc-gold .about-bento-num {
            color: #000;
        }

        .about-bento-icon {
            width: 50px;
            height: 50px;
            border-radius: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 18px;
        }

        .bc-teal .about-bento-icon {
            background: rgba(255, 255, 255, 0.18);
            color: #fff;
        }

        .bc-gold .about-bento-icon {
            background: rgba(0, 0, 0, 0.1);
            color: #1f1f1f;
        }

        .bc-glass .about-bento-icon {
            background: rgba(26, 139, 132, 0.28);
            color: #6dcdc7;
        }

        .bc-teal-soft .about-bento-icon {
            background: rgba(26, 139, 132, 0.35);
            color: #fff;
        }

        .about-bento-card h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .bc-teal h3,
        .bc-glass h3,
        .bc-teal-soft h3 {
            color: #fff;
        }

        .bc-gold h3 {
            color: #1f1f1f;
        }

        .about-bento-card p {
            font-size: 14px;
            line-height: 1.72;
            margin: 0;
        }

        .bc-teal p,
        .bc-glass p,
        .bc-teal-soft p {
            color: rgba(255, 255, 255, 0.72);
        }

        .bc-gold p {
            color: rgba(0, 0, 0, 0.62);
        }

        .about-bento-full-icon {
            width: 70px;
            height: 70px;
            min-width: 70px;
            border-radius: 18px;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #fff;
        }

        .about-bento-full-text h3 {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
        }

        .about-bento-full-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.62);
            line-height: 1.75;
            max-width: 680px;
        }

        .about-cta-strip {
            margin-top: 52px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 34px 46px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }

        .about-cta-text h3 {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 5px;
        }

        .about-cta-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.58);
            margin: 0;
        }

        .about-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--accent-color);
            color: #1f1f1f;
            font-size: 15px;
            font-weight: 800;
            padding: 15px 30px;
            border-radius: 100px;
            text-decoration: none;
            white-space: nowrap;
            box-shadow: 0 4px 20px rgba(244, 180, 0, 0.3);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .about-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(244, 180, 0, 0.42);
        }

        /* ── Scroll reveal ── */
        .about-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }

        .about-reveal.visible {
            opacity: 1;
            transform: none;
        }

        /* ── Responsive ── */
        @media (max-width: 1024px) {
            .about-hero {
                grid-template-columns: 1fr;
            }

            .about-hero-left {
                padding: 64px 40px;
            }

            .about-hero-right {
                padding: 60px 40px;
            }

            .about-doctor-inner {
                grid-template-columns: 1fr;
                gap: 48px;
                padding: 0 32px;
            }

            /* .about-doctor-img {
                aspect-ratio: 16/7;
            } */

            .about-doctor-avatar {
                font-size: 80px;
            }

            .about-facility-top {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .about-bento {
                grid-template-columns: 1fr 1fr;
            }

            .about-bento-card.bc-teal,
            .about-bento-card.bc-full {
                grid-column: span 2;
            }

            .about-bento-card.bc-full {
                flex-direction: column;
                gap: 20px;
            }

            .about-cta-strip {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 640px) {
            .about-hero-left {
                padding: 48px 24px;
            }

            .about-hero-right {
                padding: 48px 24px;
            }

            .about-stats-row {
                gap: 20px;
                flex-wrap: wrap;
            }

            .about-doctor-inner {
                padding: 0 20px;
            }

            .about-facility-inner {
                padding: 0 20px;
            }

            .about-expertise-grid {
                grid-template-columns: 1fr;
            }

            .about-bento {
                grid-template-columns: 1fr;
            }

            .about-bento-card.bc-teal,
            .about-bento-card.bc-full {
                grid-column: span 1;
            }

            .about-cta-strip {
                padding: 28px 22px;
            }
        }
   