    * {
        margin: 0;
        padding: 0;
    }

    ul,
    ol,
    li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    a {
        display: inline-block;
        text-decoration: none;
    }

    a:hover {
        text-decoration: none;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0;
        padding: 0;

        color: var(--colorBlack);
    }

    p,
    span {
        font-size: 15px;
        font-weight: 400;
        margin: 0;
        color: var(--paraColor);
    }

    body {
        overflow-x: hidden;
        scroll-behavior: smooth;
        font-family: "Montserrat", sans-serif;

    }

    img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    input,
    textarea {
        width: 100%;
        padding: 12px 20px;
        outline: none;
        border: 1px solid rgba(3, 26, 38, 0.10);
        resize: none;
    }

    input::placeholder,
    textarea::placeholder {
        color: #031A2660;
    }

    button {
        border: none;
    }

    .container_large {
        max-width: 1550px;
        padding-left: 0;
        padding-right: 0;
    }

    .container_extra_large {
        max-width: 1750px;
    }

    :root {
        --colorPrimary: #FFE900;
        --colorOrange: #1b6b2e;
        --colorBlue: #0080FF;
        --colorBlack: #031A26;
        --colorLightBg: #F1FAFF;
        --colorWhite: #ffffff;
        --paraColor: rgba(3, 26, 38, 0.60);
        --ratingColor: #FFA800;
        --paraFont: 'Roboto', sans-serif;
        --headingFont: 'Merriweather', sans-serif;
    }

    .hero-section {
        padding-top: 70px;
        position: relative;
        top: 60px;

    }

    .hero-section .banner_text {
        margin: 25px 0;
        margin-right: 0;
    }



    .theme-btn {
        background: var(--colorOrange);
        color: #fff;
        padding: 12px 24px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        transition: 0.3s;
        display: inline-block;
    }

    .theme-btn:hover {
        background: #072c62;
        color: #fff;
    }


    .trust-pill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        background: #eff8f5;
        color: #1b6b2e;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 30px;
    }

    .trust-pill i {
        font-size: 20px;
    }


    .hero-content h1 {
        font-size: 52px;
        line-height: 72px;
        font-weight: 600;
        margin-bottom: 30px;
        color: var(--colorBlack)
    }

    .hero-content p {
        font-size: 18px;
        color: #666;
        font-weight: 500;
        margin-bottom: 35px;
        line-height: 36px;
        max-width: 520px;
    }

    .hero-btns {
        display: flex;
        gap: 18px;
        align-items: center;
    }

    .hero-btns .theme-btn {
        padding: 13px 30px;
        border-radius: 8px;
        font-weight: 600;
        border: 2px solid var(--colorOrange);
        transition: 0.3s;
        font-size: 16px;

    }

    .whatsapp-btn {
        padding: 13px 30px;
        border: 2px solid #21c05b;
        border-radius: 8px;
        font-weight: 600;
        color: #21c05b;
        transition: 0.3s;
    }

    .whatsapp-btn:hover {
        background: #21c05b;
        color: #fff;
    }

    .hero-image img {
        width: 100%;
        display: block;
        height: 450px;
        object-fit: cover;
        border-radius: 10px;
    }

    /*==================================
        WHO WE HELP
===================================*/
    .section-title {
        text-align: center;

        margin-bottom: 55px;
    }

    .section-title h2 {
        font-size: 38px;
        font-weight: 600;
        margin-bottom: 12px;
        color: var(--colorBlack)
    }

    .section-title p {
        font-size: 17px;
        color: #666;
    }

    .help-card {
        background: #fff;
        border: 1px solid #edf0f5;
        border-radius: 12px;
        padding: 25px 10px;
        text-align: center;
        transition: 0.35s;
        height: 100%;
    }

    .help-card:hover {
        transform: translateY(-8px);

        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

        border-color: linear-gradient(90deg, #268366, var(--colorOrange));
    }

    .help-card i {
        font-size: 30px;
        color: var(--colorOrange);
    }

    .help-card h6 {
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        margin: 0;
        color: var(--colorBlack);
        margin-top: 15px;
    }

    /*==================================
        ABOUT
===================================*/

    .about-images {
        position: relative;
    }

    .about-company .main-image {
        border-radius: 25px;
        height: 650px !important;
        width: 100%;
        object-fit: cover;
    }

    .experience-card {
        position: absolute;
        left: 40px;
        bottom: 40px;
        background: #1b6b2e;
        padding: 30px;
        border-radius: 18px;
        color: #fff;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .experience-card h2 {
        font-size: 52px;
        font-weight: 700;
        margin: 0;
        color: #fff;
    }

    .experience-card span {
        color: #fff;
    }

    .section-tag {
        display: inline-block;
        background: #edf4ff;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        color: linear-gradient(90deg, #268366, var(--colorOrange));
        margin-bottom: 20px;
    }

    .about-content {
        padding-left: 60px;
    }

    .about-content h2 {
        font-size: 36px;
        font-weight: 600;
        color: var(--colorBlack);
        margin-bottom: 25px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 28px;
        color: var(--colorBlack);
        font-weight: 500;
    }

    .stat-box {
        background: #f8fbff;
        padding: 30px;
        border-radius: 18px;
        text-align: center;
        transition: 0.3s;
        border: 1px solid #e4e5e6;
        margin-bottom: 12px;
    }

    .stat-box:hover {
        transform: translateY(-8px);

        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .stat-box h3 {
        font-size: 38px;
        font-weight: 700;
        color: var(--colorBlack);
        margin-bottom: 10px;
    }

    .stat-box span {
        font-size: 14px;
        color: var(--colorBlack);
        font-weight: 500;
    }

    /* =====================================
   FAQ SECTION
===================================== */

    .faq-content h2 {
        font-size: 46px;
        line-height: 58px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .faq-content>p {
        max-width: 450px;
    }

    .faq-support {
        display: flex;
        align-items: center;
        gap: 18px;
        margin: 35px 0 28px;
    }

    .faq-support-icon {
        width: 65px;
        height: 65px;
        background: #eaf2ff;
        color: linear-gradient(90deg, #268366, var(--colorOrange));
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 25px;
    }

    .faq-support span {
        font-size: 13px;
        color: #7c8796;
    }

    .faq-support h5 {
        font-size: 17px;
        font-weight: 700;
        margin: 4px 0 0;
    }

    /* Accordion */

    .home-faq .accordion-item {
        border: 0;
        border-radius: 14px !important;
        margin-bottom: 15px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 6px 25px rgba(18, 60, 124, 0.04);
    }

    .home-faq .accordion-button {
        padding: 20px 25px;
        font-size: 16px;
        font-weight: 600;
        color: #172337;
        box-shadow: none;
    }

    .home-faq .accordion-button:not(.collapsed) {
        color: linear-gradient(90deg, #268366, var(--colorOrange));
        background: #fff;
    }

    .home-faq .accordion-button:focus {
        box-shadow: none;
    }

    .accordion-button:not(.collapsed)::after {}

    .home-faq .accordion-body {
        padding: 0 25px 15px;
        font-size: 14px;
        line-height: 27px;
        color: #687384;
    }

    /* =====================================
   CONTACT SECTION
===================================== */

    .contact-wrapper {
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 25px 70px rgba(12, 42, 84, 0.12);
    }

    .contact-info {
        height: 100%;
        background: linear-gradient(90deg, #268366, var(--colorOrange));
        color: #fff;
        padding: 65px 50px;
    }

    .contact-tag {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        margin-bottom: 18px;
        opacity: 0.8;
        color: #fff
    }

    .contact-info>h2 {
        font-size: 42px;
        line-height: 54px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
    }

    .contact-info>p {
        font-size: 15px;
        line-height: 29px;
        opacity: 0.8;
        margin-bottom: 42px;
        color: #fff;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 25px;
    }

    .contact-icon {
        width: 55px;
        min-width: 55px;
        height: 55px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 19px;
    }

    .contact-item span {
        font-size: 12px;
        opacity: 0.65;
        color: #fff;
    }

    .contact-item h5 {
        font-size: 15px;
        margin: 4px 0 0;
        font-weight: 600;
        color: #fff;
    }

    .contact-trust {
        margin-top: 40px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        gap: 13px;
        align-items: center;
    }

    .contact-trust i {
        font-size: 22px;
    }

    .contact-trust span {
        font-size: 12px;
        line-height: 20px;
        opacity: 0.75;
        color: #fff;
    }

    /* Contact Form */

    .contact-form {
        background: #fff;
        padding: 65px 55px;
    }

    .form-heading {
        margin-bottom: 35px;
    }

    .form-heading>span {
        font-size: 12px;
        letter-spacing: 1px;
        font-weight: 700;
        color: linear-gradient(90deg, #268366, var(--colorOrange));
    }

    .form-heading h3 {
        font-size: 32px;
        font-weight: 700;
        margin: 10px 0;
    }

    .form-heading p {
        font-size: 14px;
        color: #7b8695;
    }

    .contact-form label {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .input-box {
        height: 55px;
        border: 1px solid #e1e6ed;
        border-radius: 10px;
        display: flex;
        align-items: center;
        padding: 0 17px;
        transition: 0.3s;
    }

    .input-box:focus-within {
        border-color: linear-gradient(90deg, #268366, var(--colorOrange));
        box-shadow: 0 0 0 3px rgba(18, 60, 124, 0.07);
    }

    .input-box i {
        color: linear-gradient(90deg, #268366, var(--colorOrange));
        margin-right: 12px;
    }

    .input-box input,
    .input-box select {
        border: 0;
        outline: 0;
        width: 100%;
        background: transparent;
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        color: #555;
    }

    .textarea-box {
        height: 125px;
        align-items: flex-start;
        padding-top: 17px;
    }

    .textarea-box textarea {
        width: 100%;
        height: 90px;
        resize: none;
        border: 0;
        outline: 0;
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
    }

    .submit-btn {
        width: 100%;
        border: 0;
        background: linear-gradient(90deg, #268366, var(--colorOrange));
        color: #fff;
        padding: 15px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        transition: 0.3s;
    }

    .submit-btn i {
        margin-left: 10px;
        transition: 0.3s;
    }

    .submit-btn:hover {
        background: #092e65;
    }

    .submit-btn:hover i {
        transform: translateX(5px);
    }

    /* =====================================
   MAP
===================================== */

    .map-placeholder {
        min-height: 430px;
        border-radius: 25px;
        background:
            linear-gradient(rgba(238, 244, 252, 0.88), rgba(238, 244, 252, 0.88)),
            url("https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?w=1400") center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px;
    }

    .map-content {
        max-width: 650px;
    }

    .map-pin {
        width: 75px;
        height: 75px;
        margin: 0 auto 20px;
        border-radius: 50%;
        background: linear-gradient(90deg, #268366, var(--colorOrange));
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        box-shadow: 0 15px 30px rgba(18, 60, 124, 0.25);
    }

    .map-content>span {
        color: linear-gradient(90deg, #268366, var(--colorOrange));
        font-size: 12px;
        letter-spacing: 1.5px;
        font-weight: 700;
    }

    .map-content h2 {
        font-size: 40px;
        font-weight: 700;
        margin: 12px 0 15px;
    }

    .map-content p {
        color: #647082;
        line-height: 28px;
        margin-bottom: 25px;
    }

    /* =========================================================
   BENEFITS
   ========================================================= */

    .benefit-section {
        padding: 0 0 9px;
    }

    .benefit-grid {
        background: #f7fbfa;
        border: 1px solid #e4efec;
        border-radius: 9px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
        overflow: hidden;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 20px;
        padding: 20px;
        border-right: 1px solid #e3ece9;
        flex-direction: column;
    }

    .benefit-item:last-child {
        border-right: 0;
    }

    .benefit-item b {
        display: block;
        color: var(--colorOrange);
        font-size: 16px;

    }

    .benefit-item span {
        display: block;
        color: var(--colorBlack);
        font-size: 14px;
        margin-top: 10px;
        font-weight: 500;

    }

    .benefit-icon i {
        font-size: 40px;
        color: var(--colorOrange);
    }

    .help-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin: auto;
        background: #faebd7a6;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 5px;
    }

    .service-card {
        border: 1px solid #e0ebe8;
        border-radius: 15px;
        background: linear-gradient(145deg, #fff, #f8fbfa);
        padding: 25px 10px;
        text-align: center;
        transition: .25s ease;
        background: #faebd7a6;
    }

    .service-icon {
        color: var(--colorOrange);
        font-size: 40px;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 16px;
        margin: 0;
        font-weight: 600;
        color: var(--colorOrange);
    }

    .service-card p {
        color: var(--colorBlack);
        font-size: 14px;
        margin-top: 15px;
        font-weight: 500;
    }

    .view-all {
        display: flex;
        justify-content: end;
        padding: 20px 0;

    }

    .view-all a {
        color: var(--colorOrange);
        font-weight: 600;
    }

    .why-bar {
        background: #1b6b2e;
        border-radius: 10px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
        color: #fff;
        padding: 30px 35px;
    }

    .why-bar>div {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .why-bar i {
        font-size: 30px;
    }

    .why-bar span {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
    }

    @media (min-width: 767px) and (max-width: 991px) {
        .hero-section .banner_text {
            margin: 10px 0;
        }

        .banner_text h1 {
            font-size: 42px !important;
        }

        .hero-content h1 {
            line-height: 55px;
        }

        .hero-content p {
            font-size: 15px;
            font-weight: 500;
            max-width: initial;
            line-height: 26px;
            margin-bottom: 10px;
        }

        .hero-btns .theme-btn {
            padding: 10px;
            font-size: 12px;
        }

        .whatsapp-btn {
            padding: 10px;
            font-size: 12px;
        }

    }



    @media (max-width: 1200px) {
        .services-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        .why-bar i {
            font-size: 25px;
        }

        .why-bar span {
            font-size: 12px;
        }

        .why-bar {
            padding: 30px 15px;
        }
    }

    @media (max-width: 991px) {
        .about-content{
            padding-left: 0;
            padding-top: 30px;
        }
        .banner_contant{
            padding-top: 70px !important;
            padding-bottom: 0 !important;
        }
        .trust-pill {
            font-size: 12px;
        }

        .why-bar {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .why-bar span {
            font-size: 14px;
        }

        .why-bar>div {
            justify-content: start;
        }

        .benefit-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 767px) {
        .why-bar {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 576px) {
        .map-pin {
            width: 60px;
            height: 60px;
            font-size: 25px;
        }

        .map-placeholder {
            padding: 20px;
            min-height: 0;
        }

        .map-content h2 {
            font-size: 20px;
        }

        .contact-info {
            padding: 40px 15px;
        }

        .faq-support-icon {
            width: 55px;
            height: 55px;
            font-size: 22px;
        }

        .contact-info>h2 {
            font-size: 26px;
            line-height: 36px;
            margin-bottom: 10px;
        }

        .home-faq .accordion-body {
            padding: 0 10px 10px;
            line-height: initial;
            font-size: 14px;
        }

        .contact-item h5 {
            font-size: 13px;
        }

        .contact-item {
            gap: 12px;
            margin-bottom: 12px;
        }

        .contact-icon {
            width: 35px;
            min-width: 35px;
            height: 35px;
            font-size: 14px;
        }

        .home-faq .accordion-button {
            padding: 8px 10px;
            font-size: 14px;
        }

        .faq-support h5 {
            font-size: 14px;
        }

        .faq-content h2 {
            font-size: 24px;
            line-height: 32px;
        }

        .about-company .main-image {
            height: 400px !important;
        }

        .about-content h2 {
            font-size: 22px;
        }

        .stat-box {
            padding: 20px;
        }

        .stat-box h3 {
            font-size: 30px;
        }

        .about-content {
            padding-left: 0;
            padding-top: 25px;
        }

        .about-content p {
            font-size: 14px;
        }

        .hero-section {
            position: relative;
            top: 60px;
        }

        .hero-btns {
            flex-direction: column;
        }

        .why-bar {
            grid-template-columns: repeat(1, 1fr);
        }

        .service-icon {
            font-size: 30px;
        }

        .services-grid {
            grid-template-columns: repeat(1, 1fr);
        }

        .benefit-item {
            padding: 10px;
            gap: 10px;
        }

        .benefit-item b {
            font-size: 14px;
        }

        .benefit-item span {
            font-size: 12px;
        }

        .benefit-icon i {
            font-size: 28px;
        }

        .help-card h6 {
            font-size: 14px;
        }

        .contact-form {
            padding: 30px 15px;
        }

        .form-heading h3 {
            font-size: 22px;
        }

        .hero-content p {
            font-size: 16px;
            line-height: 28px;
        }

        .hero-section .banner_text {
            margin: 0;
        }

        .banner_text h1 {
            font-size: 30px;
        }
    }