@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {

    --primary-color: #0d7c4a;
    --primary-dark: #075f37;
    --white-color: #ffffff;
    --black-color: #111111;
    --text-color: #666666;
    --border-color: #ececec;

    --primary-font: 'Futura', sans-serif;
    --secondary-font: 'Ainslie', sans-serif;
}

/* Primary Font Futura */
/* Secondary font Ainslie Family */

@font-face {
    font-family: 'Futura';
    src: url('/assets/fonts/fonnts.com-futura-medobl.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('/assets/fonts/Futura-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Ainslie';
    src: url('/assets/ainslie-sans-font-family/AinslieSans-ConBol.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--secondary-font);
}

.contact-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    background: #075f37;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Dark Hover Layer */
.contact-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0b3d2c;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

/* Hover Effect */
.contact-btn:hover::before {
    transform: scaleX(1);
}

.contact-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
}

.heading {
    position: relative;
    z-index: 5;
    margin-top: 70px;
}

.heading .sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #0d7c4a;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    animation: fadeUp 2s ease-in-out infinite;
}

/* LEFT DOT */

.heading .sub-title::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0d7c4a;
    box-shadow: 0 0 15px rgba(13, 124, 74, 0.7);
    animation: pulseDot 1.5s infinite;
}

/* RIGHT LINE */

.heading .sub-title::after {
    content: "";
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg,
            #0d7c4a,
            transparent);
    animation: lineWidth 2s infinite;
}

/* TEXT FLOAT */

@keyframes fadeUp {

    0% {
        transform: translateY(0px);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-5px);
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
        opacity: 0.7;
    }

}

/* DOT BLINK */

@keyframes pulseDot {

    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }

}

/* LINE EFFECT */

@keyframes lineWidth {

    0% {
        width: 20px;
        opacity: 0.3;
    }

    50% {
        width: 50px;
        opacity: 1;
    }

    100% {
        width: 20px;
        opacity: 0.3;
    }

}

.heading .title {
    font-size: 50px;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.1;
}

.heading .tag_p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.9;
}

/* =========================
       HEADER TOP
    ========================= */

.header-top {
    background: #075f37;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

/* LIGHT EFFECT */

.header-top::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(13, 124, 74, .15);
    border-radius: 50%;
    top: -220px;
    left: -120px;
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 5;
}

/* =========================
       CONTACT
    ========================= */

.header-contact {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    font-weight: 500;
    transition: .3s ease;
    /*font-family: var(--primary-font);*/
}

.header-contact a:hover {
    color: #0d7c4a;
}

.header-contact i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: .3s ease;
}

.header-contact a:hover i {
    background: #0d7c4a;
    color: #fff;
    transform: rotate(8deg);
}

/* =========================
       SOCIAL
    ========================= */

.header-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-social span {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    margin-right: 5px;
}

.header-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: .35s ease;
}

.header-social a:hover {
    background: #0d7c4a;
    color: #fff;
    transform: translateY(-4px);
}


/* ======== HEADER===================== */


.header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 999;
    transition: all 0.4s ease;
}

/* STICKY HEADER */
.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #136b39;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: headerSticky 0.4s ease;
}


@keyframes headerSticky {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header .logo_first {
    display: flex;
}

.header.sticky .logo_first {
    display: none;
}

.header .logo_stiky {
    display: none;
}

.header.sticky .logo_stiky {
    display: flex;
}

.header .navmenu>ul>li>a {
    font-size: 18px;
}

.header.sticky .navmenu>ul>li>a {
    color: #fff;
}

.header.sticky .contact-btn {
    background: #fff;
    color: #0b3d2c;
}

.header.sticky .contact-btn::before {
    background: #a8decc;
}

.header .container-xl {
    min-height: 90px;
}


.logo img {
    width: 100%;
    object-fit: contain;
}

/* =========================  NAVBAR================ */

.navmenu {
    margin-left: auto;
}

.navmenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    /*align-items: center;*/
    gap: 8px;
}

.navmenu ul li {
    position: relative;
}

.navmenu ul li a {
    text-decoration: none;
    color: var(--black-color);
    font-size: 15px;
    font-weight: 500;
    padding: 32px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: .3s;
}

.navmenu ul li a:hover {
    color: var(--primary-color);
}


/* =========================  MEGA MENU ========================= */

.listing-dropdown {
    position: static !important;
}

.listing-dropdown>ul {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;

    width: 100%;
    max-width: 1280px;

    max-height: 400px;
    overflow-x: auto;

    background: #fff;

    border-radius: 20px;

    padding: 35px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: .35s ease;
    margin-top: 20px;
}

.listing-dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0;
}

/* COLUMN */

.listing-dropdown ul li {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #efefef;
    padding-right: 18px;
}

.listing-dropdown ul li:last-child {
    border-right: 0;
}

/* TITLE */

.listing-dropdown ul li .cate-title {
    font-family: var(--secondary-font);
    margin-top: 0;
    line-height: 1.2;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 18px;
    /*font-weight: 700;*/
}

/* LINKS */

.listing-dropdown ul li a {
    padding: 8px 0 !important;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
    transition: .3s;
}

.listing-dropdown ul li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* =========================
           MOBILE TOGGLE
        ========================= */

.mobile-nav-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary-color);
}

.header.sticky .mobile-nav-toggle {
    color: #fff;
}

/* =========================
       HERO SECTION
    ========================= */
.hero-section {
    padding: 50px 0;
    background: #fbfbf9;
    object-fit: contain;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}

.hero-badge {
    background: #eef6ef;
    color: #0c6a35;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    font-family: var(--secondary-font);
    margin-top: 0;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: #0c6a35;
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-green {
    background: #0c6a35;
    color: #fff;
    padding: 15px 35px;
    border-radius: 12px;
}

.btn-outline-green {
    border: 2px solid #0c6a35;
    color: #0c6a35;
    padding: 15px 35px;
    border-radius: 12px;
}

.hero-img {
    max-height: 700px;
    object-fit: contain;
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0c6a35;
}

.swiper-pagination-bullet-active {
    background: #0c6a35;
}

.icon-box-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 35px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.icon-box-wrapper .icon-box {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-right: 1px solid #e5e5e5;
}

.icon-box-wrapper .icon-box:last-child {
    border-right: none;
}

.icon-box-wrapper .icon-box i {
    font-size: 32px;
    color: #0c6a35;
}

.icon-box-wrapper .icon-box .hero-sub-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    /*font-family: var(--secondary-font);*/
    line-height: 1.2;
    color: #222;
}

.icon-box-wrapper .icon-box p {
    margin: 0;
    font-size: 15px;
    color: #555;
}

@media(max-width:991px) {

    .icon-box {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }
}

@media(max-width:576px) {

    .icon-box {
        flex: 0 0 100%;
    }
}

@media(max-width:991px) {

    .hero-title {
        font-size: 42px;
    }

    .hero-section {
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }
}


/* ================= global-reach  SECTION=================== */
.global-reach-section {
    background: rgb(0 5 4);
    padding: 50px 0;
    overflow: hidden;
}

.global-reach-section .reach-content {
    color: #fff;
    position: relative;
    z-index: 2;
}

.global-reach-section .section-tag {
    color: #2dff8c;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.global-reach-section .reach-content .reach-content-title {
    font-family: var(--secondary-font);
    margin-top: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.global-reach-section .reach-content .reach-content-title span {
    display: block;
    color: #136b39;
}

.global-reach-section .reach-content p {
    color: #c8d1cc;
    font-size: 14px;
}

.global-reach-section .reach-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(0, 255, 120, .15);
    border-radius: 20px;
    padding: 10px;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: .4s;
    display: flex;
    gap: 5px;
}

.global-reach-section .reach-card:hover {
    transform: translateY(-8px);
    border-color: #136b39;
}

.global-reach-section .reach-card .icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 120, .25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-reach-section .reach-card i {
    color: #136b39;
    font-size: 18px;
}

.global-reach-section .reach-card .content-title {
    font-family: var(--secondary-font);
    color: #136b39;
    font-size: 25px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: .5rem;
    line-height: 1.2;
}

.global-reach-section .reach-card .content .content-sub-title {
    /*font-family: var(--secondary-font);*/
    font-size: 17px;
    color: white;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.global-reach-section .reach-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #17d96c, #0aa84f);
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 60px;
    margin-top: 40px;
    font-weight: 600;
    transition: all 0.4s ease; /* Yeh shadow ko smooth tarike se layega */
}

.global-reach-section .reach-btn:hover {
    box-shadow: 0 12px 30px rgba(23, 217, 108, 0.4); /* Button ke color se match karta hua green shadow */
    transform: translateY(-4px); /* Button ko halka sa upar uthayega */
    color: #fff;
}

.global-reach-section .reach-btn i {
    transition: transform 0.3s ease;
}

.global-reach-section .reach-btn:hover i {
    transform: translateX(5px);
}

.global-reach-section .world-map-area {
    position: relative;
    text-align: center;
    height: 100%;
}

.global-reach-section .world-map-area .image {
    max-height: 500px;
    height: 100%;
}

.global-reach-section .world-map-area img {
    width: 100%;
    height: 100%;
    opacity: .85;
}


.global-reach-section .world-map-area .bottom-features {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(0, 255, 120, .15);
    border-radius: 15px;
    padding: 20px;
}

.global-reach-section .feature-item {
    flex: 1;
    display: flex;
    gap: 10px;
    color: #fff;
    text-align: left;
}

.global-reach-section .feature-item i {
    color: #136b39;
    font-size: 16px;
    border: 1px solid #136b39;
    max-height: 2.5rem;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-reach-section .feature-item .feature-item-title {
    /*font-family: var(--secondary-font);*/
    font-size: 16px;
    margin-bottom: 8px;
    color: white;
    margin-top: 0;
    font-weight: 500;
    line-height: 1.2;
}

.global-reach-section .feature-item p {
    margin: 0;
    color: #bfc8c3;
    font-size: 14px;
}

/* ===========about-section ========= */
.about-section {
    background-color: rgb(247 247 247);
}

.about-section .container-fluid {
    padding: 0 80px;
}

/* ===============================
   CHALLENGE SECTION
================================== */

.challenge-section {
    position: relative;
    background: #000201;
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
}

/* Background Glow */
.challenge-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle,
            rgba(0, 255, 170, 0.15) 0%,
            rgba(0, 255, 170, 0.05) 40%,
            transparent 70%);
    z-index: 1;
}

/* Right Side Image */
.challenge-bg-image {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 50%;
    z-index: 2;
    pointer-events: none;
}

.challenge-bg-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Content */
.challenge-section .container {
    position: relative;
    z-index: 5;
}

.challenge-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #35f0a1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.challenge-section .section-tag::before {
    content: "";
    width: 55px;
    height: 2px;
    background: #0b5a43;
}

.challenge-section .challenge-section-title {
    font-family: var(--secondary-font);
    margin-top: 0;
    font-size: 45px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 900px;
    color: white;
}

.challenge-section .challenge-section-title span {
    color: #0b5a43;
}

.challenge-section p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    max-width: 750px;
    margin-bottom: 0;
}

/* ===============================
   CARDS
================================== */

.challenge-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 10px;
    height: 100%;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.challenge-card:hover {
    transform: translateY(-8px);
    border-color: rgba(53, 240, 161, 0.5);
    background: rgba(53, 240, 161, 0.05);
}

.challenge-card i {
    width: 40px;
    height: 40px;
    border-radius: 18px;
    background: rgba(53, 240, 161, 0.12);
    color: #0d7c4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto;
    margin-bottom: 25px;
}

.challenge-card .challenge-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    margin-top: 0;
    line-height: 1.2;
}

.challenge-card p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}

/* ===============================
   BOTTOM CTA
================================== */

.challenge-cta {
    margin-top: 10px;
    padding: 35px 40px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.challenge-cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
}

.challenge-cta-left i {
    color: #35f0a1;
    font-size: 40px;
}

.challenge-cta-left span {
    color: #35f0a1;
}

.challenge-cta-right {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}


.challenge-bottom {
    margin-top: 70px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(0, 255, 170, .12);
    border-radius: 30px;
    padding: 16px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.challenge-bottom .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.challenge-bottom .left .challenge-bottom-left-title {
    font-size: 30px;
    font-family: var(--secondary-font);
    color: white;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.challenge-bottom .left i {
    color: #2bff9c;
    margin-right: 15px;
    font-size: 40px;
}

.challenge-bottom .left span {
    color: #2bff9c;
}

.challenge-bottom .right {
    color: #c4cecb;
    font-size: 22px;
    line-height: 1.8;
}

/* ------------------products categoryes========= */
.product-categories-section {
    padding: 50px 0;
    background: #fcfdfc;
    position: relative;
}

.section-subtitle {
    color: #0b6b36;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
}

.section-subtitle::after {
    content: '';
    width: 60px;
    height: 2px;
    background: #0b6b36;
    display: block;
    margin: 12px auto 0;
}

.section-title {
    font-size: 45px;
    font-weight: 800;
    font-family: var(--secondary-font);
    line-height: 1.1;
    color: #111;
    margin-bottom: 20px;
}

.section-title span {
    color: #0b6b36;
}

.section-desc {
    max-width: 760px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

.product-categories-section .product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.product-categories-section .category-card {
    background: #f8faf8;
    border: 1px solid #e8eeea;
    border-radius: 26px;
    padding: 25px 20px 30px;
    text-align: center;
    position: relative;
    transition: .3s;
    overflow: hidden;
}

.product-categories-section .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.product-categories-section .category-card .product-circle {
    width: 270px;
    height: 170px;
    background: #eef3ef;
    /* border-radius: 50%; */
    border-radius: 10px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-categories-section .category-card .product-circle img {
   height: 100%;
   height: 100%;
   object-fit: cover;
}

.product-categories-section .category-card .category-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0b6b36;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 160px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(11, 107, 54, .25);
}

.product-categories-section .category-card .product-card-title {
    margin-top: 22px;
    font-size: 18px;
    font-weight: normal;
    font-family: var(--secondary-font);
    line-height: 1.3;
    color: #111;
    margin-bottom: 0;
}

.product-card a {
    text-decoration: none;
}

.product-categories-section .explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    border: 2px solid #0b6b36;
    border-radius: 50px;
    text-decoration: none;
    color: #0b6b36;
    font-weight: 700;
    transition: .3s;
}

.product-categories-section .explore-btn:hover {
    background: #0b6b36;
    color: #fff;
}

@media(max-width:1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px) {

    .section-title {
        font-size: 42px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {

    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* =================why choose -============= */
.why-choose-section {
    background: #021c18;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left,
            rgba(0, 255, 150, .12),
            transparent 40%);
}

.why-choose-section .sub-title {
    color: #28c76f;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 700;
}

.why-choose-section .section-heading .section-heading-title {
    font-family: var(--secondary-font);
    line-height: 1.2;
    color: #fff;
    font-size: 45px;
    font-weight: 800;
    margin: 20px 0;
}

.section-heading .section-heading-title span {
    color: #22c55e;
}

.why-choose-section .section-heading p {
    color: #b5c7c1;
    font-size: 20px;
}

.why-choose-section .choose-card {
    position: relative;
    display: flex;
    gap: 25px;
    padding: 15px;
    min-height: 240px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(34, 197, 94, .25);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    transition: .4s;
}

.choose-card:hover {
    transform: translateY(-8px);
    border-color: #22c55e;
    box-shadow:
        0 0 30px rgba(34, 197, 94, .15);
}

.why-choose-section .card-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    border: 1px solid rgba(34, 197, 94, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
}

.why-choose-section .card-content .card-content-title {
    color: #fff;
    font-size: 25px;
    font-family: var(--secondary-font);
    font-weight: normal;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: .5rem;
}

.why-choose-section .line {
    display: block;
    width: 45px;
    height: 3px;
    background: #22c55e;
    margin: 18px 0;
}

.why-choose-section .card-content p {
    color: #c7d5cf;
    font-size: 20px;
    line-height: 1.8;
}

.why-choose-section .card-number {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 255, 255, .05);
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    border: 1px solid #22c55e;
    border-radius: 60px;
    padding: 18px 35px;
    transition: .3s;
}

.partner-btn:hover {
    background: #22c55e;
    color: #fff;
}

/* ===== Process Section ===== */

/* ===== Process Section (Dynamic) ===== */

/* --- Scroll Animation Base Styles --- */
.overflow-hidden {
    overflow-x: hidden; /* Prevents horizontal scrollbar when elements are off-screen */
}

/* Initial States */
.slide-left {
    opacity: 0;
    transform: translateX(-100px); /* Left mein chhupa hoga */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-right {
    opacity: 0;
    transform: translateX(100px); /* Right mein chhupa hoga */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-up {
    opacity: 0;
    transform: translateY(60px); /* Niche chhupa hoga */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Visible State (Triggered by JS) */
.slide-left.is-visible,
.slide-right.is-visible,
.slide-up.is-visible {
    opacity: 1;
    transform: translate(0, 0); /* Apni original jagah par wapas aayega */
}

/* Staggered Delays for smooth sequence effect */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }

/* Mobile specific tweaks for better experience */
@media (max-width: 768px) {
    /* Mobile par distance thodi kam kar dete hain taaki zyada smooth lage */
    .slide-left { transform: translateX(-50px); }
    .slide-right { transform: translateX(50px); }
    
    /* Mobile par delay kam kar dete hain warna user ko wait karna padega */
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.15s; }
    .delay-3 { transition-delay: 0.2s; }
}

.process-section {
    background: #fff;
    padding: 100px 0;
}

.process-tag {
    color: var(--primary-color, #1b7348);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.process-title {
    font-family: var(--secondary-font);
    line-height: 1.2;
    font-size: 40px;
    font-weight: 800;
    margin: 15px 0;
}

.process-desc {
    max-width: 700px;
    margin: auto;
    color: var(--text-color, #666);
}

/* Process Item & Hover Effects */
.process-item {
    position: relative;
    text-align: center;
    padding: 15px 0;
    border-radius: 12px;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Lift effect on the whole process item */
.process-item:hover {
    transform: translateY(-8px);
}

.step-no {
    display: none;
}

.process-section .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f4faf6;
    border: 1px solid #dbece2;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease; /* Added transition */
}

.process-section .icon-box i {
    font-size: 28px;
    color: var(--primary-color, #1b7348);
    transition: all 0.4s ease; /* Added transition */
}

/* Dynamic Icon Box Hover */
.process-item:hover .icon-box {
    background: var(--primary-color, #1b7348);
    border-color: var(--primary-color, #1b7348);
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(13, 124, 74, 0.25);
}

.process-item:hover .icon-box i {
    color: #fff;
    transform: scale(1.1);
}

.process-section .process-item .process-item-title {
    margin-bottom: .5rem;
    line-height: 1.2;
    margin-top: 18px;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    transition: color 0.3s ease;
}

/* Highlight title on hover */
.process-item:hover .process-item-title {
    color: var(--primary-color, #1b7348);
}

.process-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Continuous Arrow Animation Between Items */
@keyframes forwardBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

.process-item::after {
    content: "\F138";
    font-family: "bootstrap-icons";
    position: absolute;
    top: 42px; /* Adjusted slightly for alignment */
    right: -20px;
    color: #8db89d;
    font-size: 18px;
    animation: forwardBounce 2s infinite ease-in-out; /* Added continuous animation */
}

.col-lg:last-child .process-item::after {
    display: none;
}

/* Responsive Process */
@media (max-width: 991px) {
    .process-title {
        font-size: 40px;
    }
    .process-item::after {
        display: none;
    }
    .process-section .icon-box {
        width: 100px;
        height: 100px;
    }
    .process-section .icon-box i {
        font-size: 40px;
    }
}

/* Process Stats & Hover Effects */
.process-stats {
    background: #fff;
    border: 1px solid #e8ece9;
    border-radius: 15px;
    padding: 30px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    transition: box-shadow 0.4s ease;
}

.process-stats:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.process-stats .stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px;
    border-right: 1px solid #e5e5e5;
    transition: transform 0.3s ease; /* Added transition */
    cursor: default;
}

.process-stats .col-lg:last-child .stat-item {
    border-right: none;
}

/* Dynamic Stat Hover */
.process-stats .stat-item:hover {
    transform: translateY(-5px);
}

.process-stats .stat-icon {
    font-size: 25px;
    color: var(--primary-color, #1b7348);
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.process-stats .stat-item:hover .stat-icon {
    transform: scale(1.2) rotate(360deg);
}

.process-stats .stat-item .stat-item-title {
    font-family: var(--secondary-font);
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: var(--primary-color, #1b7348);
    line-height: 1;
}

.process-stats .stat-item p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

@media (max-width: 991px) {
    .stat-item {
        border-right: none;
        margin-bottom: 15px;
    }
    .stat-item h3 {
        font-size: 26px;
    }
    .stat-icon {
        font-size: 26px;
    }
}
/* -------------testimonial----------- */
.leadership-section {
    padding-bottom: 50px;
    background: #fff;
}

.section-tag {
    display: block;
    text-align: center;
    color: #0f5c45;
    font-size: 14px;
    letter-spacing: 5px;
    font-weight: 600;
}

.section-tag::after {
    content: "";
    width: 130px;
    height: 2px;
    background: #0f5c45;
    display: block;
    margin: 18px auto 0;
}

.leadership-top .leadership-top-title {
    font-family: var(--secondary-font);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: #0b4d39;
    margin: 25px 0;
}



.content-box {
    max-width: 1000px;
    margin: auto;
}

.content-box p {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #2f2f2f;
    margin-bottom: 30px;
}

.note-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 80px;
    margin-bottom: 60px;
}

.note-title span {
    flex: 1;
    height: 1px;
    background: #8aa596;
}

.note-title p {
    margin: 0;
    color: #0b5a43;
    letter-spacing: 4px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--secondary-font);
    line-height: 1.2;
}

.quote-card {
    text-align: center;
    max-width: 900px;
    margin: auto;
    position: relative;
}

.quote-left,
.quote-right {
    position: absolute;
    font-family: "Cormorant Garamond", serif;
    font-size: 120px;
    color: #b79c58;
    line-height: 1;
}

.quote-left {
    left: 0;
    top: -30px;
}

.quote-right {
    right: 0;
    bottom: 40px;
}

.quote-card p {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    line-height: 1.4;
    padding: 0 120px;
    color: #111;
}

.quote-divider {
    width: 90px;
    height: 2px;
    background: #b79c58;
    margin: 35px auto;
}

.quote-card .quote-card-title {
    font-family: "Cormorant Garamond", serif;
    color: #0b4d39;
    font-size: 42px;
    margin-bottom: 5px;
    argin-top: 0;
    font-weight: 500;
    line-height: 1.2;
}

.quote-card span {
    font-size: 20px;
    color: #444;
}

/* ------------------------------------------- */

.people-culture {
    background: #f8f8f6;
}

.people-culture .section-tag {
    color: #4e6d45;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    text-align: left;
}

.people-culture .section-tag::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #c5a86a;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    position: absolute;
    bottom: -5px;

}

.people-culture .section-tag::after {
    content: none;
}

.people-culture .main-title {
    font-family: var(--secondary-font);
    font-size: 60px;
    font-weight: 700;
    color: #123326;
    margin: 20px 0 30px;
    line-height: 1.1;
}

.people-culture .content {
    padding-left: 50px;
    padding-right: 20px;

}

.content-text {
    color: #555;
    font-size: 18px;
    line-height: 1.9;
}

.values-row {
    margin-top: 20px;
}

.value-box {
    border-right: 1px solid #ddd;
    padding: 15px;
}

.value-box:last-child {
    border-right: none;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border: 1px solid #8aa08b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #2f5a44;
    font-size: 26px;
}

.value-box .value-box-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #136b39;
}

.value-box p {
    font-size: 14px;
    color: #666;
}

.stats-panel {
    background: #136b39;
    /*background: linear-gradient(180deg, #083c2f, #062f24);*/
}

.people-culture .stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.stat-item i {
    font-size: 34px;
    color: #d9b15f;
    min-width: 45px;
}

.stat-item .stat-item-title-2 {
    font-family: var(--secondary-font);
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

.stat-item p {
    margin: 0;
    color: #ddd;
}

.stats-panel hr {
    border-color: #d9b15f;
    opacity: 1;
}

/* ======================= */

.leadership-section {
    background: #f1efeb;
    overflow: hidden;
}

.leader-left {
    background: #f1efeb;
    padding: 40px;
}

.section-label {
    color: #2e5c49;
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.leader-name {
    font-size: 65px;
    line-height: 0.95;
    font-weight: 300;
    color: #295743;
    font-family: "Times New Roman", serif;
    margin-bottom: 15px;
}

.leader-role {
    font-size: 18px;
    color: #3d4d43;
    margin-bottom: 30px;
}

.leader-image img {
    width: 100%;
    max-width: 480px;
    display: block;
}

.linkedin-link {
    margin-top: 12px;
    font-size: 18px;
}

.linkedin-link i {
    color: #0A66C2;
    font-size: 28px;
    margin-right: 8px;
}

.linkedin-link a {
    color: #295743;
    text-decoration: underline;
}

.leader-right {
    background: #0f6b34;
    color: #fff;
    padding: 15px 30px;
}

.career-block {
    margin-bottom: 15px;
}

.career-block .career-block-title {
    font-size: 20px;
    font-weight: normal;
    font-family: var(--secondary-font);
    text-decoration: underline;
}

.career-block ul {
    padding-left: 18px;
}

.career-block li {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 15px;
}

.career-block p {
    margin: 4px 0 0 0;
    opacity: .95;
}

@media(max-width:991px) {

    .leader-name {
        font-size: 48px;
    }

    .leader-left,
    .leader-right {
        padding: 25px;
    }

    .linkedin-link {
        font-size: 14px;
        word-break: break-all;
    }
}

@media(max-width:991px) {

    .main-title {
        font-size: 42px;
    }

    .value-box {
        border-right: none;
        border-bottom: 1px solid #ddd;
        margin-bottom: 20px;
    }
}


@media(max-width:991px) {
    .process-title {
        font-size: 30px;
    }

    .icon-box {
        width: 100px;
        height: 100px;
    }

    .icon-box i {
        font-size: 40px;
    }
}


.solution-section {
    background: #f7faf8;
    padding: 50px 0;
    position: relative;
}

.solution-tag {
    color: #146c43;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.solution-title {
    font-family: var(--secondary-font);
    line-height: 1.2;
    font-size: 40px;
    font-weight: 800;
    margin: 15px 0;
    color: #111;
}

.solution-title span {
    color: #146c43;
}

.solution-desc {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

.solution-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    min-height: 410px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .4s;
}

.solution-card:hover {
    transform: translateY(-8px);
}

.solution-card .icon-box {
    width: 120px;
    height: 120px;
    margin: auto;
    border-radius: 50%;
    background: #eef6f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card .icon-box i {
    font-size: 55px;
    color: #146c43;
}

.solution-card .solution-card-title {
    margin-bottom: .5rem;
    line-height: 1.2;
    margin-top: 30px;
    font-size: 25px;
    font-family: var(--secondary-font);
    color: black;
    font-weight: normal;
}

.solution-card .divider {
    width: 40px;
    height: 3px;
    background: #146c43;
    display: block;
    margin: 20px auto;
}

.solution-card p {
    color: #555;
    line-height: 1.9;
    font-size: 17px;
}

.flow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #146c43;
    font-size: 34px;
}

.flow-arrow-left {
    left: -25px;
}

.flow-arrow-right {
    right: -25px;
}

.learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border: 2px solid #146c43;
    border-radius: 50px;
    text-decoration: none;
    color: #146c43;
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s ease; /* Hover ko smooth banane ke liye */
}

.learn-btn i {
    font-size: 28px;
}

.learn-btn:hover {
    background: #146c43; /* Solid green background */
    color: #fff; /* White text and icon */
}

@media(max-width:991px) {

    .solution-title {
        font-size: 42px;
    }

    .flow-arrow {
        display: none;
    }

    .solution-card {
        min-height: auto;
    }
}


/* ===============================
   RESPONSIVE
================================== */

@media (max-width: 1199px) {

    .challenge-section h2 {
        font-size: 50px;
    }

    .challenge-bg-image {
        width: 45%;
    }
}

@media (max-width: 991px) {

    .challenge-section {
        padding: 90px 0;
    }

    .challenge-section h2 {
        font-size: 40px;
    }

    .challenge-bg-image {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 50px;
        text-align: center;
    }

    .challenge-bg-image img {
        max-width: 500px;
    }

    .challenge-cta {
        flex-direction: column;
        text-align: center;
    }

    .challenge-cta-left {
        font-size: 28px;
    }
}

@media (max-width: 767px) {

    .challenge-section {
        padding: 70px 0;
    }

    .challenge-section h2 {
        font-size: 32px;
    }

    .challenge-section p {
        font-size: 16px;
    }

    .challenge-card {
        padding: 25px 20px;
    }

    .challenge-card h5 {
        font-size: 20px;
    }

    .challenge-cta {
        padding: 25px;
    }

    .challenge-cta-left {
        font-size: 22px;
    }

    .challenge-cta-right {
        font-size: 16px;
    }
}

/* ===============================
   CHALLENGE SECTION 2
================================= */

.challenge-section2 {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    background:
        linear-gradient(rgba(1, 28, 18, 0.991),
            rgba(2, 35, 22, 0.993)),
        url('/assets/image/About Us Section 1 Image.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.challenge-section2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(38, 166, 91, .15),
            transparent 70%);
}

.challenge-section2 .section-tag {
    color: #32d287;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.challenge-section2 .challenge-title {
    color: #fff;
    font-size: 40px;
    font-weight: normal;
    font-family: var(--secondary-font);
    line-height: 1.1;
    margin: 20px 0;
}

.challenge-section2 .challenge-title span {
    color: #32d287;
}

.challenge-section2 .challenge-desc {
    max-width: 850px;
    margin: auto;
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    line-height: 1.8;
}

/* Cards */

.challenge-section2 .challenge-card {
    height: 100%;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 15px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: .4s ease;
}

.challenge-card:hover {
    transform: translateY(-8px);
    border-color: rgba(50, 210, 135, .35);
}

.challenge-section2 .challenge-card .icon-box {
    width: 50px;
    height: 50px;
    margin: auto;
    border-radius: 50%;
    background: rgba(50, 210, 135, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.challenge-section2 .challenge-card .icon-box i {
    font-size: 20px;
    color: #32d287;
    background-color: transparent;
    margin-bottom: 0;
}

.challenge-section2 .challenge-card .challenge-card-title2 {
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.4;
    margin-top: 25px;
    margin-bottom: .5rem;
    min-height: 58px;
}

.challenge-card .divider {
    width: 45px;
    height: 3px;
    background: #32d287;
    display: block;
    margin: 20px auto;
    border-radius: 20px;
}

.challenge-card p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.9;
    font-size: 15px;
    margin: 0;
}

/* Bottom Solution Box */

.solution-box {
    margin-top: 70px;
    border: 1px solid rgba(50, 210, 135, .25);
    border-radius: 25px;
    padding: 10px 35px;
    background: rgba(255, 255, 255, .02);

}

.solution-box .solution-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(50, 210, 135, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.solution-box .solution-icon i {
    font-size: 32px;
    color: #fff;
}

.challenge-section2 .solution-box .solution-box-title {
    color: #fff;
    font-size: 25px;
    font-family: var(--secondary-font);
    font-weight: normal;
    line-height: 1.4;
    margin: 0;
}

.challenge-section2 .solution-box .solution-box-title span {
    color: #32d287;
}

.challenge-section2 .solution-box .solution-graphic {
    font-size: 60px;
    color: #32d287;
}

/* Responsive */

@media (max-width: 1199px) {
    .challenge-section2 .challenge-title {
        font-size: 50px;
    }
}

@media (max-width: 991px) {

    .challenge-section2 {
        padding: 70px 0;
    }

    .challenge-section2 .challenge-title {
        font-size: 38px;
    }

    .challenge-card {
        padding: 30px 20px;
    }

    .solution-box h3 {
        font-size: 28px;
        text-align: center;
        margin-top: 20px;
    }

    .solution-graphic {
        font-size: 80px;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {

    .challenge-section2 .challenge-title {
        font-size: 25px;
    }

    .challenge-desc {
        font-size: 15px;
    }

    .solution-box {
        padding: 25px;
    }

    .solution-box h3 {
        font-size: 22px;
    }
}



/* =========================
   Breadcrumb Base
========================= */

.custom-breadcrumb {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, #041d13 0%, #0d7c4a 100%);
    overflow: hidden;
}

/* Floating animated shapes */

.breadcrumb-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-one {
    width: 320px;
    height: 320px;
    background: #7ddc9c;
    top: -80px;
    left: -80px;
}

.shape-two {
    width: 280px;
    height: 280px;
    background: #ffffff;
    bottom: -100px;
    right: -60px;
    animation-delay: 2s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(20px) scale(1.05);
    }
}

/* =========================
   Text Animations
========================= */

.animate-fade-up {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.9s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle */

.breadcrumb-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #d7ffe7;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
}

/* Title */

.breadcrumb-content h1 {
    color: #ffffff;
    font-size: 72px;
    margin-bottom: 25px;
    line-height: 1.1;
}

/* Menu */

.breadcrumb-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0px 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    backdrop-filter: blur(10px);
}

.breadcrumb-menu a,
.breadcrumb-menu p {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

.breadcrumb-menu a:hover {
    color: #7ddc9c;
}



/* =========================FOOTER section=================== */

.doctoright-footer {
    position: relative;
    overflow: hidden;
    background: #071b12;
    padding-top: 60px;
    color: #fff;
}

.doctoright-footer::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(13, 124, 74, 0.08);
    top: -350px;
    right: -250px;
}

.doctoright-footer::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(13, 124, 74, 0.05);
    bottom: -250px;
    left: -180px;
}

.doctoright-footer .footer-top {
    position: relative;
    z-index: 5;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.doctoright-footer .footer-title span {
    display: inline-block;
    color: #0d7c4a;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.doctoright-footer .footer-title p {
    font-family: var(--secondary-font);
    font-size: 50px;
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
}

.doctoright-footer .footer-newsletter form {
    background: #fff;
    border-radius: 80px;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 580px;
    margin-left: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.doctoright-footer .footer-newsletter input {
    flex: 1;
    border: none;
    outline: none;
    height: 55px;
    padding: 0 25px;
    border-radius: 60px;
    font-size: 15px;
}

.doctoright-footer .footer-newsletter button {
    border: none;
    background: #0d7c4a;
    color: #fff;
    height: 65px;
    padding: 0 35px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: .35s ease;
}

.doctoright-footer .footer-newsletter button:hover {
    background: #111;
}

.doctoright-footer .footer-middle {
    position: relative;
    z-index: 5;
    padding: 80px 0;
}

.doctoright-footer .footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.doctoright-footer .footer-logo img {
    width: 230px;
    object-fit: contain;
}

.doctoright-footer .footer-about p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 380px;
}

.doctoright-footer .footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.doctoright-footer .footer-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: .35s ease;
}

.doctoright-footer .footer-social a:hover {
    background: #0d7c4a;
    transform: translateY(-5px);
}


.doctoright-footer .footer-links p,
.doctoright-footer .footer-contact p {
    font-size: 26px;
    font-family: var(--secondary-font);
    margin-bottom: 28px;
    font-weight: normal;
    color: #fff;
}

.doctoright-footer .footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.doctoright-footer .footer-links ul li {
    margin-bottom: 16px;
}

.doctoright-footer .footer-links ul li:last-child {
    margin-bottom: 0;
}

.doctoright-footer .footer-links ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.72);
    transition: .3s ease;
    position: relative;
    padding-left: 0;
}

.doctoright-footer .footer-links ul li a:hover {
    color: #fff;
    padding-left: 8px;
}

.doctoright-footer .footer-links ul {
    max-height: 215px;
    overflow-x: auto;
}

.doctoright-footer .footer-links ul::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.doctoright-footer .footer-links ul::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.doctoright-footer .footer-links ul::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.doctoright-footer .footer-links ul::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.doctoright-footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.doctoright-footer .contact-item:last-child {
    margin-bottom: 0;
}

.doctoright-footer .contact-icon {
    min-width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #0d7c4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.doctoright-footer .contact-text {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    font-size: 15px;
}

.doctoright-footer .footer-bottom {
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
}

.doctoright-footer .footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.doctoright-footer .footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.doctoright-footer .footer-bottom-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: .3s ease;
}

.doctoright-footer .footer-bottom-links a:hover {
    color: #fff;
}

/* SECTION */
.cs-wrap {
    padding: 80px 20px;
    background: #f8f9fb;
}

.cs-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: stretch;
}

/* LEFT SIDE */
.cs-left {
    flex: 1;
}

.cs-subtitle {
    color: #ff6b35;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.cs-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cs-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 16px;
}

.cs-item {
    margin-bottom: 25px;
}

.cs-label {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.cs-item p,
.cs-item a {
    color: #666;
    text-decoration: none;
    line-height: 1.8;
    transition: 0.3s ease;
}

.cs-item a:hover {
    color: #ff6b35;
}

/* RIGHT SIDE */
.cs-right {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cs-field {
    margin-bottom: 18px;
}

.cs-field input,
.cs-field textarea,
.cs-field select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
    background: #fff;
}

.cs-field input:focus,
.cs-field textarea:focus,
.cs-field select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.15);
}

.cs-field textarea {
    min-height: 140px;
    resize: vertical;
}

/* BUTTON */
.cs-btn {
    width: 100%;
    padding: 15px;
    background: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.cs-btn:hover {
    background: #e4572a;
    transform: translateY(-2px);
}

/* ALERTS */
.alert {
    margin-top: 15px;
    border-radius: 8px;
    padding: 12px 15px;
}

/* RECAPTCHA */
.cusotm-design {
    margin: 20px 0;
}

/* TABLET */
@media (max-width: 991px) {
    .cs-inner {
        flex-direction: column;
        gap: 30px;
    }

    .cs-title {
        font-size: 34px;
    }

    .cs-right {
        padding: 25px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .cs-wrap {
        padding: 50px 15px;
    }

    .cs-title {
        font-size: 28px;
    }

    .cs-text {
        font-size: 15px;
    }

    .cs-right {
        padding: 20px;
        border-radius: 12px;
    }

    .cs-field input,
    .cs-field textarea,
    .cs-field select {
        padding: 12px 14px;
    }

    .cs-btn {
        padding: 13px;
        font-size: 15px;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-float {
    animation: ring 1s infinite;
    transform-origin: center;
}

@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(12deg); }
    40% { transform: rotate(-12deg); }
    50% { transform: rotate(8deg); }
    60% { transform: rotate(-8deg); }
    70%, 100% { transform: rotate(0); }
}

.cert-section {
    padding: 60px 20px;
    background: #f9fafb;
    text-align: center;
}

.cert-header p:first-child {
    font-family: var(--secondary-font);
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 10px;
    font-weight: 700;
}

.cert-header p {
    font-size: 14px;
    margin-bottom: 25px;
}

/* Swiper */
.certSwiper {
    max-width: 1100px;
    margin: auto;
    padding-bottom: 40px;
}

.certSwiper img {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    padding: 8px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: 0.3s;
}

.certSwiper img:hover {
    transform: scale(1.05);
}

/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #2563eb;
}

/* Pagination */
.swiper-pagination-bullet {
    background: #2563eb;
}

/* Modal */
.cert-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cert-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.client-section {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.client-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.client-header p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 35px;
}

.clientSwiper {
    max-width: 1100px;
    margin: auto;
}

.clientSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.clientSwiper img {
    max-width: 140px;
    width: 100%;
    opacity: 0.7;
    transition: 0.3s ease;
}

.clientSwiper img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}


/* for fade in up animation */
/* --- Challenge Section Scroll Animations --- */
.challenge-section2.overflow-hidden {
    overflow-x: hidden;
}

/* Base Hidden State */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Visible State (Triggered by JS) */
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sequence Delays for Desktop */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; } /* For Solution Box */

/* Mobile Optimization: Reduce delays so users don't have to wait while scrolling */
@media (max-width: 768px) {
    .fade-in-up {
        transform: translateY(30px); /* Chota jump for mobile */
    }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.15s; }
    .delay-3 { transition-delay: 0.2s; }
    .delay-4 { transition-delay: 0.25s; }
    .delay-5 { transition-delay: 0.3s; }
    .delay-6 { transition-delay: 0.35s; }
}

/* Extended Delays for 6-card grid */
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* Mobile Optimization for new delays */
@media (max-width: 768px) {
    .delay-7 { transition-delay: 0.4s; }
    .delay-8 { transition-delay: 0.45s; }
}

.challengeSwiper {
    padding-bottom: 40px !important;
}
.challengeSwiper .swiper-slide {
    height: auto;
}
.challengeSwiper .challenge-card {
    height: 100%;
}
.challenge-pagination {
    bottom: 0 !important;
}
.challenge-pagination .swiper-pagination-bullet {
    background: #32d287;
    opacity: 0.5;
}
.challenge-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #32d287;
}

.solutionSwiper {
    padding-bottom: 40px !important;
}
.solutionSwiper .swiper-slide {
    height: auto;
}
.solutionSwiper .solution-card {
    height: 100%;
    min-height: auto;
}
.solution-pagination .swiper-pagination-bullet {
    background: #146c43;
    opacity: 0.5;
}
.solution-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #146c43;
}


.productCatSwiper {
    padding-bottom: 45px !important;
}

.productCatSwiper .swiper-slide {
    height: auto;
}

.productCatSwiper .category-card {
    height: 100%;
}

.product-cat-pagination {
    bottom: 0 !important;
}

.product-cat-pagination .swiper-pagination-bullet {
    background: #0b6b36;
    opacity: 0.4;
}

.product-cat-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #0b6b36;
}

/* =========================================================
   HERO SECTION — MOBILE FIX ONLY
   (Desktop/.hero-section rules above are untouched)
   This block targets max-width: 991px so it matches your
   existing mobile breakpoint used elsewhere in the file.
========================================================= */

/* The image we added in HTML, hidden on desktop via d-lg-none.
   On mobile, show it as a proper block image ABOVE the content. */
.hero-mobile-img {
    display: none !important;
}

@media (max-width: 991px) {

    /* 1. Kill the background-image trick on mobile so it can't
          overlap or fight with text anymore */
    .hero-section.overflow-hidden {
        background-image: none !important;
        padding: 0 0 40px 0 !important;
    }

    /* 2. Show the real <img> we added, full width, on top.
          High specificity + !important so this wins no matter
          where this file sits relative to your other CSS. */
    section.hero-section .hero-mobile-img {
        display: block !important;
        width: 100% !important;
        height: 260px !important;
        object-fit: cover !important;
        border-radius: 0 0 24px 24px !important;
        margin-bottom: 28px !important;
    }

    /* 3. Tidy up the text block underneath */
    .hero-section .container {
        padding: 0 20px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 16px;
        line-height: 1.7;
    }

    /* 4. Icon boxes: 2 per row, neat */
    .icon-box-wrapper {
        margin: 25px 0;
    }

    .icon-box-wrapper .icon-box {
        flex: 0 0 50%;
        padding: 14px 10px;
        border-right: 1px solid #e5e5e5;
    }

    .icon-box-wrapper .icon-box:nth-child(2n) {
        border-right: none;
    }

    .icon-box-wrapper .icon-box i {
        font-size: 26px;
    }

    .icon-box-wrapper .icon-box .hero-sub-title {
        font-size: 15px;
    }

    .icon-box-wrapper .icon-box p {
        font-size: 13px;
    }

    /* 5. Buttons stack nicely, full width on very small screens */
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btns .btn-green,
    .hero-btns .btn-outline-green {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .hero-mobile-img {
        height: 200px;
        border-radius: 0 0 18px 18px;
        /* justify-content: center; */
    }

    .hero-title {
        font-size: 26px;
    }

    .icon-box-wrapper .icon-box {
        flex: 0 0 100%;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        justify-content: center
    }

    .icon-box-wrapper .icon-box:last-child {
        border-bottom: none;
    }
}

