:root {
            --primary-blue: #0056a6;
            --secondary-teal: #00a8a8;
            --accent-green: #4caf50;
            --dark-navy: #003366;
            --light-gray: #f8f9fa;
            --text-dark: #333333;
            --text-light: #666666;
            --shadow-light: rgba(0, 86, 166, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 1rem;
        }
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        .section-header h2 {
            font-size: 2.5rem;
            display: inline-block;
            padding-bottom: 15px;
        }
        .section-header h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary-teal);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: var(--dark-navy);
            border-color: var(--dark-navy);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px var(--shadow-light);
        }
        .btn-secondary {
            background-color: var(--secondary-teal);
            border-color: var(--secondary-teal);
            color: white;
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
        }
        .btn-secondary:hover {
            background-color: #008787;
            border-color: #008787;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 168, 168, 0.2);
        }
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
            transition: var(--transition);
        }
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
            display: flex;
            align-items: center;
        }
        .navbar-brand i {
            color: var(--secondary-teal);
            margin-right: 10px;
            font-size: 2rem;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 8px;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 86, 166, 0.9)), url('https://images.unsplash.com/photo-1516549655669-df6654e44780?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 100px;
            position: relative;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .icon-box {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            height: 100%;
        }
        .icon-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .icon-box i {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        .stats-counter {
            background-color: var(--light-gray);
            padding: 60px 0;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-top: 10px;
        }
        .department-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
        }
        .department-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        .department-card img {
            height: 220px;
            object-fit: cover;
            transition: var(--transition);
        }
        .department-card:hover img {
            transform: scale(1.03);
        }
        .department-card .card-body {
            padding: 25px;
        }
        .doctor-card {
            text-align: center;
            padding: 25px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            background: white;
            transition: var(--transition);
            height: 100%;
        }
        .doctor-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        .doctor-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--light-gray);
            margin: 0 auto 20px;
        }
        .news-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
        }
        .news-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        .news-card img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .news-content {
            padding: 25px;
        }
        .news-date {
            color: var(--secondary-teal);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: block;
        }
        .contact-info-box {
            padding: 30px;
            background: var(--light-gray);
            border-radius: 8px;
            height: 100%;
        }
        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        footer {
            background-color: var(--dark-navy);
            color: white;
            padding-top: 60px;
        }
        footer h5 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }
        footer h5:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background-color: var(--secondary-teal);
        }
        footer a {
            color: #cccccc;
            text-decoration: none;
            transition: var(--transition);
        }
        footer a:hover {
            color: white;
            padding-left: 5px;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .copyright {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #aaaaaa;
        }
        .friendlink-container {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 8px;
            margin-top: 20px;
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: #cccccc;
            padding: 8px 20px;
            border-radius: 4px;
            margin: 5px 8px;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .flink:hover {
            background: var(--secondary-teal);
            color: white;
            transform: translateY(-3px);
        }
        .emergency-banner {
            background-color: #e53935;
            color: white;
            padding: 12px 0;
            text-align: center;
            font-weight: 600;
        }
        .emergency-banner a {
            color: white;
            text-decoration: underline;
        }
        .sticky-top {
            top: 0;
            z-index: 1020;
        }
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 2.8rem;
            }
            .section-header h2 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }
            .section-header h2 {
                font-size: 1.8rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 576px) {
            .hero-section {
                padding: 100px 0 80px;
            }
            .hero-section h1 {
                font-size: 1.8rem;
            }
        }
