/* Home Banner Slider & Sync Tabs */
.home-slider-container {
    position: relative;
    width: 100%;
    margin-top: 0;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 500px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    visibility: hidden;
    display: block;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.banner-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #115BA9;
    border-bottom: 2px solid #eee;
    padding: 0;
    list-style: none;
    margin: 0;
}

.banner-tabs li {
    border-right: 1px dashed #6697cb;
    flex: 1 1 20%;
    min-width: 120px;
    text-align: left;
    padding: 10px 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 19px;
    color: #fff;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-tabs li img {
    width: 60px;
    padding: 4px;
    flex-shrink: 0;
}

.banner-tabs li:hover {
    background: #062E5E;
}

.banner-tabs li.active {
    color: #fff;
    border-bottom: 3px solid #032f5e;
    background: #062E5E;
}

/* Slide Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .banner-tabs li {
        flex: 1 1 33.33%;
        font-size: 16px;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .banner-slider {
        height: 130px;
    }

    .banner-tabs li {
        font-size: 13px;
        padding: 8px 5px;
        flex: 1 1 50%;
        border-right: 1px dashed #6697cb;
    }

    .banner-tabs li img {
        width: 40px;
    }
}


@media screen and (min-device-width:600px) and (max-device-width: 768px) { 
     .banner-slider {
        height: 300px;
    }
}

@media screen and (min-device-width: 400px) and (max-device-width: 500px) { 
     .banner-slider {
        height: 160px;
    }
}

@media (max-width: 480px) {
	
    .banner-tabs li {
        flex: 1 1 50%;
        font-size: 11px;
        padding: 6px 4px;
        border-bottom: 1px dashed #6697cb;
    }
    
    .banner-tabs li:nth-child(2n) {
        border-right: none;
    }

    .banner-tabs li.active {
        border-bottom: 3px solid #032f5e;
    }

    .banner-tabs li img {
        width: 30px;
    }
}

@media (max-width: 320px) {
    .banner-slide {
        height: 130px;
    }
    
    .banner-tabs li {
        flex: 1 1 40%;
        border-right: none;
    }
}