/* ===============================
   GOOGLE FONTS
================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:wght@100..900&display=swap');

/* ===============================
   ROOT VARIABLES
================================= */
:root {
    /* COLORS */
    --primary-green: #1E8449;
    --secondary-green: #18804D;
    --text-dark: #000000;
    --text-light: #ffffff;
    --text-body: #272727;
    --bg-light: #FBFCFE;
    --text-muted: #6E7975;

    /* GRADIENTS */
    --gradient-primary: linear-gradient(97.87deg, #FFEA00 -39.18%, #006D5B 75.53%);
;

    /* FONTS */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* SIZES */
    --btn-height: 65px;
    --btn-radius: 8px;
    --container-gap: 40px;

    /* SHADOW */
    --card-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* -----------------collapsible section 1st------------------ */

.faq-section {
    padding: 80px 20px;
}

.faq-heading {
    text-align: center;
    margin-bottom: 50px;
}

.faq-heading h2 {
    color: #000;
    font-family: Poppins;
    font-weight: 600;
    font-size: 70px;
    line-height: 76px;
    letter-spacing: 0%;
    text-align: center;
}
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item svg {
  transition: transform 0.8s ease;
}
.faq-item.active svg {
    transform: rotate(180deg);
}
.faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    padding: 0 30px;
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 20px;
}

.faq-question span {
    color: #000000;
    text-align: left;
    font-family: Inter;
    font-weight: 400;
    font-size: 28px;
    line-height: 29px;
    letter-spacing: 0%;
}

.faq-icon {
    transition: 0.3s ease;
    min-width: 22px;
}

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

.faq-answer p {
    padding-bottom: 30px;
    color: #4E4E4E;
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0%;
}

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

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 991px) {

    .faq-heading h2 {
        font-size: 42px;
        line-height: 1.4;
    }

    .faq-question span {
        font-size: 24px;
    }
}

@media (max-width: 767px) {

    .faq-section {
        padding: 60px 15px;
    }

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

    .faq-item {
        padding: 0 20px;
    }

    .faq-question {
        padding: 22px 0;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}
/* -----------------------------------choose u 2nd-------------------------- */

.why-choose-section {
    padding: 80px 20px;
    background: linear-gradient(144.19deg, rgba(255, 234, 0, 0.1296) 4.72%, rgba(30, 132, 73, 0.1296) 96.72%);

    border-radius: 20px;
}

.why-choose-top{
    display:flex;
    justify-content:space-between;
    gap:60px;
    margin-bottom:50px;
    align-items: center;
}

.why-left{
    width:50%;
}

.section-caption {
    display: block;
    color: #181C1B;
    margin-bottom: 18px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 28px;
    line-height: 46px;
    letter-spacing: 0%;
}

.why-left h2 {
    color: #000000;
    font-family: Poppins;
    font-weight: 600;
    font-size: 48px;
    line-height: 68px;
    letter-spacing: 0%;
}

.why-right{
    width:40%;
}

.why-right p {
    color: #1C1C1C;
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
}

.why-card-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.why-card{
    padding:35px 30px;
    border-radius:12px;
    color:#fff;
}

.green-card{
    background:#1E8449;
}

.yellow-card{
    background:#D7AE27;
}

.red-card{
    background:#FF0000;
}

.card-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    margin-bottom:25px;
}

.card-top h3 {
    font-family: Inter;
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.card-icon{
    min-width:26px;
}

.why-card p {
    color: #fff;
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
}

/* Responsive */

@media(max-width:991px){

    .why-choose-top{
        flex-direction:column;
        gap:30px;
    }

    .why-left,
    .why-right{
        width:100%;
    }
    .why-card-wrapper{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
 .why-left h2{
        font-size:38px;
        line-height: 1.4;
    }
    .section-caption {
    font-size: 24px;
    }

    .why-choose-section{
        padding:60px 15px;
    }

    .why-left h2{
        font-size:38px;
    }

    .card-top h3{
        font-size:28px;
    }

    .why-card{
        padding:25px 20px;
    }
}
@media(max-width:600px){
    .why-left h2 {
    font-size: 24px;
}
}