/* 
===============================================
MASTER STYLESHEET
Theme: Supreme Speciality Hospitals Premium
===============================================
*/

:root {
    --primary-blue: #0066cc;
    --secondary-blue: #0a2540;
    --orange: #e65c00;
    --orange-red: #EF4924;
    --dark-black: #0a2540;
    --medical-red: #c026d3;
    --pink-accent: #db2777;
    --bright-blue: #2563eb;
    --white: #FFFFFF;
    --soft-light: #f8fafc;
    --text-color: #334155;
    --text-light: #64748b;
    --gradient-blue: linear-gradient(135deg, var(--primary-blue), #0a5ea8);
    --gradient-orange: linear-gradient(135deg, var(--orange), var(--orange-red));
    --gradient-pink: linear-gradient(135deg, var(--pink-accent), #be185d);
    --gradient-cyan: linear-gradient(135deg, var(--bright-blue), #0284c7);

    /* New premium design tokens */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-blue: 0 4px 12px rgba(10, 37, 64, 0.05);
    --glow-orange: 0 4px 12px rgba(10, 37, 64, 0.05);
    --glow-pink: 0 4px 12px rgba(10, 37, 64, 0.05);
    --glow-cyan: 0 4px 12px rgba(10, 37, 64, 0.05);
    --glass-card: #ffffff;
    --glass-border: 1px solid #e2e8f0;
    --shadow-soft: 0 2px 12px rgba(10, 37, 64, 0.04);
    --shadow-card: 0 4px 20px rgba(10, 37, 64, 0.06);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: transparent; font-family: 'Inter', sans-serif;}

/* Utility Classes */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; position: relative; }
.section-padding { padding: 100px 0; }
.bg-soft { background-color: var(--soft-light); }
.bg-dark { background-color: var(--dark-black); }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.flex-align { display: flex; align-items: center; gap: 1rem; }

/* Colors Utility */
.text-blue { color: var(--primary-blue); }
.text-orange { color: var(--orange); }
.text-red { color: var(--medical-red); }
.text-pink { color: var(--pink-accent); }
.text-cyan { color: var(--bright-blue); }
.text-accent { color: var(--secondary-blue); }
.text-white { color: var(--white) !important; }
.bg-gradient-blue { background: var(--gradient-blue); color: #fff;}
.bg-gradient-orange { background: var(--gradient-orange); color: #fff;}
.bg-gradient-pink { background: var(--gradient-pink); color: #fff;}
.bg-gradient-cyan { background: var(--gradient-cyan); color: #fff;}
.bg-gradient-blue-dark { background: linear-gradient(135deg, #0A192F, var(--primary-blue)); color: #fff;}
.bg-blue { background-color: var(--primary-blue); }
.bg-orange { background-color: var(--orange); }
.bg-pink { background-color: var(--pink-accent); }

/* Grid system helpers */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.row.align-center {
    align-items: center;
}
.row.gap-5 {
    gap: 3rem;
}
.row > [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}
@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}
@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
    .col-lg-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
    .col-lg-5 {
        flex: 0 0 41.666667% !important;
        max-width: 41.666667% !important;
    }
    .col-lg-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    .col-lg-7 {
        flex: 0 0 58.333333% !important;
        max-width: 58.333333% !important;
    }
    .col-lg-8 {
        flex: 0 0 66.666667% !important;
        max-width: 66.666667% !important;
    }
    .col-lg-9 {
        flex: 0 0 75% !important;
        max-width: 75% !important;
    }
    .col-lg-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Spacing and Brand Utility classes */
.text-primary { color: var(--primary-blue, #0066cc) !important; }
.fw-bold { font-weight: 700 !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-center { align-items: center !important; }

/* Margin and Padding Utilities */
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.me-5 { margin-right: 3rem !important; }

.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 1rem !important; }
.mr-4 { margin-right: 1.5rem !important; }
.mr-5 { margin-right: 3rem !important; }

.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 1rem !important; }
.ml-4 { margin-left: 1.5rem !important; }
.ml-5 { margin-left: 3rem !important; }

.mt-1 { margin-top: 0.25rem !important; }

/* Brand Dark Blue Section Styling */
.bg-dark-blue {
    background-color: var(--secondary-blue, #0a2540) !important;
    color: #ffffff;
}
.bg-dark-blue .text-accent {
    color: #ff8c00 !important; /* Premium Amber contrast on dark background */
}
.bg-dark-blue h1,
.bg-dark-blue h2,
.bg-dark-blue h3,
.bg-dark-blue h4,
.bg-dark-blue h5,
.bg-dark-blue h6,
.bg-dark-blue .light-title,
.bg-dark-blue .dark-title {
    color: #ffffff !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-blue);
}

.btn-glow {
    box-shadow: 0 10px 25px rgba(0, 84, 169, 0.4);
}
.btn-glow:hover {
    box-shadow: 0 15px 35px rgba(0, 84, 169, 0.6);
    transform: translateY(-2px);
}

.btn-glow-white {
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-glass:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-white {
    background: var(--white);
    color: var(--medical-red);
}
.btn-white:hover {
    background: var(--dark-black);
    color: var(--white);
}

.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 15px 40px; font-size: 1.125rem; }
.btn-outline-white { border: 1px solid #fff; color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--primary-blue); }

.full-width { width: 100%; }

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
}

.dark-shadow { box-shadow: 0 15px 35px rgba(0,0,0,0.05); }

/* Section Title */
.subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-title h2 { font-size: 2.5rem; color: var(--dark-black); margin-bottom: 20px;}
.section-title.light-title h2 { color: var(--white); }
.title-line {
    height: 4px;
    width: 60px;
    background: var(--primary-blue);
    border-radius: 2px;
    margin-top: 10px;
}
.section-desc { font-size: 1.1rem; color: var(--text-light); max-width: 700px; }


/* Header CSS moved to layout/header.css */


/* ================= HERO SECTION (FULL BLEED VIDEO STYLE) ================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding: 0;
    background: transparent;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 37, 64, 0.75) 0%, rgba(10, 37, 64, 0.55) 45%, rgba(10, 37, 64, 0.15) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content-wrapper {
    max-width: 750px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    color: var(--white);
}

.hero-award-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-subtext {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    line-height: 1.75;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
}

.btn-capsule-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 84, 169, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.btn-capsule-blue:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 84, 169, 0.35);
    color: var(--white);
}

.btn-capsule-blue .arrow-symbol {
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-capsule-blue:hover .arrow-symbol {
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .hero-section {
        padding-top: 110px;
        padding-bottom: 60px;
    }
    .hero-bg-video, .hero-video-overlay {
        top: 75px;
        height: calc(100% - 75px);
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-award-title {
        font-size: 1.4rem;
    }
    .hero-subtext {
        font-size: 1.0rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-award-title {
        font-size: 1.15rem;
    }
    .hero-subtext {
        font-size: 0.88rem;
    }
    .btn-capsule-blue {
        padding: 11px 22px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}


/* ================= HERO SHOWCASE ================= */
.hero-showcase {
    background: var(--white);
    padding: 60px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

.rounded-20 {
    border-radius: 20px;
}

/* ================= ABOUT US SECTION ================= */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.blue-backdrop-circle {
    position: absolute;
    top: -5%;
    left: 10%;
    width: 90%;
    padding-bottom: 90%; /* perfect circle */
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.about-main-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    /* Creating a custom blob/curve mask inspired by the screenshot */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.about-main-img:hover {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .blue-backdrop-circle {
        left: 5%;
    }
}

/* ================= EXPERTISE (ULTRA-PREMIUM SLIDING IMAGE REVEAL CARDS) ================= */
.flip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.flip-card {
    background-color: var(--white) !important;
    height: auto !important;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(0, 84, 169, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 84, 169, 0.02) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex;
    flex-direction: column;
}

.flip-card:hover {
    transform: translateY(-6px) !important;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Front card behaves as the cover image container at the top */
.flip-card-front {
    position: relative !important;
    width: 100% !important;
    height: 190px !important;
    border-radius: 24px 24px 0 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
    padding: 0 !important;
    overflow: hidden;
    transform: none !important;
    opacity: 1 !important;
    transition: transform 0.5s ease !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.flip-card:hover .flip-card-front {
    transform: scale(1.05) !important;
}

.front-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%) !important;
    z-index: 1;
}

/* Hide front text overlay container since it's now flat */
.front-content-box {
    display: none !important;
}

/* Specialty shadow glows on hover - replaced with simple clean clinical card lift and border highlight */
.flip-card:hover {
    box-shadow: var(--shadow-card) !important;
    border-color: rgba(0, 102, 204, 0.2) !important;
}

/* Back card behaves as the text details container at the bottom */
.flip-card-back {
    position: relative !important;
    transform: none !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    padding: 24px 24px 28px 24px !important;
    background: var(--white) !important;
    box-shadow: none !important;
    border-radius: 0 0 24px 24px !important;
    overflow: visible !important;
}

/* Department accent line */
.flip-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    z-index: 2;
}

.flip-card:has(.front-psychiatry) .flip-card-back::before { background: #00C6FF; }
.flip-card:has(.front-gastroenterology) .flip-card-back::before { background: var(--orange); }
.flip-card:has(.front-cardiology) .flip-card-back::before { background: var(--pink-accent); }
.flip-card:has(.front-gynecology) .flip-card-back::before { background: var(--secondary-blue); }
.flip-card:has(.front-orthopedics) .flip-card-back::before { background: var(--bright-blue); }
.flip-card:has(.front-dental) .flip-card-back::before { background: var(--primary-blue); }
.flip-card:has(.front-pediatrics) .flip-card-back::before { background: var(--orange); }
.flip-card:has(.front-urology) .flip-card-back::before { background: #14B8A6; }

.back-overlay {
    display: none !important;
}

.back-content {
    display: block !important;
    text-align: left !important;
    width: 100% !important;
    height: auto !important;
}

.back-content h3 {
    opacity: 1 !important;
    transform: none !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #073a76 !important;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -0.3px !important;
}

.back-content p {
    opacity: 1 !important;
    transform: none !important;
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    color: #4a5568 !important;
    margin-bottom: 20px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px; /* Fix line clamp height */
    max-width: none !important;
}

.back-content .btn {
    opacity: 1 !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center !important;
    background: transparent !important;
    border: none !important;
    color: var(--primary-blue) !important;
    font-weight: 600 !important;
    padding: 0 !important;
    font-size: 0.92rem !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-radius: 0 !important;
}

.back-content .btn::after {
    content: ' →';
    font-size: 1.1rem;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.back-content .btn:hover {
    color: #ff8c00 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.back-content .btn:hover::after {
    transform: translateX(4px);
}


/* ================= DOCTORS GRID ================= */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media (max-width: 1200px) {
    .doctors-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .doctors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .doctors-grid { grid-template-columns: 1fr; }
}

.doctor-card {
    background: var(--white);
    border-radius: 24px;
    padding: 35px 28px;
    box-shadow: 0 10px 40px rgba(0, 84, 169, 0.03);
    border: 1px solid rgba(0, 84, 169, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    text-align: left;
}

.doctor-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), #00c6ff);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 84, 169, 0.12);
    border-color: rgba(0, 84, 169, 0.25);
}

.doctor-card:hover::after {
    height: 6px;
    background: linear-gradient(90deg, #ff8c00, #ffb300);
    opacity: 1;
}

.doc-icon-badge {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: rgba(0, 84, 169, 0.05);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.doc-icon-badge img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.doc-icon-badge--psychiatry {
    width: 96px;
    height: 96px;
    background: transparent !important;
    box-shadow: none !important;
}

.doc-icon-badge--psychiatry img {
    width: 80px;
    height: 80px;
}

.doctor-card:hover .doc-icon-badge--psychiatry {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.doc-icon-badge--palliative {
    width: 96px;
    height: 96px;
    background: transparent !important;
    box-shadow: none !important;
}

.doc-icon-badge--palliative img {
    width: 80px;
    height: 80px;
}

.doctor-card:hover .doc-icon-badge--palliative {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.doc-icon-badge--orthopedics {
    width: 96px;
    height: 96px;
    background: transparent !important;
    box-shadow: none !important;
}

.doc-icon-badge--orthopedics img {
    width: 80px;
    height: 80px;
}

.doctor-card:hover .doc-icon-badge--orthopedics {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.doc-icon-badge--diabetologist {
    width: 96px;
    height: 96px;
    background: transparent !important;
    box-shadow: none !important;
}

.doc-icon-badge--diabetologist img {
    width: 80px;
    height: 80px;
}

.doctor-card:hover .doc-icon-badge--diabetologist {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.doc-icon-badge--dermatologist {
    width: 96px;
    height: 96px;
    background: transparent !important;
    box-shadow: none !important;
}

.doc-icon-badge--dermatologist img {
    width: 80px;
    height: 80px;
}

.doctor-card:hover .doc-icon-badge--dermatologist {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.doc-icon-badge--general-surgeon {
    width: 96px;
    height: 96px;
    background: transparent !important;
    box-shadow: none !important;
}

.doc-icon-badge--general-surgeon img {
    width: 80px;
    height: 80px;
}

.doctor-card:hover .doc-icon-badge--general-surgeon {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.doc-icon-badge--gynecologist {
    width: 96px;
    height: 96px;
    background: transparent !important;
    box-shadow: none !important;
}

.doc-icon-badge--gynecologist img {
    width: 80px;
    height: 80px;
}

.doctor-card:hover .doc-icon-badge--gynecologist {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.doc-icon-badge--gastroenterologist {
    width: 96px;
    height: 96px;
    background: transparent !important;
    box-shadow: none !important;
}

.doc-icon-badge--gastroenterologist img {
    width: 80px;
    height: 80px;
}

.doctor-card:hover .doc-icon-badge--gastroenterologist {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.doc-icon-badge--general-medicine {
    width: 96px;
    height: 96px;
    background: transparent !important;
    box-shadow: none !important;
}

.doc-icon-badge--general-medicine img {
    width: 80px;
    height: 80px;
}

.doctor-card:hover .doc-icon-badge--general-medicine {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.doctor-card:hover .doc-icon-badge {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 84, 169, 0.2);
}

.doctor-card h4 {
    font-size: 1.3rem;
    color: #073a76;
    margin: 0 0 6px 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.doctor-card .doc-spec {
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 84, 169, 0.04);
    border-radius: 50px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(0, 84, 169, 0.03);
    text-align: center;
}

.doctor-card:hover .doc-spec {
    background: rgba(0, 84, 169, 0.08);
    color: #00458B;
}

.doctor-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.doctor-card .btn {
    transition: var(--transition-fast);
}

.doc-overlay {
    display: none;
}

.doctor-card .doc-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.doc-info h4 { font-size: 1.3rem; margin-bottom: 6px; }

.swiper-doctors .swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiper-doctors.is-paused .swiper-wrapper {
    transition-duration: 0ms !important;
}

.swiper-consultants .swiper-wrapper {
    justify-content: center;
}

@media (max-width: 576px) {
    .swiper-consultants .swiper-wrapper {
        justify-content: flex-start;
    }
}


/* ================= SERVICES HIGHLIGHT ================= */
.services-highlight {
    position: relative;
    overflow: hidden;
}
.background-curves {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(4, 107, 210, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(238, 124, 27, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-glow-card {
    background: var(--white);
    border: 1px solid rgba(0, 84, 169, 0.08);
    border-radius: 24px;
    padding: 0;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 84, 169, 0.04);
}

.service-glow-card::before {
    display: none !important;
}

.service-glow-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-blue);
}

.service-glow-card.highlight-card:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--orange);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-glow-card:hover .service-card-img {
    transform: scale(1.08);
}

.card-content {
    padding: 35px 30px 30px 30px;
}

.card-content h3 { 
    font-size: 1.4rem; 
    margin-bottom: 12px; 
    color: var(--dark-black);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.card-content p { 
    color: var(--text-light); 
    margin-bottom: 25px; 
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-glow-card .link-arrow {
    color: var(--primary-blue);
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.service-glow-card.highlight-card .link-arrow {
    color: var(--medical-red);
}

.link-arrow i { transition: var(--transition-fast); }
.service-glow-card:hover .link-arrow i { transform: translateX(6px); }


/* ================= ELEVATING HEALING SPLIT ================= */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.dec-border::after {
    content: '';
    position: absolute;
    top: -15px; left: -15px;
    width: 100%; height: 100%;
    border: 3px solid var(--primary-blue);
    border-radius: 20px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: 30px; right: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 84, 169, 0.1), 0 0 1px rgba(0, 84, 169, 0.15);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 5px solid var(--orange);
    transition: var(--transition-smooth);
}

.experience-badge:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(238, 124, 27, 0.15), 0 0 1px rgba(238, 124, 27, 0.25);
    border-left-color: var(--orange-red);
}

.experience-badge h3 { font-size: 2.5rem; color: var(--primary-blue); margin: 0; }
.experience-badge span { font-weight: 600; color: var(--text-light); }

.excellence-section h2 {
    color: var(--orange-red);
}

.features-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background-color: rgba(0, 84, 169, 0.05);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 84, 169, 0.03);
    transition: var(--transition-smooth);
}

.feature-svg-icon {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    stroke-width: 2.2;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item:hover .feature-icon-wrapper {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: var(--glow-blue);
    border-color: transparent;
}

.feature-item:hover .feature-svg-icon {
    transform: scale(1.15) rotate(10deg);
}

.feature-item-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-item-content h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.feature-item-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

.emergency-highlight-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    margin-top: 40px !important;
}

.emergency-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.emergency-title span {
    display: block;
}

.emergency-title .text-orange {
    color: var(--orange-red) !important;
}

.emergency-title .text-blue {
    color: var(--primary-blue) !important;
}

.emergency-desc {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    max-width: 580px;
    margin: 0;
}

@keyframes phonePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 8px rgba(239, 73, 36, 0.5)); }
    100% { transform: scale(1); }
}

.emergency-phone-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px !important;
    padding: 15px 28px;
    background: rgba(239, 73, 36, 0.04);
    border-radius: 50px;
    border: 1px dashed rgba(239, 73, 36, 0.2);
    width: fit-content;
    transition: var(--transition-smooth);
}

.emergency-phone-row:hover {
    background: rgba(239, 73, 36, 0.07);
    border: 1px solid rgba(239, 73, 36, 0.35);
    box-shadow: 0 10px 25px rgba(239, 73, 36, 0.06);
}

.emergency-phone-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-blue);
    flex-shrink: 0;
    animation: phonePulse 2s infinite ease-in-out;
}

.emergency-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange-red);
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    line-height: 1;
    transition: var(--transition-fast);
}

.emergency-number:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(0, 84, 169, 0.2);
}


/* ================= WELLNESS SECTION ================= */
.wellness-section {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

.wellness-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.wellness-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--text-color);
    max-width: 750px;
    line-height: 1.6;
}

.wellness-container {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.wellness-list {
    border-left: none;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 30px 0;
    margin: 0;
    counter-reset: wellness-counter;
}

.wellness-list::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    border-radius: 2px;
    box-shadow: none;
}

.wellness-card-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.wellness-item {
    position: relative;
    border-radius: 16px;
    background: #ffffff;
    border: none;
    box-shadow: 0 12px 32px rgba(10, 37, 64, 0.12), 0 4px 12px rgba(10, 37, 64, 0.08);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    overflow: hidden;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wellness-item::before {
    display: none !important;
}

.wellness-item::after {
    display: none !important;
}

.wellness-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.3) 0%, rgba(10, 37, 64, 0.6) 70%, rgba(10, 37, 64, 0.85) 100%);
    transition: var(--transition-smooth);
    z-index: 1;
}

.wellness-content {
    position: relative;
    z-index: 2;
    padding: 30px 25px;
    width: 100%;
}

.wellness-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 12px 0;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
    line-height: 1.3;
}

.wellness-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

/* Hover effects */
.wellness-item:hover {
    box-shadow: 0 20px 48px rgba(10, 37, 64, 0.18), 0 8px 20px rgba(10, 37, 64, 0.12);
    transform: translateY(-8px);
}

.wellness-item:hover .wellness-overlay {
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.4) 0%, rgba(10, 37, 64, 0.65) 70%, rgba(10, 37, 64, 0.9) 100%);
}

.wellness-item:hover h3 {
    color: var(--white);
    transform: translateY(-2px);
}

.wellness-item:hover p {
    color: rgba(255, 255, 255, 1);
}

.wellness-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 750px;
    line-height: 1.6;
    margin-top: 20px;
}


/* ================= WHY CHOOSE US ================= */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.04);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.benefit-card::after {
    display: none !important;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-card);
}

.benefit-card i {
    margin-bottom: 20px;
    display: inline-block;
    color: var(--primary-blue);
    transition: var(--transition-smooth);
}

.benefit-card:hover i {
    transform: translateY(-2px);
    color: var(--orange);
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Premium / Elite Benefit Layout Definitions */
.benefit-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card-elite {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.04);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card-elite:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-card);
}

/* Glassmorphic theme for benefit-card-elite in dark sections */
.text-white .benefit-card-elite,
.bg-dark-blue .benefit-card-elite {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    color: #ffffff !important;
}
.text-white .benefit-card-elite:hover,
.bg-dark-blue .benefit-card-elite:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2) !important;
}
.text-white .benefit-card-elite i,
.bg-dark-blue .benefit-card-elite i {
    color: #ff8c00 !important; /* Premium Amber accent */
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: inline-block;
}
.text-white .benefit-card-elite h4,
.bg-dark-blue .benefit-card-elite h4 {
    color: #ffffff !important;
    margin-top: 10px;
    font-size: 1.25rem;
}
.text-white .benefit-card-elite p,
.bg-dark-blue .benefit-card-elite p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
}


/* ================= EMERGENCY BANNER ================= */
.emergency-banner {
    background: var(--secondary-blue);
    padding: 12px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    border-top: 3px solid var(--orange);
    overflow: hidden;
}

.emergency-banner h2 {
    font-size: 1.35rem !important;
    line-height: 1.2;
}

.emergency-banner p {
    font-size: 0.9rem !important;
}

.emergency-banner::after {
    display: none !important;
}

@keyframes bannerPatternFlow {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

.emergency-banner:hover::after {
    animation: bannerPatternFlow 15s linear infinite;
}


/* ================= TESTIMONIALS ================= */
.testimonial-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.video-card {
    transition: 0.3s;
    background: var(--white);
}
.video-card:hover {
    transform: translateY(-10px);
}
.video-wrapper iframe {
    border-radius: 16px 16px 0 0;
}


/* ================= FAQ ACCORDION ================= */
.max-w-800 { max-width: 800px; }
.accordion-item {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}
.accordion-header {
    width: 100%; text-align: left;
    padding: 20px 25px;
    font-size: 1.1rem; font-weight: 600; font-family: 'Outfit', sans-serif;
    color: var(--dark-black);
    display: flex; justify-content: space-between; align-items: center;
}
.accordion-header i { transition: 0.3s; color: var(--primary-blue); }
.accordion-header.active i { transform: rotate(45deg); color: var(--orange); }
.accordion-content {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--soft-light);
}
.accordion-content p { padding: 0 25px 20px 25px; margin: 0; }


/* ================= CONTACT SECTION ================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.info-block {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 12px;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 84, 169, 0.05);
}
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.info-block:hover .icon-box {
    transform: scale(1.1) rotate(8deg);
}
.info-block .icon-box.bg-blue {
    box-shadow: 0 8px 20px rgba(0, 84, 169, 0.35);
}
.info-block .icon-box.bg-orange {
    box-shadow: 0 8px 20px rgba(238, 124, 27, 0.35);
}
.info-block .icon-box.bg-pink {
    box-shadow: 0 8px 20px rgba(255, 0, 94, 0.35);
}
.info-block h5 { margin-bottom: 5px; font-size: 1.2rem;}

.premium-form { background: var(--white); padding: 40px; border-radius: 16px; }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.premium-form input, .premium-form textarea {
    width: 100%; padding: 15px 20px; border: 1px solid #E5E7EB;
    border-radius: 8px; font-family: inherit; font-size: 1rem;
    transition: 0.3s; background: var(--soft-light);
}
.premium-form textarea { margin-top: 20px; resize: vertical; }
.premium-form input:focus, .premium-form textarea:focus {
    border-color: var(--primary-blue);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0,84,169,0.1);
}
.box-shadow { box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.border-radius { border-radius: 20px; }


/* FOOTER CSS moved to layout/footer.css */

/* ================= FIXED FLOATING CTA & MODAL ================= */
.floating-cta {
    position: fixed; bottom: 95px; right: 30px; z-index: 99;
    background: var(--primary-blue); color: white;
    padding: 15px 30px; border-radius: 50px;
    font-weight: 600; font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(0,84,169,0.5);
    display: flex; align-items: center; gap: 10px;
    transition: 0.3s; overflow: visible;
}
.floating-cta:hover { background: var(--secondary-blue); transform: translateY(-5px); }
.pulse-ring {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50px; z-index: -1; animation: pulseRing 2s infinite;
}

.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    z-index: 10000; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.4s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: white; border-radius: 20px; width: 100%; max-width: 500px;
    padding: 30px; position: relative; transform: translateY(50px) scale(0.9);
    transition: 0.4s;
    max-height: 85vh;
    overflow-y: auto;
}
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.close-modal {
    position: absolute; top: 20px; right: 20px; font-size: 1.5rem;
    color: var(--text-light); transition: 0.3s;
}
.close-modal:hover { color: var(--medical-red); transform: rotate(90deg); }
.modal-header h3 { font-size: 1.8rem; margin-bottom: 10px; }
.form-group { margin-bottom: 20px; }
.appointment-form input, .appointment-form select, .appointment-form textarea {
    width: 100%; padding: 15px; border: 1px solid #E5E7EB; border-radius: 8px; font-family: inherit;
    background: var(--soft-light);
}


/* ================= ANIMATIONS ================= */
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }
.pulse { animation: pulse 2s infinite; }
@keyframes pulseStrong { 0% { box-shadow: 0 0 0 0 rgba(205,32,31,0.7); } 70% { box-shadow: 0 0 0 20px rgba(205,32,31,0); } 100% { box-shadow: 0 0 0 0 rgba(205,32,31,0); } }
.pulse-strong { border-radius: 50%; animation: pulseStrong 2s infinite; }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(0,84,169,0.7); } 70% { box-shadow: 0 0 0 20px rgba(0,84,169,0); } 100% { box-shadow: 0 0 0 0 rgba(0,84,169,0); } }

/* Scroll Reveal Classes */
.fade-up { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.zoom-in { opacity: 0; transform: scale(0.9); transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal-text { opacity: 0; transform: translateY(20px); animation: fadeUpText 1s ease forwards 0.3s; }
.active.fade-up, .active.zoom-in { opacity: 1; transform: translate(0) scale(1); }

@keyframes fadeUpText { to { opacity: 1; transform: translateY(0); } }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }


/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
    .services-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .split-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .testimonial-video-grid { grid-template-columns: 1fr; }
    .wellness-section { padding: 80px 0; }
    .wellness-main-title { font-size: 2rem; }
    .wellness-subtitle { font-size: 1.05rem; }
}

@media (max-width: 1200px) {
    .nav-list {
        position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
        background: var(--white); flex-direction: column; padding-top: 100px;
        transition: 0.4s; box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        align-items: flex-start; padding-left: 30px;
    }
    .nav-list.active { right: 0; }
    .nav-link { color: var(--dark-black) !important; font-size: 1.1rem; }
    .mobile-toggle { display: block; background: var(--primary-blue); padding: 10px; border-radius: 8px; display:flex;}
    .header-actions .btn { display: none; }
    
    .hero-content h1 { font-size: 2.5rem; }
    .services-grid, .benefits-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    
    .d-none { display: none; }
    .wrap-sm { flex-wrap: wrap; }
    .text-center-sm { text-align: center; justify-content: center; width: 100%;}
    .mt-sm-3 { margin-top: 1.5rem; }
    .wellness-list { padding-left: 0; gap: 20px; }
    .wellness-list::before { display: none; }
    .wellness-card-grid-modern { grid-template-columns: 1fr; gap: 20px; }
    .wellness-item { min-height: 320px; }
    .wellness-content { padding: 25px 20px; }
    .wellness-item h3 { font-size: 1.2rem; }
    .wellness-item:hover { transform: translateY(-4px); }
}

/* ================= PREMIUM CARDIOLOGY PAGE STYLES ================= */
.cardio-hero {
    background: linear-gradient(rgba(6, 17, 33, 0.75), rgba(6, 17, 33, 0.75)), url('https://supremehospitals.in/wp-content/uploads/2023/09/cardio-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 220px 0 140px;
    position: relative;
    color: white;
}

/* Auto-Scrolling Treatments Section */
.scroller-container {
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    background: #f8fbff;
}

.scroller-inner {
    display: flex;
    width: max-content;
    animation: scroll-vibe 40s linear infinite;
}

.scroller-inner:hover {
    animation-play-state: paused;
}

.scroller-inner .doctor-card {
    flex: 0 0 360px;
    margin-right: 30px;
}

.treatment-vibe-card {
    flex: 0 0 360px;
    margin-right: 30px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.treatment-vibe-card img {
    width: 100%;
    aspect-ratio: 1.1 / 1;
    object-fit: cover;
    object-position: center;
    background: #f8fbff;
    transition: transform 0.6s ease;
    border-bottom: 1px solid rgba(0,0,0,0.02);
}

.treatment-vibe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(22, 114, 255, 0.08);
    border-color: rgba(22, 114, 255, 0.1);
}

.treatment-vibe-card:hover img {
    transform: scale(1.05);
}

.treatment-vibe-content {
    padding: 24px;
}

.treatment-vibe-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
    text-align: center;
}

@keyframes scroll-vibe {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Consultants Section Premium */
.consultant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.consultant-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--accent-color);
    transition: var(--transition);
}

.consultant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.consultant-avatar {
    width: 120px;
    height: 120px;
    background: #eef5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2.5rem;
}

/* Department pages – make ALL consultants sections match the professional row style */
.department-page .consultants-section .consultant-grid{
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.department-page .consultants-section .consultant-card{
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "title action"
        "meta  action"
        "desc  action";
    column-gap: 18px;
    row-gap: 6px;
    padding: 22px 28px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    text-align: left;
    border-bottom: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.department-page .consultants-section .consultant-card:hover{
    background: #f8fbff;
    transform: translateY(-2px);
    border-color: rgba(0, 84, 169, 0.15);
    box-shadow: 0 15px 40px rgba(0, 84, 169, 0.08);
}
.department-page .consultants-section .consultant-avatar{
    display: none;
}
.department-page .consultants-section .consultant-card h3{
    grid-area: title;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b2547;
}
.department-page .consultants-section .consultant-card p.text-accent{
    grid-area: meta;
    margin: 0;
    font-weight: 700;
    color: #6b7280;
}
.department-page .consultants-section .consultant-card p.text-sm{
    grid-area: desc;
    margin: 0;
}
.department-page .consultants-section .consultant-card button.btn,
.department-page .consultants-section .consultant-card a.btn{
    grid-area: action;
    justify-self: end;
    align-self: center;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
}
@media (max-width: 768px){
    .department-page .consultants-section .consultant-card{
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "meta"
            "desc"
            "action";
    }
    .department-page .consultants-section .consultant-card button.btn,
    .department-page .consultants-section .consultant-card a.btn{
        justify-self: stretch;
        width: 100%;
        text-align: center;
    }
}

/* =========================
   Department pages – Home-like polish (global)
   ========================= */
.department-page{
    background: #f6f9fc;
}


/* Department pages – typography polish (Cardiology-like) */
.department-page .section-title h2{
    color: #0b5b9c;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.department-page .dept-faq-section p,
.department-page .psy-treatments p,
.department-page .psy-holistic p{
    color: #4a4a4a;
    line-height: 1.75;
    font-size: 16px;
}
.department-page .section-title .title-line{
    height: 3px;
    width: 60px;
    background: #0b5b9c;
    border-radius: 4px;
    opacity: 0.95;
}

/* Department pages – section cards consistency */
.department-page .psy-list-item{
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 28px rgba(6,18,37,0.06);
}

/* Keep department images visually smaller even on wide screens */
.department-page .dept-img-placeholder img,
.department-page .dept-media-card img{
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
@media (max-width: 768px){
    .department-page .dept-img-placeholder img,
    .department-page .dept-media-card img{
        max-width: 100%;
    }
}

/* Video Section */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   Department pages – Consultants (Cardiology style)
   Restore the original consultant card UI
   ========================================== */
.department-page .consultants-section .consultant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: none;
}

.department-page .consultants-section .consultant-card {
    display: block;
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--accent-color);
    transition: var(--transition);
}

.department-page .consultants-section .consultant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.department-page .consultants-section .consultant-avatar {
    display: flex;
    width: 120px;
    height: 120px;
    background: #eef5ff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.department-page .consultants-section .consultant-card a.btn,
.department-page .consultants-section .consultant-card button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 5px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .cardio-hero { padding: 160px 0 100px; }
    .treatment-vibe-card { flex: 0 0 300px; }
}


/* ================= DEPARTMENT PAGE PREMIUM STYLES ================= */
.dept-hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #061121 0%, #0a192f 50%, #112240 100%);
    color: var(--white);
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.banner-overlay-dept {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 84, 169, 0.2), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(238, 124, 27, 0.1), transparent 40%);
    opacity: 0.6;
}

.dept-hero .container { position: relative; z-index: 10; }

.dept-hero .breadcrumb {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.dept-hero .breadcrumb a { color: var(--white); transition: 0.3s; }
.dept-hero .breadcrumb a:hover { color: var(--orange); }
.dept-hero .breadcrumb span { margin: 0 12px; opacity: 0.4; }
.dept-hero .breadcrumb .current { color: var(--orange); font-weight: 700; }

.dept-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 1.25rem;
    max-width: 700px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* About Dept */
.about-dept-section { background: var(--white); }
.dept-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #f8fafc;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.placeholder-overlay {
    text-align: center;
    padding: 40px;
}

.placeholder-overlay i { color: var(--primary-blue); opacity: 0.15; margin-bottom: 20px; }
.placeholder-text {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-blue);
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services Dept Grid */
.bg-soft-blue { background: #f0f7ff; }
.services-dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-dept-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-dept-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 84, 169, 0.1);
    border-color: rgba(0, 84, 169, 0.1);
}

.service-dept-card i {
    width: 70px;
    height: 70px;
    background: rgba(0, 84, 169, 0.05);
    color: var(--primary-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: 0.4s;
}

.service-dept-card:hover i {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotateY(180deg);
}

/* Why Choose Dept */
.dept-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-strip {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-left: 5px solid var(--orange);
    transition: 0.3s;
}

.feature-strip:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transform: translateX(5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #fff8f3;
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Doctors CTA */
.bg-dark-gradient {
    background: linear-gradient(135deg, #061121 0%, #0a192f 100%);
}

.cta-inner h2 { font-size: 3rem; margin-bottom: 15px; }

/* Booking Card */
.booking-card {
    background: linear-gradient(to right, var(--primary-blue), #003d7c);
    padding: 60px 80px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 84, 169, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
    padding: 18px 40px;
    font-weight: 700;
}

.btn-white:hover {
    background: var(--orange);
    color: var(--white);
}

/* Health Check-Ups: Priority Booking button polish */
.hc-page .hc-cta-premium .hc-priority-btn{
    background: linear-gradient(135deg, #fff2e6 0%, #ffe0c6 100%);
    color: var(--hc-primary);
    border: 1px solid rgba(240, 129, 33, 0.35);
    box-shadow:
        0 18px 45px rgba(240, 129, 33, 0.22),
        0 10px 28px rgba(0, 69, 139, 0.18);
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 16px 44px;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.hc-page .hc-cta-premium .hc-priority-btn i{
    font-size: 1.05em;
}
.hc-page .hc-cta-premium .hc-priority-btn::after{
    content: "";
    position: absolute;
    top: -30%;
    left: -40%;
    width: 60%;
    height: 180%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
    transform: rotate(20deg);
    opacity: 0.75;
    transition: transform 0.7s ease, opacity 0.7s ease;
}
.hc-page .hc-cta-premium .hc-priority-btn:hover{
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ffe9d7 0%, #ffd3ac 100%);
    box-shadow:
        0 22px 55px rgba(240, 129, 33, 0.28),
        0 12px 34px rgba(0, 69, 139, 0.22);
}
.hc-page .hc-cta-premium .hc-priority-btn:hover::after{
    transform: translateX(220%) rotate(20deg);
    opacity: 0.9;
}
.hc-page .hc-cta-premium .hc-priority-btn:focus-visible{
    outline: 3px solid rgba(240, 129, 33, 0.55);
    outline-offset: 4px;
}

/* FAQ Premium Accordion */
.faq-accordion .accordion-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-accordion .accordion-header {
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-accordion .accordion-header:hover { background: #fcfdfe; color: var(--primary-blue); }
.faq-accordion .accordion-header.active { background: #f0f7ff; color: var(--primary-blue); }

.faq-accordion .icon { font-size: 0.9rem; transition: 0.3s; opacity: 0.5; }
.faq-accordion .accordion-header.active .icon { transform: rotate(45deg); opacity: 1; }

.faq-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f0f7ff;
}

.faq-accordion .accordion-content p {
    padding: 0 30px 25px;
    margin: 0;
    color: #64748b;
    line-height: 1.8;
}

/* Error State */
#error-container { min-height: 60vh; display: flex; align-items: center; background: #f8fafc; }

@media (max-width: 991px) {
    .dept-hero h1 { font-size: 3rem; }
    .booking-card { padding: 40px; }
}

@media (max-width: 768px) {
    .dept-hero h1 { font-size: 2.25rem; }
    .hero-subtext { font-size: 1.1rem; }
    .booking-card h2 { font-size: 1.8rem; }
}

/* ===============================================
   HEALTH CHECK UPS - PREMIUM REDESIGN
=============================================== */
.hc-page {
    --hc-primary: #00458b;
    --hc-accent: #f08121;
    --hc-soft-blue: #f4f8ff;
    --hc-dark: #061225;
}

.hc-top-padding {
    padding-top: 100px;
}

/* SECTION 1: HERO */
.hc-hero-premium {
    position: relative;
    height: 75vh;
    min-height: 550px;
    background: linear-gradient(90deg, rgba(6, 18, 37, 0.95) 0%, rgba(6, 18, 37, 0.5) 100%), 
                url('https://supremehospitals.in/wp-content/uploads/2023/08/doctor_online_medical_communication_with_patient_tablet_healthcare-scaled.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hc-hero-content {
    max-width: 700px;
    z-index: 10;
}

.hc-hero-premium h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.hc-hero-premium p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* SECTION 2: FACILITIES + FORM */
.hc-page #form.bg-soft-blue{
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 500px at 20% 10%, rgba(0,69,139,0.12), transparent 60%),
        radial-gradient(700px 420px at 85% 30%, rgba(240,129,33,0.10), transparent 55%),
        #f0f7ff;
}
.hc-page #form.bg-soft-blue > .container{ position: relative; z-index: 1; }

/* Use a reliable flex layout for the split section (instead of relying on undefined grid classes) */
.hc-page #form .row.align-center{
    display: flex;
    align-items: flex-start;
    gap: clamp(22px, 4vw, 64px);
}
.hc-page #form .row.align-center > [class*="col-"]{
    flex: 1 1 0 !important;
    max-width: 100% !important;
    min-width: 0;
}
@media (max-width: 992px){
    .hc-page #form .row.align-center{
        flex-direction: column;
        align-items: stretch;
    }
}

/* Make facility icons match the Health Check-Ups color system */
.hc-page #form .icon-circle{
    background: rgba(0, 69, 139, 0.10);
    color: var(--hc-primary);
}

.hc-page #form .section-title h2{
    color: var(--hc-dark);
    letter-spacing: -0.02em;
}
.hc-page #form .section-title .subtitle{
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 69, 139, 0.10);
    color: var(--hc-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Enquiry card: more premium + consistent spacing */
.hc-page #form .enquiry-card-premium{
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid rgba(0, 69, 139, 0.12);
    border-radius: 28px;
    padding: clamp(26px, 3vw, 44px);
    box-shadow: 0 28px 70px rgba(0, 69, 139, 0.14);
}
.hc-page #form .enquiry-card-premium h3{
    font-size: 1.65rem;
    letter-spacing: -0.01em;
    color: var(--hc-dark);
}
.hc-page #form .enquiry-card-premium p{
    color: rgba(6, 18, 37, 0.72);
}
.hc-page #form .enquiry-card-premium .btn{
    border-radius: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
}

@media (max-width: 576px){
    .hc-page #form.bg-soft-blue{ background: #f0f7ff; }
    .hc-page #form .enquiry-card-premium{ border-radius: 20px; }
}

.facilities-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 991px) {
    .facilities-split { grid-template-columns: 1fr; }
}

.facility-list-premium {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 576px) {
    .facility-list-premium { grid-template-columns: 1fr; }
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-left: 5px solid var(--hc-primary);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.facility-item:hover {
    transform: translateX(10px);
    background: var(--hc-soft-blue);
    box-shadow: 0 15px 40px rgba(0,69,139,0.08);
}

.facility-item i {
    color: var(--hc-accent);
    font-size: 1.3rem;
}

/* PREMIUM FORM CARD */
.enquiry-card-premium {
    background: white;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
    position: relative;
    /* Reduced overlap so the hero/background content isn't hidden */
    top: -30px;
    z-index: 20;
    border: 1px solid rgba(0,0,0,0.03);
}

@media (max-width: 991px) {
    .enquiry-card-premium { top: 0; margin-top: 40px; border-radius: 20px; padding: 30px; }
}

.hc-form-group {
    margin-bottom: 25px;
}

.hc-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--hc-dark);
    font-size: 0.95rem;
}

.hc-form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 14px;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: #fdfdfd;
}

.hc-form-control:focus {
    border-color: var(--hc-primary);
    outline: none;
    background: white;
    box-shadow: 0 0 0 5px rgba(0, 69, 139, 0.08);
}

/* Health Check-Ups: make <select> align with inputs */
select.hc-form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300458b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
    padding-right: 52px;
}

/* SECTION 3: PACKAGE CARDS */
.package-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.package-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.04);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid #f5f5f5;
}

.package-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 70px rgba(0,69,139,0.18);
    border-color: var(--hc-primary);
}

.package-header {
    background: var(--hc-primary);
    color: white;
    padding: 40px 25px;
    text-align: center;
    position: relative;
}

.package-header.women { background: #d81b60; }
.package-header.premium { background: var(--hc-dark); }
.package-header.diabetic { background: #00897b; }

.package-card h3 { font-size: 1.7rem; margin-bottom: 12px; color: white; font-weight: 700; }
.package-price { font-size: 2.2rem; font-weight: 800; font-family: 'Outfit', sans-serif; }
.package-price span { font-size: 1rem; opacity: 0.7; font-weight: 400; }

.package-body {
    padding: 35px;
    flex-grow: 1;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f8f8f8;
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-list li i { color: #2ecc71; font-size: 0.9rem; }

/* SECTION 4: SERVICE ICONS */
.service-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-icon-card {
    background: white;
    padding: 40px 25px;
    border-radius: 24px;
    transition: 0.4s;
    cursor: default;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.service-icon-card:hover {
    background: var(--hc-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,69,139,0.15);
}

.service-icon-card:hover h5 { color: white; }

.icon-box-circle {
    width: 80px;
    height: 80px;
    background: var(--hc-soft-blue);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hc-primary);
    font-size: 1.8rem;
    transition: 0.5s;
}

.service-icon-card:hover .icon-box-circle {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: rotateY(360deg);
}

/* SECTION 5: IMAGE SHOWCASE */
.hc-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .hc-image-grid { grid-template-columns: 1fr; }
}

.hc-img-item {
    border-radius: 30px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.hc-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hc-img-item:hover img {
    transform: scale(1.1);
}

/* SECTION 6: CTA BANNER */
.hc-cta-premium {
    background: linear-gradient(135deg, #00458b 0%, #001f3f 100%);
    border-radius: 40px;
    padding: 80px;
    color: white;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hc-cta-premium { grid-template-columns: 1fr; text-align: center; padding: 60px 30px; }
}

.cta-decoration {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -100px;
}

.hc-cta-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 20px 0;
    font-family: 'Outfit', sans-serif;
    color: white;
    line-height: 1.3;
}

.hc-cta-img img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4));
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(2deg); }
}
/* Breadcrumbs Styling */
.breadcrumbs {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}
.breadcrumbs a {
    color: rgba(255,255,255,0.7);
    transition: 0.3s;
}
.breadcrumbs a:hover {
    color: var(--hc-accent);
}
.breadcrumbs span {
    color: white;
}

/* Remove the problematic top padding */
.hc-top-padding {
    padding-top: 0 !important;
}

/* ==============================================
   DOCTORS PAGE PREMIUM STYLES
   ============================================== */

.doctors-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #00458B 0%, #002B55 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.doctors-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://img.freepik.com/free-photo/medical-team-standing-hospital-corridor_23-2148901815.jpg?t=st=1713432000&exp=1713435600&hmac=8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e') center/cover;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.doctors-hero .container {
    position: relative;
    z-index: 2;
}

.doctors-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.doctors-hero .subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
}

.doctors-hero .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    font-size: 0.95rem;
}

.doctors-hero .breadcrumb a { color: rgba(255,255,255,0.7); font-weight: 500;}
.doctors-hero .breadcrumb a:hover { color: var(--white); }
.doctors-hero .breadcrumb i { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.doctors-hero .breadcrumb span { color: var(--white); font-weight: 600; }

/* Department Sections */
.doctors-listing-section {
    padding: 80px 0;
    background: #f8fbff;
}

.dept-group {
    margin-bottom: 80px;
}

.dept-group:last-child {
    margin-bottom: 0;
}

.dept-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.dept-header h2 {
    font-size: 2.2rem;
    color: #00458B;
    margin-bottom: 0;
    flex-shrink: 0;
    font-weight: 800;
}

.dept-header-line {
    flex-grow: 1;
    height: 4px;
    background: linear-gradient(to right, #00458B, transparent);
    border-radius: 2px;
    opacity: 0.2;
}

.doctors-flex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .doctors-flex-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .doctors-flex-grid { grid-template-columns: 1fr; }
    .dept-header h2 { font-size: 1.8rem; }
}

/* Premium Doctor Card */
.doc-card-premium {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,69,139,0.05);
    border: 1px solid rgba(0,69,139,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.doc-card-premium::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 100px; height: 100px;
    background: radial-gradient(circle at top right, rgba(0,69,139,0.03), transparent 70%);
}

.doc-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,69,139,0.12);
    border-color: #00458B;
}

.doc-card-content h3 {
    font-size: 1.4rem;
    color: #111;
    margin-bottom: 10px;
    font-weight: 700;
}

.doc-card-qual {
    display: inline-block;
    color: #00458B;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.doc-card-spec {
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: block;
    font-weight: 500;
}

.doc-card-btn {
    margin-top: auto;
    width: 100%;
    padding: 12px 20px;
    background: #f0f7ff;
    color: #00458B;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    transition: 0.3s;
    border: 1px solid transparent;
}

.doc-card-premium:hover .doc-card-btn {
    background: #00458B;
    color: white;
}

.doc-card-premium i.card-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(0,69,139,0.03);
    pointer-events: none;
    transition: 0.4s;
}

.doc-card-premium:hover i.card-icon {
    transform: scale(1.2) rotate(-10deg);
    color: rgba(0,69,139,0.06);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
.doctors-flex-grid .fade-up:nth-child(1) { transition-delay: 0.1s; }
.doctors-flex-grid .fade-up:nth-child(2) { transition-delay: 0.2s; }
.doctors-flex-grid .fade-up:nth-child(3) { transition-delay: 0.3s; }
.doctors-flex-grid .fade-up:nth-child(4) { transition-delay: 0.4s; }
.doctors-flex-grid .fade-up:nth-child(5) { transition-delay: 0.5s; }
.doctors-flex-grid .fade-up:nth-child(6) { transition-delay: 0.6s; }

/* ==============================================
   CONTACT US PAGE PREMIUM STYLES
   ============================================== */

.inner-hero-contact {
    position: relative;
    padding: 180px 0 120px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.inner-hero-contact .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 69, 139, 0.9), rgba(0, 31, 63, 0.7));
    z-index: 1;
}

.inner-hero-contact .container {
    position: relative;
    z-index: 2;
}

.inner-hero-contact h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.inner-hero-contact .subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    text-transform: uppercase;
}

.inner-hero-contact .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    font-size: 1rem;
}

.inner-hero-contact .breadcrumb a { color: rgba(255,255,255,0.7); font-weight: 500;}
.inner-hero-contact .breadcrumb a:hover { color: #FFD700; }
.inner-hero-contact .breadcrumb i { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.inner-hero-contact .breadcrumb span { color: var(--white); font-weight: 600; }

/* Contact Section Layout */
.contact-main-wrapper {
    padding: 100px 0;
    background: #f8fbff;
}

.contact-flex-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-flex-grid { grid-template-columns: 1fr; }
}

/* Info Cards Block */
.contact-info-wrap h2 {
    font-size: 2.5rem;
    color: #002147;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-info-wrap p.lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,33,71,0.08);
}

.contact-info-card .icon-box {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    color: #00458B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-info-card .info-content h4 {
    color: #002147;
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-info-card .info-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info-card .info-content a {
    color: #666;
    transition: 0.3s;
}

.contact-info-card:hover .info-content a {
    color: #00458B;
}

/* Contact Form Card */
.contact-form-premium {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.02);
}

.contact-form-premium .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .contact-form-premium .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-premium { padding: 30px; }
}

.contact-form-premium .form-group {
    margin-bottom: 25px;
}

.contact-form-premium label {
    display: block;
    font-weight: 700;
    color: #002147;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-premium input, 
.contact-form-premium textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

.contact-form-premium input:focus, 
.contact-form-premium textarea:focus {
    border-color: #00458B;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,69,139,0.05);
    outline: none;
}

/* Map Section */
.map-full-wrap {
    padding: 0 0 100px;
    background: #f8fbff;
}

.map-outer-frame {
    background: var(--white);
    padding: 15px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.map-outer-frame iframe {
    display: block;
    width: 100%;
    border-radius: 20px;
}

/* ==============================================
   FEEDBACK PAGE PREMIUM STYLES
   ============================================== */

.feedback-hero {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.feedback-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 69, 139, 0.85), rgba(0, 31, 63, 0.7));
    z-index: 1;
}

.feedback-hero .container {
    position: relative;
    z-index: 2;
}

.feedback-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.feedback-hero .subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(46, 204, 113, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    text-transform: uppercase;
}

.feedback-form-container {
    max-width: 1000px;
    margin: -60px auto 100px;
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    position: relative;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .feedback-form-container { padding: 30px; margin-top: -30px; }
}

.feedback-section {
    margin-bottom: 50px;
}

.feedback-section-title {
    font-size: 1.5rem;
    color: #002147;
    font-weight: 800;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feedback-section-title::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background: #f0f0f0;
}

/* Patient Info Grid */
.patient-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media (max-width: 600px) {
    .patient-info-grid { grid-template-columns: 1fr; }
}

/* Survey Rows */
.survey-item {
    padding: 25px 0;
    border-bottom: 1px solid #f5f5f5;
}

.survey-item:last-child {
    border-bottom: none;
}

.survey-label {
    font-weight: 700;
    color: #002147;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: block;
}

.survey-label small {
    display: block;
    color: #888;
    font-weight: 500;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Premium Radio Ratings */
.rating-options {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}

@media (max-width: 600px) {
    .rating-options { flex-direction: column; gap: 5px; }
}

.rating-option {
    flex: 1;
    position: relative;
}

.rating-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.rating-option label {
    display: block;
    text-align: center;
    padding: 12px 10px;
    background: #f8f9fa;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rating-option input:checked + label {
    background: #00458B;
    border-color: #00458B;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,69,139,0.2);
}

.rating-option:hover label {
    border-color: #00458B;
    color: #00458B;
}

/* Summary Rating Section */
.summary-rating-box {
    background: #f0f7ff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
}

.summary-rating-box h4 {
    color: #002147;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.summary-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.summary-option input {
    position: absolute;
    opacity: 0;
}

.summary-option label {
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    font-weight: 700;
    color: #00458B;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.summary-option input:checked + label {
    background: #00458B;
    color: white;
    box-shadow: 0 10px 25px rgba(0,69,139,0.3);
}

.summary-option:hover label {
    transform: scale(1.05);
}

/* ==============================================
   FEEDBACK PAGE REDESIGN (EXTREME REFRESH)
   ============================================== */

.feedback-form-container {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: -100px !important;
}

.premium-form-card {
    background: var(--white);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(0, 33, 71, 0.08);
    border: 1px solid rgba(0, 33, 71, 0.03);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.premium-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-blue));
}

.card-accent-bg {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.feedback-header-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 84, 169, 0.08);
    color: var(--primary-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* Floating Label Improvement */
.premium-input-group {
    position: relative;
    margin-bottom: 30px;
}

.premium-input-group label {
    position: absolute;
    left: 20px;
    top: 18px;
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.premium-input-group input, 
.premium-input-group select, 
.premium-input-group textarea {
    width: 100%;
    padding: 28px 20px 10px;
    border: 2px solid #efefef;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    background: #fff;
    transition: all 0.3s ease;
}

.premium-input-group input:focus, 
.premium-input-group select:focus, 
.premium-input-group textarea:focus {
    border-color: var(--primary-blue);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 84, 169, 0.08);
}

.premium-input-group input:focus + label,
.premium-input-group input:not(:placeholder-shown) + label,
.premium-input-group select:focus + label,
.premium-input-group select:not([value=""]) + label,
.premium-input-group textarea:focus + label,
.premium-input-group textarea:not(:placeholder-shown) + label {
    top: 8px;
    left: 20px;
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Survey Card Design */
.question-premium-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.question-premium-card:hover {
    border-color: rgba(0, 84, 169, 0.2);
    box-shadow: 0 15px 35px rgba(0, 84, 169, 0.08);
    transform: translateY(-5px);
}

.question-text-wrap {
    flex: 1;
}

.question-text-wrap h4 {
    color: #002147;
    font-size: 1.15rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.question-text-wrap p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

@media (max-width: 991px) {
    .question-premium-card { flex-direction: column; align-items: flex-start; }
    .rating-chips-container { width: 100%; }
}

/* Multi-choice chips */
.rating-chips-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rating-chip-item {
    position: relative;
    cursor: pointer;
}

.rating-chip-item input {
    position: absolute;
    opacity: 0;
}

.rating-chip-item label {
    display: block;
    padding: 10px 20px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.rating-chip-item input:checked + label {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 84, 169, 0.3);
}

.rating-chip-item:hover label {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.rating-chip-item input:checked:hover label {
    color: #fff;
}

/* Overall Experience Card */
.overall-experience-card {
    background: linear-gradient(135deg, #00458B 0%, #001f3f 100%);
    color: #fff;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 20px 50px rgba(0, 69, 139, 0.2);
}

.overall-experience-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.premium-summary-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.summary-pill {
    position: relative;
}

.summary-pill input {
    position: absolute;
    opacity: 0;
}

.summary-pill label {
    padding: 15px 30px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    backdrop-filter: blur(5px);
}

.summary-pill input:checked + label {
    background: #fff;
    color: #00458B;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.summary-pill:hover label {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* Custom Select Styling */
.premium-select:not([value=""]) + label {
    top: 8px !important;
}

/* Submit Button Enhancement */
.submit-wrap {
    padding: 40px 0 100px;
}

.btn-premium-submit {
    min-width: 250px;
    padding: 20px 50px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    border-radius: 60px;
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
    color: #fff;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 84, 169, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-premium-submit:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 84, 169, 0.5);
    background: linear-gradient(to right, var(--secondary-blue), var(--primary-blue));
}


/* ==============================================
   UNIVERSAL PREMIUM HERO & STATIC BUTTONS
   ============================================== */

/* Enhanced Hero for All Inner Pages (Screenshot Style) */
.hero-premium {
    position: relative;
    padding: 140px 0 100px;
    background-size: cover;
    background-position: center right;
    background-attachment: scroll;
    color: var(--white);
    text-align: left; /* Refined to Left Alignment as per screenshot */
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-premium .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 17, 33, 0.95) 0%, rgba(6, 17, 33, 0.7) 50%, rgba(6, 17, 33, 0.4) 100%);
    z-index: 1;
}

.hero-premium .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-premium .breadcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-premium .breadcrumb a { color: var(--white); text-decoration: none; }
.hero-premium .breadcrumb a:hover { color: var(--secondary-blue); }
.hero-premium .breadcrumb i { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.hero-premium .breadcrumb span { color: var(--secondary-blue); font-weight: 700; }

.hero-premium h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    max-width: 800px;
}

.hero-premium p.hero-subtitle {
    font-size: 1.25rem;
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
}

.hero-premium .hero-btns {
    display: flex;
    gap: 20px;
}

/* Premium Appointment Form Page Styles */
.appointment-page-section {
    position: relative;
    background: #f8fafd;
    padding: 100px 0;
}

.appointment-form-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 25px 70px rgba(0, 69, 139, 0.08);
    border: 1px solid rgba(0, 69, 139, 0.05);
    margin-top: -150px; /* Overlap effect */
    position: relative;
    z-index: 10;
}

.form-header-premium {
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.form-header-premium h2 {
    color: #003366;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group-premium {
    margin-bottom: 30px;
    position: relative;
}

.form-group-premium label {
    display: block;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-control-premium {
    width: 100%;
    padding: 15px 25px;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #333;
    transition: all 0.3s ease;
    background: #fdfdfe;
}

.form-control-premium:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 69, 139, 0.1);
}

.form-control-premium::placeholder {
    color: #abb8c9;
}

select.form-control-premium {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300458b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    padding-right: 50px;
}

.form-full-width {
    grid-column: span 2;
}

.submit-btn-premium {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 12px;
    margin-top: 20px;
    transition: all 0.4s ease;
}

@media (max-width: 991px) {
    .hero-premium h1 { font-size: 2.8rem; }
    .appointment-form-card { padding: 40px; margin-top: -100px; }
}

@media (max-width: 768px) {
    .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
    .form-full-width { grid-column: auto; }
    .hero-premium { text-align: center; }
    .hero-premium .breadcrumb { justify-content: center; }
    .hero-premium .hero-btns { flex-direction: column; align-items: center; }
    .appointment-form-card { margin-top: 0; border-radius: 0; }
}

/* Static Floating Connect Bar */
.static-connect-bar {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.static-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.static-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.static-btn.whatsapp {
    background: #25D366;
}

.static-btn.appointment {
    background: var(--primary-blue);
}

.static-btn .btn-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    pointer-events: none;
}

.static-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

.btn-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    animation: static-pulse 2s infinite;
    opacity: 0.5;
}

@keyframes static-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
    .static-connect-bar { right: 20px; bottom: 20px; }
    .static-btn { width: 50px; height: 50px; font-size: 1.25rem; }
}

/* Redesigning current floating CTA to be cleaner */
.floating-cta {
    display: none !important; /* Replaced by static-connect-bar */
}


/* Left alignment for Premium Hero (inner pages) matching screenshot style */
.hero-premium {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 550px; /* Strong spacing from top and left, good vertical height */
    position: relative;
    overflow: hidden;
}

.hero-premium .hero-overlay {
    background: linear-gradient(90deg, rgba(8,16,43,0.95) 0%, rgba(8,16,43,0.7) 40%, rgba(8,16,43,0.3) 100%);
}

.hero-premium .breadcrumb {
    justify-content: flex-start;
    margin-bottom: 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

.hero-premium .breadcrumb a {
    color: var(--white);
    opacity: 0.9;
}

.hero-premium .breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.hero-premium h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-premium .subtitle {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.hero-premium .hero-subtitle {
    margin-left: 0;
    max-width: 650px;
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 35px;
}

.hero-premium .hero-btns {
    justify-content: flex-start;
    gap: 15px;
}

.hero-premium .container {
    padding-top: 80px; /* spacing below fixed header */
    position: relative;
    z-index: 2;
}

/* Optional bottom shape divider for premium feel */
.hero-premium::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--bg-soft);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
    z-index: 2;
}


/* Doctor Card equal heights and marquee styling */
.swiper-doctors .swiper-slide {
    height: auto;
    display: flex;
}

.doctor-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.doc-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.doc-highlights li {
    font-size: 0.88rem;
    color: #4a5568;
    position: relative;
    padding-left: 22px;
    line-height: 1.4;
}

.doc-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1px;
    color: #38bdf8;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.doctor-card:hover .doc-highlights li::before {
    color: #ff9f1c;
}

.doctor-card i.card-icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 4rem;
    color: rgba(0, 84, 169, 0.02);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.doctor-card:hover i.card-icon {
    transform: scale(1.25) rotate(-10deg);
    color: rgba(0, 84, 169, 0.05);
}

.doctor-card .btn-appointment {
    margin-top: auto;
    width: 100%;
    padding: 12px 20px;
    background: #f0f7ff;
    color: var(--primary-blue);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 84, 169, 0.08);
    display: block;
    text-decoration: none;
}

.doctor-card:hover .btn-appointment {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(0, 84, 169, 0.25);
}

.doctor-card .doc-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.doctor-card .doc-actions .btn-appointment {
    margin-top: 0;
}

.doctor-card .btn-know-more {
    width: 100%;
    padding: 12px 16px;
    background: var(--primary-blue);
    color: var(--white);
    border: 1px solid var(--primary-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.doctor-card .btn-know-more:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 84, 169, 0.2);
}

/* ================= GALLERY PAGE ================= */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-filter-btn {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover, .gallery-filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(70, 127, 247, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.hide {
    display: none;
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.08); /* slight hover zoom */
}

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 16, 43, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-hover-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-hover-overlay i {
    transform: translateY(0) scale(1);
}

.gallery-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    padding-top: 50px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(6, 17, 33, 0.95);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    animation: zoomModal 0.4s ease-out forwards;
}

@keyframes zoomModal {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.gallery-modal-close:hover,
.gallery-modal-close:focus {
    color: var(--primary-blue);
}

/* =========================
   Psychiatry page – Pro UI
   ========================= */
.department-page .dept-media-card {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 16px 45px rgba(6,18,37,0.10);
    margin-left: auto;
    margin-right: auto;
}
.department-page .dept-media-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Keep the Psychiatry overview image smaller even on large screens */
@media (min-width: 992px) {
    .department-page .dept-media-card {
        max-width: 420px;
    }
}

/* Dental page: make section images bigger (override the global 420px cap) */
@media (min-width: 992px) {
    .department-page.dental-page .dept-media-card {
        max-width: 620px;
    }
}

/* Dental page: crop section images to remove internal whitespace and keep a clean card edge */
.department-page.dental-page .dept-media-card {
    /* Give the card a fixed height so the image fills it (prevents side gaps) */
    aspect-ratio: 16 / 10;
}

.department-page.dental-page .dept-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Avoid inner rounding that can reveal the white card background */
    border-radius: 0 !important;
}

/* Dental page: make "Advanced Dental Solutions" cards look professional even without images */
.department-page.dental-page .scroller-container {
    padding: 40px 0;
    background: transparent;
}

.department-page.dental-page .treatment-vibe-card {
    text-align: center;
}
.department-page.dental-page .treatment-vibe-content p {
    text-align: center;
}



/* Dental: reduce empty space around the "Common Dental Concerns" banner image */
.department-page.dental-page .concerns-banner {
    aspect-ratio: 16 / 10;
}
.department-page.dental-page .concerns-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0 !important;
    transform: none;
}

/* Slightly tighter vertical padding on this section */
.department-page.dental-page .clinical-care-section.section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

@media (max-width: 768px) {
    .department-page.dental-page .concerns-banner { aspect-ratio: 16 / 9; }
    .department-page.dental-page .clinical-care-section.section-padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.department-page .psychiatry-hero {
    /* Psychiatry hero banner image */
    background-color: #061225 !important;
    background-image: url('https://res.cloudinary.com/dr7jaclns/image/upload/v1780919277/psychiatry-banner_sndtvy.jpg') !important;
    background-size: cover !important;
    background-position: center right !important;
}

.department-page .psy-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(22px, 4vw, 56px);
    align-items: center;
}

.department-page .psy-image-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 28px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 16px 45px rgba(6,18,37,0.10);
}

.department-page .psy-content h2 {
    font-family: var(--heading-font, "Outfit", sans-serif);
    font-size: clamp(1.8rem, 2.2vw, 2.6rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}

.department-page .psy-list {
    display: grid;
    gap: 16px;
}

.department-page .psy-list-item {
    padding: 16px 18px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(6,18,37,0.06);
}

.department-page .psy-list-item h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    font-weight: 700;
    color: #0b2547;
}

.department-page .psy-list-item p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .department-page .psy-split {
        grid-template-columns: 1fr;
    }
}

/* Psychiatry – Holistic (3-column professional layout) */
.department-page .psy-holistic-grid{
    display:grid;
    grid-template-columns: 1.05fr 1.15fr 0.95fr;
    gap: clamp(18px, 3.2vw, 46px);
    align-items:center;
}

.department-page .psy-holistic-left h2{
    font-family: var(--heading-font, "Outfit", sans-serif);
    font-size: clamp(1.9rem, 2.4vw, 2.8rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
    color:#0b2547;
}

.department-page .psy-video-frame{
    position:relative;
    border-radius: 34px;
    padding: 18px;
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(11, 37, 71, 0.25);
    box-shadow: 0 18px 55px rgba(6,18,37,0.12);
}

.department-page .psy-video-wrapper{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 22px;
    overflow: hidden;
    background: #0b2547;
}
.department-page .psy-video-wrapper iframe{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.department-page .psy-summary-card{
    padding: 18px 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 14px 45px rgba(6,18,37,0.08);
}

@media (max-width: 992px){
    .department-page .psy-holistic-grid{
        grid-template-columns: 1fr;
    }
    .department-page .psy-video-frame{
        max-width: 720px;
        margin: 0 auto;
    }
}

/* Psychiatry – Consultants list (professional rows) */
.department-page .consultants-list{
    display: grid;
    gap: 18px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.department-page .consultant-row{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 28px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.department-page .consultant-row:hover{
    background: #f8fbff;
    transform: translateY(-2px);
    border-color: rgba(0, 84, 169, 0.15);
    box-shadow: 0 15px 40px rgba(0, 84, 169, 0.08);
}
.department-page .consultant-info h3{
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b2547;
}
.department-page .consultant-meta{
    margin: 0;
    display:flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.department-page .consultant-meta .degrees{
    font-weight: 700;
    color: #6b7280;
    font-size: 0.95rem;
}
.department-page .consultant-meta .specialty{
    font-weight: 800;
    color: #e53935;
    font-size: 1.02rem;
}
.department-page .consultant-action .btn{
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
}
@media (max-width: 768px){
    .department-page .consultant-row{
        flex-direction: column;
        align-items: flex-start;
    }
    .department-page .consultant-action{
        width: 100%;
    }
    .department-page .consultant-action .btn{
        width: 100%;
        text-align:center;
    }
}

/* ==============================================
   NEPHROLOGY KEY ASPECTS SECTION (PROFESSIONAL UI)
   ============================================== */
.aspects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.aspects-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    position: relative;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.aspects-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 84px;
    background: radial-gradient(320px 90px at 18% 0%, rgba(0, 84, 169, 0.08), transparent 60%);
    pointer-events: none;
}

.aspects-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(0, 84, 169, 0.25);
}

.aspects-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 84, 169, 0.05);
    border: 1px solid rgba(0, 84, 169, 0.1);
    display: grid;
    place-items: center;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.aspects-card:hover .icon-wrapper {
    background: rgba(0, 84, 169, 0.1);
    border-color: rgba(0, 84, 169, 0.25);
}

.aspects-card .icon-wrapper i {
    font-size: 24px;
    color: var(--primary-blue);
}

.aspects-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.aspects-card p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .aspects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .aspects-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .aspects-card:nth-child(1),
    .aspects-card:nth-child(2),
    .aspects-card:nth-child(3) {
        grid-column: span 2;
    }
    .aspects-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    .aspects-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

/* Scroller style adaptation for aspects cards */
.scroller-inner .aspects-card {
    flex: 0 0 360px;
    margin-right: 30px;
    background: white; /* Ensure background is solid for scrolling */
}

@media (max-width: 768px) {
    .scroller-inner .aspects-card {
        flex: 0 0 300px;
        margin-right: 20px;
    }
}

/* ===============================================
   VISION PRIORITY SECTION (3-COLUMN PREMIUM UI)
=============================================== */
.vision-priority-section {
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.vision-priority-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1.15fr;
    gap: clamp(24px, 4vw, 60px);
    align-items: center;
}

.priority-col-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.priority-title {
    color: #0b5b9c;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 2.3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.priority-text {
    font-family: 'Inter', sans-serif;
    color: #4b5563;
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 0;
}

.priority-col-middle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.priority-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 5px solid #0054A9; /* Premium theme blue */
    box-shadow: 0 15px 40px rgba(0, 84, 169, 0.12);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.priority-image-wrapper:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 84, 169, 0.2);
}

.priority-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.priority-image-wrapper:hover img {
    transform: scale(1.05);
}

.priority-col-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.priority-desc {
    font-family: 'Inter', sans-serif;
    color: #4b5563;
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 0;
}

/* Responsive design */
@media (max-width: 992px) {
    .vision-priority-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .priority-col-left, .priority-col-right {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .priority-title {
        text-align: center;
    }
    
    .priority-image-wrapper {
        max-width: 300px;
    }
}

/* ===============================================
   UROLOGY PREMIUM UI UPGRADES (TREATMENTS & VIDEO)
=============================================== */
.urology-treatment-section {
    background: #f8fafc;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.urology-treatment-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.urology-treatment-image-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 5px solid #ffffff;
    box-shadow: 0 20px 45px rgba(0, 84, 169, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.urology-treatment-image-wrapper:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 84, 169, 0.15);
}

.urology-treatment-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.urology-treatment-image-wrapper:hover img {
    transform: scale(1.04);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.badge-accent {
    background: rgba(0, 84, 169, 0.08);
    color: #0b5b9c;
}

.treatment-section-title {
    color: #0b5b9c;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 2.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.treatment-section-desc {
    font-family: 'Inter', sans-serif;
    color: #4b5563;
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.treatment-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.treatment-features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.treatment-features-list li i {
    font-size: 1.2rem;
    color: #0b5b9c;
    background: rgba(0, 84, 169, 0.06);
    padding: 10px;
    border-radius: 12px;
    margin-right: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: background 0.3s ease, color 0.3s ease;
}

.treatment-features-list li:hover i {
    background: #0b5b9c;
    color: #ffffff;
}

.treatment-features-list li span {
    font-family: 'Inter', sans-serif;
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
}

/* Symptoms & YouTube Mockup Section */
.symptoms-video-section {
    background: #ffffff;
}

.symptoms-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
}

.symptoms-title {
    color: #0b5b9c;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 2.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.symptoms-desc {
    font-family: 'Inter', sans-serif;
    color: #4b5563;
    font-size: 1.02rem;
    line-height: 1.75;
}

/* Video Player Card (replaces phone mockup) */
.video-player-card {
    width: 100%;
    background: #000000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 84, 169, 0.12);
    border: 5px solid #ffffff; /* Matching white border style */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-player-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 84, 169, 0.18);
}

.video-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Symptoms signs list */
.signs-list-title {
    color: #1e293b;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.signs-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.signs-bullet-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
}

.signs-bullet-list li i {
    font-size: 1rem;
    color: #0b5b9c;
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Responsive design adjustments */
@media (max-width: 992px) {
    .urology-treatment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .urology-treatment-image-wrapper {
        max-width: 520px;
        margin: 0 auto;
    }
    
    .symptoms-video-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .symptoms-intro-col, .symptoms-list-col {
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
    }
    
    .signs-bullet-list li {
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Premium CTA Banner Section */
.cta-premium-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    padding: 100px 0;
    overflow: hidden;
}

.cta-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 18, 37, 0.92) 0%, rgba(10, 25, 47, 0.8) 100%);
    z-index: 1;
}

.cta-glass-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.cta-glass-card h2 {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-highlight-bar {
    background: rgba(255, 124, 92, 0.12);
    border-left: 4px solid var(--orange);
    color: #ffdcc4;
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    max-width: 100%;
}

@media (max-width: 768px) {
    .cta-premium-section {
        background-attachment: scroll; /* Disable parallax on mobile for performance */
        padding: 60px 0;
    }
    .cta-glass-card {
        padding: 40px 20px;
        border-radius: 20px;
    }
    .cta-glass-card h2 {
        font-size: 1.8rem;
    }
    .cta-highlight-bar {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
}


/* ==============================================
   DENTAL PAGE – PROFESSIONAL UI ENHANCEMENTS
   (scoped via new class names used in dental.html)
   ============================================== */



.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.treatment-card-pro {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 69, 139, 0.08);
    border-radius: 18px;
    padding: 22px 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 69, 139, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.treatment-card-pro h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #073a76;
}

.treatment-card-pro:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0, 69, 139, 0.14);
}

.treatment-media {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    margin-bottom: 14px;
    background: rgba(0, 69, 139, 0.04);
}

.treatment-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.35s ease;
}

.treatment-card-pro:hover .treatment-media img {
    transform: scale(1.07);
}

.treatment-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(0, 84, 169, 0.14), rgba(95, 201, 255, 0.16));
    border: 1px solid rgba(0, 69, 139, 0.08);
    color: var(--primary-blue);
}

@media (max-width: 992px) {
    .treatment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .treatment-grid { grid-template-columns: 1fr; }
}

/* Diagnostic Dashboard Console Styles */
.diagnostic-dashboard {
    background: #ffffff !important;
    border-radius: 20px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 0 !important;
    text-align: left !important;
    overflow: hidden !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.diagnostic-dashboard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(10, 37, 64, 0.08) !important;
}

.dash-header {
    height: 48px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pulsing-green {
    background: #10b981;
    animation: dashPulse 2s infinite alternate;
}

@keyframes dashPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.dash-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-blue);
    opacity: 0.7;
    flex-grow: 1;
    margin-left: 12px;
    text-transform: uppercase;
}

.dash-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: rgba(0, 84, 169, 0.08);
    color: var(--primary-blue);
    padding: 2px 8px;
    border-radius: 10px;
}

.dash-body {
    flex: 1;
    display: flex;
    padding: 24px;
    gap: 20px;
    align-items: center;
}

.dash-panel-left {
    flex: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-panel-right {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    border-left: 1px solid rgba(0, 84, 169, 0.06);
    padding-left: 20px;
}

.audiogram-wrapper {
    width: 100%;
    position: relative;
}

.audiogram-chart {
    width: 100%;
    height: auto;
    overflow: visible;
}

.dash-line-anim {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawPath 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

.dash-node {
    transform: scale(0);
    transform-origin: center;
    animation: popNode 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.dash-node:nth-of-type(1) { animation-delay: 0.5s; transform-origin: 20px 40px; }
.dash-node:nth-of-type(2) { animation-delay: 1s; transform-origin: 86.6px 30px; }
.dash-node:nth-of-type(3) { animation-delay: 1.5s; transform-origin: 153.3px 25px; }
.dash-node:nth-of-type(4) { animation-delay: 2s; transform-origin: 220px 45px; }

/* Second chart offset */
svg:nth-of-type(2) .dash-node:nth-of-type(1) { transform-origin: 20px 30px; }
svg:nth-of-type(2) .dash-node:nth-of-type(2) { transform-origin: 86.6px 45px; }
svg:nth-of-type(2) .dash-node:nth-of-type(3) { transform-origin: 153.3px 35px; }
svg:nth-of-type(2) .dash-node:nth-of-type(4) { transform-origin: 220px 50px; }

@keyframes popNode {
    to { transform: scale(1); }
}

.dash-metric {
    display: flex;
    flex-direction: column;
}

.metric-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.metric-unit {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(7, 58, 118, 0.6);
}

.metric-name {
    font-size: 10px;
    font-weight: 600;
    color: rgba(7, 58, 118, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.dash-status {
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    padding: 4px 10px;
    border-radius: 8px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
}

.dash-footer {
    height: 40px;
    border-top: 1px solid rgba(0, 84, 169, 0.06);
    padding: 0 24px;
    display: flex;
    align-items: center;
    background: rgba(0, 84, 169, 0.01);
}

/* Endoscopy Scope Scanner */
.scope-scanner {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 3px solid rgba(0, 102, 204, 0.12);
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: inset 0 2px 10px rgba(10,37,64,0.06), 0 4px 12px rgba(10,37,64,0.04);
    margin: 0 auto 15px auto;
}

.scope-lens {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.scope-crosshair-h {
    position: absolute;
    left: 5%; top: 50%;
    width: 90%; height: 1px;
    background: rgba(0, 102, 204, 0.15);
    z-index: 2;
}

.scope-crosshair-v {
    position: absolute;
    left: 50%; top: 5%;
    width: 1px; height: 90%;
    background: rgba(0, 102, 204, 0.15);
    z-index: 2;
}

.scope-ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(0, 102, 204, 0.1);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ring-1 { width: 45%; height: 45%; }
.ring-2 { width: 75%; height: 75%; }

.scope-radar-sweep {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: conic-gradient(from 0deg, rgba(0, 102, 204, 0.1) 0deg, rgba(0, 102, 204, 0) 120deg);
    border-radius: 50%;
    animation: scopeSweep 8s linear infinite;
    transform-origin: center;
    z-index: 3;
}

@keyframes scopeSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scope-svg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.vocal-wave-1 {
    animation: pulseWave 3s ease-in-out infinite alternate;
}

.vocal-wave-2 {
    animation: pulseWave 4s ease-in-out infinite alternate-reverse;
}

@keyframes pulseWave {
    0% { opacity: 0.3; transform: scale(0.95) translate(2px, 2px); }
    100% { opacity: 0.7; transform: scale(1.05) translate(-2px, -2px); }
}

.scope-telemetry {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    width: 100%;
}

.telemetry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    min-width: 65px;
}

.tel-lbl {
    font-size: 8px;
    font-weight: 700;
    color: rgba(7, 58, 118, 0.5);
    letter-spacing: 0.5px;
}

.tel-val {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 2px;
}



/* Responsiveness for dashboards */
@media (max-width: 576px) {
    .dash-body {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }
    .dash-panel-right {
        border-left: none;
        border-top: 1px solid rgba(0, 84, 169, 0.06);
        padding-left: 0;
        padding-top: 20px;
        flex-direction: row;
        justify-content: space-around;
    }
}

/* Dermatology Grid Scanner */
.derma-grid-scanner {
    width: 130px;
    height: 130px;
    border: 1px solid rgba(0, 84, 169, 0.15);
    background: rgba(0, 84, 169, 0.02);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.derma-scan-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(to right, rgba(255, 140, 0, 0), rgba(255, 140, 0, 0.8), rgba(255, 140, 0, 0));
    animation: dermaScan 3s linear infinite;
    z-index: 2;
}

@keyframes dermaScan {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

.derma-target-box {
    position: absolute;
    top: 25px; left: 45px; width: 40px; height: 40px;
    border: 1px dashed rgba(255, 140, 0, 0.4);
    animation: pulseBox 2s infinite alternate;
    z-index: 1;
}

@keyframes pulseBox {
    0% { transform: scale(0.95); opacity: 0.5; }
    100% { transform: scale(1.05); opacity: 1; }
}

.derma-svg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

/* ================= GLOBAL MOBILE OVERRIDES (CLINICAL MINIMALISM) ================= */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0 !important;
    }
    
    .container {
        padding: 0 16px !important;
    }

    /* Collapse grids */
    .benefits-grid, 
    .services-grid, 
    .flip-grid, 
    .doctors-grid, 
    .symptoms-video-grid, 
    .treatment-grid,
    .benefit-grid-premium {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Wellness Professional Image Grid - Tablet Stack */
    .wellness-list::before {
        display: none;
    }

    .wellness-card-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .wellness-item {
        width: 100% !important;
        align-self: auto !important;
        text-align: center !important;
        min-height: 350px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .wellness-item:nth-child(odd) {
        align-self: auto !important;
        text-align: center !important;
    }

    .wellness-item::before {
        display: none !important;
    }
    
    .wellness-content { padding: 25px; }

    .wellness-item:nth-child(odd)::before {
        left: 14px !important;
        right: auto !important;
    }

    .wellness-item:nth-child(even)::before {
        left: 14px !important;
        right: auto !important;
    }

    /* Flip Card Image Scaling on Mobile */
    .flip-card-front {
        height: 160px !important;
    }

    /* Emergency Banner Wrap - Compact Single-Row Mobile Layout */
    .wrap-sm {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 8px !important;
        text-align: left !important;
    }

    .emergency-banner {
        padding: 8px 0 !important;
    }

    .emergency-info {
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .emergency-info .flex-align {
        flex-direction: row !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .emergency-banner i.fa-phone-volume {
        font-size: 1.2rem !important;
    }

    .emergency-banner h2 {
        font-size: 0.9rem !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
    }

    .emergency-banner p {
        display: none !important; /* Hide description on mobile to save space */
    }

    .emergency-banner .emergency-action {
        margin-top: 0 !important;
        flex-shrink: 0 !important;
    }

    .emergency-banner .btn {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }

    .floating-cta {
        bottom: 65px !important; /* Position CTA right above the slim mobile banner */
    }

    body {
        padding-bottom: 55px !important; /* Slim body padding */
    }
}

/* ================= PATIENT MINIMAL DESIGN SYSTEM ================= */
:root {
    --primary-blue: #0b5f8f;
    --secondary-blue: #102a43;
    --orange: #c96f2d;
    --orange-red: #c95632;
    --medical-red: #b04762;
    --pink-accent: #a64d79;
    --bright-blue: #2f7dae;
    --dark-black: #102a43;
    --soft-light: #f6f9fb;
    --text-color: #334155;
    --text-light: #667085;
    --gradient-blue: linear-gradient(135deg, #0b5f8f, #174e7a);
    --gradient-orange: linear-gradient(135deg, #c96f2d, #c95632);
    --gradient-pink: linear-gradient(135deg, #a64d79, #8f4469);
    --gradient-cyan: linear-gradient(135deg, #2f7dae, #0f766e);
    --transition-smooth: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.18s ease;
    --shadow-soft: 0 8px 24px rgba(16, 42, 67, 0.06);
    --shadow-card: 0 14px 34px rgba(16, 42, 67, 0.09);
    --clinical-border: 1px solid rgba(16, 42, 67, 0.09);
}

body {
    background: #ffffff;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    padding-bottom: 80px;
}

body::selection {
    background: rgba(11, 95, 143, 0.16);
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0;
}

a, button, input, select, textarea {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(11, 95, 143, 0.24);
    outline-offset: 3px;
}

.section-padding {
    padding: clamp(64px, 8vw, 96px) 0;
}

.bg-soft,
.bg-soft-blue {
    background: linear-gradient(180deg, #f8fbfd 0%, #f3f7fa 100%) !important;
}

.subtitle {
    color: var(--primary-blue) !important;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.section-title h2,
.about-content h2,
.contact-info h2,
.wellness-main-title {
    color: var(--secondary-blue) !important;
    font-weight: 700;
}

.title-line {
    width: 48px;
    height: 3px;
    background: var(--primary-blue);
}

.btn,
.btn-capsule-blue,
.btn-rect-blue,
.btn-white,
.doc-card-btn,
.btn-appointment,
.btn-know-more {
    border-radius: 8px !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease !important;
}

.btn:hover,
.btn-capsule-blue:hover,
.btn-rect-blue:hover,
.btn-white:hover,
.doc-card-btn:hover,
.btn-appointment:hover,
.btn-know-more:hover {
    transform: translateY(-2px) !important;
}

.btn-primary,
.btn-capsule-blue,
.btn-rect-blue {
    background: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 10px 24px rgba(11, 95, 143, 0.18) !important;
}

.btn-primary:hover,
.btn-capsule-blue:hover,
.btn-rect-blue:hover {
    background: var(--secondary-blue) !important;
    border-color: var(--secondary-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 30px rgba(16, 42, 67, 0.18) !important;
}

.hero-section {
    min-height: clamp(560px, 82vh, 760px);
    aspect-ratio: auto;
    background: #102a43;
}

.hero-bg-video {
    filter: saturate(0.88) contrast(0.95);
}

.hero-video-overlay {
    background:
        linear-gradient(90deg, rgba(9, 30, 49, 0.88) 0%, rgba(9, 30, 49, 0.68) 48%, rgba(9, 30, 49, 0.22) 100%),
        linear-gradient(180deg, rgba(9, 30, 49, 0.12), rgba(9, 30, 49, 0.34));
}

.hero-content-wrapper {
    max-width: 720px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.04;
    font-weight: 700;
}

.hero-award-title {
    font-size: clamp(1.15rem, 2.1vw, 1.72rem);
    color: rgba(255, 255, 255, 0.96);
}

.hero-subtext {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.86);
}

.glass-card,
.premium-form,
.appointment-form-card,
.premium-form-card,
.booking-card,
.enquiry-card-premium {
    border-radius: 14px !important;
    border: var(--clinical-border) !important;
    box-shadow: var(--shadow-soft) !important;
}

.flip-card,
.doctor-card,
.service-glow-card,
.benefit-card,
.benefit-card-elite,
.service-dept-card,
.feature-strip,
.treatment-vibe-card,
.package-card,
.service-icon-card,
.doc-card-premium,
.contact-info-card,
.question-premium-card,
.aspects-card,
.treatment-card-pro,
.video-player-card,
.accordion-item,
.faq-accordion .accordion-item {
    border-radius: 14px !important;
    border: var(--clinical-border) !important;
    box-shadow: 0 6px 22px rgba(16, 42, 67, 0.05) !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease !important;
}

.flip-card:hover,
.doctor-card:hover,
.service-glow-card:hover,
.benefit-card:hover,
.benefit-card-elite:hover,
.service-dept-card:hover,
.feature-strip:hover,
.treatment-vibe-card:hover,
.package-card:hover,
.service-icon-card:hover,
.doc-card-premium:hover,
.contact-info-card:hover,
.question-premium-card:hover,
.aspects-card:hover,
.treatment-card-pro:hover,
.video-player-card:hover,
.accordion-item:hover,
.faq-accordion .accordion-item:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(11, 95, 143, 0.2) !important;
    box-shadow: var(--shadow-card) !important;
}

.flip-card,
.flip-card-front,
.flip-card-back {
    border-radius: 14px !important;
}

.flip-card-front {
    height: 180px !important;
}

.flip-card:hover .flip-card-front,
.service-glow-card:hover .service-card-img,
.treatment-vibe-card:hover img,
.treatment-card-pro:hover .treatment-media img {
    transform: scale(1.025) !important;
}

.back-content h3,
.doctor-card h4,
.card-content h3,
.benefit-card h4,
.service-dept-card h3,
.doc-card-content h3 {
    color: var(--secondary-blue) !important;
}

.back-content .btn:hover,
.service-glow-card .link-arrow:hover,
.contact-info-card:hover .info-content a {
    color: var(--primary-blue) !important;
}

.doctor-card::after,
.flip-card-back::before {
    background: var(--primary-blue) !important;
}

/* ================= PREMIUM GLASS UI: ADVANCED PATIENT SERVICES (#services) ================= */
#services.services-highlight.bg-soft-blue {
    background: linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%) !important;
}

#services .background-curves {
    opacity: 0.9;
    filter: blur(2px);
}

#services .services-grid {
    gap: 28px !important;
    align-items: stretch;
}

#services .service-glow-card {
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.72) !important;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.60) !important;
    box-shadow: 0 18px 46px rgba(11, 95, 143, 0.12) !important;
    display: flex;
    flex-direction: column;
}

/* Gradient glass border */
#services .service-glow-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(11, 95, 143, 0.32),
        rgba(0, 198, 255, 0.14),
        rgba(255, 159, 28, 0.14)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    display: block !important;
}

#services .service-glow-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(11, 95, 143, 0.10) 0%, transparent 55%),
                radial-gradient(circle at 90% 30%, rgba(0, 198, 255, 0.08) 0%, transparent 55%);
    opacity: 0.6;
    pointer-events: none;
}

#services .service-glow-card:hover {
    transform: translateY(-6px) scale(1.01) !important;
    border-color: rgba(11, 95, 143, 0.22) !important;
    box-shadow: 0 26px 60px rgba(11, 95, 143, 0.16) !important;
}

#services .service-glow-card.highlight-card {
    border-color: rgba(255, 159, 28, 0.20) !important;
}

#services .service-glow-card.highlight-card::after {
    background: radial-gradient(circle at 20% 0%, rgba(255, 159, 28, 0.12) 0%, transparent 55%),
                radial-gradient(circle at 90% 30%, rgba(11, 95, 143, 0.08) 0%, transparent 55%);
    opacity: 0.7;
}

#services .service-image-wrapper {
    height: 215px !important;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

#services .service-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 30, 49, 0) 30%, rgba(9, 30, 49, 0.22) 100%);
    opacity: 0.7;
    pointer-events: none;
}

#services .service-card-img {
    transform: scale(1.01);
}

#services .card-content {
    padding: 26px 26px 30px !important;
    position: relative;
    z-index: 2; /* above ::after */
}

#services .card-content h3 {
    font-size: 1.28rem !important;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 10px !important;
}

#services .card-content p {
    margin-bottom: 0 !important;
    color: rgba(27, 54, 77, 0.74) !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    #services .service-image-wrapper { height: 190px !important; }
    #services .card-content { padding: 22px 22px 26px !important; }
}

.doc-icon-badge,
.service-dept-card i,
.feature-icon-wrapper,
.icon-circle,
.icon-box {
    border-radius: 12px !important;
}

.doctor-card:hover .doc-icon-badge,
.service-dept-card:hover i,
.feature-item:hover .feature-icon-wrapper {
    background: rgba(11, 95, 143, 0.1) !important;
    color: var(--primary-blue) !important;
    box-shadow: none !important;
    transform: translateY(-2px) !important;
}

.feature-item:hover,
.feature-strip:hover {
    transform: translateY(-2px) !important;
}

.experience-badge:hover,
.info-block:hover,
.social-icon:hover,
.chatbot-img:hover {
    transform: translateY(-3px) !important;
}

.emergency-phone-icon,
.pulse,
.pulse-strong,
.pulse-ring,
.scope-radar-sweep,
.derma-scan-line,
.derma-target-box,
.floating-cta::before {
    animation-duration: 3s !important;
}

.floating-cta {
    border-radius: 10px !important;
    box-shadow: 0 12px 28px rgba(11, 95, 143, 0.2) !important;
}

.floating-cta:hover {
    transform: translateY(-2px) !important;
}

.fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease !important;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.55s ease, transform 0.55s ease !important;
}

.active.fade-up,
.active.zoom-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stagger-1 { transition-delay: 0.06s !important; }
.stagger-2 { transition-delay: 0.12s !important; }
.stagger-3 { transition-delay: 0.18s !important; }
.stagger-4 { transition-delay: 0.24s !important; }

.premium-form input,
.premium-form textarea,
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    background: #ffffff !important;
    border: var(--clinical-border) !important;
    border-radius: 8px !important;
}

.premium-form input:focus,
.premium-form textarea:focus,
.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    box-shadow: 0 0 0 4px rgba(11, 95, 143, 0.1) !important;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 620px;
        padding-top: 92px;
        justify-content: flex-end;
        padding-bottom: 54px;
    }

    .hero-bg-video,
    .hero-video-overlay {
        top: 0;
        height: 100%;
    }

    .hero-video-overlay {
        background: linear-gradient(180deg, rgba(9, 30, 49, 0.22) 0%, rgba(9, 30, 49, 0.72) 44%, rgba(9, 30, 49, 0.9) 100%);
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtext br,
    .hero-award-title br {
        display: none;
    }

    .section-title h2,
    .about-content h2,
    .contact-info h2,
    .wellness-main-title {
        font-size: clamp(1.8rem, 8vw, 2.25rem) !important;
    }

    .btn,
    .btn-capsule-blue,
    .btn-rect-blue {
        min-height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .fade-up,
    .zoom-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ================= HERO VIDEO FRAMING FIX ================= */
.hero-section {
    min-height: clamp(640px, 86svh, 780px) !important;
    padding: 96px 0 64px !important;
    justify-content: center !important;
    box-sizing: border-box;
}

.hero-bg-video,
.hero-video-overlay {
    top: 0 !important;
    height: 100% !important;
}

.hero-bg-video {
    object-fit: cover !important;
    object-position: center center !important;
}

.hero-container {
    display: flex;
    align-items: center;
    min-height: calc(clamp(640px, 86svh, 780px) - 160px);
}

.hero-content-wrapper {
    padding-top: 18px;
}

.hero-title {
    margin-top: 0;
    font-size: clamp(2.45rem, 4.25vw, 3.9rem) !important;
    line-height: 1.08 !important;
}

.hero-award-title {
    margin-bottom: 22px;
}

.hero-subtext {
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .hero-section {
        min-height: clamp(620px, 84svh, 740px) !important;
        padding: 90px 0 56px !important;
    }

    .hero-container {
        min-height: calc(clamp(620px, 84svh, 740px) - 146px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 660px !important;
        padding: 96px 0 48px !important;
        justify-content: flex-end !important;
    }

    .hero-container {
        align-items: flex-end;
        min-height: auto;
    }

    .hero-content-wrapper {
        padding-top: 0;
    }

    .hero-title {
        font-size: clamp(2.2rem, 12vw, 3rem) !important;
        line-height: 1.05 !important;
    }

    .hero-bg-video {
        object-position: center center !important;
    }
}

/* ================= HERO VIDEO VIEWING FIX ================= */
.hero-section {
    height: clamp(560px, 56.25vw, 760px) !important;
    min-height: clamp(560px, 56.25vw, 760px) !important;
    padding: 88px 0 56px !important;
}

.hero-bg-video {
    object-fit: contain !important;
    object-position: center center !important;
    background: #102a43;
}

.hero-video-overlay {
    background:
        linear-gradient(90deg, rgba(9, 30, 49, 0.88) 0%, rgba(9, 30, 49, 0.62) 48%, rgba(9, 30, 49, 0.18) 100%),
        linear-gradient(180deg, rgba(9, 30, 49, 0.1), rgba(9, 30, 49, 0.28)) !important;
}

.hero-container {
    min-height: calc(clamp(560px, 56.25vw, 760px) - 144px) !important;
}

@media (max-width: 768px) {
    .hero-section {
        height: 620px !important;
        min-height: 620px !important;
        padding: 96px 0 46px !important;
    }

    .hero-bg-video {
        object-fit: cover !important;
        object-position: center center !important;
    }

    .hero-container {
        min-height: auto !important;
    }
}

/* ================= GLOBAL PROFESSIONAL TYPOGRAPHY ================= */
:root {
    --font-professional: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    --heading-font: "Outfit", "Inter", "Segoe UI", sans-serif;
    --icon-font-solid: "Font Awesome 6 Free";
    --icon-font-brands: "Font Awesome 6 Brands";
}

html,
body,
button,
input,
select,
textarea,
.btn,
.btn-capsule-blue,
.btn-rect-blue,
.btn-appointment,
.btn-know-more,
.doc-card-btn {
    font-family: var(--font-professional) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.hero-award-title,
.section-title h2,
.subtitle,
.back-content h3,
.doctor-card h4,
.card-content h3,
.feature-item-content h4,
.emergency-title,
.emergency-number,
.wellness-main-title,
.wellness-item h3,
.benefit-card h4,
.accordion-header,
.faq-accordion .accordion-header,
.dept-hero h1,
.dept-hero h2,
.dept-heading,
.doc-card-content h3,
.consultant-card h3 {
    font-family: var(--heading-font) !important;
    letter-spacing: 0 !important;
}

body {
    font-weight: 400;
}

h1,
.hero-title,
.dept-hero h1 {
    font-weight: 700 !important;
}

h2,
h3,
h4,
.section-title h2 {
    font-weight: 650 !important;
}

.subtitle,
.nav-link,
.doc-spec,
.doctor-card .doc-spec {
    font-weight: 700 !important;
}


/* ================= HOME WHY CHOOSE REDESIGN ================= */
.choose-us {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.choose-us-pro {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.35fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
}

.choose-us-intro {
    max-width: 520px;
}

.choose-us-intro h2 {
    color: var(--secondary-blue);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.12;
    margin-bottom: 18px;
}

.choose-us-intro p {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.choose-us .benefits-grid-pro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 0;
}

.choose-us .benefit-card {
    min-height: 132px;
    padding: 24px;
    text-align: left;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    align-items: flex-start;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.92);
}

.choose-us .benefit-card i {
    width: 48px;
    height: 48px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(11, 95, 143, 0.08);
    color: var(--primary-blue) !important;
    font-size: 1.25rem;
}

.choose-us .benefit-card .benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    display: inline-block;
    border-radius: 10px;
    background: rgba(11, 95, 143, 0.08);
    padding: 8px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.choose-us .benefit-card:nth-child(2) i {
    background: rgba(201, 111, 45, 0.11);
    color: var(--orange) !important;
}

.choose-us .benefit-card:nth-child(2) .benefit-icon {
    background: rgba(201, 111, 45, 0.11);
}

.choose-us .benefit-card:nth-child(3) i {
    background: rgba(166, 77, 121, 0.1);
    color: var(--pink-accent) !important;
}

.choose-us .benefit-card:nth-child(3) .benefit-icon {
    background: rgba(166, 77, 121, 0.1);
}

.choose-us .benefit-card:nth-child(4) .benefit-icon {
    background: rgba(220, 53, 69, 0.1);
}

.choose-us .benefit-card:nth-child(5) .benefit-icon {
    background: rgba(23, 162, 184, 0.1);
}

.choose-us .benefit-card:nth-child(6) .benefit-icon {
    background: rgba(40, 167, 69, 0.1);
}

.choose-us .benefit-card h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    line-height: 1.25;
}

.choose-us .benefit-card p {
    color: var(--text-light);
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
}

.choose-us .benefit-card:hover i,
.choose-us .benefit-card:hover .benefit-icon {
    transform: translateY(-2px) !important;
}

@media (max-width: 1024px) {
    .choose-us-pro {
        grid-template-columns: 1fr;
    }

    .choose-us-intro {
        max-width: 760px;
    }
}

@media (max-width: 640px) {
    .choose-us .benefits-grid-pro {
        grid-template-columns: 1fr;
    }

    .choose-us .benefit-card {
        min-height: auto;
        padding: 20px;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 14px;
    }

    .choose-us .benefit-card i,
    .choose-us .benefit-card .benefit-icon {
        width: 44px;
        height: 44px;
    }
}

/* ================= HERO REFERENCE SIZE + RESPONSIVE FRAMING ================= */
.hero-section {
    width: 100%;
    height: clamp(560px, 52vw, 720px) !important;
    min-height: clamp(560px, 52vw, 720px) !important;
    padding: 94px 0 58px !important;
    justify-content: center !important;
    background: #0b2742 !important;
}

.hero-bg-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.hero-video-overlay {
    background:
        linear-gradient(90deg, rgba(3, 50, 88, 0.92) 0%, rgba(4, 63, 105, 0.72) 42%, rgba(5, 53, 86, 0.34) 74%, rgba(5, 28, 46, 0.26) 100%),
        linear-gradient(180deg, rgba(4, 38, 65, 0.08) 0%, rgba(4, 38, 65, 0.28) 100%) !important;
}

.hero-container {
    min-height: calc(clamp(560px, 52vw, 720px) - 152px) !important;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    max-width: min(620px, 52vw);
    padding-top: 0;
}

.hero-title {
    font-size: clamp(3rem, 4.3vw, 4.35rem) !important;
    line-height: 1.02 !important;
    margin-bottom: 20px !important;
}

.hero-award-title {
    font-size: clamp(1.45rem, 2.35vw, 2.1rem) !important;
    line-height: 1.24 !important;
    margin-bottom: 24px !important;
}

.hero-subtext {
    max-width: 650px;
    font-size: clamp(1rem, 1.15vw, 1.16rem) !important;
    line-height: 1.65 !important;
    margin-bottom: 30px !important;
}

.btn-capsule-blue {
    padding: 16px 30px !important;
    min-width: 236px;
}

@media (min-width: 1400px) {
    .hero-content-wrapper {
        max-width: 660px;
    }

    .hero-bg-video {
        object-position: center center !important;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        height: 620px !important;
        min-height: 620px !important;
        padding: 96px 0 54px !important;
    }

    .hero-container {
        min-height: 470px !important;
    }

    .hero-content-wrapper {
        max-width: 590px;
    }

    .hero-title {
        font-size: clamp(2.7rem, 6vw, 3.6rem) !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 680px !important;
        min-height: 680px !important;
        padding: 96px 0 42px !important;
        justify-content: flex-end !important;
    }

    .hero-bg-video {
        object-fit: cover !important;
        object-position: 58% center !important;
    }

    .hero-video-overlay {
        background:
            linear-gradient(180deg, rgba(4, 38, 65, 0.22) 0%, rgba(4, 38, 65, 0.58) 38%, rgba(4, 38, 65, 0.92) 100%),
            linear-gradient(90deg, rgba(3, 50, 88, 0.62) 0%, rgba(3, 50, 88, 0.32) 100%) !important;
    }

    .hero-container {
        align-items: flex-end;
        min-height: auto !important;
    }

    .hero-content-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(2.35rem, 12vw, 3.3rem) !important;
        line-height: 1.04 !important;
        margin-bottom: 16px !important;
    }

    .hero-award-title {
        font-size: clamp(1.15rem, 6vw, 1.55rem) !important;
        margin-bottom: 18px !important;
    }

    .hero-subtext {
        font-size: 0.96rem !important;
        line-height: 1.65 !important;
        margin-bottom: 24px !important;
    }

    .btn-capsule-blue {
        width: auto !important;
        min-width: 0;
        padding: 13px 22px !important;
    }
}

@media (max-width: 420px) {
    .hero-section {
        height: 640px !important;
        min-height: 640px !important;
    }

    .hero-title {
        font-size: clamp(2.05rem, 12vw, 2.7rem) !important;
    }

    .hero-subtext {
        font-size: 0.9rem !important;
    }
}

/* ================= HOME WELLNESS REDESIGN ================= */
.wellness-section {
    background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%) !important;
    position: relative;
}

.wellness-pro {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(36px, 5vw, 68px);
    align-items: start;
}

.wellness-pro-header {
    position: sticky;
    top: 116px;
}

.wellness-main-title {
    color: var(--secondary-blue) !important;
    font-size: clamp(2rem, 3.2vw, 3rem) !important;
    line-height: 1.12 !important;
    margin-bottom: 16px !important;
}

.wellness-subtitle {
    max-width: 520px;
    color: var(--text-light) !important;
    font-size: 1.02rem !important;
    line-height: 1.75 !important;
    margin: 0;
}

.wellness-section .wellness-card-grid {
    max-width: none;
    margin: 0;
    padding: 0;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    counter-reset: none;
}

.wellness-section .wellness-card-grid::before,
.wellness-section .wellness-item::before,
.wellness-section .wellness-item::after {
    display: none !important;
    content: none !important;
}

.wellness-section .wellness-item,
.wellness-section .wellness-item:nth-child(odd),
.wellness-section .wellness-item:nth-child(even) {
    width: auto !important;
    margin: 0 !important;
    padding: 26px !important;
    align-self: stretch !important;
    text-align: left !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(16, 42, 67, 0.09);
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.05);
    cursor: default;
    transform: none !important;
}

.wellness-section .wellness-item:hover,
.wellness-section .wellness-item:nth-child(odd):hover,
.wellness-section .wellness-item:nth-child(even):hover {
    transform: translateY(-3px) !important;
    border-color: rgba(11, 95, 143, 0.2);
    box-shadow: 0 14px 34px rgba(16, 42, 67, 0.09);
}

.wellness-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(11, 95, 143, 0.08);
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.wellness-section .wellness-item:nth-child(2) .wellness-icon {
    background: rgba(201, 111, 45, 0.11);
    color: var(--orange);
}

.wellness-section .wellness-item:nth-child(3) .wellness-icon {
    background: rgba(15, 118, 110, 0.1);
    color: #0f766e;
}

.wellness-section .wellness-item:nth-child(4) .wellness-icon {
    background: rgba(166, 77, 121, 0.1);
    color: var(--pink-accent);
}

.wellness-section .wellness-item h3 {
    color: var(--secondary-blue) !important;
    font-size: 1.12rem !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
}

.wellness-section .wellness-item p {
    color: var(--text-light) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

.wellness-note {
    grid-column: 2;
    margin-top: 6px;
    padding: 20px 22px;
    border-left: 3px solid var(--primary-blue);
    background: #eef6fb;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.wellness-note p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.96rem;
}

.wellness-note .btn {
    flex-shrink: 0;
    padding: 12px 20px;
    align-self: flex-start;
}

@media (max-width: 1024px) {
    .wellness-pro {
        grid-template-columns: 1fr;
    }

    .wellness-pro-header {
        position: static;
        max-width: 760px;
    }

    .wellness-note {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .wellness-section .wellness-card-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .wellness-section .wellness-item,
    .wellness-section .wellness-item:nth-child(odd),
    .wellness-section .wellness-item:nth-child(even) {
        padding: 22px !important;
        text-align: left !important;
    }

    .wellness-note {
        flex-direction: column;
        align-items: flex-start;
    }

    .wellness-note .btn {
        width: 100%;
    }
}

/* ================= WELLNESS DISTINCTIVE FEATURE LAYOUT ================= */
.wellness-section {
    background:
        linear-gradient(90deg, #f5f9fc 0%, #f5f9fc 40%, #ffffff 40%, #ffffff 100%) !important;
}

.wellness-feature-layout {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(44px, 6vw, 88px);
    align-items: center;
}

.wellness-feature-layout .wellness-pro-header {
    position: relative;
    top: auto;
    padding: 34px 0;
}

.wellness-feature-layout .wellness-pro-header::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 18px;
    width: 4px;
    height: 150px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary-blue), rgba(11, 95, 143, 0));
}

.wellness-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.wellness-highlight span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(16, 42, 67, 0.09);
    color: var(--secondary-blue);
    font-size: 0.86rem;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(16, 42, 67, 0.04);
}

.wellness-section .wellness-card-grid {
    position: relative;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding-left: 34px;
}

.wellness-section .wellness-card-grid::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: 8px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(180deg, rgba(11, 95, 143, 0.12), rgba(11, 95, 143, 0.4), rgba(11, 95, 143, 0.12));
    border-radius: 999px;
}

.wellness-section .wellness-item,
.wellness-section .wellness-item:nth-child(odd),
.wellness-section .wellness-item:nth-child(even) {
    min-height: 0;
    padding: 22px 26px 22px 76px !important;
    border-radius: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(16, 42, 67, 0.09) !important;
    background-color: transparent !important;
    background-image: none; /* Let inline styles override this without !important */
    box-shadow: none !important;
    position: relative;
}

.wellness-section .wellness-item:first-child {
    border-top: 1px solid rgba(16, 42, 67, 0.09) !important;
}

.wellness-section .wellness-item:hover,
.wellness-section .wellness-item:nth-child(odd):hover,
.wellness-section .wellness-item:nth-child(even):hover {
    background: rgba(255, 255, 255, 0.72) !important;
    transform: translateX(4px) !important;
    box-shadow: none !important;
}

.wellness-section .wellness-item::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: -32px !important;
    top: 34px !important;
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 3px solid var(--primary-blue) !important;
    box-shadow: 0 0 0 8px rgba(11, 95, 143, 0.08) !important;
}

.wellness-section .wellness-item::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: -18px !important;
    top: 41px !important;
    width: 58px !important;
    height: 1px !important;
    background: rgba(11, 95, 143, 0.22) !important;
}

.wellness-section .wellness-item .wellness-icon {
    position: absolute;
    left: 18px;
    top: 24px;
    margin: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.hero-subtitle,
.hero-subtext,
.hero-desc,
.hero-premium p {
    font-size: 1.1rem !important;
}

/* Update Full-Spectrum Service Cards */
.service-icon-card {
    background: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04) !important;
    border-radius: 16px !important;
    padding: 40px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    aspect-ratio: 1/1 !important;
    transition: all 0.3s ease !important;
}

.service-icon-card:hover {
    background: #ffffff !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
    border-color: transparent !important;
}

.service-icon-card h5 {
    color: var(--dark-black) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.service-icon-card .icon-box-circle {
    background: #f2f7fc !important;
    color: #00458b !important;
    width: 64px !important;
    height: 64px !important;
    margin-bottom: 24px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
}

.service-icon-card:hover .icon-box-circle {
    background: #f2f7fc !important;
    color: #00458b !important;
    transform: none !important;
}

.service-icon-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
}

@media (max-width: 1200px) {
    .service-icon-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
    .service-icon-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Gallery Filter Overrides */
.gallery-filters {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-bottom: 50px !important;
}

.gallery-filter-btn {
    background: transparent !important;
    border: 2px solid var(--primary-blue) !important;
    color: var(--primary-blue) !important;
    padding: 8px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.gallery-filter-btn.active, .gallery-filter-btn:hover {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
}

/* Horizontal Branch Card */
.contact-info-card-horizontal {
    display: flex !important;
    align-items: center !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 24px 30px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}
.contact-info-card-horizontal .icon-circle {
    width: 50px !important;
    height: 50px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    flex-shrink: 0 !important;
}
.contact-info-card-horizontal.padur .icon-circle {
    background: #fdf2e9 !important;
    color: #d97736 !important;
}
.contact-info-card-horizontal.thiruporur .icon-circle {
    background: #fdf2e9 !important;
    color: #d97736 !important;
}
.contact-info-card-horizontal h4 {
    margin: 0 !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    min-width: 180px !important;
    color: var(--dark-black) !important;
}
.contact-info-card-horizontal p {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* Mission/Vision Cards Overrides */
.mission-vision-grid .mv-card {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    border-radius: 12px !important;
    padding: 40px !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.mission-vision-grid .mv-card .icon-box-circle {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    margin: 0 0 20px 0 !important;
}

.mission-vision-grid .mission-card .icon-box-circle {
    background: #f2f7fc !important;
    color: #00458b !important;
}

.mission-vision-grid .vision-card .icon-box-circle {
    background: #fdf2e9 !important;
    color: #d97736 !important;
}

.mission-vision-grid .mv-card h3 {
    text-align: left !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

.mission-vision-grid .mv-card p {
    text-align: left !important;
    margin: 0 !important;
}

.wellness-section .wellness-item h3 {
    font-size: 1.16rem !important;
    margin-bottom: 7px !important;
}

.wellness-note {
    grid-column: 2;
    margin-top: 26px;
    background: var(--secondary-blue);
    color: #ffffff;
    border-left: 0;
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(16, 42, 67, 0.14);
}

.wellness-note p {
    color: rgba(255, 255, 255, 0.84);
}

.wellness-note .btn {
    background: #ffffff !important;
    color: var(--secondary-blue) !important;
    border-color: #ffffff !important;
    box-shadow: none !important;
}

@media (max-width: 1024px) {
    .wellness-section {
        background: #f8fbfd !important;
    }

    .wellness-feature-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .wellness-feature-layout .wellness-pro-header {
        padding: 0;
    }

    .wellness-note {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .wellness-feature-layout .wellness-pro-header::before {
        display: none;
    }

    .wellness-section .wellness-card-grid {
        padding-left: 22px;
    }

    .wellness-section .wellness-item,
    .wellness-section .wellness-item:nth-child(odd),
    .wellness-section .wellness-item:nth-child(even) {
        padding: 20px 16px 20px 66px !important;
    }

    .wellness-section .wellness-item::before {
        left: -28px !important;
    }

    .wellness-section .wellness-item::after {
        left: -14px !important;
        width: 44px !important;
    }

    .wellness-section .wellness-item .wellness-icon {
        left: 14px;
        top: 20px;
        width: 38px;
        height: 38px;
    }
}

/* ================= WELLNESS NO-LINE PANEL DESIGN ================= */
.wellness-section {
    background: #ffffff !important;
}

.wellness-feature-layout {
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: start;
}

.wellness-feature-layout .wellness-pro-header {
    padding: 34px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f4f9fc 0%, #ffffff 100%);
    border: 1px solid rgba(16, 42, 67, 0.08);
    box-shadow: 0 12px 34px rgba(16, 42, 67, 0.06);
}

.wellness-feature-layout .wellness-pro-header::before,
.wellness-section .wellness-card-grid::before,
.wellness-section .wellness-item::before,
.wellness-section .wellness-item::after {
    display: none !important;
    content: none !important;
}

.wellness-section .wellness-card-grid {
    padding-left: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
}

.wellness-section .wellness-item,
.wellness-section .wellness-item:nth-child(odd),
.wellness-section .wellness-item:nth-child(even) {
    padding: 22px 24px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(16, 42, 67, 0.09) !important;
    background: #ffffff !important;
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.05) !important;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.wellness-section .wellness-item:hover,
.wellness-section .wellness-item:nth-child(odd):hover,
.wellness-section .wellness-item:nth-child(even):hover {
    transform: translateY(-3px) !important;
    border-color: rgba(11, 95, 143, 0.2) !important;
    box-shadow: 0 16px 36px rgba(16, 42, 67, 0.09) !important;
}

.wellness-section .wellness-item .wellness-icon {
    position: static;
    width: 56px;
    height: 56px;
    margin: 0;
    border-radius: 14px;
}

.wellness-section .wellness-item h3 {
    margin: 0 0 6px 0 !important;
}

.wellness-section .wellness-item p {
    margin: 0;
}

.wellness-note {
    background: #f2f8fb;
    color: var(--text-color);
    border-left: 0;
    border-radius: 14px;
    box-shadow: none;
    border: 1px solid rgba(11, 95, 143, 0.12);
}

.wellness-note p {
    color: var(--text-color);
}

.wellness-note .btn {
    background: var(--primary-blue) !important;
    color: #ffffff !important;
    border-color: var(--primary-blue) !important;
}

@media (max-width: 1024px) {
    .wellness-feature-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .wellness-feature-layout .wellness-pro-header {
        padding: 24px;
    }

    .wellness-section .wellness-item,
    .wellness-section .wellness-item:nth-child(odd),
    .wellness-section .wellness-item:nth-child(even) {
        grid-template-columns: 48px minmax(0, 1fr);
        padding: 18px !important;
        gap: 14px;
    }

    .wellness-section .wellness-item .wellness-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
}

/* Restore Font Awesome after global typography overrides. */
.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {
    font-family: var(--icon-font-solid) !important;
}

.fab,
.fa-brands {
    font-family: var(--icon-font-brands) !important;
}

.fas,
.fa-solid {
    font-weight: 900 !important;
}

.far,
.fa-regular {
    font-weight: 400 !important;
}

/* ================= FINAL HERO LANDSCAPE VIDEO ================= */
.hero-section {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0 !important;
    display: grid !important;
    align-items: center !important;
    overflow: hidden !important;
    background: #08243d !important;
}

.hero-bg-video,
.hero-video-overlay {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.hero-bg-video {
    object-fit: contain !important;
    object-position: center center !important;
    background: #08243d !important;
}

.hero-video-overlay {
    background:
        linear-gradient(90deg, rgba(3, 35, 62, 0.92) 0%, rgba(3, 58, 96, 0.72) 42%, rgba(3, 58, 96, 0.22) 100%),
        linear-gradient(180deg, rgba(3, 35, 62, 0.08), rgba(3, 35, 62, 0.24)) !important;
}

.hero-container {
    min-height: 0 !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    padding-top: 86px !important;
    padding-bottom: 34px !important;
}

.hero-content-wrapper {
    max-width: min(620px, 52vw) !important;
    padding-top: 0 !important;
}

.hero-title {
    font-size: clamp(2.65rem, 4.1vw, 4rem) !important;
    line-height: 1.03 !important;
    margin-bottom: 18px !important;
}

.hero-award-title {
    font-size: clamp(1.35rem, 2.25vw, 2rem) !important;
    margin-bottom: 20px !important;
}

.hero-subtext {
    font-size: clamp(0.95rem, 1.08vw, 1.1rem) !important;
    line-height: 1.6 !important;
    margin-bottom: 26px !important;
}

@media (max-width: 1024px) {
    .hero-container {
        padding-top: 82px !important;
        padding-bottom: 28px !important;
    }

    .hero-content-wrapper {
        max-width: min(560px, 64vw) !important;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5.4vw, 3.2rem) !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        aspect-ratio: auto !important;
        height: auto !important;
        min-height: 0 !important;
        display: block !important;
        padding-top: 76px !important;
    }

    .hero-bg-video {
        position: relative !important;
        display: block !important;
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .hero-video-overlay {
        display: none !important;
    }

    .hero-container {
        height: auto !important;
        display: block !important;
        padding-top: 24px !important;
        padding-bottom: 42px !important;
        background: #08243d;
    }

    .hero-content-wrapper {
        max-width: 100% !important;
    }

    .hero-title {
        font-size: clamp(2.05rem, 10vw, 2.8rem) !important;
    }

    .hero-award-title {
        font-size: clamp(1.1rem, 5.4vw, 1.45rem) !important;
    }
}

/* ================= HERO SECOND REFERENCE LAYOUT ================= */
.hero-section {
    aspect-ratio: auto !important;
    height: clamp(540px, 44vw, 640px) !important;
    min-height: clamp(540px, 44vw, 640px) !important;
    padding: 96px 0 58px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #062a45 !important;
}

.hero-bg-video,
.hero-video-overlay {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.hero-bg-video {
    object-fit: cover !important;
    object-position: center center !important;
}

.hero-video-overlay {
    display: block !important;
    background:
        linear-gradient(90deg, rgba(0, 70, 122, 0.88) 0%, rgba(0, 70, 122, 0.62) 42%, rgba(4, 39, 66, 0.28) 100%),
        linear-gradient(180deg, rgba(4, 38, 65, 0.08) 0%, rgba(4, 38, 65, 0.3) 100%) !important;
}

.hero-container {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.hero-content-wrapper {
    max-width: 680px !important;
    width: min(680px, 58vw) !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.hero-title {
    font-size: clamp(3rem, 4.5vw, 4.45rem) !important;
    line-height: 1.02 !important;
    margin-bottom: 18px !important;
}

.hero-award-title {
    font-size: clamp(1.55rem, 2.55vw, 2.25rem) !important;
    line-height: 1.22 !important;
    margin-bottom: 24px !important;
}

.hero-subtext {
    max-width: 690px !important;
    font-size: clamp(1rem, 1.2vw, 1.18rem) !important;
    line-height: 1.65 !important;
    margin-bottom: 30px !important;
}

.btn-capsule-blue {
    width: auto !important;
    min-width: 264px !important;
    justify-content: center !important;
}

@media (min-width: 1440px) {
    .hero-section {
        height: 650px !important;
        min-height: 650px !important;
    }

    .hero-content-wrapper {
        width: 700px !important;
        max-width: 700px !important;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        height: 590px !important;
        min-height: 590px !important;
        padding: 92px 0 48px !important;
    }

    .hero-content-wrapper {
        width: min(620px, 72vw) !important;
    }

    .hero-title {
        font-size: clamp(2.65rem, 6vw, 3.65rem) !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 640px !important;
        min-height: 640px !important;
        padding: 110px 0 44px !important;
        display: flex !important;
        align-items: flex-end !important;
    }

    .hero-bg-video {
        position: absolute !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: 58% center !important;
    }

    .hero-video-overlay {
        display: block !important;
        background:
            linear-gradient(180deg, rgba(4, 38, 65, 0.14) 0%, rgba(4, 38, 65, 0.54) 38%, rgba(4, 38, 65, 0.94) 100%),
            linear-gradient(90deg, rgba(0, 70, 122, 0.72) 0%, rgba(0, 70, 122, 0.28) 100%) !important;
    }

    .hero-content-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-title {
        font-size: clamp(2.25rem, 11vw, 3.05rem) !important;
        line-height: 1.04 !important;
    }

    .hero-award-title {
        font-size: clamp(1.12rem, 5.6vw, 1.5rem) !important;
    }

    .hero-subtext {
        font-size: 0.94rem !important;
        line-height: 1.6 !important;
    }

    .btn-capsule-blue {
        min-width: 0 !important;
        padding: 13px 22px !important;
    }
}

/* ================= CLEAN CLINICAL UI: HEALTH & WELLNESS PROGRAMS (#wellness) ================= */
#wellness.wellness-section {
    background: #ffffff !important;
}

#wellness .wellness-feature-layout .wellness-pro-header::before {
    display: none !important;
}

#wellness .wellness-highlight span {
    background: rgba(11, 95, 143, 0.06) !important;
    border-color: rgba(11, 95, 143, 0.14) !important;
    box-shadow: none !important;
    color: var(--secondary-blue) !important;
}

#wellness .wellness-card-grid-modern {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
    padding-left: 0 !important;
    margin: 28px 0 0 !important;
}

#wellness .wellness-card-grid-modern .wellness-item {
    min-height: 320px !important;
    padding: 0 !important;
    border-radius: 16px !important;
    border: 1px solid rgba(16, 42, 67, 0.12) !important;
    /* IMPORTANT: don't use `background:` here because it would override the inline background-image */
    background-color: #fff !important;
    box-shadow: 0 10px 28px rgba(16, 42, 67, 0.07) !important;
    transform: none !important;
    text-align: left !important;
    cursor: default !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
}

#wellness .wellness-card-grid-modern .wellness-card-img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 16px 16px 0 0 !important;
    display: block !important;
}

#wellness .wellness-card-grid-modern .wellness-item::before,
#wellness .wellness-card-grid-modern .wellness-item::after {
    content: none !important;
    display: none !important;
}

#wellness .wellness-card-grid-modern .wellness-overlay {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.78) 58%,
        rgba(255, 255, 255, 0.96) 100%
    ) !important;
}

#wellness .wellness-card-mission-style {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 40px 30px !important;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.03) !important;
    transition: var(--transition-smooth) !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

#wellness .wellness-card-mission-style::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    transition: all 0.3s ease !important;
}

#wellness .wellness-card-mission-style.card-border-blue::before { background: var(--primary-blue) !important; }
#wellness .wellness-card-mission-style.card-border-orange::before { background: var(--orange) !important; }
#wellness .wellness-card-mission-style.card-border-cyan::before { background: var(--bright-blue) !important; }
#wellness .wellness-card-mission-style.card-border-pink::before { background: var(--pink-accent) !important; }

#wellness .wellness-card-mission-style .wellness-icon-box {
    margin: 0 0 25px 0 !important;
    width: 64px !important;
    height: 64px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    transition: var(--transition-smooth) !important;
}

#wellness .wellness-card-mission-style.card-border-blue .wellness-icon-box {
    background: rgba(0, 102, 204, 0.06) !important;
    color: var(--primary-blue) !important;
}
#wellness .wellness-card-mission-style.card-border-orange .wellness-icon-box {
    background: rgba(230, 92, 0, 0.06) !important;
    color: var(--orange) !important;
}
#wellness .wellness-card-mission-style.card-border-cyan .wellness-icon-box {
    background: rgba(70, 127, 247, 0.06) !important;
    color: var(--bright-blue) !important;
}
#wellness .wellness-card-mission-style.card-border-pink .wellness-icon-box {
    background: rgba(255, 0, 94, 0.06) !important;
    color: var(--pink-accent) !important;
}

#wellness .wellness-card-mission-style:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.06) !important;
}

#wellness .wellness-card-grid-modern .wellness-content {
    padding: 24px 30px !important;
    width: 100% !important;
    flex-grow: 1 !important;
    background: #ffffff !important;
    border-top: 1px solid rgba(16, 42, 67, 0.10) !important;
    text-align: left !important;
}

#wellness .wellness-card-grid-modern .wellness-item h3 {
    color: var(--secondary-blue) !important;
    font-size: 1.12rem !important;
    margin-bottom: 8px !important;
}

#wellness .wellness-card-grid-modern .wellness-item p {
    color: rgba(27, 54, 77, 0.72) !important;
    font-size: 0.95rem !important;
}

#wellness .wellness-card-grid-modern .wellness-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 38px rgba(16, 42, 67, 0.10) !important;
    border-color: rgba(11, 95, 143, 0.22) !important;
}

#wellness .wellness-note {
    margin-top: 18px !important;
    background: #f0f7ff !important;
    color: var(--secondary-blue) !important;
    border-left: 4px solid var(--primary-blue) !important;
    box-shadow: 0 10px 26px rgba(16, 42, 67, 0.06) !important;
}

#wellness .wellness-note p {
    color: rgba(27, 54, 77, 0.78) !important;
}

@media (max-width: 1024px) {
    #wellness .wellness-card-grid-modern {
        grid-template-columns: 1fr !important;
    }
}

/* ================= HERO MATCHING SUPREMEHOSPITAL.IN STYLE ================= */
.hero-section {
    position: relative !important;
    min-height: 97vh !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    padding: 120px 0 60px !important;
    font-family: 'Montserrat', sans-serif !important;
    color: #fff !important;
    overflow: hidden !important;
    background: transparent !important;
    aspect-ratio: auto !important;
}
/* Static Department Cards */
.static-dept-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 30px !important;
}
.static-dept-card {
    background: #fff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    display: flex !important;
    flex-direction: column !important;
}
.static-dept-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}
.static-dept-img {
    width: 100% !important;
    height: 220px !important;
    background-size: cover !important;
    background-position: center !important;
}
.static-dept-content {
    padding: 25px !important;
    text-align: center !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}
.static-dept-content h3 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    color: var(--dark-black) !important;
}
.static-dept-content p {
    color: #666 !important;
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
    flex-grow: 1 !important;
}
.static-dept-content .btn {
    align-self: center !important;
}

/* Centering Doctors Grid */
.doctors-flex-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
}

.doctors-flex-grid .doc-card-premium {
    flex: 0 0 calc(33.3333% - 20px) !important;
    max-width: calc(33.3333% - 20px) !important;
    width: 100% !important;
}

@media (max-width: 1100px) {
    .doctors-flex-grid .doc-card-premium {
        flex: 0 0 calc(50% - 15px) !important;
        max-width: calc(50% - 15px) !important;
    }
}

@media (max-width: 768px) {
    .doctors-flex-grid .doc-card-premium {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Centering Doctor Department Headings with Symmetrical Lines */
.dept-header {
    justify-content: center !important;
}
.dept-header::before {
    content: '' !important;
    flex-grow: 1 !important;
    height: 4px !important;
    background: linear-gradient(to left, #00458B, transparent) !important;
    border-radius: 2px !important;
    opacity: 0.2 !important;
}
.dept-header-line {
    flex-grow: 1 !important;
    background: linear-gradient(to right, #00458B, transparent) !important;
}
.dept-header h2 {
    text-align: center !important;
}
.hero-bg-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    z-index: 1 !important;
}

.hero-video-overlay {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.4) !important;
    z-index: 2 !important;
}

.hero-container {
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 6% !important;
    padding-right: 6% !important;
}

.hero-content-wrapper {
    max-width: 720px !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.hero-title {
    font-size: 60px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
    font-family: 'Montserrat', sans-serif !important;
    text-transform: none !important;
}

.hero-subtitle {
    font-size: 34px !important;
    font-weight: 500 !important;
    margin-bottom: 25px !important;
    color: #E6F0FA !important;
    font-family: 'Montserrat', sans-serif !important;
    line-height: 1.25 !important;
}

.hero-desc {
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.92) !important;
    margin-bottom: 35px !important;
    font-family: 'Montserrat', sans-serif !important;
}

.hero-btn {
    display: inline-block !important;
    background: #0055A8 !important;
    color: #fff !important;
    padding: 16px 32px !important;
    border-radius: 10px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 85, 168, 0.4) !important;
    border: none !important;
}

.hero-btn:hover {
    background: #004080 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 18px 40px rgba(0, 85, 168, 0.5) !important;
    color: #fff !important;
}

/* Responsive Styling */
@media (max-width: 991px) {
    .hero-title {
        font-size: 44px !important;
    }
    .hero-subtitle {
        font-size: 26px !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        display: flex !important;
        height: auto !important;
        padding: 110px 0 70px !important;
    }
    .hero-bg-video {
        position: absolute !important;
        display: block !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .hero-video-overlay {
        display: block !important;
    }
    .hero-container {
        display: flex !important;
        background: transparent !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media (max-width: 600px) {
    .hero-section {
        min-height: auto !important;
        padding: 110px 0 70px !important;
    }
    .hero-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .hero-title {
        font-size: 32px !important;
    }
    .hero-subtitle {
        font-size: 22px !important;
        margin-bottom: 18px !important;
    }
    .hero-desc {
        font-size: 16px !important;
        margin-bottom: 24px !important;
    }
    .hero-btn {
        padding: 14px 24px !important;
        font-size: 16px !important;
        width: auto !important;
    }
}

/* Branch Cards UI */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.branch-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: rgba(0, 75, 173, 0.2);
}
.branch-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.branch-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 75, 173, 0.1);
    color: #004bad;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}
.branch-body {
    flex-grow: 1;
}
.branch-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.branch-detail i {
    margin-top: 4px;
    margin-right: 15px;
    font-size: 1.1rem;
    color: #004bad;
}
.branch-detail p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}
.branch-detail a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.branch-detail a:hover {
    color: #ff6b00;
}
.branch-btn {
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.branch-btn:hover {
    background: #004bad;
    color: #fff !important;
}

/* Custom Circles Layout for About Us */
.custom-circles-layout {
    position: relative;
    width: 100%;
    aspect-ratio: 1.2;
    background-color: #002b5e;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.circles-bg .dec-circle {
    position: absolute;
    border-radius: 50%;
}
.circles-bg .c-orange {
    width: 140px;
    height: 140px;
    background-color: #ff8b10;
    top: -20px;
    left: 20%;
}
.circles-bg .c-pink {
    width: 70px;
    height: 70px;
    background-color: #e51a5c;
    top: -20px;
    right: 35%;
}
.circles-bg .c-blue {
    width: 50px;
    height: 50px;
    background-color: #17c6d6;
    top: 45%;
    left: 12%;
}
.circles-bg .c-yellow {
    width: 80px;
    height: 80px;
    background-color: #fab416;
    bottom: 5%;
    left: 20%;
}
.circles-bg .c-lightblue {
    width: 60px;
    height: 60px;
    background-color: #17c6d6;
    bottom: -15px;
    right: 40%;
}
.main-circle-img {
    width: 65%;
    height: 80%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: #fff;
    border: 5px solid rgba(255,255,255,0.05);
}
.main-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.small-circle-img {
    position: absolute;
    width: 35%;
    height: 45%;
    border-radius: 50%;
    overflow: hidden;
    bottom: 8%;
    left: 3%;
    z-index: 3;
    background: #fff;
    border: 5px solid #002b5e;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.small-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.right-circle-img {
    position: absolute;
    width: 45%;
    height: 60%;
    border-radius: 50%;
    overflow: hidden;
    top: 20%;
    right: -8%;
    z-index: 3;
    background: #fff;
    border: 5px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.right-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Professional Floating Input Form CSS */
.contact-form-premium {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
}
.floating-input-group {
    position: relative;
    margin-bottom: 25px;
}
.form-control-premium {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid rgba(0, 75, 173, 0.1);
    border-radius: 12px;
    background: #f8faff;
    transition: all 0.3s ease;
    color: #333;
    font-family: inherit;
}
.form-control-premium:focus {
    outline: none;
    border-color: #004bad;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 75, 173, 0.1);
}
.floating-input-group label {
    position: absolute;
    left: 20px;
    top: 18px;
    color: #888;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
}
.form-control-premium:focus ~ label,
.form-control-premium:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    background: #fff;
    padding: 0 6px;
    color: #004bad;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}
textarea.form-control-premium {
    resize: vertical;
    min-height: 120px;
}

/* Services Highlight Parallax Background */
.services-bg-image {
    background-image: linear-gradient(rgba(240, 248, 255, 0.85), rgba(240, 248, 255, 0.95)), url('images/hospital-ward-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* ================= PROFESSIONAL BLOG SECTION ================= */
.blog-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ---- Section Header ---- */
.blog-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.blog-header-left {
    max-width: 640px;
}

.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-blue, #046bd2);
    background: rgba(4, 107, 210, 0.08);
    border: 1px solid rgba(4, 107, 210, 0.18);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.blog-eyebrow i { font-size: 0.72rem; }

.blog-main-title {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #0f1f36;
    margin-bottom: 12px;
    line-height: 1.15;
}

.blog-subtitle {
    font-size: 0.97rem;
    color: #5e718a;
    line-height: 1.7;
    margin: 0;
}

.blog-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 26px;
    border-radius: 50px;
    border: 2px solid var(--primary-blue, #046bd2);
    color: var(--primary-blue, #046bd2);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease, gap 0.25s ease;
    flex-shrink: 0;
}

.blog-view-all-btn i { transition: transform 0.25s ease; font-size: 0.82rem; }

.blog-view-all-btn:hover {
    background: var(--primary-blue, #046bd2);
    color: #ffffff;
    gap: 14px;
}

.blog-view-all-btn:hover i { transform: translateX(3px); }

/* ---- Pro Layout: Featured + Side ---- */
.blog-pro-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: stretch;
}

/* ---- Featured Article ---- */
.blog-featured {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-featured:hover {
    box-shadow: 0 16px 48px rgba(4, 107, 210, 0.12);
    transform: translateY(-4px);
}

.blog-featured-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 7;
    background: #cfe2f8;
    flex-shrink: 0;
}

.blog-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-featured:hover .blog-featured-thumb img {
    transform: scale(1.04);
}

.blog-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 28, 58, 0.55) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 18px 22px;
}

.blog-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: var(--primary-blue, #046bd2);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 13px;
    border-radius: 50px;
    text-transform: uppercase;
}

.blog-featured-body {
    padding: 28px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-featured-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.blog-pro-meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #7a8fa8;
    font-weight: 500;
}

.blog-pro-meta i { color: #9baec4; font-size: 0.75rem; }

.blog-pro-meta-sep {
    color: #c4cdd8;
    font-size: 1rem;
}

.blog-featured-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #0f1f36;
}

.blog-featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-featured-title a:hover { color: var(--primary-blue, #046bd2); }

.blog-featured-excerpt {
    font-size: 0.94rem;
    color: #576a82;
    line-height: 1.75;
    margin-bottom: 26px;
    flex: 1;
}

.blog-featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.blog-author-chip {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-author-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e8f2ff, #cce0ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue, #046bd2);
    font-size: 1rem;
    flex-shrink: 0;
}

.blog-author-chip > div {
    display: flex;
    flex-direction: column;
}

.blog-author-label {
    font-size: 0.72rem;
    color: #8a9baf;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-author-name {
    font-size: 0.86rem;
    color: #1e3050;
    font-weight: 700;
}

/* ---- Pro Read Button ---- */
.blog-pro-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-blue, #046bd2);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease, gap 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.blog-pro-read-btn i { font-size: 0.76rem; transition: transform 0.25s ease; }

.blog-pro-read-btn:hover {
    background: #035aad;
    box-shadow: 0 6px 18px rgba(4, 107, 210, 0.3);
    gap: 12px;
}

.blog-pro-read-btn:hover i { transform: translateX(3px); }

.blog-pro-read-btn--sm {
    padding: 9px 18px;
    font-size: 0.82rem;
}

/* ---- Side Cards ---- */
.blog-side-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.blog-side-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
    transition: background 0.25s ease;
}

.blog-side-card:hover { background: #f7faff; }

.blog-side-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 6;
    background: #cfe2f8;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.blog-side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-side-card:hover .blog-side-thumb img { transform: scale(1.05); }

.blog-side-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    color: #e0164e;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}

.blog-side-badge--ortho { color: var(--primary-blue, #046bd2); }

.blog-side-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.blog-side-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f1f36;
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-side-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-side-title a:hover { color: var(--primary-blue, #046bd2); }

.blog-side-excerpt {
    font-size: 0.84rem;
    color: #637589;
    line-height: 1.65;
    margin-bottom: 14px;
}

.blog-side-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.07);
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .blog-pro-layout {
        grid-template-columns: 1fr 360px;
    }
}

@media (max-width: 860px) {
    .blog-pro-layout {
        grid-template-columns: 1fr;
    }

    .blog-side-cards {
        flex-direction: row;
    }

    .blog-side-card {
        flex: 1;
    }

    .blog-side-divider {
        width: 1px;
        height: auto;
        margin: 0;
        align-self: stretch;
    }

    .blog-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .blog-side-cards {
        flex-direction: column;
    }

    .blog-side-divider {
        width: auto;
        height: 1px;
    }

    .blog-featured-body {
        padding: 22px 20px;
    }

    .blog-featured-title {
        font-size: 1.25rem;
    }

    .blog-featured-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ================= Supreme Hospitals Blog Style (matches supremehospitals.in/blogs/) ================= */
.sh-blog-section {
    background: #ffffff;
    padding: 60px 0 80px;
}

/* Centered blue "Blogs" heading */
.sh-blog-header {
    margin-bottom: 40px;
}

.sh-blog-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0056b3;
    text-align: center;
    margin: 0 0 40px;
    letter-spacing: 0;
}

/* Strict 2-column grid */
.sh-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1160px;
    margin: 0 auto;
}

/* Card */
.sh-blog-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sh-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,86,179,0.12);
}

/* Image */
.sh-blog-img-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 7;
    background: #e8f0fb;
    flex-shrink: 0;
}

.sh-blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sh-blog-card:hover .sh-blog-img-wrap img {
    transform: scale(1.03);
}

/* Body */
.sh-blog-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Category links — plain blue text with spaces, no pills */
.sh-blog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 10px;
}

.sh-blog-cats a {
    font-size: 0.82rem;
    font-weight: 500;
    color: #0056b3;
    background: none;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    transition: color 0.2s;
}

/* Add space between category links */
.sh-blog-cats a + a::before {
    content: " ";
    white-space: pre;
}

.sh-blog-cats a:hover {
    color: #003d82;
    text-decoration: underline;
}

/* Title — blue, bold */
.sh-blog-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0056b3;
    margin: 0 0 10px;
    line-height: 1.4;
}

.sh-blog-title a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s;
}

.sh-blog-title a:hover {
    color: #003d82;
    text-decoration: underline;
}

/* Excerpt — dark gray */
.sh-blog-excerpt {
    font-size: 0.9rem;
    color: #444444;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 16px;
}

/* Read More button — rectangular, solid blue */
.sh-blog-read-btn {
    align-self: flex-start;
    background: #0056b3;
    color: #ffffff !important;
    padding: 9px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none !important;
    display: inline-block;
    transition: background 0.2s ease;
}

.sh-blog-read-btn:hover {
    background: #003d82;
}

/* View All link */
.sh-blog-view-all {
    display: inline-block;
    color: #0056b3;
    border: 2px solid #0056b3;
    padding: 11px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.sh-blog-view-all:hover {
    background: #0056b3;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .sh-blog-grid {
        grid-template-columns: 1fr;
    }
    .sh-blog-heading {
        font-size: 1.7rem;
    }
    .sh-blog-title {
        font-size: 0.98rem;
    }
}


/* ============================================================
   OBG — Subspecialties + Video Section (Premium)
   ============================================================ */
.obg-video-section {
    background: #ffffff;
}

.obg-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ---- Left text ---- */
.obg-video-heading {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: #0f1f36;
    line-height: 1.2;
    margin-bottom: 16px;
}

.obg-subs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.obg-subs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.97rem;
    font-weight: 500;
    color: #2d3f55;
}

.obg-subs-list li i {
    color: var(--primary-blue, #046bd2);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ---- Right: phone frame ---- */
.obg-video-right {
    display: flex;
    justify-content: center;
    position: relative;
}

.obg-phone-frame {
    position: relative;
    width: 280px;
    background: #0f1117;
    border-radius: 44px;
    padding: 16px 12px 24px;
    box-shadow:
        0 0 0 2px #2a2d38,
        0 0 0 6px #1a1d24,
        0 30px 80px rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.obg-phone-notch {
    width: 90px;
    height: 22px;
    background: #0f1117;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 10px;
}

.obg-phone-screen {
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
    position: relative;
}

.obg-phone-screen iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.obg-phone-home-bar {
    width: 80px;
    height: 5px;
    background: rgba(255,255,255,0.25);
    border-radius: 10px;
    margin: 12px auto 0;
}

/* Ambient glow behind phone */
.obg-phone-glow {
    position: absolute;
    inset: 10% 5%;
    background: radial-gradient(ellipse, rgba(4, 107, 210, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .obg-video-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .obg-video-right {
        order: -1;
    }
    .obg-phone-frame {
        width: 220px;
    }
}

/* ============================================================
   OBG — Open FAQ Style
   ============================================================ */
.obg-faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0056b3;
    text-align: center;
    margin-bottom: 0;
}
.obg-faq-list {
    display: flex;
    flex-direction: column;
}
.obg-faq-item {
    padding: 28px 0;
    border-bottom: 1px solid #e0e7ef;
}
.obg-faq-item:first-child {
    border-top: 1px solid #e0e7ef;
}
.obg-faq-q {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0056b3;
    margin: 0 0 12px;
    line-height: 1.4;
}
.obg-faq-a {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.75;
    margin: 0;
}

/* ================= PROFESSIONAL FEATURE CARDS ================= */
.feature-card-premium {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.feature-card-premium:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-card-premium .feature-image {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.feature-card-premium .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card-premium:hover .feature-image img {
    transform: scale(1.05);
}

.feature-card-premium h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.feature-card-premium p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Radiology – Key features grid: 4 cards in one row on large screens */
.radiology-key-features-grid {
    display: grid;
    gap: 24px;
}
@media (min-width: 768px) {
    .radiology-key-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1200px) {
    .radiology-key-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.radiology-key-features-grid .feature-card-premium {
    height: 100%;
}

/* ================= PROFESSIONAL BENEFIT CARDS ================= */
.benefit-card-professional {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card-professional:hover {
    border-color: #0066cc;
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.12);
    transform: translateY(-8px);
}

.benefit-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0066cc 0%, #0a5ea8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.2);
}

.benefit-card-professional h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f1f36;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-card-professional p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ================= PROFESSIONAL CONSULTANT CARDS ================= */
.consultant-card-pro {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.consultant-card-pro:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.consultant-header-pro {
    background: linear-gradient(135deg, #0066cc 0%, #0a5ea8 100%);
    padding: 40px 24px 30px;
    text-align: center;
}

.consultant-avatar-pro {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 48px;
    color: #0066cc;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.consultant-info-pro {
    padding: 32px 24px;
    text-align: center;
}

.consultant-info-pro h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f1f36;
    margin-bottom: 8px;
}

.credentials-pro {
    font-size: 0.9rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 12px;
}

.bio-pro {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-full {
    width: 100% !important;
}

/* ================= PROFESSIONAL FAQ STYLING =================
   NOTE: scoped to `.professional-faq` so it does NOT override the
   default department FAQ design (`.faq-accordion ...`) across pages.
*/
.professional-faq .accordion-item {
    border-radius: 8px;
    margin-bottom: 12px;
    background: white;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.professional-faq .accordion-header {
    background: #f8fafc;
    padding: 20px 24px;
    font-weight: 600;
    color: #0066cc;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.professional-faq .accordion-header:hover {
    background: #eef6fb;
    color: #0a5ea8;
}

.professional-faq .accordion-content {
    padding: 24px;
    border-top: 1px solid #e2e8f0;
    display: none;
}

.professional-faq .accordion-content p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.professional-faq .accordion-item.active .accordion-content {
    display: block;
}

/* Scans Grid for Section 4 in Radiology */
.scans-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.scan-mini-card {
    background: #ffffff;
    border: 1px solid rgba(0, 102, 204, 0.08);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}
.scan-mini-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.1);
}
.scan-mini-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}
.scan-mini-card:hover .scan-mini-icon {
    background: var(--primary-blue);
    color: #ffffff;
}
.scan-mini-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 6px;
    line-height: 1.2;
}
.scan-mini-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}
@media (max-width: 576px) {
    .scans-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RADIOLOGY DEPARTMENT SPECIFIC OVERRIDES
   ============================================================ */

/* 1. Key Features Section - Ensure White Text on Blue Gradient Background */
.key-features-section {
    background: linear-gradient(135deg, #0066cc 0%, #0a5ea8 100%) !important;
    color: #ffffff !important;
}

.key-features-section .section-title h2 {
    color: #ffffff !important;
}

.key-features-section .feature-card-premium h3 {
    color: #ffffff !important;
}

.key-features-section .feature-card-premium p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* 2. Diagnostic Radiology Section - Ensure White Background and Dark Text */
.special-info-section {
    background-color: #ffffff !important;
    background: #ffffff !important;
}

.special-info-section h2 {
    color: #0b5b9c !important; /* brand blue */
}

.special-info-section p {
    color: #334155 !important; /* text-color / dark gray */
}

.special-info-section .subtitle {
    color: #0a2540 !important; /* secondary-blue */
}

/* Helper to force grid columns side-by-side on desktop */
@media (min-width: 992px) {
    .no-wrap-desktop {
        flex-wrap: nowrap !important;
    }
    .pl-lg-4 {
        padding-left: 1.5rem !important;
    }
}

/* 3. Remove fade-up scroll animations from FAQ sections to ensure they are visible immediately */
.faq-section .fade-up,
.dept-faq-section .fade-up,
.faq-accordion .fade-up,
.faq-accordion.fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ============================================================
   HEALTH CHECKUPS BOOKING MODAL
   ============================================================ */
.hc-booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hc-booking-modal.active {
    display: flex;
    opacity: 1;
}

.hc-booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 18, 37, 0.4);
    backdrop-filter: blur(8px);
}

.hc-booking-modal-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
    background: #ffffff;
    border-radius: 36px;
    box-shadow: 0 30px 80px rgba(6, 18, 37, 0.15);
    overflow: hidden;
    z-index: 2;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hc-booking-modal.active .hc-booking-modal-wrapper {
    transform: translateY(0);
}

.hc-booking-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    transition: all 0.3s ease;
    z-index: 10;
}
.hc-booking-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

.hc-booking-modal-container {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 50px;
    min-height: 420px;
    align-items: center;
}

.hc-modal-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hc-modal-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
}
.hc-modal-blob-1 {
    width: 180px;
    height: 180px;
    background: #f08121;
    top: -40px;
    left: -20px;
}
.hc-modal-blob-2 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    bottom: -60px;
    right: -40px;
}

.hc-booking-modal-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(240, 129, 33, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 69, 139, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hc-modal-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    width: 100%;
    align-items: center;
    z-index: 2;
    position: relative;
}

@media (max-width: 768px) {
    .hc-modal-layout {
        grid-template-columns: 1fr;
    }
    .hc-modal-left {
        display: none;
    }
}

.hc-modal-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hc-modal-doctor-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-image: url('https://res.cloudinary.com/dr7jaclns/image/upload/v1780918304/appointment_bg_h2p6p2.jpg');
    background-size: cover;
    background-position: center;
    border: 8px solid rgba(0, 69, 139, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hc-modal-right {
    display: flex;
    flex-direction: column;
}

.hc-modal-form-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    padding: 10px;
}

.hc-modal-form-group {
    margin-bottom: 20px;
}

.hc-modal-form-control {
    width: 100%;
    padding: 18px 24px;
    background: #f4f6f9;
    border: 2px solid transparent;
    border-radius: 14px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--hc-dark);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.hc-modal-form-control:focus {
    border-color: rgba(0, 69, 139, 0.2);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 69, 139, 0.05);
    outline: none;
}

.hc-modal-btn-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.hc-modal-btn-send {
    background: #0052a3;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 82, 163, 0.25);
    transition: all 0.3s ease;
}

.hc-modal-btn-send:hover {
    background: #004080;
    box-shadow: 0 12px 30px rgba(0, 82, 163, 0.35);
    transform: translateY(-2px);
}

.hc-modal-btn-send i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hc-modal-btn-send:hover i {
    transform: translateX(4px);
}

/* ============================================================
   GRID-3 LAYOUT UTILITIES
   ============================================================ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ENHANCED CONTACT MINI CARDS
   ============================================================ */
.contact-mini-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-mini-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.08);
    border-color: rgba(0, 102, 204, 0.25);
    background: #ffffff;
}

.contact-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.06);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-mini-card:hover .contact-icon-wrapper {
    background: var(--primary-blue);
    color: #ffffff;
    transform: scale(1.1) rotate(6deg);
}

.contact-mini-card h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--secondary-blue);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.contact-link {
    display: block;
    color: var(--text-color);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    transition: color 0.2s ease;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.contact-text {
    display: block;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
}
