
.service-hero {
    position: relative;
    height: 65vh;
    background: url("../images/truck.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-hero-title {
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-hero-breadcrumb {
    color: #ccc;
    margin-top: 10px;
    font-size: 18px;
}

.service-hero-breadcrumb span {
    color: #f7c600;
}



/* ================= SLIDER ================= */
.service-slider-section {
    background: #0d0d0d;
    padding: 60px 0;
}

.serviceSwiper img {
    width: 100%;
    /* height: 420px; */
    object-fit: cover;
    border-radius: 12px;
}



/* ================= CONTENT ================= */
.service-content-section {
    background: #0d0d0d;
    padding: 40px 0;
}

.service-heading {
    color: #fff;
    font-size: 36px;
    margin-top: 40px;
    font-weight: 800;
}

.service-text {
    color: #bbb;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-image-large img {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}



/* ================= BENEFIT BOXES ================= */
.benefit-row {
    margin-top: 25px;
}

.benefit-box {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #222;
    margin-bottom: 25px;
}

.benefit-icon {
    font-size: 40px;
    color: #f7c600;
    margin-bottom: 15px;
}

.benefit-box h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 22px;
}

.benefit-box p {
    color: #ccc;
}




/* ===================== SERVICES SIDEBAR ===================== */

.sidebar-services {
    background: #111;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #222;
    margin-bottom: 35px;
    transition: 0.3s ease;
}

.sidebar-services:hover {
    border-color: #f7c600;
}

.sidebar-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 5px;
    border-left: 3px solid #f7c600;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 14px;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    text-decoration: none;
    color: #ccc;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    transition: 0.3s ease;
}

.service-list li a i {
    font-size: 18px;
    color: #f7c600;
}

.service-list li a:hover {
    background: rgba(247, 198, 0, 0.12);
    border-color: #f7c600;
    color: #fff;
    transform: translateX(4px);
}


.service-list li a.active {
    background: rgba(247, 198, 0, 0.2);
    border-color: #f7c600;
    color: #fff;
}



/* ===================== SUPPORT BOX ===================== */
.sidebar-support-box {
    background: #151515;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #333;
    text-align: left;
}

.sidebar-support-box h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.sidebar-support-box p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
}

.support-contact strong {
    color: #f7c600;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-contact p {
    color: #aaa;
    margin-bottom: 15px;
}

.support-btn {
    display: block;
    background: #f7c600;
    color: #000;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.support-btn:hover {
    background: #d6a800;
}


@media (max-width: 991px) {
    .sidebar-services, .sidebar-support-box {
        margin-top: 30px;
    }
}






.trusted-centered {
    background: #000;
    padding: 40px 0;
    text-align: center;
}


.trusted-center-head {
    max-width: 780px;
    margin: 0 auto 60px;
}

.trusted-tag {
    color: #f7c600;
    font-size: 15px;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.trusted-center-head h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.trusted-center-head p {
    color: #cfcfcf;
    font-size: 18px;
    line-height: 1.8;
}


.trusted-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.trusted-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    padding: 35px 25px;
    border-radius: 20px;
    transition: 0.3s;
    backdrop-filter: blur(6px);
}

.trusted-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(247,198,0,0.15);
}

.tc-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 14px;
    background: rgba(247,198,0,0.12);
    border: 1px solid rgba(247,198,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-icon i {
    color: #f7c600;
    font-size: 32px;
}

.trusted-card h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}


.tc-percent {
    color: #f7c600;
    font-size: 34px;
    font-weight: 800;
    margin: 0;
}


@media (max-width: 992px) {
    .trusted-card-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .trusted-card-row {
        grid-template-columns: 1fr;
    }

    .trusted-center-head h2 {
        font-size: 36px;
    }
}




/* ================= CTA ================= */
.cta-service {
    background: #111;
    padding: 90px 0;
    text-align: center;
}

.cta-title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
}

.cta-text {
    color: #ccc;
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-btn {
    background: #f7c600;
    padding: 14px 34px;
    border-radius: 6px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
}




















