/* ==========================================================================
   1. GLOBAL RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #1a2e2b;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }

/* ==========================================================================
   2. TOP BAR & HEADER / NAVIGATION
   ========================================================================== */
/* Top Strip Info */
.top-bar {
    background-color: #0d1e1a;
    color: #a3b8b5;
    font-size: 13px;
    padding: 10px 0;
    position: relative;
    z-index: 1002;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-links a {
    color: #a3b8b5;
    text-decoration: none;
    margin-left: 16px;
    transition: color 0.3s ease;
}
.top-links a:hover { color: #009677; }

/* Sticky Navbar Setup */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 150, 119, 0.08);
    z-index: 1001;
    border-bottom: 1px solid rgba(0, 150, 119, 0.1);
    height: 75px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.main-hospital-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    display: block;
    transform: translateY(4px);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: #3b4f4c;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #009677;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active { color: #009677; }

.btn-nav {
    background-color: #009677;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 150, 119, 0.2);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: #007d63;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: rgba(0, 150, 119, 0.1);
    border: none;
    color: #009677;
    font-size: 22px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   3. HERO BANNER SECTION
   ========================================================================== */
.creative-hero-section {
    position: relative;
    padding: 50px 0 70px 0;
    background-color: #ffffff;
    overflow: hidden;
    z-index: 1;
}

/* Ambient Soft Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.45;
}
.orb-1 {
    width: 400px;
    height: 400px;
    background-color: #ecf9f6;
    top: -10%;
    left: -10%;
}
.orb-2 {
    width: 500px;
    height: 500px;
    background-color: rgba(0, 150, 119, 0.12);
    bottom: -5%;
    right: -5%;
}

.creative-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.creative-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ecf9f6;
    color: #009677;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid rgba(0, 150, 119, 0.15);
}

.main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0d1e1a;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.gradient-text {
    background: linear-gradient(135deg, #009677 0%, #005a47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-desc {
    font-size: 16px;
    color: #4a615d;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 540px;
}

.hero-action-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Button Variants */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-creative {
    background: linear-gradient(135deg, #009677 0%, #007d63 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 150, 119, 0.3);
    border: none;
    cursor: pointer;
}
.btn-creative:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 35px rgba(0, 150, 119, 0.4);
}

.btn-outline {
    background: transparent;
    color: #009677;
    border: 2px solid #009677;
}
.btn-outline:hover {
    background-color: #ecf9f6;
    transform: translateY(-2px);
}

.floating-meta-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 150, 119, 0.08);
    border: 1px solid rgba(0, 150, 119, 0.06);
    max-width: 340px;
}

.meta-icon-box {
    width: 40px;
    height: 40px;
    background-color: #009677;
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.floating-meta-card h4 { font-size: 14.5px; color: #0d1e1a; font-weight: 700; }
.floating-meta-card p { font-size: 12px; color: #627a76; }

/* Hero Right Side Image Masking */
.hero-visual-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mask-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 440px;
}

.graphic-ring-spin {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    border: 2px dashed rgba(0, 150, 119, 0.2);
    border-radius: 43% 57% 65% 35% / 47% 45% 55% 53%;
    animation: spinSlow 25s infinite linear;
    z-index: 1;
}

.organic-photo-mask {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ecf9f6;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 150, 119, 0.15);
    z-index: 2;
    border: 6px solid #ffffff;
}

.masked-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}
.organic-photo-mask:hover .masked-hero-img {
    transform: scale(1.08);
}

.floating-badge-pill {
    position: absolute;
    bottom: 8%;
    right: -5%;
    background: #0d1e1a;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13.5px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 3;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #009677;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 150, 119, 0.7);
    animation: pulseRing 1.6s infinite;
}

/* Infinite Horizontal Marquee Tracks */
.marquee-track {
    background-color: #0d1e1a;
    padding: 14px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    z-index: 4;
    border-top: 1px solid rgba(0, 150, 119, 0.2);
}

.marquee-content {
    display: inline-block;
    animation: marqueeMove 28s infinite linear;
}

.marquee-content span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-right: 40px;
    display: inline-block;
}

/* Features Strip Layout */
.strip-section {
    background-color: #009677;
    padding: 20px 0;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.strip-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.strip-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }

/* ==========================================================================
   4. GENERAL SECTIONS & ABOUT US
   ========================================================================== */
.section-padding { padding: 50px 0; position: relative; z-index: 2; }
.alt-bg { background-color: #f2faf7; }

.section-heading { margin-bottom: 35px; }
.section-heading h2 { font-size: 34px; font-weight: 800; color: #0d1e1a; letter-spacing: -0.5px; }
.section-heading p { color: #556b67; font-size: 15px; margin-top: 8px; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 45px;
    align-items: center;
}
.about-image-stack img { width: 100%; border-radius: 20px; box-shadow: 0 20px 45px rgba(0,0,0,0.06); object-fit: cover; }

.mini-title { color: #009677; font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: 1.5px; display: block; margin-bottom: 10px; }
.about-content h2 { font-size: 34px; font-weight: 800; color: #0d1e1a; margin-bottom: 18px; }
.about-content p { color: #556b67; margin-bottom: 22px; font-size: 15.5px; line-height: 1.6; }

.about-points { margin-bottom: 26px; }
.a-point { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #334b47; margin-bottom: 12px; }
.a-point i { color: #009677; font-size: 16px; }

.stat-boxes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.s-box { background: #ffffff; padding: 18px 14px; border-radius: 12px; text-align: center; box-shadow: 0 8px 25px rgba(0,0,0,0.02); border: 1px solid rgba(0, 150, 119, 0.05); }
.s-box h3 { font-size: 24px; color: #009677; font-weight: 800; }
.s-box p { font-size: 12px; color: #556b67; margin-top: 4px; font-weight: 600; }

/* ==========================================================================
   Services / Specialities Section Styling
   ========================================================================== */

/* Main Section Layout */
.creative-services-section {
    position: relative;
    background-color: #f8faf9;
    padding: 80px 0;
    overflow: hidden;
}

/* Ambient Glow Orbs (Background Effects) */
.service-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 150, 119, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.glow-top {
    top: -100px;
    left: -100px;
}

.glow-bottom {
    bottom: -100px;
    right: -100px;
}

/* Section Header Styling */
.section-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.mini-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 150, 119, 0.1);
    color: #009677;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-main-title {
    font-size: 2.5rem;
    color: #1a2b27;
    font-weight: 800;
    margin-bottom: 12px;
}

.text-highlight {
    color: #009677;
}

.section-sub-desc {
    font-size: 1.05rem;
    color: #5f716d;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout for Cards */
.specialities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Base Card Container */
.spec-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 150, 119, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 150, 119, 0.15);
}

/* Image Wrapper Box */
.spec-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #f0f4f3;
}

.spec-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.spec-card:hover .spec-img {
    transform: scale(1.08);
}

/* Subtle Overlay on Image */
.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.25) 100%);
    pointer-events: none;
}

/* Card Content Area */
.spec-card-content {
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.spec-card-content h3 {
    font-size: 1.25rem;
    color: #1a2b27;
    margin-bottom: 10px;
    font-weight: 700;
}

.spec-card-content p {
    font-size: 0.95rem;
    color: #5f716d;
    line-height: 1.6;
    margin: 0;
}

/* Featured / Highlighted Card Style */
.highlight-card {
    border: 2px solid #009677;
}

.popular-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #009677;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 150, 119, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================================================
   Responsive Adjustments (Mobile & Tablet)
   ========================================================================== */

@media (max-width: 991px) {
    .section-main-title {
        font-size: 2.1rem;
    }
    
    .specialities-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .creative-services-section {
        padding: 50px 0;
    }

    .section-main-title {
        font-size: 1.8rem;
    }

    .specialities-grid {
        grid-template-columns: 1fr; /* Mobile par single column layout */
        gap: 20px;
    }

    .spec-img-box {
        aspect-ratio: 16 / 9; /* Mobile screens ke hisab se optimal aspect ratio */
    }

    .spec-card-content {
        padding: 18px 16px 20px;
    }
}
/* Mobile Par Animation Auto-Show (Fix for Hidden Content) */
@media (max-width: 768px) {
    .reveal-head, 
    .reveal-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/* ==========================================================================
   6. CLEAN EQUIPMENT & STERILIZATION
   ========================================================================== */
.clean-equipment-section {
    background: #ffffff;
    padding: 60px 0 70px 0;
    position: relative;
}

/* ==========================================================================
   7. EXPERT DOCTORS SECTION (Updated Modern Banner Look)
   ========================================================================== */
#doctors.section-padding {
    background-color: #009677;
    padding: 60px 0;
}

#doctors .section-heading { margin-bottom: 35px; }
#doctors .section-heading h2 { color: #ffffff; font-size: 34px; margin-top: 10px; margin-bottom: 8px; font-weight: 800; }
#doctors .section-heading p { color: #e0f2fe; font-size: 15px; }

#doctors .mini-title {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    width: auto;
}

.doctors-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.doctor-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 16px; /* Reduced outer padding to make image dominant */
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

/* Big Image Container Upgrade */
.doc-image-wrapper {
    width: 100%;
    height: 320px; /* Badi portrait height */
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    background-color: #f8fafc;
}

.doc-real-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: top center; 
    display: block; 
    transition: transform 0.4s ease;
}

.doctor-card:hover .doc-real-img {
    transform: scale(1.04);
}

.doctor-card h3 { 
    font-size: 20px; 
    color: #0d1e1a; 
    font-weight: 800; 
    margin-bottom: 4px; 
}

.doc-spec { 
    display: block; 
    color: #009677; 
    font-weight: 700; 
    font-size: 13.5px; 
    margin-bottom: 12px; 
}

.doc-reg-tag {
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #f2faf7;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    color: #2a3c39;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 150, 119, 0.18);
}

.doc-reg-tag i { color: #009677; }

.doc-certifications {
    width: 100%;
    text-align: left;
    border-top: 1px dashed rgba(0, 150, 119, 0.2);
    padding: 14px 8px 4px 8px;
    margin-top: auto;
}

.doc-certifications ul { list-style: none; padding: 0; margin: 0; }

.doc-certifications li {
    font-size: 13px;
    color: #4a5d59;
    line-height: 1.45;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 500;
}

.doc-certifications li:last-child { margin-bottom: 0; }
.doc-certifications i { color: #009677; font-size: 13px; margin-top: 2px; flex-shrink: 0; }

/* ==========================================================================
   8. BOOKING HUB & FAQ ACCORDION
   ========================================================================== */
.hub-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.hub-form-card { background: #ffffff; border: 1px solid rgba(0,150,119,0.06); padding: 35px; border-radius: 20px; box-shadow: 0 15px 45px rgba(0,0,0,0.02); }
.hub-form-card h2 { font-size: 28px; color: #0d1e1a; margin-bottom: 8px; font-weight: 800; }
.hub-form-card p { color: #556b67; margin-bottom: 26px; font-size: 14.5px; }

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-weight: 700; font-size: 13.5px; color: #334b47; margin-bottom: 7px; }

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 14.5px;
    background-color: #fcfefe;
    color: #1a2e2b;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: #009677; box-shadow: 0 0 0 4px rgba(0,150,119,0.1); }
.btn-wide { width: 100%; justify-content: center; margin-top: 8px; }

.timing-badge { background-color: #0d1e1a; color: #ffffff; padding: 24px; border-radius: 16px; margin-bottom: 28px; }
.timing-badge h4 { font-size: 18px; margin-bottom: 10px; color: #009677; font-weight: 700; }
.timing-badge p { font-size: 14px; color: #cbd5e1; margin-bottom: 6px; }
.em-phone { color: #009677 !important; font-weight: 800; font-size: 15px !important; margin-top: 4px; }

.faq-accordion h3 { font-size: 22px; color: #0d1e1a; margin-bottom: 18px; font-weight: 800; }
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question {
    padding: 16px 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14.5px;
    color: #0d1e1a;
}

.faq-icon { color: #009677; font-size: 13px; transition: transform 0.3s ease; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fafdfc;
}

.faq-answer p { padding-bottom: 16px; color: #556b67; font-size: 14px; line-height: 1.6; }
.faq-item.active { border-color: rgba(0, 150, 119, 0.25); }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-item.active .faq-answer { max-height: 200px; padding: 0 20px 6px 20px; opacity: 1; }

/* ==========================================================================
   9. FOOTER & WIDGETS
   ========================================================================== */
.hospital-footer { 
    background-color: #081210; 
    color: #a3b8b5; 
    padding: 60px 0 24px 0; 
    border-top: 4px solid #009677;
    position: relative;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1.25fr 0.75fr; 
    gap: 50px; 
    margin-bottom: 40px; 
}

.f-logo-box {
    margin-bottom: 20px;
    background: #ffffff;
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
}

.f-info p { max-width: 480px; font-size: 14.5px; line-height: 1.7; color: #cbd5e1; }
.f-socials { display: flex; gap: 14px; margin-top: 24px; }

.f-socials a { 
    width: 40px; 
    height: 40px; 
    background: rgba(255, 255, 255, 0.04); 
    color: #ffffff; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 150, 119, 0.15);
}

.f-socials a:hover { 
    background: #009677; 
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 150, 119, 0.3);
}

.f-address h4 { 
    color: #ffffff; 
    font-size: 18px; 
    margin-bottom: 20px; 
    font-weight: 800; 
    position: relative;
    padding-bottom: 8px;
}

.f-address h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #009677; 
}

.f-address p { 
    font-size: 14.5px; 
    margin-bottom: 14px; 
    line-height: 1.6; 
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
}

.f-address p.addr-line { line-height: 1.5; }
.f-address i { color: #009677; font-size: 15px; margin-top: 4px; }

.footer-bottom { 
    border-top: 1px solid rgba(255, 255, 255, 0.07); 
    padding-top: 24px; 
    font-size: 13.5px; 
    color: #8fa3a0;
}

/* Floating Action Widgets */
.floating-contact-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-btn { background-color: #25d366; }
.call-btn { background-color: #009677; }

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   10. SCROLL REVEAL INITIAL STATES & KEYFRAMES
   ========================================================================== */
.reveal-head {
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.5s ease;
}

.reveal-head.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-card {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-card.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseRing {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 150, 119, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 150, 119, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 150, 119, 0); }
}

@keyframes marqueeMove {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes spinSparkle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes ambientFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.15); }
}

/* ==========================================================================
   11. UNIFIED RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   ========================================================================== */

/* Tablet Screens (Below 1024px) */
@media (max-width: 1024px) {
    .creative-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-desc { margin: 0 auto 25px auto; }
    .hero-action-group { justify-content: center; }
    .floating-meta-card { margin: 0 auto; }
    .mask-wrapper { height: 400px; margin: 0 auto; }
    .floating-badge-pill { right: 0; }
    .about-grid, .hub-grid { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 991px) {
    .navbar {
        height: 75px;
    }

    .main-hospital-logo {
        height: 150px;
        transform: translateY(2px);
    }
}

/* Mobile Screens (Below 768px) */
@media (max-width: 768px) {
    .top-bar { 
        display: none !important; 
    }
    
    .navbar { height: 70px; }
    .main-hospital-logo { height: 180px; max-width: 200px; }
    
    .menu-toggle { 
        display: flex; 
        z-index: 1002;
    }
    
    /* Dropdown Nav Menu Layout */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        border-bottom: 3px solid #009677;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
    }
    
    /* Active Toggle State */
    .nav-menu.show, .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-link { font-size: 16px; width: 100%; text-align: center; padding: 8px 0; }
    .btn-nav { width: 100%; text-align: center; margin-top: 10px; }
    
    .creative-hero-section { padding-top: 30px; padding-bottom: 50px; }
    .section-padding { padding: 35px 0; }
    
    .main-title { font-size: 34px; }
    .mask-wrapper { height: 320px; }
    
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .floating-contact-widgets {
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile Small Devices (Below 576px) */
@media (max-width: 576px) {
    .about-grid { gap: 24px; }
    .about-content h2 { font-size: 24px; margin-bottom: 14px; }
    .about-content p { font-size: 14px; line-height: 1.5; margin-bottom: 18px; }
    .a-point { font-size: 13.5px; margin-bottom: 10px; }

    .stat-boxes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .s-box { padding: 12px 6px; border-radius: 10px; }
    .s-box h3 { font-size: 18px; }
    .s-box p { font-size: 10.5px; margin-top: 2px; line-height: 1.2; }
}

@media (max-width: 380px) {
    .stat-boxes-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    }
}