/* =========================================================
   HERO / MAIN BANNER SLIDER
   PONNAMPET TOWN CO-OPERATIVE BANK
   ========================================================= */

.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    margin: 0;
    padding: 0;
}


/* =========================================================
   SLIDES CONTAINER
   ========================================================= */

.hero-banner .slides {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}


/* =========================================================
   INDIVIDUAL SLIDE
   ========================================================= */

.hero-banner .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}


/* Active slide */

.hero-banner .slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}


/* =========================================================
   BANNER IMAGE
   ========================================================= */

.hero-banner .slide img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: cover;

    user-select: none;
    -webkit-user-drag: none;
}


/* =========================================================
   SLIDER NAVIGATION BUTTONS
   ========================================================= */

.hero-banner .slider-btn {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 10;

    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 50%;

    background: rgba(19, 23, 48, 0.82);

    color: #ffffff;

    font-size: 24px;
    line-height: 44px;

    text-align: center;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Previous */

.hero-banner .slider-btn.prev {
    left: 20px;
}


/* Next */

.hero-banner .slider-btn.next {
    right: 20px;
}


/* Hover */

.hero-banner .slider-btn:hover {
    background: #FF8500;

    transform:
        translateY(-50%)
        scale(1.08);

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   FOCUS / ACCESSIBILITY
   ========================================================= */

.hero-banner .slider-btn:focus {
    outline: 3px solid rgba(255, 133, 0, 0.35);
    outline-offset: 3px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .hero-banner .slider-btn {
        width: 36px;
        height: 36px;

        font-size: 19px;
        line-height: 36px;
    }

    .hero-banner .slider-btn.prev {
        left: 10px;
    }

    .hero-banner .slider-btn.next {
        right: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero-banner .slider-btn {
        width: 32px;
        height: 32px;

        font-size: 16px;
        line-height: 32px;
    }

    .hero-banner .slider-btn.prev {
        left: 7px;
    }

    .hero-banner .slider-btn.next {
        right: 7px;
    }

}