:root {
            --primary-blue: #0d6efd;
            --hospital-blue: #1a76d2;
            --medical-teal: #20c997;
            --dark-navy: #0d2b4e;
            --light-bg: #f8f9fa;
            --accent-red: #dc3545;
            --text-dark: #212529;
            --text-light: #6c757d;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        .hospital-blue {
            color: var(--hospital-blue);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 43, 78, 0.85), rgba(13, 43, 78, 0.9)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 4px;
            background: var(--medical-teal);
        }
        .center-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .department-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            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.1);
        }
        .department-card i {
            font-size: 2.5rem;
            color: var(--hospital-blue);
            margin-bottom: 20px;
        }
        .stats-counter {
            background: linear-gradient(to right, var(--dark-navy), var(--hospital-blue));
            color: white;
            padding: 80px 0;
        }
        .counter-item {
            text-align: center;
        }
        .counter-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .doctor-card {
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
            border: 1px solid #e9ecef;
        }
        .doctor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .doctor-img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        .news-card {
            border-left: 4px solid var(--medical-teal);
            transition: all 0.3s ease;
        }
        .news-card:hover {
            background-color: #f8f9fa;
            border-left-color: var(--hospital-blue);
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            background: #f1f5f9;
            border-radius: 6px;
            color: var(--text-dark);
            text-decoration: none;
            margin: 5px;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--hospital-blue);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: var(--dark-navy);
            color: #e9ecef;
        }
        .footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .emergency-banner {
            background: linear-gradient(to right, var(--accent-red), #ff6b6b);
            color: white;
            padding: 15px 0;
            font-weight: 600;
        }
        .btn-hospital {
            background-color: var(--hospital-blue);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-hospital:hover {
            background-color: var(--dark-navy);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .appointment-form {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            padding: 40px;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 80px 0;
            }
            .counter-number {
                font-size: 2.5rem;
            }
            .appointment-form {
                padding: 25px;
            }
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 40px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--medical-teal);
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 7px;
            top: 23px;
            width: 1px;
            height: calc(100% + 25px);
            background-color: #dee2e6;
        }
        .timeline-item:last-child::after {
            display: none;
        }
