/* =======================================================
HERO
=======================================================*/
#hero {
    padding: 100px 0;
    background-position: right;
    background-repeat: no-repeat;
    position: relative;
}

#hero::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, #F4FCF7 0%, #F4FCF7 61.03%, rgba(244, 252, 247, 0.00) 71.86%);
}

#hero .content{
    position: relative;
    z-index: 2;
}

#hero .content h1 {
color: #1A1A2E;
font-family: "Proxima-Nova";
font-size: 51px;
font-style: normal;
font-weight: 700;
line-height: 57px; /* 111.765% */
    margin-bottom: 24px;
}

#hero .content h1 strong {
    color: #00A155;
font-family: "Proxima-Nova";
font-size: 51px;
font-style: normal;
font-weight: 700;
line-height: 57px;
}

#hero .content p {
color: #4A5568;
font-family: "Niveau-Grotesk";
font-size: 21px;
font-style: normal;
font-weight: 400;
line-height: 29.25px; /* 139.286% */
    margin-bottom: 0;
}

#hero .content .click {
    margin-top: 40px;
}

/* =======================================================
TEXT CENTER
=======================================================*/
#textCenter {
    padding: 100px 0;
    background: #FFF;
}

#textCenter .content {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

#textCenter .content .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #F7710D;
    text-align: center;
    font-family: "Niveau-Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 142.857% */
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    background: #FFF1E8;
    margin-bottom: 12px;
}

#textCenter .content h2 {
    color: #101828;
    text-align: center;
    font-family: "Proxima-Nova";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 100% */
    margin-bottom: 20px;
}

#textCenter .content h2 strong {
    color: #F7710D;
    font-family: "Proxima-Nova";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

#textCenter .content p {
    color: #4A5565;
    text-align: center;
    font-family: "Niveau-Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    margin-bottom: 24px;
}
#textCenter .content p:last-child {
    margin-bottom: 0;
}

#textCenter .click {
    margin-top: 40px;
}
#textCenter .click .btn {
    margin: 0 auto;
}


@media (max-width: 767px) {
    #textCenter {
        padding: 50px 0;
    }
}

/* =======================================================
BLOCKS
=======================================================*/
#blocks {
    padding: 0;
    background: #FFF;
}
#blocks .item {
    padding: 75px 0;
    display: flex;
    gap: 200px;
    align-items: center;
}
#blocks .item:nth-child(odd) {
    flex-direction: row-reverse;
}
#blocks .image {
    position: relative;
}
#blocks .image img {
    width: 497px;
    height: 503px;
    aspect-ratio: 497/503;
    display: block;
    object-fit: cover;
}

#blocks .body {
    padding: 0;
}
#blocks .content h2 {
    color: #1A1A1A;
    font-family: "Proxima-Nova";
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 53px;
    margin-bottom: 20px;
}
#blocks .content h2 strong {
    color: #00A155;
    font-family: "Proxima-Nova";
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 53px;
}
#blocks li {
    color: rgba(26, 26, 26, 0.80);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    display: flex;
    align-items: center;
    padding: 3px 0;
}
#blocks li::before {
    content: "";
    background-image: url('/wp-content/uploads/2026/06/Icon-13.svg');
    height: 20px;
    background-size: cover;
    width: 20px;
    margin-right: 10px;

}
#blocks ul {
    list-style: none;
    padding: 20px 0;
    columns: 2;
    -webkit-columns: 2;
    column-gap: 40px;
}
#blocks .content p {
    color: rgba(26, 26, 26, 0.65);
    font-family: "Niveau-Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 18px;
}
#blocks .content p:last-of-type {
    margin-bottom: 0;
}
#blocks .content .click {
    margin-top: 40px;
}

@media (max-width: 1200px) {
    #blocks .item {
        padding: 30px 0;
        display: block;
    }
    #blocks .image img {
        margin: 0 auto 20px;
    }
}
@media (max-width: 767px) {
    #blocks .image img {
        width: 100%;
        height: auto;
    }
    #blocks ul {
        columns: 1;
        -webkit-columns: 1;
    }
}
/* =======================================================
CAROUSEL
=======================================================*/
#carousel {
    padding: 50px 0 100px;
    background: #FFF;
}
#carousel .content {
    max-width: 770px;
    margin: 0 auto;
    text-align: center;
}
#carousel .content .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #F7710D;
    text-align: center;
    font-family: "Niveau-Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    background: #FFF1E8;
    margin-bottom: 14px;
}
#carousel .content h2 {
    color: #101828;
    text-align: center;
    font-family: "Proxima-Nova";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 18px;
}
#carousel .content h2 strong {
    color: #00A155;
    font-family: "Proxima-Nova";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}
#carousel .content p {
    color: #4A5565;
    text-align: center;
    font-family: "Niveau-Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 24px;
}
#carousel .content p:last-child {
    margin-bottom: 0;
}
#carousel .slider {
    margin: 78px auto 0;
}
#carousel .slider .slick-list {
    margin: 0 -8px;
}
#carousel .slider .slick-slide {
    padding: 0 8px;
}
#carousel .item {
    min-height: 406px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    position: relative;
}
#carousel .item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background: linear-gradient( to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0.15) 70%, rgba(0, 0, 0, 0) 100% );
}
#carousel .text {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 0 20px 24px;
}
#carousel .text h3 {
    color: #FFF;
    font-family: "Proxima-Nova";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 12px;
}
#carousel .text p {
    color: #FFF;
    font-family: "Niveau-Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 28px;
}
#carousel .text .more {
    color: #FFF;
    font-family: "Niveau-Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
}
#carousel .click {
    margin-top: 40px;
    text-align: center;
}
#carousel .click .btn {
    margin: 0 auto;
}
#carousel .btn{
    margin: 0 auto;
}
/* =======================================================
WHY CHOOSE
=======================================================*/
#why-choose {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFF 50%, rgba(0, 161, 85, 0.4) 100%);
    overflow: hidden;
}
#why-choose .repeater{
    margin: 40px 0 0;
    padding: 0 15px;
}
#why-choose .content {
    max-width: 675px;
    margin: 0 auto 0;
    text-align: center;
}

#why-choose .content .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
color: #F7710D;
text-align: center;
font-family: "Niveau-Grotesk";
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: 20px; /* 142.857% */
text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    background: #FFF1E8;
    margin-bottom: 24px;
}

#why-choose .content h2 {
color: #101828;
text-align: center;
font-family: "Proxima-Nova";
font-size: 48px;
font-style: normal;
font-weight: 700;
line-height: 48px; /* 100% */
    margin-bottom: 18px;
}

#why-choose .content h2 strong {
    color: #00A155;
font-family: "Proxima-Nova";
font-size: 48px;
font-style: normal;
font-weight: 700;
line-height: 48px;
}

#why-choose .content p {
color: #4A5565;
text-align: center;
font-family: "Niveau-Grotesk";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
    margin-bottom: 0;
}

#why-choose .item {
    height: 100%;
    min-height: 345px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: #FFF;
}

#why-choose .item .icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #E9F8F0;
    margin-bottom: 26px;
}

#why-choose .item .icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

#why-choose .row > div:nth-child(3) .item .icon {
    background: #FFF1E8;
}

#why-choose .item h3 {
color: #1A1A1A;
font-family: "Proxima-Nova";
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 28px; /* 140% */
    margin-bottom: 20px;
}

#why-choose .item p {
color: rgba(26, 26, 26, 0.70);
font-family: "Niveau-Grotesk";
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 173.333% */
    margin-bottom: 0;
}

#why-choose .click {
    margin-top: 50px;
    text-align: center;
}

#why-choose .click .btn{
    margin: 0 auto;
}

@media (max-width: 1200px) {
    #why-choose .content {
        margin-bottom: 50px;
    }

    #why-choose .item {
        min-height: 0;
    }
}

@media (max-width: 767px) {

    #why-choose .content {
        margin-bottom: 40px;
    }

    #why-choose .item {
        padding: 28px 24px;
    }

    #why-choose .click {
        margin-top: 40px;
    }
}
/* =======================================================
FAQS
=======================================================*/
#faqs {
    padding: 100px 0;
    background: #FFF;
}
#faqs .content {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}
#faqs .content .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #F7710D;
    text-align: center;
    font-family: "Niveau-Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    background: #FFF1E8;
    margin-bottom: 22px;
}
#faqs .content h2 {
    color: #1A1A1A;
    text-align: center;
    font-family: "Proxima-Nova";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.48px;
    margin-bottom: 0;
}
#faqs .content h2 strong {
    color: #00A155;
    font-family: "Proxima-Nova";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.48px;
}
#faqs .accordion {
    margin: 0 auto;
}
#faqs .accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    background: transparent;
}
#faqs .accordion-header {
    margin-bottom: 0;
}
#faqs .accordion-button {
    align-items: center;
    gap: 34px;
    color: #101828;
    font-family: "Proxima-Nova";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
    padding: 24px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
#faqs .accordion-button p {
    margin: 0;
}
#faqs .accordion-button::after {
    display: none;
}
#faqs .accordion-button:focus {
    box-shadow: none;
}
#faqs .accordion-button .icon {
    width: 22px;
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 11px;
    line-height: 1;
    border-radius: 4px;
    background: #00A85A;
}
#faqs .accordion-button .plus {
    display: none;
}
#faqs .accordion-button .minus {
    display: block;
}
#faqs .accordion-button.collapsed .plus {
    display: block;
}
#faqs .accordion-button.collapsed .minus {
    display: none;
}
#faqs .accordion-body {
    padding: 0 0 24px 56px;
}
#faqs .accordion-body p,
#faqs .accordion-body li {
    color: #4A5565;
    font-family: "Niveau-Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    #faqs .accordion-body {
        padding-left: 40px;
    }
}
/* =======================================================
ENQUIRE
=======================================================*/
#enquire {
    padding: 20px 0 50px;
}

#enquire .content {
    max-width: 880px;
    margin: 0 auto 100px;
    text-align: center;
}
#enquire .content .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #F7710D;
    text-align: center;
    font-family: "Niveau-Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 142.857% */
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    background: #FFF1E8;
    margin-bottom: 12px;
}

#enquire .content h2 {
    color: #101828;
    text-align: center;
    font-family: "Proxima-Nova";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 100% */
    margin-bottom: 20px;
}

#enquire .content h2 strong {
    color: #F7710D;
    font-family: "Proxima-Nova";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

#enquire .content p {
    color: #4A5565;
    text-align: center;
    font-family: "Niveau-Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    margin-bottom: 24px;
}
#enquire .content p:last-child {
    margin-bottom: 0;
}
#enquire h3 {
    color: #101828;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 140% */
    margin-bottom: 30px;
}
#enquire .left .icon {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: #E8F8EF;
}
#enquire .left .icon i {
    color: #00A155;
}
#enquire .left .phone,
#enquire .left .email,
#enquire .left .address {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}
#enquire .left .link {
    color: #1E2939;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}
#enquire .left .link span {
    display: block;
    color: #6A7282;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 133.333% */
}
#enquire .left .link a {
    color: #1E2939;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
    text-decoration: none;
}
/* =======================================================
HOW
=======================================================*/
#how {
    padding: 20px 0 50px;
}

#how .content {
    max-width: 880px;
    margin: 0 auto 100px;
    text-align: center;
}
#how .content .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #F7710D;
    text-align: center;
    font-family: "Niveau-Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 142.857% */
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    background: #FFF1E8;
    margin-bottom: 12px;
}

#how .content h2 {
    color: #101828;
    text-align: center;
    font-family: "Proxima-Nova";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 100% */
    margin-bottom: 20px;
}

#how .content h2 strong {
    color: #F7710D;
    font-family: "Proxima-Nova";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

#how .content p {
    color: #4A5565;
    text-align: center;
    font-family: "Niveau-Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    margin-bottom: 24px;
}
#how .content p:last-child {
    margin-bottom: 0;
}

#how .steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#how .step {
    width: 33.3%;
    padding: 5px;
}
#how .step .inner {
    height: 100%;
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
    padding: 20px 33px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#how .number {
    display: flex;
    width: 56px;
    padding: 15px 22px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    background: rgba(0, 161, 85, 0.08);
    color: #00A155;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    /* 100% */
}
#how h3 {
    color: #1A1A1A;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 140% */
    margin: 20px 0;
}
#how ul {
    color: rgba(26, 26, 26, 0.80);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    list-style: none;
    padding: 0;
}
#how li {
    display: flex;
    align-items: center;
    padding: 3px 0;
}
#how li::before {
    content: "";
    background-image: url('/wp-content/uploads/2026/06/Icon-38.svg');
    height: 20px;
    background-size: cover;
    width: 20px;
    margin-right: 10px;
}

@media(max-width: 1200px) {
    #how .step {
        width: 100%;
    }
}
/* =======================================================
TRUSTED
=======================================================*/
#trusted {
    padding: 100px 0 10px;
}

#trusted .content {
    max-width: 880px;
    margin: 0 auto 100px;
    text-align: center;
}
#trusted .content .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #F7710D;
    text-align: center;
    font-family: "Niveau-Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 142.857% */
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    background: #FFF1E8;
    margin-bottom: 12px;
}

#trusted .content h2 {
    color: #101828;
    text-align: center;
    font-family: "Proxima-Nova";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 100% */
    margin-bottom: 20px;
}

#trusted .content h2 strong {
    color: #F7710D;
    font-family: "Proxima-Nova";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

#trusted .content p {
    color: #4A5565;
    text-align: center;
    font-family: "Niveau-Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    margin-bottom: 24px;
}
#trusted .content p:last-child {
    margin-bottom: 0;
}

#trusted .slider .item img {
    margin: 0 auto;
}
