/* ========================================
   VISA SERVICES BANNER AUTO-SCROLL
   ======================================== */
.visa-services-banner-section {
    margin: 60px 0;
}

.banner-scroll-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.visa-services-banner {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 60px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #1e40af #f9fafb;
}

.visa-services-banner::-webkit-scrollbar {
    height: 8px;
}

.visa-services-banner::-webkit-scrollbar-track {
    background: #f9fafb;
    border-radius: 10px;
}

.visa-services-banner::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 10px;
}

.visa-services-banner::-webkit-scrollbar-thumb:hover {
    background: #1e40af;
}

.banner-item {
    flex: 0 0 350px;
    height: 450px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.banner-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.25);
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-item:hover img {
    transform: scale(1.1);
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 64, 175, 0.95) 0%, rgba(30, 64, 175, 0.7) 50%, transparent 100%);
    padding: 35px 25px;
    color: #ffffff;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.banner-item:hover .banner-overlay {
    background: linear-gradient(to top, rgba(30, 64, 175, 1) 0%, rgba(30, 64, 175, 0.9) 70%, transparent 100%);
}

.banner-overlay h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-overlay p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.banner-item:hover .banner-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* Banner Scroll Buttons */
.banner-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.banner-scroll-btn:hover {
    background: #1e40af;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.banner-scroll-btn i {
    font-size: 20px;
    color: #1e40af;
    transition: color 0.3s ease;
}

.banner-scroll-btn:hover i {
    color: #ffffff;
}

.banner-scroll-left {
    left: 10px;
}

.banner-scroll-right {
    right: 10px;
}

/* Responsive Design for Banner */
@media (max-width: 768px) {
    .visa-services-banner {
        padding: 20px 10px;
    }
    
    .banner-item {
        flex: 0 0 280px;
        height: 380px;
    }
    
    .banner-scroll-btn {
        width: 40px;
        height: 40px;
    }
    
    .banner-scroll-btn i {
        font-size: 16px;
    }
    
    .banner-overlay h4 {
        font-size: 20px;
    }
    
    .banner-overlay p {
        font-size: 14px;
    }
}
