:root {
            --primary-blue: #0d3b66;
            --secondary-teal: #1a936f;
            --accent-gold: #d4a418;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --gray-border: #dee2e6;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Source Serif Pro', serif;
            font-weight: 600;
            color: var(--primary-blue);
        }
        .section-padding {
            padding: 5rem 0;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 3rem 0;
            }
        }
        .main-header {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1030;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .logo-container {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
        }
        .brand-text h3 {
            font-size: 1.4rem;
            margin-bottom: 0;
            line-height: 1.2;
        }
        .brand-text p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 0;
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--primary-blue);
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--secondary-teal);
        }
        .emergency-btn {
            background: linear-gradient(45deg, #dc3545, #c82333);
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .emergency-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(220, 53, 69, 0.3);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 59, 102, 0.85), rgba(26, 147, 111, 0.8)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
        }
        .hero-title {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
        }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }
        .appointment-btn {
            background-color: var(--accent-gold);
            color: var(--primary-blue);
            border: none;
            padding: 0.9rem 2.5rem;
            font-weight: 600;
            border-radius: 30px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .appointment-btn:hover {
            background-color: #e6b422;
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(212, 164, 24, 0.4);
        }
        .stats-section {
            background-color: white;
            padding: 3rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .stat-item {
            text-align: center;
            padding: 1.5rem;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #666;
            font-weight: 500;
        }
        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid var(--gray-border);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary-blue), var(--secondary-teal));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 2rem auto 1.5rem;
        }
        .department-item {
            padding: 1.5rem;
            border-radius: 10px;
            background: white;
            border: 1px solid var(--gray-border);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .department-item:hover {
            background-color: #f0f9ff;
            border-color: var(--secondary-teal);
            transform: translateX(5px);
        }
        .department-icon {
            color: var(--secondary-teal);
            font-size: 1.8rem;
            min-width: 50px;
        }
        .news-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        .news-date {
            background-color: var(--primary-blue);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
        .contact-info-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
            border-top: 4px solid var(--secondary-teal);
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(26, 147, 111, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-teal);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .main-footer {
            background-color: var(--primary-blue);
            color: rgba(255, 255, 255, 0.85);
            padding-top: 4rem;
        }
        .footer-heading {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--accent-gold);
            display: inline-block;
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright-section {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        friendlink {
            display: block;
            background-color: #f8f9fa;
            padding: 3rem 0;
            border-top: 1px solid var(--gray-border);
            border-bottom: 1px solid var(--gray-border);
        }
        .flink-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
        }
        .flink {
            background: white;
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            text-decoration: none;
            color: var(--primary-blue);
            font-weight: 500;
            border: 1px solid var(--gray-border);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
        }
        .flink:hover {
            background-color: var(--light-bg);
            border-color: var(--secondary-teal);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            color: var(--secondary-teal);
            text-decoration: none;
        }
        .flink-logo {
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
            color: var(--primary-blue);
        }
        @media (max-width: 992px) {
            .navbar-collapse {
                padding: 1.5rem 0;
            }
            .hero-section {
                padding: 4rem 0;
                text-align: center;
            }
            .flink-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .flink-container {
                grid-template-columns: 1fr;
            }
            .stat-number {
                font-size: 2.2rem;
            }
            .hero-title {
                font-size: 1.8rem;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }
        .img-fluid-rounded {
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .img-hover-zoom {
            overflow: hidden;
            border-radius: 12px;
        }
        .img-hover-zoom img {
            transition: transform 0.5s ease;
        }
        .img-hover-zoom:hover img {
            transform: scale(1.05);
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
        }
        .btn-primary:hover {
            background-color: #0a2f4d;
            border-color: #0a2f4d;
        }
        .text-primary {
            color: var(--primary-blue) !important;
        }
        .bg-primary {
            background-color: var(--primary-blue) !important;
        }
        .border-primary {
            border-color: var(--primary-blue) !important;
        }
