:root {
            --primary-blue: #003366;
            --secondary-gold: #D4AF37;
            --accent-red: #9E2A2B;
            --light-bg: #F8F9FA;
            --dark-text: #212529;
            --shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
            --shadow-md: 0 .5rem 1rem rgba(0,0,0,.15);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            padding-top: 76px;
        }
        h1, h2, h3, h4, .navbar-brand {
            font-family: 'Georgia', serif;
            font-weight: 700;
        }
        .navbar {
            background-color: white;
            box-shadow: var(--shadow-sm);
            padding: 0.75rem 0;
            transition: var(--transition);
        }
        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-md);
        }
        .nav-link {
            color: var(--primary-blue) !important;
            font-weight: 600;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            background-color: var(--primary-blue);
            color: white !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0 6rem;
            margin-bottom: 3rem;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: #002244;
            border-color: #002244;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .btn-outline-light:hover {
            background-color: white;
            color: var(--primary-blue);
        }
        .section-title {
            color: var(--primary-blue);
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-gold);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .icon-box {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow-sm);
            height: 100%;
            transition: var(--transition);
            border-top: 4px solid var(--primary-blue);
        }
        .icon-box:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
            border-top-color: var(--secondary-gold);
        }
        .icon-box i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }
        .department-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
        }
        .department-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }
        .department-card img {
            height: 220px;
            object-fit: cover;
        }
        .card-body {
            padding: 2rem;
        }
        .doctor-card {
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            background: white;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .doctor-card:hover {
            box-shadow: var(--shadow-md);
        }
        .doctor-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--light-bg);
            margin: 0 auto 1.5rem;
        }
        .stats-counter {
            background: linear-gradient(var(--primary-blue), #002244);
            color: white;
            padding: 4rem 0;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--secondary-gold);
        }
        .flink {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            margin: 0.5rem;
            background: var(--light-bg);
            border-radius: 50px;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--secondary-gold);
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--primary-blue);
            color: white;
            padding-top: 3rem;
        }
        .footer-link {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-link:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            background-color: #002244;
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        .emergency-banner {
            background-color: var(--accent-red);
            color: white;
            padding: 1rem;
            text-align: center;
            font-weight: 700;
            font-size: 1.2rem;
            position: fixed;
            bottom: 0;
            width: 100%;
            z-index: 1030;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        }
        .emergency-banner a {
            color: white;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            body { padding-top: 70px; }
            .hero-section { padding: 6rem 0 4rem; }
            .stat-number { font-size: 2.5rem; }
            .display-4 { font-size: 2.5rem; }
            .navbar-nav { text-align: center; }
        }
        .schema-ld {
            display: none;
        }
