:root {
            --primary-blue: #0056b3;
            --secondary-teal: #17a2b8;
            --accent-green: #28a745;
            --dark-navy: #00264d;
            --light-gray: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 38, 77, 0.85), rgba(0, 86, 179, 0.8)), 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: 160px 0 100px;
            position: relative;
        }
        .nav-wrapper {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1030;
            transition: all 0.3s ease;
        }
        .nav-wrapper.scrolled {
            padding: 5px 0;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--dark-navy);
        }
        .nav-link {
            font-weight: 600;
            color: var(--dark-navy) !important;
            padding: 0.5rem 1rem !important;
            margin: 0 0.2rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            background-color: rgba(0, 86, 179, 0.1);
            color: var(--primary-blue) !important;
            transform: translateY(-2px);
        }
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 40px;
            text-align: center;
            color: var(--dark-navy);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-teal));
            border-radius: 2px;
        }
        .card-hover {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 20px;
            font-size: 28px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
            color: white;
        }
        .department-card {
            border-left: 5px solid var(--primary-blue);
            transition: all 0.3s ease;
        }
        .department-card:hover {
            border-left-color: var(--accent-green);
            background-color: rgba(0, 86, 179, 0.03);
        }
        .btn-gmch {
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-teal));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-gmch:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
            color: white;
        }
        .stats-counter {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1;
        }
        .doctor-card {
            overflow: hidden;
            border-radius: 10px;
            transition: all 0.4s ease;
        }
        .doctor-card:hover .doctor-img {
            transform: scale(1.05);
        }
        .doctor-img {
            height: 280px;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        .emergency-banner {
            background: linear-gradient(90deg, #dc3545, #c82333);
            color: white;
            padding: 15px 0;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(220, 53, 69, 0); }
            100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
        }
        .contact-info-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0,0.12);
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px;
            background-color: #f1f7ff;
            border-radius: 5px;
            color: var(--dark-navy);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        footer {
            background-color: var(--dark-navy);
            color: #e0e0e0;
        }
        .footer-link {
            color: #b0d0ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: white;
            text-decoration: underline;
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .responsive-iframe {
            width: 100%;
            height: 400px;
            border: 0;
        }
        .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            border-left: 5px solid var(--secondary-teal);
            margin-bottom: 30px;
            height: 100%;
        }
        .patient-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary-teal);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 130px 0 70px;
            }
            .stats-counter {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .responsive-iframe {
                height: 300px;
            }
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 86, 179, 0.1);
            color: var(--primary-blue);
            font-weight: 600;
        }
        .news-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        .news-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50px;
            padding: 10px 20px;
        }
