/* BG Image Box Section */
.bg-img-box {
    width: 100%;
    max-width: 100%;
    padding: 80px 0;
    position: relative;
    background-image: url('../images/truck-wh.jpg'); /* change to your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.bg-img-content {
    position: relative;
    z-index: 2;
    background: #ffffffd4;
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.bg-img-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.bg-img-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.bg-img-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.bg-img-list li {
    font-size: 17px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}

.bg-img-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #0073aa;
    font-weight: 600;
}

.bg-img-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.bg-img-btn:hover {
    background: #0073aa;
}

@media (max-width: 768px) {
    .bg-img-content {
        padding: 35px 25px;
    }

    .bg-img-content h2 {
        font-size: 28px;
    }

    .bg-img-content p,
    .bg-img-list li {
        font-size: 16px;
    }
}
