:root {
            --svims-blue: #0a4a7a;
            --svims-teal: #1a7a7a;
            --svims-gold: #d4af37;
            --svims-light: #f0f8ff;
            --svims-dark: #1a2a3a;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--svims-blue) !important;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s;
        }
        .nav-link:hover {
            color: var(--svims-teal) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 74, 122, 0.85), rgba(26, 122, 122, 0.8)), url('https://images.unsplash.com/photo-1516549655669-df6654e447d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }
        .section-title {
            color: var(--svims-blue);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--svims-gold);
        }
        .card-hover {
            transition: transform 0.4s, box-shadow 0.4s;
            border: none;
            border-radius: 12px;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
        }
        .department-icon {
            width: 70px;
            height: 70px;
            background: var(--svims-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--svims-teal);
            font-size: 1.8rem;
        }
        .bg-svims-light {
            background-color: var(--svims-light);
        }
        .btn-svims {
            background-color: var(--svims-teal);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
        }
        .btn-svims:hover {
            background-color: var(--svims-blue);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--svims-dark);
            color: #ccc;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 16px;
            border-radius: 4px;
            margin: 5px;
            transition: all 0.3s;
            color: #aaa;
            text-decoration: none;
        }
        .flink:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transform: translateY(-2px);
        }
        .contact-info i {
            width: 40px;
            color: var(--svims-teal);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--svims-blue);
        }
        .doctor-card img {
            height: 220px;
            object-fit: cover;
            object-position: top;
        }
        .news-card img {
            height: 200px;
            object-fit: cover;
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--svims-light);
            color: var(--svims-blue);
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
                min-height: 60vh;
            }
            .navbar-nav {
                text-align: center;
                padding-top: 10px;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
