/* Pallet Truck Content Section */
.new-add-content {
    width: 100%;
    padding: 60px 15px;
    background: #f7f8fa;
}

.new-add-content .container {
    max-width: 1140px;
    margin: 0 auto;
}

/* Main Box */
/* .new-add-box {
    background: #ffffff;
    padding: 40px 45px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
} */

/* Main Heading */
.new-add-text h3 {
    margin: 0 0 20px;
    padding-bottom: 15px;
    font-size: 35px;
    line-height: 1.3;
    font-weight: 700;
    color: #2d3192;
    border-bottom: 2px solid #ed1b24; 
}

/* Sub Headings */
.new-add-text h4 {
    margin: 30px 0 12px;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    color: #2d3192;
}

/* Paragraph */
.new-add-text p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
    text-align: justify;
}

/* Last Paragraph */
.new-add-text p:last-child {
    margin-bottom: 0;
}


/* Tablet */
@media (max-width: 991px) {

    .new-add-content {
        padding: 45px 15px;
    }

    .new-add-box {
        padding: 30px;
    }

    .new-add-text h3 {
        font-size: 27px;
    }

    .new-add-text h4 {
        font-size: 20px;
    }

    .new-add-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}


/* Mobile */
@media (max-width: 767px) {

    .new-add-content {
        padding: 30px 12px;
    }

    .new-add-box {
        padding: 22px 18px;
        border-radius: 6px;
    }

    .new-add-text h3 {
        font-size: 24px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .new-add-text h4 {
        font-size: 19px;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .new-add-text p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }
}


/* Small Mobile */
@media (max-width: 480px) {

    .new-add-box {
        padding: 20px 15px;
    }

    .new-add-text h3 {
        font-size: 21px;
    }

    .new-add-text h4 {
        font-size: 18px;
    }

    .new-add-text p {
        font-size: 14px;
    }
}
/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
    padding: 80px 0;
    background: #f5f8fb;
}

.faq-section .container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Heading */
.faq-heading {
    text-align: center;
    margin-bottom: 45px;
}

.faq-heading span {
    display: inline-block;
    color: #0b3b6f;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.faq-heading h2 {
    margin: 0 0 12px;
    color: #172b4d;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.faq-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #687789;
    font-size: 16px;
    line-height: 1.7;
}

/* FAQ Wrapper */
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ Item */
.faq-item {
    background: #ffffff;
    border: 1px solid #e3e9ef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0b3b6f;
    box-shadow: 0 8px 25px rgba(11, 59, 111, 0.08);
}

/* Question */
.faq-question {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 21px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    color: #172b4d;
    font-size: 17px;
    font-weight: 600;
    font-family: inherit;
}

/* Icon */
.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #0b3b6f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
    transition: all 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 70px 22px 25px;
    color: #657487;
    font-size: 15.5px;
    line-height: 1.8;
}

/* Active FAQ */
.faq-item.active {
    border-color: #0b3b6f;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #ed1b24;
    color: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .faq-section {
        padding: 55px 0;
    }

    .faq-section .container {
        width: 92%;
    }

    .faq-heading {
        margin-bottom: 30px;
    }

    .faq-heading h2 {
        font-size: 28px;
    }

    .faq-heading p {
        font-size: 14px;
    }

    .faq-question {
        padding: 17px 18px;
        font-size: 15px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 20px;
    }

    .faq-answer p {
        padding: 0 18px 18px;
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {

    .faq-heading h2 {
        font-size: 25px;
    }

    .faq-question {
        font-size: 14px;
        gap: 10px;
    }

    .faq-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
    }
}
.faq-wrapper h3{
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    color:#2d3192;
    margin: 30px 0px 12px;
}