.hero-slider {
    max-width: 1170px;      /* থিমের লেআউট সাইজ */
    width: 100%;            /* পুরো কন্টেইনার জুড়ে */
    height: 600px;
    margin: 0 auto;         /* কেন্দ্রে অবস্থান */
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;             /* কোনো প্যাডিং থাকবে না */
    box-sizing: border-box; /* প্যাডিং সহ সাইজ ঠিক থাকবে */
}

.hero-slider .slide {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

