/* Top Container Style Starts */
.top_container {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 38, 83, 4.9);
    background: linear-gradient(180deg, rgba(1, 38, 83, 0.75) 0%, rgba(1, 38, 83, 0.75) 10%, rgba(1, 38, 83, 1) 70%);

    clip-path: polygon(0 0,
            100% 0,
            100% 82%,
            85% 88%,
            50% 95%,
            15% 88%,
            0 82%);
    -webkit-clip-path: polygon(0 0,
            100% 0,
            100% 82%,
            85% 88%,
            50% 95%,
            15% 88%,
            0 82%);
}

.top_container .heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.top_container .heading h2 {
    width: 100%;
    font-family: var(--font-family-bold);
    font-size: var(--heading-font-size);
    color: white;
    text-wrap: wrap;
    text-align: center;
}

.top_container .heading p {
    width: 100%;
    font-family: var(--font-family-light);
    font-size: 20px;
    color: white;
    text-wrap: wrap;
    text-align: center;
}

/* Top Container Style Ends */

/* About Us Section Style Starts ---------------------------------------- */
section.about_us {
    width: 100%;
    padding-inline: var(--paddingHorizontal);
    margin-block: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.about_us .about_left {
    width: 40%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    overflow: hidden;
}

section.about_us .about_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.about_us .about_right {
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

section.about_us .about_right h1 {
    width: 100%;
    font-family: var(--font-family-sbold);
    font-size: var(--subheading-font-size);
    color: var(--text-color);
    text-wrap: wrap;
}

section.about_us .about_right p {
    width: 100%;
    font-family: var(--font-family-light);
    font-size: 16px;
    color: var(--text-color);
    text-wrap: wrap;
}

/* About Us Section Style Starts ---------------------------------------- */

/* Our Promise Section Style Starts ---------------------------------------- */
section.our_promise {
    width: 100%;
    padding-inline: var(--paddingHorizontal);
    padding-block: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    background-image: url(../../Assets/Images/truck_hero_5.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

section.our_promise::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #01265369;
}

section.our_promise h1 {
    z-index: 2;
    width: 100%;
    font-family: var(--font-family-bold);
    font-size: var(--heading-font-size);
    color: white;
    text-wrap: wrap;
    text-align: center;
}

section.our_promise p {
    z-index: 2;
    width: 100%;
    font-family: var(--font-family-light);
    font-size: 17px;
    color: white;
    text-wrap: wrap;
    text-align: center;
}

/* Our Promise Section Style Ends ---------------------------------------- */

/* Why Choose Us Section  Style Starts ----------------------------------- */
section.chooseus_section {
    margin: 50px 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-block: 50px;
}

section.chooseus_section .chooseus_left {
    width: 100%;
    height: 100%;
    padding-inline: var(--paddingHorizontal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

section.chooseus_section .chooseus_left .heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.chooseus_section .chooseus_left .heading h2 {
    width: 100%;
    font-family: var(--font-family-bold);
    font-size: var(--heading-font-size);
    color: var(--secondary-color);
    text-wrap: wrap;
    text-align: center;
}

section.chooseus_section .chooseus_left .heading h1 {
    width: 100%;
    font-family: var(--font-family-sbold);
    font-size: var(--subheading-font-size);
    color: var(--text-color);
    text-wrap: wrap;
    text-align: center;
}

section.chooseus_section .chooseus_left .heading h1 span {
    color: var(--primary-color);
    font-size: 25px;
}

section.chooseus_section .chooseus_left .card_container {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

section.chooseus_section .chooseus_left .card_container .info_card {
    flex: 1 0 calc((100% - 15px) / 4);
    height: 230px;
    /* default: 3 per row with gap */
    background-color: rgba(158, 179, 255, 0.150);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

section.chooseus_section .chooseus_left .card_container .info_card h3 {
    width: 100%;
    font-family: var(--font-family-sbold);
    font-size: var(--subheading-font-size);
    color: var(--secondary-color);
    text-wrap: wrap;
    text-align: center;
}

section.chooseus_section .chooseus_left .card_container .info_card p {
    width: 100%;
    font-family: var(--font-family-light);
    font-size: 16px;
    color: var(--text-color);
    text-wrap: wrap;
    text-align: center;
}

section.chooseus_section .chooseus_left .card_container .info_card img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

/* Why Choose Us Section  Style Ends ----------------------------------- */

/* Responsive Styles Starts ----------------------------------------------- */
/* Mobile (max 767px) */
@media (max-width: 767px) {

    /* Top Container Style Starts */
    .top_container {
        width: 100%;
        height: 250px;
        padding-inline: var(--paddingHorizontal);
    }

    .top_container .heading p {
        font-size: 14px;
    }

    /* Top Container Style Ends */

    /* About Us Section Style Starts ---------------------------------------- */
    section.about_us .about_left {
        width: 50%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;

        display: none;
    }

    section.about_us .about_right {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    section.about_us .about_right h2 {
        text-align: center;
    }

    section.about_us .about_right h1 {
        text-align: center;
    }

    section.about_us .about_right p {
        font-size: 14px;
        text-align: center;
    }

    section.about_us .about_right a {
        padding: 7px 25px;
        font-size: 12px;
        align-self: flex-end;
    }

    /* About Us Section Style Starts ---------------------------------------- */

    /* Our Promise Section Style Starts ---------------------------------------- */
    section.our_promise {
        padding-block: 25px;
    }

    section.our_promise h1 {
        z-index: 2;
        width: 100%;
        font-family: var(--font-family-bold);
        font-size: var(--heading-font-size);
        color: white;
        text-wrap: wrap;
        text-align: center;
    }

    section.our_promise p {
        z-index: 2;
        width: 100%;
        font-family: var(--font-family-light);
        font-size: 12px;
        color: white;
        text-wrap: wrap;
        text-align: center;
    }

    /* Our Promise Section Style Ends ---------------------------------------- */

    /* Why Choose Us Section  Style Starts ----------------------------------- */
    section.chooseus_section {
        height: auto;
        gap: 10px;
        margin: 0px;
        margin-block: 25px;
    }

    section.chooseus_section .chooseus_left {
        width: 100%;
        height: 100%;
        padding-inline: var(--paddingHorizontal);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    section.chooseus_section .chooseus_left .heading {
        align-items: center;
        gap: 3px;
    }

    section.chooseus_section .chooseus_left .heading h2 {
        text-align: center;
    }

    section.chooseus_section .chooseus_left .heading h1 {
        text-align: center;
    }

    section.chooseus_section .chooseus_left .heading h1 span {
        color: var(--primary-color);
        font-size: 18px;
    }

    section.chooseus_section .chooseus_left .card_container {
        gap: 12px;
    }

    section.chooseus_section .chooseus_left .card_container .info_card {
        flex-basis: calc(50% - 12px);
        height: 225px;
        gap: 10px;
    }

    section.chooseus_section .chooseus_left .card_container .info_card h3 {
        width: 100%;
        font-family: var(--font-family-sbold);
        font-size: 13px;
        color: var(--secondary-color);
        text-wrap: wrap;
    }

    section.chooseus_section .chooseus_left .card_container .info_card p {
        width: 100%;
        font-family: var(--font-family-light);
        font-size: 10px;
        color: var(--text-color);
        text-wrap: wrap;
    }

    section.chooseus_section .chooseus_left .card_container .info_card img {
        width: 40px;
        height: 40px;
    }

    /* Why Choose Us Section  Style Starts ----------------------------------- */
}

/* Tablet (768px–1023px) */
@media (min-width: 768px) and (max-width: 1023px) {

    /* Top Container Style Starts */
    .top_container {
        width: 100%;
        height: 275px;
        padding-inline: var(--paddingHorizontal);
    }

    .top_container .heading p {
        font-size: 19px;
    }

    /* Top Container Style Ends */

    /* About Us Section Style Starts ---------------------------------------- */
    section.about_us .about_left {
        width: 50%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    section.about_us .about_right {
        width: 45%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 15px;
    }

    section.about_us .about_right p {
        font-size: 14px;
    }

    section.about_us .about_right a {
        padding: 7px 28px;
        padding-left: 30px;
        font-size: 14px;
    }

    /* About Us Section Style Starts ---------------------------------------- */

    /* Our Promise Section Style Starts ---------------------------------------- */
    section.our_promise {
        padding-block: 35px;
    }

    section.our_promise p {
        font-size: 14px;
    }

    /* Our Promise Section Style Ends ---------------------------------------- */

    /* Why Choose Us Section  Style Starts ----------------------------------- */
    section.chooseus_section {
        height: 40rem;
        gap: 10px;
    }

    section.chooseus_section .chooseus_left .heading h1 span {
        color: var(--primary-color);
        font-size: 18px;
    }

    section.chooseus_section .chooseus_left .card_container {
        gap: 12px;
    }

    section.chooseus_section .chooseus_left .card_container .info_card {
        height: 200px;
        gap: 10px;
    }

    section.chooseus_section .chooseus_left .card_container .info_card h3 {
        width: 100%;
        font-family: var(--font-family-sbold);
        font-size: 13px;
        color: var(--secondary-color);
        text-wrap: wrap;
    }

    section.chooseus_section .chooseus_left .card_container .info_card p {
        width: 100%;
        font-family: var(--font-family-light);
        font-size: 10px;
        color: var(--text-color);
        text-wrap: wrap;
    }

    section.chooseus_section .chooseus_left .card_container .info_card img {
        width: 45px;
        height: 45px;
        object-fit: contain;
    }

    section.chooseus_section .chooseus_right {
        width: 50%;
    }

    section.chooseus_section .chooseus_right video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Why Choose Us Section  Style Starts ----------------------------------- */
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {

    /* Why Choose Us Section  Style Starts ----------------------------------- */
    section.chooseus_section {
        margin: 100px 0px;
        width: 100%;
        height: 45rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    section.chooseus_section .chooseus_left .heading h1 span {
        color: var(--primary-color);
        font-size: 22px;
    }

    section.chooseus_section .chooseus_left .card_container {
        gap: 12px;
    }

    section.chooseus_section .chooseus_left .card_container .info_card {
        height: 225px;
        gap: 10px;
    }

    section.chooseus_section .chooseus_left .card_container .info_card h3 {
        width: 100%;
        font-family: var(--font-family-sbold);
        font-size: var(--subheading-font-size);
        color: var(--secondary-color);
        text-wrap: wrap;
    }

    section.chooseus_section .chooseus_left .card_container .info_card p {
        width: 100%;
        font-family: var(--font-family-light);
        font-size: 14px;
        color: var(--text-color);
        text-wrap: wrap;
    }

    section.chooseus_section .chooseus_left .card_container .info_card img {
        width: 55px;
        height: 55px;
        object-fit: contain;
    }

    section.chooseus_section .chooseus_right {
        width: 48%;
    }

    section.chooseus_section .chooseus_right video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Why Choose Us Section  Style Starts ----------------------------------- */
}