* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

/* Coming soon link styling */
.coming-soon-link {
    opacity: 0.7;
    cursor: pointer;
}

/* .navHeadContainer {
    background-color: #1F513AE5;
    height: 660px;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbarCon {
    height: 12%;
    width: 95%;
    background-color: white;
    border-radius: 40px;
}

.imagesNavConList {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.imageList {
    height: 100%;
    width: 66%;
    display: flex;
    gap: 15%;
}

.imagesNavConList .imageList img {
    height: 90%;
}

.navMainList ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4%;
    height: 100%;
}

.navMainList ul li {
    font-family: sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(34, 40, 42, 0.7);
    text-decoration: none;
}

.navMainList ul li a{
    text-decoration: none;
}

.navContactButton button {
    padding: 13px 25px 13px 25px;
    border-radius: 69px;
    border: 1px solid rgba(56, 100, 79, 1);
    font-weight: 600;
    font-size: 14px;
    color: white;
    background-color: rgba(56, 100, 79, 1);
} */

/* ================= NAV ================= */
.navHeadContainer {
    background:
        linear-gradient(rgba(31, 81, 58, 0.4), rgba(31, 81, 58, 0.7)),
        url('../images/solution-3.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* NAVBAR */
.navbarCon {
    width: 95%;
    max-width: 1300px;
    background-color: white;
    border-radius: 999px;
    padding: 8px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}

/* FLEX WRAPPER */
.imagesNavConList {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO + MENU */
.imageList {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* LOGO */
.imagesNavConList .imageList img {
    height: 40px;
}

/* NAV MENU */
.navMainList ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.navMainList ul li {
    font-weight: 600;
    font-size: 14px;
    color: rgba(34, 40, 42, 0.7);
    cursor: pointer;
    transition: color 0.2s ease;
}

.navMainList ul li:hover {
    color: #1f513a;
}

.navMainList ul li a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.navMainList ul li a:hover {
    color: #1f513a;
}

/* BUTTON */
.navContactButton button {
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    background-color: #38644f;
    color: white;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.navContactButton button:hover {
    background-color: #1f513a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 81, 58, 0.3);
}


.mainTextCon {
    height: 100%;
    width: 95%;
    display: flex;
    justify-content: flex-start;
}

.headingTextCon {
    display: flex;
    align-items: flex-start;
    padding-left: 10%;
    flex-direction: column;
    padding-top: 8rem;
    max-width: 1400px;
}

.animate-up {
    animation: slideUpFade 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.headingBigTexts {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 3.8rem;
    color: white;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description {
    margin-top: 0;
    max-width: 700px;
}

.hero-description p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: white;
    margin-bottom: 0.8rem;
    max-width: 600px;
}
.demoPartnerCon{
    display: flex;
    gap: 16px;
    margin-top: 2rem;
    flex-wrap: wrap;
}
/* .demoPartnerCon button{
    margin-top: 2rem;
    padding: 12.34px 24px 12.99px 24px;
    border: 1px solid rgba(9, 122, 40, 1);
    color: white;
    background-color:  rgba(9, 122, 40, 1);
    border-radius: 99px;
} */
.demoBtn{
    padding: 10px 22px;
    border: none;
    color: white;
    background-color: #097a28;
    border-radius: 99px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.demoBtn:hover {
    background-color: #076120;
    transform: translateY(-2px);
}

.partnerBtn{
    padding: 10px 22px;
    border: 1px solid white;
    color: white;
    background-color: transparent;
    border-radius: 99px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.partnerBtn:hover{
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


.logoSection {
    width: 100%;
    background-color: #ffff; 
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.logoContainer {
    width: 80%;
    display: flex;
    justify-content: center;   
    align-items: center;
    gap: 80px;                 
}


.logoContainer img {
    max-height: 90px;
    object-fit: contain;
    opacity: 0.9;
    transition: 0.3s ease;
}


.logoContainer img:hover {
    opacity: 1;
    transform: scale(1.5);
}

.aboutSection {
    width: 100%;
    background-color: #ffff;
    padding: 50px 0 100px 0; 
    position: relative;
}

.aboutContainer {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}


.aboutText {
    flex: 1;
}

.aboutLabel {
    font-size: 16px;
    letter-spacing: 2px;
    color: #6b7280;
    margin-bottom: 17px;
    font-weight: 520;
}

.aboutTitle {
    font-size: 40px;
    color: #1f513a;
    margin-bottom: 20px;
}

.aboutDescription {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(106, 118, 124, 1);
    margin-bottom: 26px;
    max-width: 600px;
    font-weight: 500;
}


/* BUTTON */
.learnMoreBtn {
    padding: 14px 28px;
    border-radius: 999px;
    border: 2px solid #1f513a;
    background-color: transparent;
    color: #1f513a;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learnMoreBtn:hover {
    background-color: #1f513a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(31, 81, 58, 0.3);
}

/* RIGHT SIDE */
.aboutImage {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* push to edge */
}

.aboutImage img {
    width: 100%;
    max-width: 650px;   /* bigger */
    border-radius: 30px;
}


.servicesSection {
    width: 100%;
    display: flex;
    justify-content: center;
    /* margin-top: -120px;  */
    padding: 20px 20px 50px 20px;
}

/* CARD */
.servicesCard {
    width: 95%;
    max-width: 1400px;              /* 🔥 wider like design */
    background-color: rgba(241, 237, 228, 1);      /* 🔥 correct beige tone */
    padding: 100px 40px;
    border-radius: 40px;            /* softer corners */
    text-align: center;
}

/* LABEL */
.servicesLabel {
    font-size: 13px;
    letter-spacing: 2px;
    color: #6b7280;
    margin-bottom: 25px;
}

/* TITLE */
.servicesTitle {
    font-size: 45px;        /* 🔥 bigger */
    font-weight: 700;
    color: #1f513a;
    line-height: 1.2;
    max-width: 1000px;
    margin: 0 auto 25px auto;
}

/* DESCRIPTION */
.servicesDescription {
    font-size: 17px;
    line-height: 1.8;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

/* BUTTONS */
.servicesButtons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* PRIMARY */
.primaryBtn {
    padding: 16px 32px;
    border-radius: 999px;
    border: none;
    background-color: #1f513a;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

/* SECONDARY */
.secondaryBtn {
    padding: 16px 32px;
    border-radius: 999px;
    border: 1.5px solid #1f513a;
    background-color: transparent;
    color: #1f513a;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.solutionsSection {
    width: 100%;
    padding: 80px 20px;
    text-align: center;
}

/* TITLE */
.solutionsTitle {
    font-size: 36px;
    color: #1f513a;
    margin-bottom: 40px;
}

/* GRID */
.solutionsContainer {
    width: 95%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 25px;
    justify-content: center;
}

/* CARD */
.solutionCard {
    flex: 1;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    text-align: left;
    transition: 0.3s ease;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.solutionCard img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* CONTENT */
.cardContent {
    padding: 20px;
}

.cardContent h3 {
    font-size: 16px;
    color: #1f513a;
    margin-bottom: 10px;
}

.cardContent p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* EXPLORE LINK */
.explore {
    font-size: 14px;
    color: #1f513a;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.explore:hover {
    gap: 10px;
    color: #163d2c;
}

/* HOVER (optional but 🔥) */
.solutionCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.impactSection {
    width: 100%;
    background-color: #1f513a; /* dark green */
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.impactContainer {
    width: 95%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT TEXT */
.impactText {
    flex: 1;
    color: white;
}

.impactText h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.impactText p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 500px;
}

/* BUTTON */
.impactBtn {
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    background-color: #2bb24c;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.impactBtn:hover {
    background-color: #25a045;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(43, 178, 76, 0.4);
}

/* RIGHT IMAGE */
.impactImage {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.impactImage img {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    object-fit: cover;
}

.impactIntroSection {
    width: 100%;
    background-color: #f3f4f3; /* light grey */
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.impactIntroContainer {
    max-width: 800px;
}

/* ICON */
.impactIcon {
    font-size: 28px;
    color: #1f513a;
    margin-bottom: 20px;
}

/* TITLE */
.impactIntroContainer h2 {
    font-size: 38px;
    color: #1f513a;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.impactIntroContainer p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 35px;
}

/* BUTTON */
.impactOutlineBtn {
    padding: 14px 30px;
    border-radius: 999px;
    border: 1.5px solid #1f513a;
    background-color: transparent;
    color: #1f513a;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.impactOutlineBtn:hover {
    background-color: #1f513a;
    color: white;
}


/* SECTION BACKGROUND */
.communitySection {
    width: 100%;
    background-color: #f3f4f3; /* same grey as above */
    padding: 0px 20px 50px 20px; /* spacing from top section */
    display: flex;
    justify-content: center;
}

/* CARD */
.communityCard {
    width: 95%;
    max-width: 1100px;
    background-color: rgba(241, 237, 228, 1); /* beige tone */
    border-radius: 40px;
    padding: 80px 20px;
    text-align: center;
}

/* ICON */
.communityIcon {
    font-size: 28px;
    color: #1f513a;
    margin-bottom: 20px;
}

/* TITLE */
.communityCard h2 {
    font-size: 34px;
    color: #1f513a;
    margin-bottom: 25px;
}

/* BUTTON */
.communityBtn {
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    background-color: #1f513a;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.communityBtn:hover {
    background-color: #163d2c;
}

/* PARTNERS SECTION */
.partnersSection {
    width: 100%;
    background-color: #f3f4f3; /* same grey as above */
    padding: 0 20px 80px 20px;
    text-align: center;
}

/* TITLE */
.partnersTitle {
    font-size: 28px;
    color: #1f513a;
    margin-bottom: 30px;
    font-weight: 600;
}

/* CONTAINER */
.partnersContainer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* PILLS */
.partnerPill {
    background-color: rgba(241, 237, 228, 1); /* beige */
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 14px;
    color: #1f513a;
    font-weight: 500;
    transition: 0.3s ease;
}

/* HOVER */
.partnerPill:hover {
    background-color: #e6e2d7;
    transform: translateY(-2px);
}


/* FOOTER */
.footerSection {
    width: 100%;
    background-color: #1f513a;
    color: white;
    padding: 80px 20px 30px 20px;
}

/* CONTAINER */
.footerContainer {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT */
.footerLeft {
    max-width: 220px;
}

.footerLeft img {
    width: 60px;
    margin-bottom: 15px;
}

.footerLeft p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* LINKS */
.footerLinks h4,
.footerContact h4 {
    margin-bottom: 15px;
    font-size: 14px;
}

.footerLinks ul {
    list-style: none;
}

.footerLinks ul li {
    font-size: 13px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
}

/* CONTACT */
.footerContact p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

/* SOCIAL ICONS */
.socialIcons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.socialIcons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.socialIcons span {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.socialIcons span:hover {
    background-color: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

/* BOTTOM */
.footerBottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* ================= RESPONSIVE (HOME PAGE FINAL) ================= */

/* ---------- LARGE TABLET ---------- */
@media (max-width: 1024px) {

    .headingTextFirst,
    .headTextSecond {
        font-size: 2.8rem;
    }

    .headingSmallTexts p,
    .headingSmallText2 p {
        font-size: 16px;
    }

    .logoContainer {
        flex-wrap: wrap;
        gap: 40px;
    }

    .solutionsContainer {
        flex-wrap: wrap;
    }

    .solutionCard {
        min-width: 45%;
    }

    .impactContainer {
        flex-direction: column;
        text-align: center;
    }

    .impactImage {
        justify-content: center;
    }
}


/* ---------- TABLET (768px) ---------- */
@media (max-width: 768px) {

    /* NAVBAR (Handled by global.css now) */
    /* .imagesNavConList {
        flex-direction: column;
        gap: 15px;
    }

    .imageList {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
    } */

    .navMainList ul {
        flex-direction: column;
        gap: 15px;
        background: white;
        padding: 20px;
        border-radius: 20px;
        width: 100%;
    }

    .navMainList ul li {
        font-size: 16px;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .navContactButton button {
        width: 100%;
        max-width: 200px;
    }

    /* HERO */
    .mainTextCon {
        justify-content: center;
        text-align: center;
    }

    .headingTextCon {
        padding-left: 0;
        align-items: center;
    }

    .headingTextFirst,
    .headTextSecond {
        font-size: 2.2rem;
    }

    .headingSmallTexts p,
    .headingSmallText2 p {
        font-size: 16px;
    }

    .demoPartnerCon {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .demoBtn,
    .partnerBtn {
        width: 100%;
        max-width: 250px;
    }

    /* ABOUT */
    .aboutContainer {
        flex-direction: column;
        text-align: center;
    }

    .aboutImage {
        justify-content: center;
    }

    /* SERVICES */
    .servicesButtons {
        flex-direction: column;
    }

    /* SOLUTIONS */
    .solutionsContainer {
        flex-direction: column;
    }

    /* IMPACT */
    .impactContainer {
        flex-direction: column;
        text-align: center;
    }

    .impactImage {
        justify-content: center;
    }

    /* FOOTER */
    .footerContainer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}


/* ---------- MOBILE (480px) ---------- */
@media (max-width: 480px) {

    .navHeadContainer {
        height: auto;
        padding-bottom: 40px;
    }

    /* HERO TEXT */
    .headingTextFirst,
    .headTextSecond {
        font-size: 1.8rem;
    }

    .headingSmallTexts p,
    .headingSmallText2 p {
        font-size: 14px;
    }

    /* LOGOS */
    .logoContainer {
        gap: 20px;
    }

    .logoContainer img {
        max-height: 60px;
    }

    /* ABOUT */
    .aboutTitle {
        font-size: 28px;
    }

    .aboutDescription {
        font-size: 14px;
    }

    /* SERVICES */
    .servicesTitle {
        font-size: 28px;
    }

    .servicesDescription {
        font-size: 14px;
    }

    /* SOLUTIONS */
    .solutionsTitle {
        font-size: 24px;
    }

    /* IMPACT */
    .impactText h2 {
        font-size: 24px;
    }

    .impactText p {
        font-size: 14px;
    }

    /* COMMUNITY */
    .communityCard h2 {
        font-size: 24px;
    }

    /* CTA BUTTONS */
    .servicesButtons button,
    .ctaButtons button {
        width: 100%;
    }
}