
        
        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: #fff !important;
            overflow-x: hidden !important;
            /* sirf x hide */
        }



        .navbar-custom {
            background: #ffffff;
            border-bottom: 1px solid rgba(0, 0, 0, .03);
            padding: .8rem 0;
            position: sticky;
             top: 0;
              z-index: 9999;
        }

        /* BRAND */
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: #082511;
            letter-spacing: .02em;
        }

        .navbar-brand:hover {
            color: #082511;
        }

        .brand-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 2px solid #082511;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: .4rem;
            position: relative;
        }

        .brand-icon::before {
            content: "";
            width: 60%;
            height: 2px;
            background: #082511;
            position: absolute;
            bottom: 6px;
            left: 50%;
            transform: translateX(-50%);
        }

        .brand-icon i {
            font-size: 1rem;
            color: #082511;
        }

        /* Clean nav-link */
        .navbar-nav .nav-link {
            position: relative;
            display: inline-block;      /* width = text only */
            padding: 0 !important;
            margin: 0 1rem;             /* space between links */
            color: #234535;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Underline (hidden at start) */
        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 2px;
            background-color: #565656;
        
            transform: scaleX(0);
            transform-origin: right;      /* hover OFF = right → left undraw */
            transition: transform .4s ease;
        }
        
        /* Hover */
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            transform: scaleX(1);
            transform-origin: left;       /* hover ON = left → right draw */
        }


        /* LET'S TALK BTN */
        .btn-talk {
            background: #1E2938;
            color: white;
            border-radius: 10px;
            padding: .7rem 1.4rem;
            font-weight: 500;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: .25rem;
            white-space: nowrap;
            text-decoration: none;
            font-size: .9rem;
        }

        .btn-talk:hover {
            background: #565656;
            color: white;
        }

        /* TOGGLER */
        .navbar-toggler {
            border: none;
            padding: 0;
            margin-left: .5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .toggler-line {
            width: 22px;
            height: 2px;
            background: #082511;
            display: block;
            border-radius: 999px;
            transition: transform .25s ease, opacity .25s ease;
        }

        .toggler-line+.toggler-line {
            margin-top: 6px;
        }

        .navbar-toggler:not(.collapsed) .toggler-line:nth-child(1) {
            transform: translateY(4px) rotate(45deg);
        }

        .navbar-toggler:not(.collapsed) .toggler-line:nth-child(2) {
            transform: translateY(-4px) rotate(-45deg);
        }

        /* MOBILE */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                margin-top: .75rem;
            }

            .navbar-nav .nav-link {
                padding: .4rem 0 !important;
            }

            .btn-talk {
                width: 100%;
                justify-content: center;
                margin-top: .5rem;
            }
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: stretch;
        }

        .hero-row {
            flex: 1;
        }

        .hero-text-col {
            background: #1E2938;
            /* green bg */
            color: #ffffff;
            display: flex;
            align-items: center;
            padding: 4rem 3rem;
        }

        .hero-heading {
            font-size: 3.2rem;
            line-height: 1.1;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero-text {
            font-size: 1.02rem;
            line-height: 1.6;
            color: #c8e2cf;
            max-width: 32rem;
            margin-bottom: 2rem;
        }

        .hero-btn-primary {
            background: #565656;
            color: white;
            border: none;
            padding: .85rem 1.8rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
        }

        /*.hero-btn-primary:hover {*/
        /*    background: #a4ff3e;*/
        /*    color: #082511;*/
        /*}*/

        .hero-btn-secondary {
            border: none;
            background: transparent;
            color: #ffffff;
            font-weight: 500;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: .35rem;
            padding: .85rem 1rem;
        }

       

        .hero-image-col {
            padding: 0;
            overflow: hidden;
        }

        .hero-image-col img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ===== 60 / 40 LAYOUT ON LG+ ===== */
        @media (min-width: 992px) {
            .hero-row {
                display: flex;
                flex-wrap: nowrap;
            }

            .hero-text-col {
                flex: 0 0 60%;
                max-width: 60%;
            }

            .hero-image-col {
                flex: 0 0 40%;
                max-width: 40%;
            }
        }

        /* ===== TABLET / MOBILE ===== */
        @media (max-width: 991.98px) {
            .hero-text-col {
                padding: 3rem 1.5rem;
            }

            .hero-heading {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 575.98px) {
            .hero-heading {
                font-size: 2.1rem;
            }
        }
        
        

        .about-section {
            padding: 4rem 0;
        }

        .about-row {
            align-items: stretch;
        }

        /* LEFT IMAGE */
        .about-image {
            height: 100%;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            display: block;
        }

        /* RIGHT CONTENT */
        .about-content {
            padding: 2.5rem 2.5rem;
            height: 100%;
        }

        .about-label {
            display: inline-block;
            padding: .5rem 1.5rem;
            border-radius: 999px;
            background: #1E2938;
            color: white;
            font-size: .85rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .about-title {
            font-size: 2rem;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1.25rem;
            color: #111827;
        }

        .about-title span.highlight {
            color: #565656;
        }

        .about-text {
            font-size: .98rem;
            line-height: 1.7;
            color: #4b5563;
            margin-bottom: 1.75rem;
        }

        .about-item {
            display: flex;
            align-items: center;
            gap: .9rem;
            padding: 1rem 0;
            border-bottom: 1px solid black;
            font-size: .98rem;
            color: #111827;
        }

        .about-item:last-child {
            border-bottom: none;
        }

        .about-icon {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: black;
        }

        .about-btn {
            margin-top: 2rem;
            background: #1E2938;
            color: white;
            border: none;
            padding: .8rem 1.8rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: .95rem;
        }

        .about-btn:hover {
            background: #565656;
            color: white;
        }

        /* RESPONSIVE TWEAKS */
        @media (max-width: 991.98px) {
            .about-content {
                padding: 2rem 1.5rem;
                margin-top: 1.5rem;
            }

            .about-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 575.98px) {
            .about-title {
                font-size: 1.8rem;
            }
        }

        .services-section {
            padding: 4rem 0;
        }

        /* LEFT SIDE CONTENT */
        .services-label {
            display: inline-block;
            padding: .35rem 1.4rem;
            border-radius: 999px;
            background: #1E2938;
            color: white;
            font-size: .85rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .services-title {
            font-size: 2.4rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #111;
        }

        .services-title span {
            color: #565656;
        }

        .services-link {
            border: none;
            background: transparent;
            padding: 0;
            font-size: .96rem;
            font-weight: 500;
            color: #111;
            display: inline-flex;
            align-items: center;
            gap: .35rem;
            text-decoration: none;
        }

        .services-link span.arrow {
            font-size: 1.1rem;
        }

        .services-link:hover {
            color: #565656;
        }

        /* SERVICE CARDS */
        .service-card {
            background: #ffffff;
            border: 1px solid #dde9de;
            border-radius: 14px;
            padding: 1.4rem 1.4rem;
            height: 100%;
            width: 100%;
            transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
        }

        .service-card:hover {
            border-color: #bcdac4;
            box-shadow: 0 12px 26px rgba(0, 0, 0, .05);
            transform: translateY(-2px);
        }

        .service-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: #f1f3f1;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: #000;
        }

        .service-title {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: .6rem;
            color: #111;
        }

        .service-text {
            font-size: .9rem;
            color: #555;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .service-link {
            border: none;
            background: transparent;
            padding: 0;
            font-size: .92rem;
            font-weight: 500;
            color: #111;
            display: inline-flex;
            align-items: center;
            gap: .25rem;
            text-decoration: none;
        }

        .service-link span.arrow {
            font-size: 1rem;
        }

        .service-link:hover {
            color: #565656;
        }

        /* RESPONSIVE TWEAKS */
        @media (max-width: 991.98px) {
            .services-section {
                padding: 3rem 0;
            }

            .services-title {
                font-size: 2.1rem;
            }

            .mb-lg-0 {
                margin-bottom: 2rem !important;
            }
        }

        @media (max-width: 575.98px) {
            .services-title {
                font-size: 1.9rem;
            }
        }

        /* ===== WHY CHOOSE US SECTION ===== */

        .why-section {
            padding: 4rem 0;
        }

        /* top label + heading */
        .why-label {
            display: inline-block;
            padding: .35rem 1.6rem;
            border-radius: 999px;
            background: #1E2938;
            color: #fff;
            font-size: .85rem;
            font-weight: 500;
        }

        .why-heading {
            margin-top: 1.3rem;
            font-size: 2.5rem;
            font-weight: 700;
            color: #111827;
        }

        .why-heading span {
            color: #565656;
        }

        /* main row */
        .why-row {
            margin-top: 3rem;
        }

        /* LEFT COLUMN BOX */
        .why-left {
            background: #ffffff;
            border-radius: 20px;
            padding: 2.5rem 2.2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* each item (image + text) */
        .why-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.8rem;
            transition: .3s ease;
        }

        .why-item:last-child {
            margin-bottom: 0;
        }

        /* staggered offsets (desktop/tablet) */
        .why-item:nth-child(2) {
            margin-left: 50px;
        }

        .why-item:nth-child(3) {
            margin-left: 100px;
        }

        .why-item:nth-child(4) {
            margin-left: 150px;
        }

        /* small image on left of each item */
        .why-item-img {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .why-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* text */
        .why-item-title {
            font-size: 1.05rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: .25rem;
        }

        .why-item-text {
            font-size: .9rem;
            color: #6b7280;
            line-height: 1.5;
            margin: 0;
        }

        /* RIGHT BIG IMAGE COLUMN */
        .why-right {
            border-radius: 20px;
            overflow: hidden;
        }

        .why-right img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            display: block;
            border-radius: 20px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991.98px) {
            .why-section {
                padding: 3rem 0;
            }

            .why-heading {
                font-size: 2.1rem;
            }

            .why-left {
                margin-bottom: 1.5rem;
                padding: 2rem 1.8rem;
            }

            .why-item:nth-child(2),
            .why-item:nth-child(3),
            .why-item:nth-child(4) {
                margin-left: 0;
            }

            .why-right img {
                height: 320px;
            }
        }

        @media (max-width: 575.98px) {
            .why-heading {
                font-size: 1.9rem;
            }

            .why-left {
                padding: 2rem 1.5rem;
            }

            .why-right img {
                height: 240px;
            }
        }

        .counter-section {
            background: #1E2938;
        }

        .counter-section .counter {
            font-size: 46px;
            font-weight: 700;
            color: #969696;
        }

        .counter-section h5 {
            color: #ffffff;
            font-weight: 600;
        }

        .counter-section .divider {
            width: 100%;
            height: 1px;
            background: #ffffff50;
        }

        .counter-section p {
            color: #e8e8e8;
            font-size: 14px;
            max-width: 330px;
            
        }

        @media (max-width: 575.98px) {
            .counter-section p {
                text-align: center !important;
                margin-left: auto;
                margin-right: auto;
            }
        }
        
        
        
        


        /* OUR TEAM SESSION STRT */
        .hm-team-section {
            background: #f5f7f6;
        }

        .hm-team-btn {
            background: #1E2938;
            border: none;
            border-radius: 999px;
            font-weight: 500;
            color: white;
        }

        .hm-team-heading {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000;
        }

        .hm-team-highlight {
            color: #565656;
        }

        .hm-team-para {
            max-width: 1100px;
            margin: auto;
            color: #727272;
            font-size: 1.25rem;
            font-weight: 400;
        }

        .hm-team-card {
            background: #fff;
            border-radius: 14px;
            padding-bottom: 25px;
            transition: 0.3s ease-in-out;
        }

        .hm-team-card:hover {
            transform: translateY(-5px);
        }

        .hm-team-img-wrap {
            position: relative;
            padding: 0px;
            border-radius: 12px;
            overflow: hidden;
        }

        .hm-team-img {
            width: 100%;
            border-radius: 10px;
            display: block;
        }

        .hm-team-img-wrap:hover .hm-team-img {
            transform: scale(1.01);
        }

        .hm-team-img {
            transition: 0.4s ease;
        }

        .hm-team-social {
            position: absolute;
            top: 65%;
            right: -4px;
            transform: translateY(-50%) translateX(120%);
            background: #1E2938;
            border-radius: 12px;
            padding: 5px 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            gap: 14px;
            opacity: 0;
            visibility: hidden;
            transition: all .6s ease;
            z-index: 2;
        }

        .hm-team-card:hover .hm-team-social {
            opacity: 1;
            visibility: visible;
            transform: translateY(-50%) translateX(0);
        }

        .hm-team-social-link {
            position: relative;
            font-size: 14px;
            color: white;
            text-decoration: none;
        }

        .hm-team-social-link i {
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hm-team-social-link::after {
            content: attr(data-label);
            position: absolute;
            top: 50%;
            left: -8px;
            transform: translate(-100%, -50%);
            background: #000;
            color: #fff;
            font-size: 11px;
            padding: 4px 8px;
            border-radius: 999px;
            opacity: 0;
            white-space: nowrap;
            transition: opacity .2s ease;
            pointer-events: none;
        }

        .hm-team-social-link:hover::after {
            opacity: 1;
        }

        .hm-team-name {
            font-size: 1.45rem;
            font-weight: 600;
        }

        .hm-team-role {
            color: #565656;
            font-weight: 500;
        }

        /* OUR TEAM SESSION END */

        /* TESTIMONIAL SESSION STRT */
        .testimonial-section {
            padding: 80px 0;
            background: #fff;
        }

        .testimonial-btn {
            background: #1E2938;
            border: none;
            border-radius: 999px;
            padding: 8px 26px;
            font-size: 0.9rem;
            font-weight: 500;
            color: white;
        }

        .testimonial-heading {
            font-size: 2.6rem;
            font-weight: 700;
            color: #111111;
            line-height: 1.2;
        }

        .testimonial-heading span {
            color: #565656;
        }

        .testimonial-subtext {
            color: #727272;
            font-size: 1.18rem;
        }

        .testimonial-carousel-wrapper {
            margin-top: 40px;
        }

        .testimonial-card {
            background: #1e29382a;
            border: 1px solid #d8ead7;
            border-radius: 16px;
            padding: 26px 22px 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-quote-icon {
            font-size: 28px;
            color: #1E2938;
            margin-bottom: 16px;
        }

        .testimonial-text {
            font-size: 0.98rem;
            color: #333333;
            line-height: 1.6;
        }

        .testimonial-footer {
            display: flex;
            align-items: center;
            margin-top: 22px;
            gap: 14px;
        }

        .testimonial-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 1rem;
            color: #111111;
            margin-bottom: 2px;
        }

        .testimonial-role {
            font-size: 0.86rem;
            color: #565656;
        }

        .testimonial-carousel .carousel-indicators {
            position: static;
            margin-top: 24px;
        }

        .testimonial-carousel .carousel-indicators [data-bs-target] {
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: #c6c6c6;
            border: none;
            margin: 0 4px;
        }

        .testimonial-carousel .carousel-indicators .active {
            background: #111111;
        }

        .testimonial-carousel .carousel-control-prev,
        .testimonial-carousel .carousel-control-next {
            display: none;
        }

        @media (max-width:768px) {
            .testimonial-heading {
                font-size: 2.1rem;
            }
        }

        /* TESTIMONIAL SESSION END */


        /* FEATURE SESSION STRT */
        .feature-section {
            background: #FBFCFB;
        }

        .feature-badge {
            background: #1E2938;
            color: white;
            padding: 8px 22px;
            border-radius: 999px;
            font-size: 0.95rem;
            font-weight: 500;
            display: inline-block;
        }

        .feature-heading {
            font-size: 2.6rem;
            font-weight: 700;
            color: #111;
        }

        .feature-heading span {
            color: #565656;
        }

        .feature-top-link {
            font-size: 1.05rem;
            font-weight: 500;
            color: #111;
            text-decoration: none;
        }

        .feature-top-link i {
            margin-left: 6px;
            transition: 0.3s;
        }

        .feature-top-link:hover i {
            transform: translateX(4px);
        }

        .feature-card {
            background: transparent;
            border: none;
            cursor: pointer;
        }

        .feature-card-img {
            height: 430px;
            /* max-width: 460px;  */
            width: 100%;
            object-fit: cover;
            transition: 0.35s ease;
        }

        .feature-card:hover .feature-card-img {
            transform: scale(1.03);
        }

        .feature-cat {
            color: #565656;
            font-size: 1.1rem;
            margin-top: 14px;
            margin-bottom: 4px;
            font-weight: 500;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #17331C;
            margin: 0;
        }

        .feature-arrow {
            font-size: 1.2rem;
            color: #111;
            margin-left: auto;
            transition: .3s;
        }

        .feature-card:hover .feature-arrow {
            transform: translateX(4px);
        }

        .feature-underline {
            width: 100%;
            height: 1px;
            background: #d8dad9;
            margin-top: 14px;
        }

        /* FEATURE SESSION END */

        /* CONTACT SESSION STRT */
        .contact-box-section {
            background: #fff;
        }

        .contact-box {
            background: #d1d1d162;
            border-radius: 22px;
            padding: 0px 50px;
            position: relative;
            overflow: visible;
        }

        .contact-img-wrap {
            height: 450px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            position: relative;
        }

        .contact-img {
            height: 500px;
            width: 100%;
            object-fit: contain;
            position: relative;
            top: 0;
            transition: 0.3s ease;
        }

        .contact-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #111;
            line-height: 1.2;
        }

        .contact-title span {
            color: #565656;
        }

        .contact-text {
            color: #555;
            margin: 15px 0 30px;
            font-size: 1rem;
        }

        .contact-btn {
            background: #1E2938;
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            color: #fff;
            font-weight: 500;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: 0.3s;
        }

        
        .btn-page i {
            transition: 0.3s ease;
            transform: rotate(-35deg);
            display: inline-block;
        }

        .btn-page:hover i {
            transform: rotate(0deg);
        }

        

        @media(max-width:992px) {
            .contact-img {
                max-height: 500px;
                top: 0px;
            }

            .contact-box {
                padding: 40px 30px;
            }
        }

        /* CONTACT SESSION END */

        /* FOOTER SESSION STRT */
        .footer-wrapper {
            margin: 0 10px 10px 10px;
        }

        .custom-footer {
            background: #17331C;
            color: #d8e6d5;
            border-radius: 20px;
        }

        .footer-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: #CFFF92;
        }

        .footer-desc {
            font-size: 0.95rem;
        }

        .footer-input {
            flex: 1;
            padding: 12px;
            border-radius: 10px 0 0 10px;
            border: none;
            outline: none;
        }

        .footer-btn {
            background: #CFFF92;
            border: none;
            padding: 12px 20px;
            border-radius: 0 10px 10px 0;
            font-weight: 600;
            cursor: pointer;
            color: #111;
            margin-left: 5px;
            margin-right: 5px;
        }

        .footer-btn i {
            margin-left: 5px;
            transform: rotate(-35deg);
            transition: .3s ease;
            color: #CFFF92 !important;
        }

        .footer-btn:hover i {
            transform: rotate(-10deg) translateY(-3px);

        }

        .footer-title {
            color: #CFFF92;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin-bottom: 3px;
        }

        .footer-links li {
            margin-bottom: 8px;
            font-size: 1rem;
            color: #EFFFE5;
            font-weight: 600;
        }

      
    
/* Toggle Wrapper */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

/* Toggle Text */
.lang-toggle-text {
    font-weight: 600;
    font-size: 14px;
    color: #15451f; /* matching brand color */
}

/* Toggle Switch */
.lang-switch {
    width: 58px;
    height: 30px;
    background: #cbd5c9; /* light green gray */
    border-radius: 50px;
    position: relative;
    transition: 0.35s ease;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
}

/* Ball */
.lang-circle {
    width: 26px;
    height: 26px;
    background: #ffffff;
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    transition: 0.35s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.25);
}

/* Active Mode (Spanish) */
.lang-switch.active {
    background: #1E2938; /* deep green */
}

.lang-switch.active .lang-circle {
    left: 30px; /* slide to the right */
}

