/* Custom Hero Slider — same styling as the original hero section */

.custom-hero-slider {
    position: relative;
    width: 100%;
    height: 105vh;
    overflow: hidden;
    display: flex;
    align-items: end;
    background-color: #000;
}

.custom-hero-slider .bg-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.custom-hero-slider .slide-img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.custom-hero-slider .slide-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.custom-hero-slider .slide-img.active {
    opacity: 1;
}

.custom-hero-slider .slider-content {
    position: relative;
    z-index: 2;
    padding-left: 5%;
    padding-bottom: 150px;
}

.custom-hero-slider .title-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-hero-slider .title-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    line-height: 1.1;
}

.custom-hero-slider .title-item a {
    color: inherit;
    text-decoration: none;
}

.custom-hero-slider .title-item.active {
    color: #ffffff;
    transform: none;
}

.custom-hero-slider .title-item:hover {
    color: #ffffff;
}

/* মোবাইলের জন্য মিডিয়া কোয়েরি */
@media (max-width: 768px) {
    .custom-hero-slider {
        height: 60vh;
        min-height: 600px;
    }

    .custom-hero-slider .slider-content {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }

    .custom-hero-slider .title-item {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .custom-hero-slider .title-item.active {
        transform: translateX(10px);
    }
}

/* ছোট মোবাইলের জন্য */
@media (max-width: 480px) {
    .custom-hero-slider .title-item {
        font-size: 20px;
    }
}
