.slick-slider {
    width: 100%;
}

.slider-item {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    text-align: center;
    width: 80%;
    border-radius: 10px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.description {
    font-size: 16px;
}

/* Target only UL under the class name */
.custom-checklist ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
}

.custom-checklist ul li {
    position: relative;
    padding-left: 30px; /* Space for the icon */
    margin-bottom: 8px;
}

.custom-checklist ul li::before {
    font-family: "Font Awesome 6 Free"; /* Make sure FA is loaded */
    font-weight: 900; /* Solid style */
    content: "\f00c"; /* Unicode for check icon */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: red;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    padding: 4px;
    line-height: 1;
}









.slider-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0 80px;
    display: flex;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

/* Black linear gradient overlay */
.slider-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.3),   /* top */
        rgba(0, 0, 0, 0.3)    /* bottom */
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* make sure text is above gradient */
    max-width: 650px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .slider-item {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .slider-item {
        padding: 0 20px;
        text-align: center;        /* center text on mobile */
        justify-content: center;   /* horizontally center content */
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .slider-item {
        height: 450px !important;
    }

    
}