:root {
            --primary-blue: #0a3d62;
            --primary-teal: #079992;
            --accent-gold: #f6b93b;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-blue);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 15px rgba(10, 61, 98, 0.08);
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
        }
        .navbar-brand {
            font-weight: 800;
            color: var(--primary-blue);
            font-size: 1.8rem;
        }
        .nav-link {
            color: var(--primary-blue) !important;
            font-weight: 600;
            margin: 0 0.3rem;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-teal) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(7, 153, 146, 0.8)), url('https://images.unsplash.com/photo-1516549655669-df659cb0f13b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-teal);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(10, 61, 98, 0.15) !important;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-teal), var(--primary-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        .icon-box i {
            font-size: 1.8rem;
            color: white;
        }
        .btn-primary {
            background: linear-gradient(to right, var(--primary-blue), var(--primary-teal));
            border: none;
            padding: 0.8rem 2.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(10, 61, 98, 0.2);
        }
        .department-card {
            border-left: 5px solid var(--primary-teal);
            transition: all 0.3s ease;
        }
        .doctor-card {
            text-align: center;
            padding: 2rem 1.5rem;
            border-radius: 12px;
        }
        .doctor-img {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            margin-bottom: 1.5rem;
        }
        footer {
            background-color: var(--primary-blue);
            color: #e0f7fa;
        }
        .flink {
            background: rgba(255,255,255,0.05);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            color: #e0f7fa;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin: 0.3rem;
        }
        .flink:hover {
            background: rgba(255,255,255,0.15);
            color: white;
            transform: translateY(-3px);
        }
        .stats-counter {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-teal);
            line-height: 1;
        }
        .contact-info-box {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary-teal);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
            padding-left: 1.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -1.9rem;
            top: 0.5rem;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary-blue);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--primary-teal);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
