.bank-accounts {
    position: relative;
    padding: 80px 0 120px; 
    text-align: center;
    background-color: #ffffff;
    z-index: 1;
    overflow: visible;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05);
}

.bank-section-title {
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: #222;
    margin-bottom: 10px;
}

.bank-section-description {
    font-size: 1.5rem;
    font-style: italic;
    color: #555;
    margin-bottom: 40px;
}

.bank-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.bank-track {
    display: flex;
    gap: 80px; 
    animation: slide 15s linear infinite;
}

.bank-track img {
    height: 200px; 
    width: auto;
    transition: transform 0.3s ease;
}

.bank-track:hover {
    animation-play-state: paused;
}

@keyframes slide {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .bank-section-title {
        font-size: 2.2rem;
    }

    .bank-section-description {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .bank-track img {
        height: 140px;
    }
}

@media (max-width: 767px) {
    .bank-section-title {
        font-size: 2rem;
    }

    .bank-section-description {
        font-size: 1.1rem;
    }

    .bank-track {
        gap: 50px;
    }

    .bank-track img {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .bank-accounts {
        padding: 60px 0 80px;
    }

    .bank-section-title {
        font-size: 1.8rem;
    }

    .bank-section-description {
        font-size: 1rem;
        padding: 0 15px;
    }

    .bank-track {
        gap: 30px;
    }

    .bank-track img {
        height: 100px;
    }
}
