 /* Custom CSS File: virtue_styles.css */

        /* --- 1. Color Palette Definitions --- */
        :root {
            --virtue-blue: #1a4d92; /* Main Hospital Blue (Primary) */
            --virtue-dark-blue: #0f305c; /* Dark contrast/text */
            --virtue-accent-red: #e62b3c; /* Attention-grabbing Red */
            --virtue-warning: #ffc107; /* Bright Yellow/Highlight */
            --virtue-success: #198754; /* Green (Used for Vision & Paediatrics) */
            --virtue-info: #0dcaf0; /* Cyan (Used for Antenatal) */
        }

        /* --- 2. Bootstrap Overrides --- */
        .bg-primary { background-color: var(--virtue-blue) !important; }
        .text-primary { color: var(--virtue-blue) !important; }
        .bg-danger { background-color: var(--virtue-accent-red) !important; }
        .text-danger { color: var(--virtue-accent-red) !important; }
        .bg-warning { background-color: var(--virtue-warning) !important; }
        .text-warning { color: var(--virtue-warning) !important; }
        .bg-success { background-color: var(--virtue-success) !important; }

        /* Custom utility classes */
        .bg-dark-blue { background-color: var(--virtue-dark-blue) !important; }
        .bg-light-blue { background-color: #f0f8ff; /* Very light blue background for sections */ }
        .text-dark-blue { color: var(--virtue-dark-blue) !important; }

        .btn-accent {
            background-color: var(--virtue-accent-red);
            border-color: var(--virtue-accent-red);
            color: white;
        }
        .btn-accent:hover {
            background-color: #c02334;
            border-color: #c02334;
        }
        .btn-outline-accent {
            color: var(--virtue-accent-red);
            border-color: var(--virtue-accent-red);
        }
        .btn-outline-accent:hover {
            background-color: var(--virtue-accent-red);
            color: white;
        }

        /* --- 3. Typography and Global Styles --- */
        body {
            font-family: 'Roboto', sans-serif;
            color: #444;
            overflow-x: hidden;
        }
        .navbar-brand {
            letter-spacing: 1px;
        }
        .nav-link {
            font-weight: 700;
            margin: 0 10px;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            border-color: var(--virtue-accent-red);
            color: var(--virtue-blue) !important;
        }

        /* --- 4. Hero Section with Slider --- */
        .hero-slider {
            position: relative;
            min-height: 85vh;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(26, 77, 146, 0.75), rgba(26, 77, 146, 0.4));
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding-top: 100px;
            padding-bottom: 100px;
        }
        
        .slide-indicators {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            z-index: 3;
        }
        
        .slide-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slide-indicator.active {
            background-color: white;
            transform: scale(1.2);
        }
        
        .slide-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 3;
            transition: all 0.3s ease;
        }
        
        .slide-nav:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }
        
        .slide-prev {
            left: 20px;
        }
        
        .slide-next {
            right: 20px;
        }
        
        .cta-badge {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(230, 43, 60, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(230, 43, 60, 0); }
            100% { box-shadow: 0 0 0 0 rgba(230, 43, 60, 0); }
        }

        /* --- 5. Specialist Clinic Schedule Cards --- */
        .schedule-card {
            transition: transform 0.3s ease;
            cursor: pointer;
            border-radius: 8px !important;
            min-height: 120px;
        }
        .schedule-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1) !important;
        }
        /* Ensure text in warning/info borders is readable */
        .border-warning .text-warning {
            color: #a08107 !important; /* Darker yellow for text contrast */
        }

        /* --- 6. Doctor Cards (Enhanced for professional look) --- */
        .doctor-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }
        .doctor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1) !important;
        }
        .doctor-card img {
            height: 150px;
            width: 150px;
            object-fit: cover;
            border-radius: 50%; /* Make circular */
            border: 5px solid var(--virtue-accent-red); /* Use accent color border */
            margin: 10px auto;
            display: block;
        }

        /* --- 7. New Styles for Enhanced Design --- */
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .stats-section {
            background: linear-gradient(rgba(15, 48, 92, 0.9), rgba(15, 48, 92, 0.9)), url('https://virtuehospitals.com/wp-content/uploads/2025/02/IMG-20250225-WA0071.jpg') center/cover;
        }
        
        .testimonial-card {
            border-left: 4px solid var(--virtue-blue);
            transition: transform 0.3s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        .testimonial-card i.fa-star {
             color: var(--virtue-warning);
        }
        
        .emergency-banner {
            background: linear-gradient(45deg, var(--virtue-accent-red), #ff6b6b);
            color: white;
            padding: 15px 0;
            font-weight: bold;
        }
        
        /* Center-aligned Title Style */
        .section-title {
            position: relative;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--virtue-accent-red);
        }

        /* Left-aligned Title Style (For About Us) */
        .section-title-left {
            position: relative;
            padding-bottom: 15px;
        }
        .section-title-left:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--virtue-accent-red);
        }
        
        .facility-card {
            transition: all 0.3s ease;
            overflow: hidden;
            border: 1px solid #eee;
        }
        .facility-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .appointment-form {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 2rem;
        }
        
        .floating-contact {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }
        
        .floating-contact .btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        /* New Styles for Enhanced Features */
        .news-card {
            transition: transform 0.3s ease;
        }
        .news-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon.primary {
            background-color: rgba(26, 77, 146, 0.1);
            color: var(--virtue-blue);
        }

        .feature-icon.success {
            background-color: rgba(25, 135, 84, 0.1);
            color: var(--virtue-success);
        }

        .feature-icon.danger {
            background-color: rgba(230, 43, 60, 0.1);
            color: var(--virtue-accent-red);
        }

        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
           /* height: 100%; */
            min-height: 400px;
        }

        .back-to-top {
            position: fixed;
            bottom: 155px;
			right: 25px;
            z-index: 1000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--virtue-blue);
            color: white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .back-to-top.show {
            opacity: 1;
        }

        /* Animation for elements on scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* New styles for enhanced images */
        .image-placeholder {
            background-color: #f8f9fa;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            font-weight: bold;
            text-align: center;
            overflow: hidden;
        }
        
        .service-image {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .about-image {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }
        
        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            height: 200px;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Accreditation Section Styles */
        .accreditation-section {
            background-color: #f8f9fa;
            padding: 40px 0;
            border-top: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
        }
        
        .accreditation-logo {
            height: 60px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .accreditation-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        .accreditation-text {
            font-size: 0.9rem;
            color: #6c757d;
            margin-top: 10px;
        }
        
        /* Enhanced Appointment Section */
        .appointment-map-section {
            padding: 60px 0;
        }
        
        .map-placeholder {          
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            font-weight: bold;
           
        }

        /* ================================
   SERVICES SIDEBAR
   ================================ */

.service-sidebar {
    background: #1a4d92;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.service-sidebar .sidebar-title {
    background: #17407a;
    color: #ffffff;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0;
}

.service-list {
    margin: 0;
    padding: 0;
}

.service-list li {
    list-style: none;
    padding: 12px 18px;
    font-size: 14px;
    color: #e9f1ff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-list li a {
    color: #e9f1ff;
    text-decoration: none;
    display: block;
}

.service-list li:hover,
.service-list li.active {
    background: #ffffff;
    color: #1a4d92;
}

.service-list li:hover a,
.service-list li.active a {
    color: #1a4d92;
    font-weight: 600;
}

/* ================================
   OPENING HOURS BOX
   ================================ */

.opening-hours {
    background: #0dcaf0;
    color: #ffffff;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.opening-hours h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.opening-hours strong {
    font-size: 20px;
}

/* ================================
   CONTACT BOX
   ================================ */

.contact-box {
    background: #2bb0d8;
    color: #ffffff;
    border-radius: 6px;
    padding: 20px;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.contact-box h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-box i {
    margin-right: 8px;
    color: #ffffff;
}

.contact-box p {
    margin-bottom: 10px;
}

/* ================================
   RESPONSIVE SIDEBAR
   ================================ */

@media (max-width: 991px) {
    .service-sidebar,
    .opening-hours,
    .contact-box {
        margin-bottom: 25px;
    }
}


.service-content {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.service-content h3 {
    color: #0f305c;
    font-weight: 700;
}

.service-content h5 {
    color: #1a4d92;
    margin-top: 25px;
    font-weight: 600;
}

.service-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #1a4d92;
    font-size: 13px;
}

.service-content p {
    margin-bottom: 15px;
}

.service-content img {
    border-radius: 6px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.appointment-box {
    background: #f2f6fb;
    border-left: 5px solid #1a4d92;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.appointment-box h5 {
    color: #0f305c;
}

.service-divider {
    border-top: 1px solid #e5e5e5;
    margin: 30px 0;
}

/* About Us Page Specific Styles */

/* Mission Statement Box */
.mission-statement {
    border-left: 5px solid var(--virtue-accent-red);
    background: linear-gradient(to right, rgba(26, 77, 146, 0.05), rgba(26, 77, 146, 0.02));
}

/* Team Statement Box */
.team-statement {
    border-left: 5px solid var(--virtue-blue);
}

/* Service Day Cards */
.service-day-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-day-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--virtue-blue);
}

.day-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(26, 77, 146, 0.1);
}

/* Value Cards */
.value-card {
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(26, 77, 146, 0.1);
}

/* Clinic Hours Box */
.clinic-hours {
    background: linear-gradient(135deg, var(--virtue-blue), #0f305c);
}

/* Team Photo Styling */
.team-photo-container img {
    border: 5px solid var(--virtue-blue);
    border-radius: 10px;
}

/* Stats Section Enhancement */
.stats-section {
    background: linear-gradient(rgba(15, 48, 92, 0.95), rgba(15, 48, 92, 0.95)), 
                url('https://virtuehospitals.com/wp-content/uploads/2025/02/IMG-20250225-WA0071.jpg') center/cover fixed;
}

/* Responsive Adjustments for About Page */
@media (max-width: 768px) {
    .service-day-card {
        margin-bottom: 20px;
    }
    
    .mission-statement {
        font-size: 0.9rem;
    }
    
    .team-statement {
        font-size: 0.9rem;
    }
}

/* Doctors Page Specific Styles */

/* Doctor Cards */
.doctor-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.doctor-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.doctor-img-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-image {
    transform: scale(1.05);
}

.doctor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 77, 146, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.doctor-card:hover .doctor-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.doctor-card:hover .overlay-content {
    transform: translateY(0);
}

.doctor-details {
    padding: 25px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.specialty-tags .badge {
    font-size: 0.7rem;
    padding: 5px 10px;
}

.doctor-qualifications {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

/* Doctor Profile Cards (Detailed View) */
.doctor-profile-card {
    border: 1px solid #e9ecef;
}

.doctor-profile-card img {
    object-fit: cover;
}

.doctor-info ul li {
    padding: 5px 0;
    border-bottom: 1px solid #f8f9fa;
}

.doctor-info ul li:last-child {
    border-bottom: none;
}

/* Specialty Filter */
.specialty-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    border-width: 2px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: var(--virtue-blue);
    color: white;
    border-color: var(--virtue-blue);
}

.filter-btn:hover:not(.active) {
    background-color: rgba(26, 77, 146, 0.1);
}

/* Support Team Card */
.support-team-card {
    border: 2px solid var(--virtue-blue);
}

.support-feature {
    padding: 20px;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.support-feature:hover {
    transform: translateY(-5px);
}

/* Stat Box */
.stat-box {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

/* Doctor Grid Animation */
.doctor-item {
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .doctor-profile-card .row {
        flex-direction: column;
    }
    
    .doctor-profile-card img {
        height: 300px;
    }
    
    .specialty-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    
    .doctor-img-container {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .doctor-details {
        padding: 15px;
    }
    
    .doctor-card h4 {
        font-size: 1.2rem;
    }
}

/* Contact Page Specific Styles */

/* Emergency Alert */
.alert-emergency {
    border-left: 5px solid #dc3545;
    border-radius: 10px;
    animation: alert-pulse 2s infinite;
}

@keyframes alert-pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

/* Contact Method Cards */
.contact-method {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    border-left: 4px solid var(--virtue-blue);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-details {
    border-left: 2px solid #e9ecef;
    padding-left: 20px;
}

.phone-item, .email-item, .hours-item {
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.phone-item:last-child, .email-item:last-child, .hours-item:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form-section .card {
    border-radius: 15px;
}

.contact-form-section .form-label {
    font-weight: 600;
    color: var(--virtue-dark-blue);
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--virtue-blue);
    box-shadow: 0 0 0 0.25rem rgba(26, 77, 146, 0.25);
}

.contact-form-section .form-control.is-valid,
.contact-form-section .form-select.is-valid {
    border-color: #198754;
}

.contact-form-section .form-control.is-invalid,
.contact-form-section .form-select.is-invalid {
    border-color: #dc3545;
}

/* Map Container */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.map-info {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
}

/* Department Contact Cards */
.department-contact-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.department-contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--virtue-blue);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.department-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(26, 77, 146, 0.1);
}

/* Contact Alternatives */
.contact-alternatives .btn {
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-alternatives .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Accordion */
.accordion-button {
    font-weight: 600;
    color: var(--virtue-dark-blue);
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.accordion-button:not(.collapsed) {
    background-color: var(--virtue-blue);
    color: white;
    border-color: var(--virtue-blue);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(26, 77, 146, 0.25);
    border-color: var(--virtue-blue);
}

.accordion-body {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-top: none;
}

/* Floating Contact Enhancement */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-contact .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.floating-contact .btn:hover {
    transform: scale(1.1);
}

/* Badge Customization */
.badge {
    font-weight: 500;
    padding: 5px 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-icon-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon-wrapper h4 {
        margin-top: 15px;
        margin-left: 0 !important;
    }
    
    .contact-details {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid #e9ecef;
        padding-top: 15px;
        margin-top: 15px;
    }
    
    .alert-emergency .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .alert-emergency .btn {
        margin-bottom: 10px;
        width: 100%;
    }
    
    .map-info .row {
        flex-direction: column;
    }
    
    .contact-alternatives .btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-method {
        padding: 15px;
    }
    
    .department-contact-card {
        margin-bottom: 20px;
    }
    
    .floating-contact {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-contact .btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* Blog Page Specific Styles */

/* Featured Article */
.featured-article-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.featured-article-card:hover {
    transform: translateY(-5px);
}

.article-badge {
    position: absolute;
    top: 15px;
    left: 15px;
}

.article-badge .badge {
    font-size: 0.8rem;
    padding: 5px 15px;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.article-author img {
    border: 2px solid var(--virtue-blue);
}

/* Side Featured Articles */
.small-article-card .card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.small-article-card .card:hover {
    transform: translateY(-3px);
}

.small-article-card .card-img-top {
    height: 150px;
    object-fit: cover;
}

/* Blog Posts Grid */
.blog-post-card {
    transition: all 0.3s ease;
}

.blog-post-card .card {
    border-radius: 10px;
    overflow: hidden;
}

.article-badge-small {
    position: absolute;
    top: 10px;
    left: 10px;
}

.article-badge-small .badge {
    font-size: 0.7rem;
    padding: 3px 10px;
}

.blog-post-card .card-img-top {
    height: 100%;
    object-fit: cover;
}

.blog-post-card .card-title {
    font-size: 1.1rem;
    line-height: 1.4;
}

.blog-post-card .card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.article-author-small p {
    font-size: 0.8rem;
}

/* Blog Filter */
.blog-filter {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.blog-filter .btn {
    padding: 8px 20px;
    font-weight: 600;
    border-width: 2px;
}

.blog-filter .btn.active {
    background-color: var(--virtue-blue);
    color: white;
    border-color: var(--virtue-blue);
}

.blog-filter .btn:hover:not(.active) {
    background-color: rgba(26, 77, 146, 0.1);
}

/* Sidebar Styles */
.sidebar-card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.sidebar-card .card-body {
    padding: 25px;
}

.sidebar-card h5 {
    border-bottom: 3px solid var(--virtue-blue);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Categories List */
.list-group-item {
    border: none;
    padding: 12px 0;
    border-bottom: 1px solid #eee !important;
}

.list-group-item:last-child {
    border-bottom: none !important;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

/* Recent Articles */
.recent-article-item {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-article-item h6 {
    transition: color 0.3s ease;
}

.recent-article-item:hover h6 {
    color: var(--virtue-blue) !important;
}

/* Newsletter Card */
.newsletter-card {
    background: linear-gradient(135deg, var(--virtue-blue), #0f305c);
    border: none;
}

.newsletter-card .form-control {
    padding: 12px;
    border-radius: 8px;
    border: none;
}

.newsletter-card .btn-warning {
    padding: 12px;
    font-weight: bold;
}

/* Health Tips */
.tip-item {
    padding: 10px 0;
}

.tip-item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.tip-item i {
    font-size: 1.2rem;
}

/* Pagination */
.pagination .page-link {
    color: var(--virtue-blue);
    border: 2px solid #e9ecef;
    margin: 0 5px;
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 15px;
}

.pagination .page-item.active .page-link {
    background-color: var(--virtue-blue);
    border-color: var(--virtue-blue);
    color: white;
}

.pagination .page-link:hover {
    background-color: rgba(26, 77, 146, 0.1);
    border-color: var(--virtue-blue);
}

/* Search Box */
.input-group .form-control {
    border: 2px solid #e9ecef;
    border-right: none;
    padding: 12px 15px;
}

.input-group .btn {
    border: 2px solid var(--virtue-blue);
    background-color: var(--virtue-blue);
    color: white;
    padding: 0 20px;
}

.input-group .btn:hover {
    background-color: #0f305c;
    border-color: #0f305c;
}

/* CTA Section */
.blog-cta {
    background: linear-gradient(rgba(26, 77, 146, 0.9), rgba(26, 77, 146, 0.9)), 
                url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .featured-article-card .row {
        flex-direction: column;
    }
    
    .featured-article-card img {
        height: 250px;
    }
    
    .blog-filter .d-flex {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .blog-post-card .row {
        flex-direction: column;
    }
    
    .blog-post-card .col-md-4 {
        height: 200px;
    }
    
    .blog-post-card .col-md-8 {
        padding: 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .blog-filter .btn {
        margin-bottom: 10px;
    }
    
    .featured-article-card .card-body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-filter .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .pagination .page-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .sidebar-card .card-body {
        padding: 15px;
    }
}


/* Article Page Specific Styles */

/* Article Header */
.article-header {
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

.article-category .badge {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.article-meta .author-info img {
    border: 3px solid var(--virtue-blue);
}

/* Article Content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--virtue-blue);
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--virtue-dark-blue);
}

.article-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Featured Image */
.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* Key Takeaway Box */
.key-takeaway {
    border-left: 5px solid var(--virtue-warning);
    background: linear-gradient(to right, var(--virtue-blue), #0f305c);
}

.key-takeaway h4 i {
    color: var(--virtue-warning);
}

/* Benefit Cards */
.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 77, 146, 0.1);
}

/* Checkup Steps */
.checkup-step {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.checkup-step:hover {
    transform: translateY(-3px);
}

.step-number {
    font-weight: bold;
    font-size: 1.2rem;
}

/* Accordion Customization */
.accordion-button {
    background-color: #f8f9fa;
    font-weight: 600;
    color: var(--virtue-dark-blue);
}

.accordion-button:not(.collapsed) {
    background-color: var(--virtue-blue);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(26, 77, 146, 0.25);
}

.accordion-body ul {
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Stat Cards */
.stat-card {
    transition: transform 0.3s ease;
    background: white;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
    border: 2px solid var(--virtue-blue);
}

/* Share Section */
.share-section .btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-section .btn:hover {
    transform: translateY(-3px);
}

/* Author Bio */
.author-bio {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
}

.author-bio img {
    border: 3px solid var(--virtue-blue);
}

/* Related Articles */
.related-articles .card {
    transition: transform 0.3s ease;
    overflow: hidden;
}

.related-articles .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.related-articles .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-articles .card:hover .card-img-top {
    transform: scale(1.05);
}

/* Breadcrumb Customization */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--virtue-blue);
}

.breadcrumb-item a {
    color: var(--virtue-blue);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--virtue-dark-blue);
    font-weight: 600;
}

/* Article Lists */
.article-content ul, .article-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Blockquotes */
.article-content blockquote {
    border-left: 4px solid var(--virtue-blue);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--virtue-dark-blue);
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
}

/* Tables */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.article-content th {
    background-color: var(--virtue-blue);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.article-content td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.article-content tr:last-child td {
    border-bottom: none;
}

.article-content tr:hover {
    background-color: #f8f9fa;
}

/* Code Blocks */
.article-content pre {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 2rem 0;
    border-left: 4px solid var(--virtue-blue);
}

/* Images within article */
.article-content img:not(.featured-image img) {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        justify-content: center;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .featured-image img {
        max-height: 300px;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .checkup-step {
        margin-bottom: 20px;
    }
    
    .cta-section .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .share-section .btn {
        width: 40px;
        height: 40px;
    }
    
    .author-bio .row {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .article-header {
        padding: 3rem 0;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .key-takeaway {
        padding: 1.5rem;
    }
    
    .accordion-button {
        font-size: 0.9rem;
        padding: 1rem;
    }
    
    .related-articles .card {
        margin-bottom: 20px;
    }
}

/* Gallery Page Specific Styles */

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    transition: all 0.3s ease;
}

/* Gallery Cards */
.gallery-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 77, 146, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

/* Gallery Caption */
.gallery-caption {
    padding: 20px;
    background: white;
}

.gallery-caption .badge {
    font-size: 0.8rem;
    padding: 5px 12px;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-filter .btn {
    border-width: 2px;
    font-weight: 600;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.gallery-filter .btn.active {
    background-color: var(--virtue-blue);
    color: white;
    border-color: var(--virtue-blue);
}

.gallery-filter .btn:hover:not(.active) {
    background-color: rgba(26, 77, 146, 0.1);
}

/* Gallery Stats */
.gallery-stats {
    margin-top: 40px;
}

.stat-item {
    padding: 20px;
    min-width: 150px;
}

.stat-item h3 {
    font-weight: 800;
}

/* Virtual Tour Preview */
.virtual-tour-preview {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.virtual-tour-preview img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.tour-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 40px;
}

/* Photo Submission Card */
.photo-submission-card {
    background: linear-gradient(135deg, var(--virtue-blue), #0f305c);
    border: 3px solid var(--virtue-warning);
}

.photo-submission-card i {
    color: var(--virtue-warning);
}

/* Virtual Tour Features */
.feature-item {
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

/* Load More Button */
#loadMore {
    padding: 15px 50px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#loadMore:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 77, 146, 0.3);
}

#loadMore:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Gallery Statistics */
.stat-number {
    padding: 20px;
}

.stat-number h2 {
    background: linear-gradient(45deg, var(--virtue-blue), var(--virtue-warning));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.lb-data .lb-number {
    color: var(--virtue-blue);
    font-weight: 600;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}

/* Social Links in Footer */
.social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-5px);
    color: var(--virtue-warning) !important;
}

/* Animation for Gallery Items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: fadeInUp 0.5s ease forwards;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .virtual-tour-preview img {
        height: 300px;
    }
    
    .tour-overlay {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-card img {
        height: 200px;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-filter .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    
    .gallery-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        min-width: 200px;
        margin-bottom: 20px;
    }
    
    .virtual-tour-preview img {
        height: 250px;
    }
    
    .photo-submission-card {
        padding: 30px !important;
    }
    
    .photo-submission-card .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-card img {
        height: 250px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .virtual-tour-preview img {
        height: 200px;
    }
    
    .tour-overlay h4 {
        font-size: 1.2rem;
    }
    
    .stat-number h2 {
        font-size: 3rem;
    }
}

/* Appointment Page Specific Styles */

/* Appointment Options */
.option-card {
    transition: all 0.3s ease;
    background: white;
    border: 2px solid transparent;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--virtue-blue);
}

.option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(26, 77, 146, 0.1);
}

/* Booking Steps */
.booking-steps {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 10px;
    border: 3px solid white;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background-color: var(--virtue-blue);
    color: white;
    border-color: var(--virtue-blue);
}

.step-line {
    position: absolute;
    top: 20px;
    height: 2px;
    background-color: #e9ecef;
    width: 100%;
    z-index: 1;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0;
}

.step.active .step-label {
    color: var(--virtue-blue);
}

/* Form Steps */
.form-step {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Card Options for Radio Buttons */
.card-option {
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.card-option:hover {
    border-color: var(--virtue-blue);
    background-color: rgba(26, 77, 146, 0.05);
}

.card-option .form-check-input {
    margin-top: 0;
    margin-right: 10px;
}

.card-option .form-check-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    cursor: pointer;
}

.card-option.border-danger {
    border-color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.05);
}

/* Datepicker Customization */
.flatpickr-calendar {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.flatpickr-day.selected {
    background-color: var(--virtue-blue);
    border-color: var(--virtue-blue);
}

.flatpickr-day.today {
    border-color: var(--virtue-accent-red);
}

/* Availability Calendar */
.day-slot {
    transition: all 0.3s ease;
}

.day-slot:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Review Summary */
.summary-card {
    background: white;
    transition: transform 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Confirmation Modal */
.confirmation-icon {
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Info Cards */
.info-card {
    transition: transform 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

/* Department Contact Cards */
.dept-contact-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dept-contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--virtue-blue);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dept-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(26, 77, 146, 0.1);
    margin-bottom: 15px;
}

/* Form Validation States */
.form-control.is-valid,
.form-select.is-valid {
    border-color: #198754;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Hours Card */
.hours-card {
    border-left: 5px solid var(--virtue-warning);
}

/* Support Contact Card */
.support-contact {
    border-left: 5px solid var(--virtue-warning);
}

/* Emergency CTA Section */
.emergency-cta {
    background: linear-gradient(45deg, #dc3545, #ff6b6b);
    animation: pulseEmergency 2s infinite;
}

@keyframes pulseEmergency {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

/* Print Styles */
@media print {
    .navbar,
    .top-bar,
    .emergency-banner,
    .floating-contact,
    .back-to-top,
    .page-header .breadcrumb,
    .appointment-options,
    .form-step .card-header,
    .form-step .card-footer,
    .info-card,
    .dept-contact-card,
    .emergency-cta,
    footer {
        display: none !important;
    }
    
    .page-header {
        padding: 1rem 0 !important;
        background: white !important;
        color: black !important;
    }
    
    .review-summary {
        break-inside: avoid;
    }
    
    body {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .booking-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-line {
        display: none;
    }
    
    .step {
        margin-bottom: 20px;
    }
    
    .card-option {
        margin-bottom: 15px;
    }
    
    .day-slot p {
        font-size: 0.8rem;
    }
    
    .form-step .d-flex {
        flex-direction: column;
    }
    
    .form-step .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .summary-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .option-card {
        margin-bottom: 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .info-card,
    .dept-contact-card {
        margin-bottom: 20px;
    }
    
    .emergency-cta .btn {
        width: 100%;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-menu {
    min-width: 240px;
    border-radius: 8px;
}

.dropdown-item {
    padding: 10px 16px;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #f0f6ff;
    color: #0d6efd;
}

.fertility-hero {
            background: linear-gradient(rgba(0, 43, 91, 0.85), rgba(0, 43, 91, 0.85)), url('assets/images/fertility-banner.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
        }
        .service-card {
            border: 1px solid #eef2f7;
            transition: all 0.3s ease;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .feature-icon {
            width: 60px;
            height: 60px;
            background: #f0f7ff;
            color: #007bff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 20px;
        }
        .highlight-box {
            background-color: #fff9e6;
            border-left: 5px solid #ffc107;
        }