:root {
            --primary-blue: #0056b3;
            --secondary-blue: #003d82;
            --accent-gold: #d4af37;
            --light-blue: #e8f4ff;
            --dark-gray: #333333;
            --medium-gray: #666666;
            --light-gray: #f8f9fa;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            overflow-x: hidden;
        }
        .main-header {
            background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1030;
        }
        .hospital-logo {
            height: 70px;
            transition: transform 0.3s ease;
        }
        .hospital-logo:hover {
            transform: scale(1.05);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            margin: 0 0.2rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: white !important;
            transform: translateY(-2px);
        }
        .emergency-badge {
            background-color: #dc3545;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            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 10px rgba(220, 53, 69, 0); }
            100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
        }
        .hero-section {
            background: linear-gradient(rgba(0, 30, 80, 0.85), rgba(0, 30, 80, 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 5rem;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 700px;
            opacity: 0.95;
        }
        .cta-button {
            background-color: var(--accent-gold);
            color: var(--secondary-blue);
            padding: 0.8rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .cta-button:hover {
            background-color: white;
            color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }
        .section-title {
            color: var(--secondary-blue);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--accent-gold);
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
        }
        .section-subtitle {
            color: var(--medium-gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 1.5rem auto 0;
        }
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: 1px solid #eee;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        .service-icon {
            font-size: 2.8rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        .facility-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 320px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        .facility-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .facility-card:hover .facility-img {
            transform: scale(1.05);
        }
        .facility-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 30, 80, 0.9), transparent);
            color: white;
            padding: 2rem 1.5rem 1.5rem;
        }
        .team-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        .team-card:hover {
            transform: translateY(-8px);
        }
        .team-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }
        .contact-info-card {
            background: var(--light-blue);
            border-radius: 10px;
            padding: 2rem;
            height: 100%;
            border-left: 5px solid var(--primary-blue);
            transition: transform 0.3s ease;
        }
        .contact-info-card:hover {
            transform: translateY(-5px);
        }
        .contact-icon {
            font-size: 2.2rem;
            color: var(--primary-blue);
            margin-bottom: 1.2rem;
        }
        .main-footer {
            background-color: #1a2b4d;
            color: #d1d9e6;
            padding-top: 4rem;
        }
        .footer-title {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.8rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        .footer-title:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent-gold);
            bottom: 0;
            left: 0;
        }
        .footer-link {
            color: #d1d9e6;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }
        .footer-link:hover {
            color: white;
            padding-left: 8px;
        }
        friendlink {
            display: block;
            margin-top: 4rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.08);
            color: #d1d9e6;
            padding: 0.6rem 1.5rem;
            margin: 0.5rem 0.7rem;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .flink:hover {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 6rem 0 4rem;
                min-height: 70vh;
            }
            .section-title {
                font-size: 2rem;
            }
            .hospital-logo {
                height: 60px;
            }
        }
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .text-gold {
            color: var(--accent-gold);
        }
        .bg-light-blue {
            background-color: var(--light-blue);
        }
