 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #087f8c;
            --primary-dark: #05636d;
            --secondary: #0c4a6e;
            --light: #f4fbfc;
            --white: #ffffff;
            --dark: #12313b;
            --text: #5d7077;
            --border: #dcecef;
            --accent: #d9f3f5;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: #ffffff;
            color: var(--dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Manrope', sans-serif;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        /* =========================================
           TOP BAR
        ========================================= */

        .topbar {
            background: var(--secondary);
            color: #fff;
            padding: 9px 0;
            font-size: 14px;
        }

        .topbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .topbar span {
            opacity: .95;
        }

        /* =========================================
           HEADER
        ========================================= */

        header {
            background: rgba(255,255,255,.97);
            border-bottom: 1px solid var(--border);
            position: relative;
            z-index: 10;
        }

        .navbar {
            min-height: 82px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 21px;
            font-weight: 800;
        }

        .logo-text h3 {
            font-size: 18px;
            color: var(--secondary);
        }

        .logo-text p {
            color: var(--text);
            font-size: 12px;
            margin-top: 2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            font-size: 14px;
            font-weight: 600;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-btn {
            background: var(--primary);
            color: #fff !important;
            padding: 12px 20px;
            border-radius: 30px;
        }

        .nav-btn:hover {
            background: var(--primary-dark);
        }

        /* =========================================
           HERO
        ========================================= */

        .hero {
            min-height: 690px;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 90% 15%, rgba(8,127,140,.12), transparent 30%),
                linear-gradient(135deg, #f5fcfd 0%, #ffffff 60%);
        }

        .hero::before {
            content: "";
            position: absolute;
            width: 550px;
            height: 550px;
            border-radius: 50%;
            background: rgba(8,127,140,.06);
            right: -170px;
            bottom: -220px;
        }

        .hero-inner {
            min-height: 562px;
            display: grid;
            grid-template-columns: 1.05fr .95fr;
            align-items: center;
            gap: 40px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .construction-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 15px;
            background: #fff4db;
            color: #986c18;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .construction-badge span {
            width: 8px;
            height: 8px;
            background: #e4a923;
            border-radius: 50%;
        }

        .hero h1 {
            font-size: clamp(38px, 5vw, 62px);
            line-height: 1.08;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero-subtitle {
            font-size: 21px;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-description {
            color: var(--text);
            font-size: 17px;
            line-height: 1.8;
            max-width: 650px;
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 13px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 23px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 14px;
            transition: .3s ease;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 8px 20px rgba(8,127,140,.2);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 1px solid var(--border);
            color: var(--secondary);
            background: #fff;
        }

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Doctor image */

        .hero-image-area {
            position: relative;
            height: 600px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .hero-circle {
            position: absolute;
            width: 480px;
            height: 480px;
            border-radius: 50%;
            background: linear-gradient(145deg, #dff5f7, #edfafa);
            bottom: 20px;
        }

        .hero-doctor {
            position: relative;
            z-index: 2;
            width: 624px;
            max-height: 629px;
            object-fit: contain;
            object-position: bottom;
        }

        .floating-card {
            position: absolute;
            z-index: 4;
            background: #fff;
            border-radius: 15px;
            padding: 17px 20px;
            box-shadow: 0 15px 45px rgba(20,70,80,.12);
        }

        .card-one {
            left: 10px;
            top: 190px;
        }

        .card-two {
            right: 5px;
            bottom: 120px;
        }

        .floating-card strong {
            display: block;
            color: var(--secondary);
            font-size: 20px;
        }

        .floating-card small {
            color: var(--text);
            font-size: 12px;
        }

        /* =========================================
           UNDER CONSTRUCTION NOTICE
        ========================================= */

        .notice {
            background: var(--secondary);
            color: #fff;
            padding: 28px 0;
        }

        .notice-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .notice h3 {
            font-size: 21px;
            margin-bottom: 5px;
        }

        .notice p {
            opacity: .8;
            font-size: 14px;
        }

        .notice .btn {
            background: #fff;
            color: var(--secondary);
            white-space: nowrap;
        }

        /* =========================================
           STATS
        ========================================= */

        .stats {
            padding: 55px 0;
            background: #fff;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border: 1px solid var(--border);
            border-radius: 18px;
            overflow: hidden;
        }

        .stat {
            text-align: center;
            padding: 28px 15px;
            border-right: 1px solid var(--border);
        }

        .stat:last-child {
            border-right: none;
        }

        .stat h2 {
            color: var(--primary);
            font-size: 35px;
            margin-bottom: 5px;
        }

        .stat p {
            color: var(--text);
            font-size: 13px;
        }

        /* =========================================
           SECTION COMMON
        ========================================= */

        section {
            padding: 2px 0;
        }

        .section-label {
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 12px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .section-title {
            color: var(--secondary);
            font-size: 38px;
            line-height: 1.2;
            margin-bottom: 18px;
        }

        .section-description {
            color: var(--text);
            line-height: 1.8;
            max-width: 720px;
        }

        /* =========================================
           ABOUT DOCTOR
        ========================================= */

        .about {
            background: var(--light);
        }

        .about-grid {
            display: grid;
            grid-template-columns: .85fr 1.15fr;
            gap: 65px;
            align-items: center;
        }

        .about-photo {
            background: #dff4f6;
            border-radius: 25px;
            min-height: 500px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            overflow: hidden;
        }

        .about-photo img {
            max-height: 500px;
            width: 100%;
            object-fit: contain;
        }

        .about-content p {
            color: var(--text);
            line-height: 1.85;
            margin-bottom: 18px;
        }

        .qualification-box {
            margin-top: 25px;
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 12px;
        }

        .qualification {
            background: #fff;
            padding: 17px;
            border-radius: 12px;
            border: 1px solid var(--border);
        }

        .qualification strong {
            display: block;
            color: var(--secondary);
            margin-bottom: 5px;
            font-size: 14px;
        }

        .qualification span {
            color: var(--text);
            font-size: 12px;
        }

        /* =========================================
           EXPERTISE
        ========================================= */

        .expertise-header {
            text-align: center;
            margin-bottom: 45px;
        }

        .expertise-header .section-description {
            margin: auto;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(5,1fr);
            gap: 17px;
        }

        .expertise-card {
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 25px 18px;
            text-align: center;
            transition: .3s;
            background: #fff;
        }

        .expertise-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 15px 35px rgba(20,70,80,.08);
        }

        .expertise-icon {
            width: 52px;
            height: 52px;
            margin: 0 auto 15px;
            background: var(--accent);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
        }

        .expertise-card h4 {
            color: var(--secondary);
            font-size: 14px;
            line-height: 1.4;
        }

        /* =========================================
           MEMBERSHIP
        ========================================= */

        .membership {
            background: var(--light);
        }

        .membership-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 55px;
            align-items: center;
        }

        .membership-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 25px;
        }

        .membership-list div {
            background: #fff;
            border: 1px solid var(--border);
            padding: 15px;
            border-radius: 10px;
            color: var(--secondary);
            font-weight: 600;
            font-size: 13px;
        }

        .membership-visual {
            min-height: 370px;
            background:
                linear-gradient(rgba(8,127,140,.72),rgba(12,74,110,.78)),
                url('img/clinic.jpg') center/cover;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px;
            color: #fff;
        }

        .membership-visual h2 {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .membership-visual p {
            opacity: .9;
            line-height: 1.7;
        }

        /* =========================================
           SWATI SECTION
        ========================================= */

        .swati {
            background: #fff;
        }

        .swati-grid {
            display: grid;
            grid-template-columns: .85fr 1.15fr;
            gap: 65px;
            align-items: center;
        }

        .swati-photos {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .swati-photo {
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            background: #eaf7f8;
        }

        .swati-photo:nth-child(2) {
            margin-top: 45px;
        }

        .swati-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .swati-content p {
            color: var(--text);
            line-height: 1.85;
            margin-bottom: 18px;
        }

        .why-box {
            margin-top: 25px;
            background: var(--light);
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: 0 15px 15px 0;
        }

        .why-box h3 {
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .why-box p {
            margin-bottom: 0;
        }

        /* =========================================
           CLINIC
        ========================================= */

        .clinic {
            background: var(--secondary);
            color: #fff;
        }

        .clinic-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .clinic h2 {
            color: #fff;
            font-size: 38px;
            margin-bottom: 15px;
        }

        .clinic p {
            color: rgba(255,255,255,.75);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .clinic-image {
            height: 350px;
            border-radius: 22px;
            overflow: hidden;
            background: #fff;
        }

        .clinic-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* =========================================
           FOOTER
        ========================================= */

        footer {
            background: #092d38;
            color: #fff;
            padding: 35px 0;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .footer-inner p {
            font-size: 13px;
            color: rgba(255,255,255,.65);
        }

        .footer-links {
            display: flex;
            gap: 20px;
            font-size: 13px;
        }

        .footer-links a:hover {
            color: #8fe0e6;
        }

        /* =========================================
           FLOATING WHATSAPP
        ========================================= */

        .whatsapp {
            position: fixed;
            right: 22px;
            bottom: 22px;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #25d366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,.2);
            z-index: 100;
        }

        /* =========================================
           RESPONSIVE
        ========================================= */

        @media(max-width: 1000px) {

            .nav-links {
                display: none;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                padding-top: 70px;
            }

            .hero {
                min-height: auto;
            }

            .hero-image-area {
                height: 520px;
            }

            .hero-circle {
                width: 400px;
                height: 400px;
            }

            .hero-doctor {
                width: 400px;
            }

            .expertise-grid {
                grid-template-columns: repeat(3,1fr);
            }

            .about-grid,
            .swati-grid,
            .membership-grid,
            .clinic-grid {
                grid-template-columns: 1fr;
            }
        }

        @media(max-width: 700px) {

            .topbar-inner {
                justify-content: center;
                text-align: center;
            }

            .topbar-inner span:last-child {
                display: none;
            }

            section {
                padding: 65px 0;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-description {
                font-size: 15px;
            }

            .hero-image-area {
                height: 430px;
            }

            .hero-circle {
                width: 330px;
                height: 330px;
            }

            .hero-doctor {
                width: 330px;
            }

            .floating-card {
                padding: 12px 14px;
            }

            .card-one {
                left: 0;
                top: 110px;
            }

            .card-two {
                right: 0;
                bottom: 60px;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .stat {
                border-bottom: 1px solid var(--border);
            }

            .stat:nth-child(2) {
                border-right: none;
            }

            .stat h2 {
                font-size: 28px;
            }

            .section-title {
                font-size: 30px;
            }

            .expertise-grid {
                grid-template-columns: 1fr 1fr;
            }

            .qualification-box,
            .membership-list {
                grid-template-columns: 1fr;
            }

            .about-photo {
                min-height: 390px;
            }

            .swati-photos {
                grid-template-columns: 1fr;
            }

            .swati-photo {
                height: 360px;
            }

            .swati-photo:nth-child(2) {
                margin-top: 0;
            }

            .notice-inner {
                flex-direction: column;
                text-align: center;
            }

            .clinic-image {
                height: 260px;
            }

            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }

        @media(max-width: 450px) {

            .hero h1 {
                font-size: 34px;
            }

            .expertise-grid {
                grid-template-columns: 1fr;
            }

            .hero-circle {
                width: 280px;
                height: 280px;
            }

            .hero-doctor {
                width: 285px;
            }

            .hero-image-area {
                height: 370px;
            }

            .card-one {
                top: 70px;
            }

            .card-two {
                bottom: 30px;
            }
        }


     /* =====================================================
   TWO DOCTOR PHOTOS - SMALLER SIZE
===================================================== */
/* =====================================================
   TWO DOCTOR PHOTOS - SMALLER SIZE
===================================================== */

.doctor-intro {
    width: 100%;
    background: #ffffff;
    padding: 25px 0 0;
}

.doctor-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 750px; /* Reduced overall width */
    margin: 0 auto;
}

.doctor-intro-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #f5fafb;
    border: 1px solid #e2eef0;
}

.doctor-intro-image {
    width: 100%;
    height: 220px; /* Reduced from 300px */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.doctor-intro-name {
    text-align: center;
    background: rgba(255, 255, 255, 0.97);
    padding: 10px 10px 12px;
    border-top: 1px solid #e2eef0;
}

.doctor-intro-name h2 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    color: #123f52;
}

.doctor-intro-name p {
    margin: 4px 0 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #087f8c;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .doctor-intro {
        padding-top: 20px;
    }

    .doctor-intro-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        width: 88%;
        gap: 18px;
    }

    .doctor-intro-image {
        height: 220px;
    }

}


@media (max-width: 500px) {

    .doctor-intro-image {
        height: 200px;
    }

    .doctor-intro-name h2 {
        font-size: 17px;
    }

}