:root {
            --primary-color: #0056a6;
            --secondary-color: #28a745;
            --accent-color: #ff6b35;
            --light-bg: #f8f9fa;
            --dark-text: #333;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 166, 0.85), rgba(0, 84, 166, 0.9)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            color: white;
            padding: 100px 0;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
        }
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #218838;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .section-title {
            color: var(--primary-color);
            border-bottom: 3px solid var(--accent-color);
            display: inline-block;
            padding-bottom: 10px;
            margin-bottom: 30px;
        }
        .service-card, .doctor-card, .dept-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .service-card:hover, .doctor-card:hover, .dept-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .doctor-card img {
            height: 300px;
            object-fit: cover;
        }
        .testimonial-card {
            background-color: var(--light-bg);
            border-left: 5px solid var(--secondary-color);
            padding: 25px;
            font-style: italic;
        }
        .contact-info i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background-color: #e9ecef;
            border-radius: 5px;
            text-decoration: none;
            color: var(--dark-text);
            transition: background-color 0.3s;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
        }
        footer {
            background-color: #2c3e50;
            color: white;
        }
        footer a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
