:root {
            --primary-blue: #0d6efd;
            --hospital-green: #198754;
            --accent-teal: #20c997;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--hospital-green);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 110, 253, 0.85), rgba(25, 135, 84, 0.9)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            position: relative;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--accent-teal);
            border-radius: 2px;
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .service-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
        }
        .stats-counter {
            background: linear-gradient(135deg, var(--hospital-green), var(--accent-teal));
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 100px 100px;
        }
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .doctor-card img {
            height: 280px;
            object-fit: cover;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
        }
        .doctor-card .card-body {
            padding: 1.5rem;
        }
        .btn-hospital {
            background: linear-gradient(to right, var(--primary-blue), var(--hospital-green));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-hospital:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
            color: white;
        }
        .footer {
            background: #1a252f;
            color: #dee2e6;
            padding-top: 3rem;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.2s;
            display: inline-block;
            margin-bottom: 8px;
        }
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        .friendlink-container {
            background: #2c3e50;
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem 0;
        }
        .flink {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 12px 20px;
            color: #dee2e6;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            margin: 5px;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border-color: var(--accent-teal);
            transform: translateY(-3px);
        }
        .flink i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .emergency-banner {
            background: linear-gradient(90deg, #dc3545, #ff6b7c);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1030;
        }
        .emergency-number {
            font-size: 1.5rem;
            font-weight: 700;
            margin-left: 10px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .counter-number {
                font-size: 2.5rem;
            }
            .stats-counter {
                border-radius: 0 0 50px 50px;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(13, 110, 253, 0.1);
            color: var(--primary-blue);
            font-weight: 600;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--accent-teal);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--hospital-green);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--accent-teal);
        }
        .testimonial-card {
            border-left: 5px solid var(--accent-teal);
            background: var(--light-bg);
            border-radius: 0 10px 10px 0;
        }
        .contact-info-box {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }
        .contact-info-box:hover {
            transform: translateY(-10px);
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .alert-hospital {
            border-left: 5px solid var(--hospital-green);
            border-radius: 0 8px 8px 0;
        }
