:root {
            --primary-color: #0056b3;
            --secondary-color: #28a745;
            --accent-color: #dc3545;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: white !important;
        }
        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: white !important;
            text-decoration: underline;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 179, 0.8), rgba(0, 84, 179, 0.9)), url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .section-padding {
            padding: 80px 0;
        }
        .service-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .icon-container {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #004494;
            border-color: #004494;
            transform: scale(1.05);
        }
        .department-list {
            list-style: none;
            padding-left: 0;
        }
        .department-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        .department-list li i {
            color: var(--secondary-color);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        .doctor-card {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: box-shadow 0.3s;
        }
        .doctor-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .doctor-card img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 5px solid var(--light-color);
        }
        .testimonial-card {
            background-color: var(--light-color);
            padding: 30px;
            border-radius: 10px;
            border-left: 5px solid var(--primary-color);
        }
        .friendlink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            background-color: #f1f1f1;
            border-radius: 5px;
            color: var(--dark-color);
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
        }
        .friendlink:hover {
            background-color: var(--primary-color);
            color: white;
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: background-color 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--primary-color);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 60px 0;
            }
            .navbar-nav {
                text-align: center;
                background-color: rgba(0, 86, 179, 0.95);
                padding: 15px;
                border-radius: 10px;
                margin-top: 10px;
            }
        }
        .stats-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-color);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 86, 179, 0.1);
            color: var(--primary-color);
        }
        .contact-info-box {
            background-color: var(--light-color);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
            margin-bottom: 20px;
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
