:root {
            --primary-blue: #0a4a7a;
            --primary-teal: #1a9aa0;
            --secondary-light: #e6f4f7;
            --accent-gold: #d4af37;
            --dark-text: #2c3e50;
            --light-text: #5d6d7e;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--primary-blue);
        }
        .navbar {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
        }
        .navbar-brand {
            color: var(--primary-blue) !important;
            font-weight: 800;
            font-size: 1.8rem;
        }
        .nav-link {
            color: var(--dark-text) !important;
            font-weight: 600;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--primary-teal) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 74, 122, 0.88), rgba(26, 154, 160, 0.85)), 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') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .card-hover {
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background-color: var(--secondary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-teal);
            font-size: 1.8rem;
        }
        .btn-teal {
            background-color: var(--primary-teal);
            border-color: var(--primary-teal);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-teal:hover {
            background-color: #14868b;
            transform: scale(1.05);
            color: white;
        }
        .btn-outline-teal {
            border: 2px solid var(--primary-teal);
            color: var(--primary-teal);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-outline-teal:hover {
            background-color: var(--primary-teal);
            color: white;
        }
        .stats-box {
            text-align: center;
            padding: 2rem;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        footer {
            background-color: #1a2a3a;
            color: #b0bec5;
            padding-top: 4rem;
        }
        footer a {
            color: #b0bec5;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
        }
        .footer-heading {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        .copyright {
            border-top: 1px solid #2c3e50;
            padding-top: 1.5rem;
            margin-top: 3rem;
        }
        .department-icon {
            font-size: 2.5rem;
            color: var(--primary-teal);
            margin-bottom: 1rem;
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            margin: 0.3rem;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            color: #b0bec5 !important;
            font-size: 0.9rem;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .flink:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: white !important;
            border-color: var(--primary-teal);
            transform: translateY(-3px);
        }
        .doctor-card img {
            height: 280px;
            object-fit: cover;
            object-position: top;
        }
        .news-card img {
            height: 220px;
            object-fit: cover;
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--secondary-light);
            color: var(--primary-blue);
            font-weight: 600;
        }
        .contact-info-box {
            background-color: var(--secondary-light);
            padding: 2rem;
            border-radius: 12px;
            border-left: 5px solid var(--primary-teal);
        }
        .map-container iframe {
            width: 100%;
            height: 350px;
            border-radius: 12px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
