/* ==================================================
   Middle Banner Section Styles
   ================================================== */
.middle-banner-section {
    padding: 30px 0 60px 0; /* উপরে নিচে সুন্দর গ্যাপ রাখার জন্য */
    background-color: #0B081D; /* Theme main dark background */
}

.banner-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect: Banner slightly moves up and glows */
.banner-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3); /* Blue subtle glow */
}

.banner-link {
    display: block;
    width: 100%;
    position: relative;
}

.middle-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

/* Subtle Shine Effect on Hover */
.banner-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.banner-wrapper:hover .banner-overlay {
    left: 150%;
}