
        /* ====== CSS RESET & GLOBAL STYLES ====== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        :root {
            --primary-gold: #b5985a;
            --primary-gold-dark: #9a824d;
            --primary-gold-light: #f5f0e6;
            --accent-blue: #2c5aa0;
            --accent-blue-light: #e8eff9;
            --text-black: #222222;
            --text-gray: #555555;
            --white: #ffffff;
            --light-gray: #f9f9f9;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--text-black);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--white);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--text-black);
        }

        h1 { 
            font-size: 3.5rem; 
        }
        h2 { 
            font-size: 2.8rem; 
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary-gold);
            border-radius: 2px;
        }
        h3 { 
            font-size: 1.8rem; 
            color: var(--text-black);
        }
        p { 
            margin-bottom: 1.2rem; 
            color: var(--text-gray); 
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: var(--primary-gold);
            color: var(--white);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(181, 152, 90, 0.3);
            background: var(--primary-gold-dark);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary-gold);
            border: 2px solid var(--primary-gold);
        }
        .btn-outline:hover {
            background: var(--primary-gold);
            color: var(--white);
        }

        /* ====== REFINED HEADER & NAVIGATION ====== */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            height: 78px;                 /* 🔒 fixed navbar height */
            background-color: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(8px);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            z-index: 1000;
            transition: all 0.3s ease;
        }


        .header-container {
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }


        /* LOGO */
        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 70px;              /* ideal navbar height */
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.03);
        }


        .logo .crown {
            color: var(--primary-gold);
            margin-right: 10px;
            font-size: 1.4rem;
        }

        .logo span {
            color: var(--primary-gold);
            font-weight: 600;
        }

        .logo .kcc-badge {
            background: var(--primary-gold);
            color: var(--white);
            font-size: 0.75rem;
            padding: 4px 8px;
            border-radius: 6px;
            margin-left: 10px;
            font-weight: 700;
        }

        /* NAV LINKS */
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-black);
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.25s ease;
            position: relative;
        }

        /* SIMPLE PREMIUM HOVER */
        nav ul li a:hover {
            color: var(--primary-gold);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-gold);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        /* BOOK APPOINTMENT BUTTON (NAV CTA) */
        nav ul li a.btn {
            padding: 10px 22px;
            font-size: 0.95rem;
            border-radius: 30px;
            box-shadow: none;
        }

        nav ul li a.btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(181, 152, 90, 0.25);
        }

        /* MOBILE MENU BUTTON */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: var(--text-black);
            cursor: pointer;
        }


        /* ====== HERO SECTION ====== */
        
        .hero {
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: var(--text-black);
            padding: 180px 0 120px;
            text-align: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.55); /* medical-grade overlay */
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }


        .hero h1 {
            font-size: 3.8rem;
            color: var(--text-black);
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out;
        }
        .hero p {
            color: var(--text-gray);
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 50px;
            margin-top: 60px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        .stat-item {
            background: var(--white);
            padding: 25px 35px;
            border-radius: 15px;
            border: 1px solid var(--primary-gold-light);
            min-width: 220px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gold);
        }
        .stat-item:hover {
            transform: translateY(-10px);
            border-color: var(--primary-gold);
            box-shadow: 0 15px 30px rgba(181, 152, 90, 0.15);
        }
        .stat-num {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-gold);
            display: block;
            line-height: 1;
        }
        .stat-text {
            font-size: 1.1rem;
            margin-top: 10px;
            color: var(--text-black);
            font-weight: 600;
        }

        /* ===== HERO SPLIT LAYOUT ===== */
.hero-split {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0 0;
}
.hero,
.hero-split {
    background-image: url("../assets/hero-bg.png");
    background-size: cover;
    background-position: center;
}

.hero-split::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    justify-items: center;
}

/* LEFT CONTENT */
.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.2rem;
    color: #9a824d;
    margin-top: -50px;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 1.4rem;
}

/* RIGHT IMAGE */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    object-fit: contain;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.18))
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

/* BUTTON SPACING */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;

    max-width: 600px;   /* ✅ SAME AS PARAGRAPH */
    margin: 0 auto;     /* ✅ centers perfectly */
}



.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;   /* ✅ forces visual centering */

}



/* OTHER SPECIALTIES */
.hero-specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 22px;
}
/* HIGHLIGHT WOMEN’S ONCOLOGY (BOLD ONLY) */
.highlight-specialty {
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 10px;
}
/* EXCLUSIVE WOMEN'S ONCOLOGY (STANDALONE) */
.hero-exclusive {
    margin-top: 4px;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-gold);
    text-align: center;

}
.hero-exclusive h3 {
    color: var(--primary-gold);
}


.hero-specialties span {
    white-space: nowrap;
}

.hero-specialties span:nth-child(even) {
    color: var(--primary-gold);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-specialties {
        justify-content: center;
        text-align: center;
        font-size: 0.95rem;
    }
}


        /* ====== WHY CHOOSE US ====== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .feature-card {
            background: var(--white);
            padding: 35px 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border-top: 5px solid var(--primary-gold-light);
        }
        .feature-card:hover {
            transform: translateY(-15px);
            border-top-color: var(--primary-gold);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
        }

        /* ====== CANCER TYPES ====== */
        .cancer-types {
            background-color: var(--light-gray);
        }
        .types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
        }
        .type-item {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--white);
            padding: 18px 20px;
            border-radius: 12px;
            font-weight: 600;
            color: var(--text-black);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--primary-gold-light);
        }

        

        
        .type-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }


        /* CIRCLE IMAGE */
        .type-item img {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary-gold-light);
            background: var(--white);
            flex-shrink: 0;
        }

        /* SIZE VARIANTS */
        .icon-sm img {
            width: 36px;
            height: 36px;
        }

        .icon-md img {
            width: 42px;
            height: 42px;
        }

        .icon-lg img {
            width: 50px;
            height: 50px;
        }

        .icon-xl img {
            width: 58px;
            height: 58px;
        }

        /* EXTRA TOP PADDING (FOR SPECIFIC ITEMS) */
        .pt-lg {
            padding-top: 8px;
        }

        /* TEXT */
        .type-item span {
            font-size: 1.05rem;
        }

        /* HOVER EFFECT (CALM, MEDICAL) */
        .type-item:hover {
            background: var(--primary-gold);
            color: var(--white);
            transform: translateY(-4px);
            border-color: var(--primary-gold);
        }


        .type-item:hover img {
            border-color: var(--primary-gold);
        }


       

        .treatment-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            border: 1px solid var(--primary-gold-light);
        }
        .treatment-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-gold);
        }
        .treatment-img {
            height: 250px;
            background-color: #f5f5f5;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s;
            
        }
        .treatment-card:hover .treatment-img {
            transform: scale(1.05);
        }
        .treatment-content {
            padding: 30px;
            position: relative;
        }
        .treatment-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gold);
        }
       

/* =========================
   TREATMENTS – DESKTOP (2 CARDS PER ROW)
========================= */

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


        /* ====== TEAM SECTION ====== */
        .team {
            background: var(--light-gray);
        }
        .team-container {
            display: flex;
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .team-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary-gold);
        }
        .team-img {
            width: 280px;
            height: 360px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center top;
            background-color: #ffffff;
            border-radius: 16px;
        }


        .team-info {
            flex: 1;
            padding: 40px;
        }
        .team-title {
            color: var(--primary-gold);
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        .team-qualifications {
            font-style: italic;
            color: var(--text-gray);
            margin-bottom: 20px;
            font-weight: 600;
        }

        /* ====== ABOUT & KCC @ HOME ====== */
        .about-home-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        .about-section, .home-section {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            position: relative;
            border: 1px solid var(--primary-gold-light);
        }
        .about-section::before, .home-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary-gold);
            border-radius: 15px 15px 0 0;
        }
        .home-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        .service-card {
            background: var(--primary-gold-light);
            padding: 25px;
            border-radius: 10px;
            transition: var(--transition);
            border-left: 4px solid var(--primary-gold);
        }
        .service-card:hover {
            background: var(--primary-gold);
            color: var(--white);
            transform: translateX(10px);
        }
        .service-card:hover h4,
        .service-card:hover p { 
            color: var(--white); 
        }
        .service-card h4 { 
            margin-bottom: 10px; 
            color: var(--text-black);
        }
        .service-card p { 
            font-size: 1rem;
            color: var(--text-gray);
        }

        /* ====== APPOINTMENT FORM MODAL ====== */
        .appointment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease-out;
        }

        .appointment-modal.active {
            display: flex;
        }

        .appointment-form-container {
            background: var(--white);
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease-out;
            position: relative;
        }

        .appointment-header {
            background: var(--primary-gold);
            color: var(--white);
            padding: 25px;
            border-radius: 20px 20px 0 0;
            text-align: center;
            position: relative;
        }

        .appointment-header h3 {
            color: var(--white);
            margin-bottom: 5px;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            color: var(--white);
            font-size: 1.8rem;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .close-modal:hover {
            transform: rotate(90deg);
        }

        .appointment-form {
            padding: 30px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-black);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 3px rgba(181, 152, 90, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-submit {
            text-align: center;
            margin-top: 30px;
        }

        .form-submit .btn {
            width: 100%;
            padding: 18px;
            font-size: 1.1rem;
        }

        /* ====== WHATSAPP BUTTON ====== */
       /* ===== PREMIUM WHATSAPP BUTTON ===== */
.whatsapp-button {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background-color: #25D366; /* Official WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-button {
    text-decoration: none;   /* 🔥 removes underline */
}

/* Icon alignment fix */
.whatsapp-button i {
    line-height: 1;
}

/* Subtle hover */
.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.45);
}


       

        .whatsapp-button .whatsapp-text {
            position: absolute;
            top: -45px;
            right: 0;
            background: #25D366;
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .whatsapp-button:hover .whatsapp-text {
            opacity: 1;
        }

        /* ====== FOOTER ====== */
        footer {
            background-color: #1a1a1a;
            color: var(--light-gray);
            padding: 60px 0 30px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--white);
        }
        .footer-logo span { color: var(--primary-gold); }
        .footer-about p { color: #bdc3c7; }
        .footer-links h4, .footer-contact h4 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: var(--primary-gold); }
        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #bdc3c7;
        }
        .footer-contact i {
            margin-right: 15px;
            color: var(--primary-gold);
            width: 20px;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #95a5a6;
            font-size: 0.95rem;
        }

        /* ====== ANIMATIONS ====== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        .animate-on-scroll.visible {
            opacity: 1;
        }

        /* ====== RESPONSIVE DESIGN ====== */
        @media (max-width: 992px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.4rem; }
            .hero { padding: 150px 0 100px; }
            .team-container { flex-direction: column; max-width: 600px;}
            .team-img { flex: 0 0 250px; width: 100%; }
            .form-row { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            nav { 
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--white);
                box-shadow: var(--shadow);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
            }
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            nav ul li { margin: 0 0 20px 0; }
            .mobile-menu-btn { display: block; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .hero-stats { gap: 20px; }
            .stat-item { min-width: 170px; padding: 20px;}
            .stat-num { font-size: 2.2rem;}
            .whatsapp-button {
                width: 60px;
                height: 60px;
                font-size: 1.7rem;
                bottom: 20px;
                right: 20px;
            }
        }
        @media (max-width: 576px) {
            section { padding: 60px 0; }
            .container { padding: 0 15px; }
            .hero { padding: 130px 0 80px; }
            .hero p { font-size: 1.1rem; }
            .treatment-card, .about-section, .home-section { padding: 25px; }
            .appointment-form-container { width: 95%; }
            .appointment-form { padding: 20px; }
        }


        /* ================================
   Cancer Detail Page Styling ONLY
   ================================ */

.cancer-section {
    padding: 90px 0;
}

.cancer-section.alt {
    background: #f9f9f9;
}

.cancer-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    max-width: 1100px;
    margin: 0 auto;
}

.cancer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.cancer-tile {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border-top: 5px solid var(--primary-gold);
}

.cancer-tile h3 {
    margin-bottom: 15px;
}

.cancer-highlight {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: #ffffff;
    padding: 70px 50px;
    border-radius: 26px;
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

.cancer-highlight h2,
.cancer-highlight p {
    color: #ffffff;
}

.cancer-cta {
    text-align: center;
    padding-top: 40px;
}

/* ===== Healthcare Tick List ===== */
.health-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.health-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.health-list li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: var(--primary-gold-light);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}


/* =====================================================
   FINAL RESPONSIVE REFINEMENTS – KING'S CANCER CENTER
   ===================================================== */

/* -------------------------
   HERO SPLIT RESPONSIVE
-------------------------- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        margin-top: 30px;
    }

    .hero-image img {
        max-width: 320px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-split {
        padding: 90px 0 30px;
    }

    .hero-container {
        gap: 25px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-width: 260px;
    }
}

/* -------------------------
   HERO GAP FIX (NAVBAR)
-------------------------- */
@media (max-width: 768px) {
    .hero {
        padding: 110px 0 40px !important;
    }

    .hero .container {
        padding-top: 40px !important;
    }
}

/* -------------------------
   HERO SPECIALTIES
-------------------------- */
@media (max-width: 768px) {
    .hero-exclusive {
        font-size: 1.05rem;
        margin-top: 16px;
        margin-bottom: 10px;
    }

    .hero-specialties {
        font-size: 0.9rem;
        gap: 6px;
        line-height: 1.5;
    }
}

/* -------------------------
   TREATMENTS GRID
-------------------------- */
@media (max-width: 992px) {
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .treatments-grid {
        grid-template-columns: 1fr;
    }
}




/* -------------------------
   ABOUT & KCC @ HOME
-------------------------- */
@media (max-width: 992px) {
    .about-section,
    .home-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .about-section,
    .home-section {
        padding: 25px;
    }

    .about-section h2,
    .home-section h2 {
        text-align: center;
    }
}

/* -------------------------
   KCC @ HOME SERVICES
-------------------------- */
@media (max-width: 992px) {
    .home-services {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .home-services {
        grid-template-columns: 1fr !important;
    }

    .service-card {
        padding: 20px;
    }
}

/* -------------------------
   CANCER DETAIL PAGES
-------------------------- */
@media (max-width: 768px) {
    .cancer-card {
        padding: 30px 22px;
    }

    .cancer-grid {
        grid-template-columns: 1fr;
    }

    .cancer-highlight {
        padding: 45px 25px;
        border-radius: 18px;
    }
}

/* -------------------------
   GLOBAL TYPOGRAPHY
-------------------------- */
@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    p {
        font-size: 1rem;
    }
}




/* =========================
   HERO IMAGE GAP FIX (MOBILE)
========================= */
@media (max-width: 768px) {
    .hero-split {
        padding-bottom: 0 !important;
    }

    .hero-container {
        align-items: flex-end;
    }

    .hero-image {
        margin-bottom: -6px; /* pulls image down cleanly */
    }

    .hero-image img {
        display: block;
    }
}

/* =========================
   HERO BUTTON ALIGNMENT FIX
========================= */
@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center !important;
        align-items: center;
        text-align: center;
    }

    
}




/* =========================
   TEAM SLIDER
========================= */






/* ARROWS */
.team-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gold);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    box-shadow: var(--shadow);
}


.team-arrow.left {
    left: 10px;
}

.team-arrow.right {
    right: 10px;
}

.team-arrow:hover {
    background: var(--primary-gold-dark);
}

/* MOBILE */
@media (max-width: 768px) {
    .team-arrow {
        width: 38px;
        height: 38px;
    }

    .team-arrow.left {
        left: -10px;
        
    }

    .team-arrow.right {
        right: -10px;
    }
}


/* =========================
   TEAM SLIDER CORE FIX
========================= */

.team-slider-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.team-slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.team-slide {
    min-width: 100%;
    flex-shrink: 0;
}




/* =========================
   HERO BUTTON STACK (MOBILE)
========================= */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;   /* 🔥 stack vertically */
        width: 100%;
        gap: 14px;
    }

    .hero-buttons .btn {
        width: 100%;              /* 🔥 one button per row */
        max-width: 320px;         /* optional: keeps it premium */
        margin: 0 auto;
    }
}
/* =========================
   HERO MOBILE REFINEMENTS
========================= */
@media (max-width: 768px) {

    /* 1️⃣ BUTTONS: fit to content, stacked nicely */
    .hero-buttons {
        flex-direction: column;          /* stack buttons */
        gap: 14px;                       /* clean spacing */
        width: auto;                     /* no stretching */
        max-width: none;
        margin-top: 22px;                /* space from oncology text */
    }

    .hero-buttons .btn {
        width: auto;                     /* 🔥 fit content */
        padding: 14px 26px;              /* tighter, premium */
        align-self: center;              /* perfectly centered */
    }

    /* 2️⃣ GAP between oncology list & buttons */
    .hero-specialties {
        margin-bottom: 20px;             /* adds breathing space */
    }

    /* 3️⃣ REDUCE GAP before doctor image */
    .hero-container {
        gap: 16px;                       /* less space overall */
    }

    .hero-image {
        margin-top: 10px;                /* pull image up */
        margin-bottom: -8px;             /* seamless hero ending */
    }

    .hero-image img {
        max-width: 260px;
        height: auto;
        display: block;
    }

    /* Reduce bottom padding of hero */
    .hero-split {
        padding-bottom: 0 !important;
    }
}

/* =========================
   TEAM SLIDER (DESKTOP + MOBILE SAME BEHAVIOR)
========================= */



.team-slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.team-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

/* Mobile layout */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .team-img {
        width: 100%;
        height: 300px;
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .team-info {
        padding: 22px 18px;
        text-align: center;
    }
}
/* =========================
   TEAM SLIDER – DESKTOP LOGIC ON MOBILE
========================= */
@media (max-width: 768px) {

    /* Slider wrapper */
    .team-slider-wrapper {
        width: 100%;
        overflow: hidden;
        padding: 0 16px;
    }

    /* Slider row */
    .team-slider {
        display: flex;
        width: 100%;
        transition: transform 0.6s ease-in-out;
    }

    /* Each slide = full screen */
    .team-slide {
        width: 100%;
        min-width: 100%;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
    }

    /* Card */
    .team-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        flex-direction: column;
        border-radius: 18px;
        overflow: hidden;
    }

    /* Image */
    .team-img {
        width: 100%;
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
        padding-top: 18px;
        display: flex;
        justify-content: center;
    }

    .team-img img {
        width: 100%;
        max-width: 260px;
        height: auto;
        display: block;
    }

    /* Text */
    .team-info {
        padding: 22px 18px 28px;
        text-align: center;
    }

    /* Arrows */
    .team-arrow {
        top: 35%;
        width: 36px;
        height: 36px;
    }

    .team-arrow.left { left: 8px; }
    .team-arrow.right { right: 8px; }
}
