:root {
            --primary-blue: #0066cc;
            --secondary-blue: #004d99;
            --accent-teal: #00a8a8;
            --light-blue: #e6f2ff;
            --dark-gray: #333333;
            --medium-gray: #666666;
            --light-gray: #f5f5f5;
            --emergency-red: #e63946;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 102, 204, 0.85), rgba(0, 77, 153, 0.9)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .emergency-banner {
            background-color: var(--emergency-red);
            color: white;
            padding: 15px 0;
            font-weight: 600;
        }
        .department-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .department-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .icon-container {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .icon-container i {
            font-size: 30px;
            color: var(--primary-blue);
        }
        .stats-counter {
            background: linear-gradient(to right, var(--primary-blue), var(--accent-teal));
            color: white;
            padding: 60px 0;
        }
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin: 15px 0;
            height: 100%;
        }
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        .patient-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background-color: var(--light-gray);
            border-radius: 5px;
            color: var(--dark-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #ddd;
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: #222;
            color: #ddd;
        }
        .footer-link {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: white;
            text-decoration: underline;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            color: white;
            transition: all 0.3s ease;
            margin-right: 10px;
        }
        .social-icon:hover {
            background-color: var(--primary-blue);
            transform: translateY(-3px);
        }
        .btn-hospital-primary {
            background-color: var(--primary-blue);
            color: white;
            padding: 10px 25px;
            border-radius: 5px;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-hospital-primary:hover {
            background-color: var(--secondary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .btn-hospital-outline {
            background-color: transparent;
            color: var(--primary-blue);
            padding: 10px 25px;
            border-radius: 5px;
            border: 2px solid var(--primary-blue);
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-hospital-outline:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        .emergency-btn {
            background-color: var(--emergency-red);
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            border: none;
            font-weight: 700;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        .emergency-btn:hover {
            background-color: #c1121f;
            color: white;
            transform: scale(1.05);
        }
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
            }
        }
        .mobile-app-badge {
            width: 140px;
            height: auto;
            margin: 5px;
        }
        .department-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .doctor-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }
        .doctor-card:hover {
            transform: translateY(-10px);
        }
        .doctor-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .facility-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .facility-card:hover {
            transform: translateY(-10px);
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--light-blue);
            color: var(--primary-blue);
        }
        .breadcrumb {
            background-color: var(--light-gray);
        }
        .location-map {
            width: 100%;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .counter-number {
                font-size: 2.5rem;
            }
            .mobile-app-badge {
                width: 120px;
            }
        }
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            .flink {
                display: block;
                margin: 5px 0;
            }
        }
