/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 20px 0;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: #194a97;
}

/* Services Slider */
.services-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.services-slider {
    display: flex;
    animation: servicesLoop 20s linear infinite;
    gap: 30px;
}

@keyframes servicesLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.services-slider .service-card {
    flex: 0 0 350px;
    min-width: 350px;
}

.services-nav {
    display: none;
}

.services-nav-btn {
    background: #194a97;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 74, 151, 0.3);
}

.services-nav-btn:hover {
    background: #f78f1e;
    transform: scale(1.1);
}

/* Doctors Row */
.doctors-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.doctors-row .doctor-card {
    flex: 0 0 calc(25% - 22.5px);
    min-width: 250px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-slider-container {
        padding: 0 20px;
    }
    
    .services-slider .service-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .doctors-row .doctor-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .doctors-row .doctor-card {
        flex: 0 0 100%;
    }
}
