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

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    overflow-x: hidden;

}

/* Offset for anchor scroll targets */
section[id] {
    scroll-margin-top: 100px;
}

@font-face {
    font-family: 'Curetro';
    /* src: url("fonts/Curetro-ax09K.ttf") format("truetype"); */
}

/* HERO SECTION */

.hero {
    width: 100%;
    min-height: 622px;
    position: relative;
    background-size: cover;
    background-position: center;
    background: url(Assets/front-bg.jpg) no-repeat;
    background-size: cover;
    color: white;
}



/* NAVBAR */
.nav-container {
    background: #ffffff;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.25s ease;
}

.nav-container.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 20px rgba(23, 44, 78, 0.12);
    animation: navSlideDown 0.3s ease;
}

.nav-spacer {
    display: none;
    width: 100%;
}

.nav-spacer.is-active {
    display: block;
}

@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar {
    max-width: 1296px;
    width: 100%;
    max-height: 87px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #ffffff;

}

/* LOGO */

.logo img {
    width: 203px;
    height: 57px;
    object-fit: contain;

}



.logo-text h2 {
    color: #1fc85c;
    font-size: 28px;
}

.logo-text p {
    font-size: 10px;
    letter-spacing: 2px;
    color: #ddd;
}

/* NAV LINKS */


.nav-links {
    display: flex;
    gap: 15px;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 15px;
    /* Same as hover */
    border-radius: 150px;
    color: #172C4E;
    text-decoration: none;
    font-size: 16px;

    transition: background .3s ease, color .3s ease;
}

.nav-links a:hover {
    background: linear-gradient(90deg, #90BB51 0%, #4D742E 100%);
    color: #fff;
}



/* BUTTON */


.hero-btn {

    text-decoration: none;
    padding: 13px 18px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    background: linear-gradient(270deg, #4D742E 0%, #90BB51 100%);
    width: fit-content;
    font-family: 'Instrument Sans';
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    gap: 15px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    opacity: 0.8;
}



/* HERO CONTENT */

/* .hero-content {
    max-width: 1296px;
    margin: auto;
    text-align: center;
    padding-top: 140px;
    height: 762px;
    position: relative;

} */

.hero-content {
    max-width: 1296px;
    width: 100%;
    margin: auto;
    padding: 90px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content h1 {
    text-align: left;
    color: #FFF;
    font-family: Curetro;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 526px;
}

.hero-content h1 span {

    background: var(--Gradient, linear-gradient(90deg, #90BB51 0%, #4D742E 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Curetro;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.70);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    max-width: 526px;
    padding-bottom: 50px;
    padding-top: 12px;
}

/* .hero-content-right img {
    width: 100%;
    max-width: 739px;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 86px;
} */

.hero-content-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-content-right img {
    width: 100%;
    max-width: 700px;
    height: auto;

    position: static;
}


.hero-btns {
    display: flex;
    gap: 20px;
}


.hero-btn2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 18px;
    border-radius: 40px;
    text-decoration: none;
    background: transparent;
    font-family: 'Instrument Sans';
    font-size: 18px;
    gap: 15px;
    font-weight: 500;
    background: linear-gradient(90deg, #90BB51, #4D742E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s ease;
}

.hero-btn2:hover {
    background: linear-gradient(270deg, #4D742E 0%, #90BB51 100%);
    color: #FFF;
    -webkit-text-fill-color: unset !important;
    background-image: none;

}

.hero-btn2:hover svg path {
    stroke: #FFF;
}

.hero-btn2::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;

    background: linear-gradient(90deg,
            rgba(144, 187, 81, 1),
            rgba(77, 116, 46, 1));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}




/* second section */



.second-section-left img {
    width: 100%;
    display: block;
}

.second-section-left {
    flex: 1;
    margin-left: calc((100vw - 1296px) / -2);
}

.container {
    width: 100%;
    margin: auto;
    display: flex;
    max-width: 1296px;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.second-section-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    flex: 1;

}


.second-section-right-content {
    display: flex;
    gap: 20px;
    padding: 22.5px 30px;
    border-radius: 20px;
    background: #172C4E;
    align-items: center;
    width: 100%;
}

* .second-section-right-content h1 {
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.second-section-right-content img {
    width: 80px;
    height: 80px;
}




/* Third Section */

/* .third-section-content {
    display: flex;
    gap: 244px;
    position: relative;
    color: white;
    margin: auto;
    max-width: 1296px;
    padding-top: 120px;
}

.third-section{
    width:100%;
    background:#0D192C;
    position:relative;
    padding:120px 0 340px; 
}

.third-section-line {
    border-left: 3px solid #ffffff;
    padding: 0px 20px;
    margin-top: 20px;
}

.third-section-left-content h2 {
    color: rgba(255, 255, 255, 0.70);

    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 3.2px;

}

.third-section-left-content h1 {
    color: #FFF;
    font-family: Curetro;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 526px;
    padding-bottom: 20px;
    padding-top: 10px;
}

.third-section-left-content span {
    background: var(--Gradient, linear-gradient(90deg, #90BB51 0%, #4D742E 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Curetro;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.third-section-content p {
    color: rgba(255, 255, 255, 0.70);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 526px;
}

.third-section-right-content h2 {
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 10px;
}

.third-img{

    position:absolute;

    left:50%;
    transform:translateX(-50%);

    bottom:-140px;

    width:100%;
    max-width:1296px;

    padding:0 20px;
    z-index:10;

}

.third-img img{

    width:100%;
    display:block;
    border-radius:20px;

} */

/* fourth section */



/* .fourth-section {
    width: 100%;
    padding-top: 550px;


}

.fourth-section-left-content {
    width: 50%;
}

.fourth-section-left-content h2 {
    color: rgba(23, 44, 78, 0.70);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    
    letter-spacing: 3.2px;
    text-transform: uppercase;
}


.fourth-section-left-content h1 {
    color: #172C4E;
    font-family: Curetro;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 526px;
    padding-bottom: 20px;
    padding-top: 10px;
}

.fourth-section-left-content span {
    background: var(--Gradient, linear-gradient(90deg, #90BB51 0%, #4D742E 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Curetro;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.fourth-section-left-content p {
    color: rgba(23, 44, 78, 0.70);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 526px;
    padding-bottom: 20px;
}

.fourth-container {
    display: flex;
    gap: 20px;
    position: relative;
    max-width: 1296px;
    width: 100%;
    margin: auto;
} */




.third-section {

    background: #0D192C;
    padding: 120px 0 400px;

}

.third-container {

    max-width: 1296px;
    margin: auto;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    gap: 80px;

}

.third-section-left-content,
.third-section-right-content {

    flex: 1;

}

.third-section-line {

    border-left: 3px solid #fff;
    padding-left: 20px;
    margin-top: 25px;

}


.mission-image {

    margin-top: -340px;
    position: relative;
    z-index: 5;

}

.mission-image-container {

    max-width: 1296px;
    margin: auto;
    padding: 0 20px;

}

.mission-image img {

    width: 100%;
    display: block;
    border-radius: 20px;

}

.third-section-line {
    border-left: 3px solid #ffffff;
    padding: 0px 20px;
    margin-top: 20px;
}

.third-section-left-content h2 {
    color: rgba(255, 255, 255, 0.70);

    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 3.2px;

}

.third-section-left-content h1 {
    color: #FFF;
    font-family: Curetro;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 526px;
    padding-bottom: 20px;
    padding-top: 10px;
}

.third-section-left-content span {
    background: var(--Gradient, linear-gradient(90deg, #90BB51 0%, #4D742E 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Curetro;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.third-section-content p {
    color: rgba(255, 255, 255, 0.70);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 526px;
}

.third-section-right-content h2 {
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 10px;
}

.third-section-right-content {
    color: rgba(255, 255, 255, 0.70);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 526px;
}


.fourth-section {

    padding: 100px 0 0 0;

}

.fourth-container {

    max-width: 1296px;
    margin: auto;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 60px;

}

.fourth-section-left-content {

    flex: 1;

}

.fourth-section-left-content p {

    max-width: 526px;

}

.fourth-img {

    flex: 1;
    display: flex;
    justify-content: center;

}

.fourth-img img {

    width: 100%;
    max-width: 600px;

}


.fourth-section-left-content h2 {
    color: rgba(23, 44, 78, 0.70);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;

    letter-spacing: 3.2px;
    text-transform: uppercase;
}


.fourth-section-left-content h1 {
    color: #172C4E;
    font-family: Curetro;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 526px;
    padding-bottom: 20px;
    padding-top: 10px;
}

.fourth-section-left-content span {
    background: var(--Gradient, linear-gradient(90deg, #90BB51 0%, #4D742E 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Curetro;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.fourth-section-left-content p {
    color: rgba(23, 44, 78, 0.70);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 526px;
    padding-bottom: 20px;
}








/* fifth section */
.how-it-works-section {
    padding-top: 100px;
}

.works-container {

    height: 690px;
    width: 100%;
    padding-top: 80px;
    position: relative;
    background: url('assets/works.jpg') no-repeat;
    background-size: cover;

}


.third-section-left-content {
    max-width: 1296px;
    margin: auto;
    padding-right: 113px;
}

.work-card p {
    color: rgba(255, 255, 255, 0.70);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    padding-top: 10px;
}

.work-card h2 {
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 120% */
}

.work-card h1 {
    color: #90BB51;
    font-family: Curetro;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 75% */
    letter-spacing: 3.2px;
    padding: 25px 0px;
}

.works-container .third-section-left-content h1 {

    max-width: 100%;
}

.work-cards {
    display: flex;
    flex-direction: row;
    gap: 24px;
    max-width: 1296px;
    margin: auto;
    padding-top: 40px;

}

.work-card {
    background: url('assets/card-img.png') no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 30px 20px;
    width: 100%;
    backdrop-filter: blur(10px);
    min-height: 400px;
    height: auto;
}

.work-card svg {
    border-radius: 130px;
    border: 1px solid #90BB51;
    padding: 17px;
    width: 64px;
    height: 64px;

}

.difference-section-container {
    position: relative;
    display: flex;
    align-items: center;
}


.difference-section .fourth-section-left-content {
    padding-top: 100px;
    padding-left: calc((100% - 1296px) / 2);
    padding-right: 150PX;

}

.difference-img {
    width: 50%;

}

.difference-img img {
    width: 100%;
    display: block;
}

.pillars-section-container {

    background: url('assets/pillar-img.jpg') no-repeat;
    background-size: cover;
    padding: 80px 0;
    height: auto;
}


.pillars-section .third-section-left-content h1 {
    max-width: 636px;
}

.third-section-left-content p {

    color: rgba(255, 255, 255, 0.70);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 526px;
}


.pillar-card {
    border-radius: 20px;
    position: relative;
    margin: auto;
    width: 636px;
    height: 376px;
    padding: 34.533px;

    border: 1.079px solid rgba(255, 255, 255, 0.07);
    background: rgba(23, 44, 78, 0.34);
    backdrop-filter: blur(25px);
}


.bg-number {
    position: absolute;
    right: 20px;
    bottom: 15px;
    font-family: Curetro;
    font-size: 140px;
    font-weight: 700;
    line-height: 1;

    color: #90BB51;
    opacity: 0.08;

    pointer-events: none;
    user-select: none;
}

.pillars-section-container .third-section-left-content p {

    color: rgba(255, 255, 255, 0.70);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 636px;

}

.pillar-cards {

    max-width: 1296px;
    margin: auto;
    display: flex;
    gap: 15px;
    padding-top: 15px;
}


.pillar-card h2,
.pillar-card1 h2,
.pillar-card2 h2 {
    color: #90BB51;
    font-family: Curetro;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 29.137px;
    padding-top: 8.6px;
    padding-bottom: 34px;
}

.pillar-card p,
.pillar-card1 p,
.pillar-card2 p {
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.774px;
    /* 129.836% */
    border-bottom: 1.079px solid rgba(255, 255, 255, 0.04);
    padding: 12px 0px;
    display: flex;

}

.pillar-card p span {
    font-family: "curetro";
    padding-right: 8px;
}

.cards-container {

    padding-top: 26px;
}


.pillar-card1 {
    border-radius: 20px;
    position: relative;
    margin: auto;
    width: 636px;
    height: 333px;
    padding: 34.533px;

    border: 1.079px solid rgba(255, 255, 255, 0.07);
    background: rgba(23, 44, 78, 0.34);
    backdrop-filter: blur(25px);
}

.pillar-card h1,
.pillar-card1 h1,
.pillar-card2 h1 {
    color: #90BB51;
    font-family: Curetro;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.914px;
    text-transform: uppercase;
}




.pillar-card1 p span {
    font-family: "curetro";
    padding-right: 8px;
}


.pillar-card2 {
    border-radius: 20px;
    position: relative;
    margin: auto;
    width: 100%;
    height: 227px;
    padding: 34.533px;
    border: 1.079px solid rgba(255, 255, 255, 0.07);
    background: rgba(23, 44, 78, 0.34);
    backdrop-filter: blur(25px);
}



.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}




.pillar-card2 p span {
    font-family: "curetro";
    padding-right: 8px;
}


/* global dashboard */


.dashboard-section .fourth-section-left-content {
    padding-top: 100px;
}

.dashboard-section .fourth-section-left-content h1 {
    max-width: 576px;

}

.pointer-content {
    background: #172C4E;
    max-width: 636px;
    height: 73px;
    border-radius: 10px;
    padding: 27px;
}

.dashboard-container {
    max-width: 1296px;
    margin: auto;
    display: flex;
    gap: 20px;
}

.pointer-content h1 {
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.pointer-container {
    width: 636px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 40px;
}

.dashboard-content {
    width: 636px;
}

.dashboard-img img {
    width: 100%;
    border-radius: 20px;
}

.dashboard-img {

    padding-top: 100px;
}


.interactive-section h1 {
    color: #90BB51;
    font-family: Curetro;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 20px;
}

.interactive-section {
    width: 1296px;
    margin: auto;
    padding-top: 27px;
}

.interactive-content h2 {
    border: 1px solid #325896;
    color: #172C4E;
    text-align: center;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 196px;
    height: 51px;
    align-content: center;
}

.interactive-content {
    display: flex;
    gap: 24px;
    padding-bottom: 100px;
}

/* Research and Knowledge */


.research-container {
    max-width: 1296px;
    margin: auto;
    padding: 50px 0;
    display: flex;
    gap: 24px;
    align-items: center;
}

.research-container .third-section-left-content p {
    padding-bottom: 65px;
}

.research-container .third-section-left-content {
    margin: 0;
}

.research-section {
    max-width: 100%;
    margin: auto;
    background: #0D192C;
}

/* AI Climate Intelligence */


.climate-container .fourth-section-left-content {
    padding-top: 100px;
    max-width: 1296px;
    margin: auto;
    width: 100%;
}

.climate-card {
    background: url('assets/ask-card.jpg') no-repeat;
    border-radius: 20px;
    position: relative;
    width: 416px;
    height: 250px;
    padding-top: 40px;
    padding-left: 24px;

}

.climate-cards-container {
    max-width: 1296px;
    margin: auto;
    display: flex;
    gap: 24px;
    padding-top: 40px;
    flex-wrap: wrap;
    padding-bottom: 100px;
}



.climate-card h1 {
    font-family: Curetro;
    font-size: 68px;
    font-style: normal;
    font-weight: 400;
    line-height: 85.135px;
    background: var(--Gradient, linear-gradient(90deg, #90BB51 0%, #4D742E 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 22px;
}

.climate-card h2 {
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 20px;
    width: 368px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    /* 150% */
    text-transform: capitalize;
    display: flex;
    grid-gap: 5px;
}


/* Serve section */

.serve-section {
    background: #0D192C;
    width: 100%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 80px;

}

.serve-container {
    max-width: 1296px;
    margin: auto;
    gap: 20px;
    width: 100%;
}


.serve-container .third-section-left-content h1 {
    max-width: 636px;
}

.serve-cards-container {
    max-width: 1296px;
    margin: auto;
    padding-top: 40px;
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
}

.serve-cards-container .swiper-wrapper {
    align-items: stretch;
}

.serve-cards-container .swiper-slide {
    height: auto;
}

.serve-card {
    position: relative;
    width: 100%;
    height: 161px;
    padding: 40px 24px 24px;
    border-radius: 20px;
    border: 1px solid #90BB51;
    background: rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.serve-card h2 {
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 100% */
    padding-top: 20px;
    margin: 0;
}

.serve-slider-pagination {
    position: static !important;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.serve-slider-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 7px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.28);
    opacity: 1;
    margin: 0 !important;
    transition: width 0.25s ease, background 0.25s ease;
}

.serve-slider-pagination .swiper-pagination-bullet-active {
    width: 91px;
    background: #FFFFFF;

}

/* CTA section */


.cta-container {
    max-width: 1296px;
    margin: auto;
    gap: 20px;
    padding-top: 60px;
    background: #90BB51;
}

.cta-section {
    width: 100%;
    margin: auto;

    height: 464px;
    background: #90BB51;
}

.cta-content h1 {
    color: #FFF;
    text-align: center;
    font-family: "Instrument Sans";
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    /* 133.333% */

}

.cta-content p {
    color: #FFF;
    text-align: center;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 856px;
    margin: auto;
    padding-top: 32px;
}

.cta-content .hero-btn {
    background: #ffffff;
    color: #172C4E;
    font-family: "Instrument Sans";
}

.cta-btn-container {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    gap: 24px;
}

.cta-btn {
    border: 1px solid #fff;
    border-radius: 40px;
    text-decoration: none;
    padding: 13px 18px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    width: fit-content;
    font-family: 'Instrument Sans';
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    gap: 15px;
    transition: 0.3s ease;			
}

.cta-btn:hover {
    background: #FFF;
    color: #172C4E;
}

.cta-btn:hover svg path {
    stroke: #172C4E;
    fill: #172C4E;
}

.commitments-section {
    width: 100%;
    height: 648px;																																																					
    background: #0D192C;
    position: relative;
    padding-top: 80px;
}

.commitments-container {
    max-width: 1296px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 80px;
}

.commitments-container > .third-section-left-content {
    flex: 0 0 auto;
    max-width: 527px;
}

.commitment-img {
    padding-top: 43px;
    margin-bottom: -280px;
}

.commitment-img img {
    width: 527px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    display: block;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    flex: 1;
    min-width: 0;
    height: auto;
}

.commitment-card {
    border-radius: 20px;
    border: 0.736px solid #325896;
    background: rgba(255, 255, 255, 0.06);
    width: 100%;
    min-height: 248px;
    height: auto;
    padding: 24px 20px;
    box-sizing: border-box;
}

.commitment-card h3 {
    color: #FFF;
    font-family: "Instrument Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 100% */
    padding-top: 15px;
}

.commitment-card p {
    color: rgba(255, 255, 255, 0.70);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    padding-top: 5px;
}

.commitment-card img {
    width: 50px;
    height: 50px;
    max-width: 50px;
    border-radius: 95.625px;
    object-fit: contain;
    box-sizing: border-box;
}

/* Footer Section */


.footer-container {
    padding-top: 250px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1296px;
    width: 100%;
    margin: auto;
}

.footer-container > .footer-bottom {
    flex: 0 1 auto;
    min-width: 140px;
}

/* Inner pages — less footer top space (home keeps 250px for section overlap) */
body:not(.home) .footer-container {
    padding-top: 60px;
}

.footer-content p {
    color: #172C4E;
    font-family: Curetro;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    max-width: 305px;
    line-height: 35px;
    /* 134.615% */
    padding-top: 15px;
}

.footer-content span {
    background: var(--Gradient, linear-gradient(90deg, #90BB51 0%, #4D742E 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Curetro;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
}

.footer-bottom h1 {
    color: rgba(23, 44, 78, 0.60);
    font-family: "Instrument Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    /* 100% */
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-bottom: 22px;
}

.footer-bottom a {
    color: #172C4E;
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.742px;
    /* 129.639% */
    text-decoration: none;
    display: flex;
    gap: 10px;
    transition: 0.3s ease;
}

.footer-bottom a:hover {
    color: #90BB51;
}

.explore {
    display: flex;
    gap: 11px;
    flex-direction: column;
}

.footer-divider {
    border-top: 1px solid rgba(23, 44, 78, 0.08);
    margin: 40px 0 20px;
}

.footer-bottom h2 {
    color: rgba(23, 44, 78, 0.70);
    font-family: "Instrument Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}

.copyright {
    max-width: 1296px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}

.copyright h2 {
    color: rgba(23, 44, 78, 0.70);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.copyright h2 a {
    color: rgba(23, 44, 78, 0.70);
    font-family: "Instrument Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    transition: 0.3s ease;
}

.copyright h2 a:hover {
    color: #90BB51;
}

.footer-links {
    display: flex;
    gap: 24px;

}

/* MOBILE NAV (Hamburger + Sidebar) */
.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid #90BB51;
    background: rgba(255, 255, 255, 0.75);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.nav-toggle:hover {
    background: rgba(144, 187, 81, 0.12);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 999;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 86vw;
    height: 100vh;
    background: #0D192C;
    border-left: 1px solid rgba(144, 187, 81, 0.35);
    transform: translateX(110%);
    opacity: 0;
    pointer-events: none;
    transition: 0.28s ease;
    z-index: 1000;
}

.nav-sidebar.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(144, 187, 81, 0.55);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-sidebar .nav-links {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    padding: 90px 20px 20px;
    margin: 0;
}

.nav-sidebar .nav-links a {
    color: #fff;
    justify-content: flex-start;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 18px;
}

.cta-section .hero-btn {
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.cta-section .hero-btn:hover {
    opacity: 1;
    background: transparent !important;
    border: 2px solid #fff;
    color: #fff !important;
}

.cta-section .hero-btn:hover svg path {
    stroke: #fff;
    fill: #fff;
}

.research-img {
    border-radius: 20px;
    border: 3px solid rgb(93 133 54);
    background: rgba(255, 255, 255, 0.06);
    width: calc(100% - 500px - 40px);
    border-right: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 21px 41px 21px 0;
    grid-gap: 34px;
}

.research-img .rigth-side-content li {
    color: #FFF;
    font-family: Curetro;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(255, 255, 255, 0.21);
    list-style: none;
    padding: 23px 0px;
}

.research-img .left-side img {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: drop-shadow(0 0 74px rgba(144,187,81,.38));
}

.research-img .left-side,
.research-img .rigth-side-content {
    width: 50%;
}

.research-img .rigth-side-content li:first-child {
    padding-top: 0;
}

.research-img .rigth-side-content li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.research-img .left-side::before{
    content:"";
    position:absolute;
    inset:0;
    margin:auto;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(144,187,81,.45) 0%,
        rgba(144,187,81,.18) 45%,
        transparent 75%);
    filter:blur(55px);
}

/* ========== 404 PAGE ========== */

.error404 .hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
}

.error-404-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1296px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px 100px;
    text-align: center;
}

.error-404-inner {
    max-width: 720px;
    margin: 0 auto;
}

.error-404-eyebrow {
    color: rgba(255, 255, 255, 0.70);
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.error-404-title {
    color: #FFF;
    font-family: "Instrument Sans", sans-serif;
    font-size: 140px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
}

.error-404-title span {
    background: linear-gradient(90deg, #90BB51 0%, #4D742E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-404-text {
    color: rgba(255, 255, 255, 0.70);
    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0 auto 36px;
    max-width: 540px;
}

.error-404-btns {
    justify-content: center;
    flex-wrap: wrap;
}

.error-404-links-section {
    background: #172C4E;
    padding: 60px 20px;
}

.error-404-links-container {
    max-width: 1296px;
    margin: 0 auto;
    text-align: center;
}

.error-404-links-container h2 {
    color: #FFF;
    font-family: "Instrument Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
}

.error-404-links-container h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #90BB51 0%, #4D742E 100%);
    border-radius: 2px;
}

.error-404-quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.error-404-quick-links a {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: 40px;
    border: 1px solid rgba(144, 187, 81, 0.45);
    color: #FFF;
    text-decoration: none;
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.error-404-quick-links a:hover {
    background: linear-gradient(270deg, #4D742E 0%, #90BB51 100%);
    border-color: transparent;
}

/* ========== INNER PAGES (Privacy, Terms, etc.) ========== */

.page-hero-content {
    max-width: 1296px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px 70px;
    text-align: center;
}

.page-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-eyebrow {
    color: rgba(255, 255, 255, 0.70);
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.page-hero-title {
    color: #FFF;
    font-family: "Instrument Sans", sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
}

.page .hero,
.single .hero,
.blog .hero,
.archive .hero,
.search .hero {
    min-height: auto;
}

.page-content-section {
    background: #ffffff;
    padding: 70px 20px 90px;
}

.page-content-container {
    max-width: 860px;
    margin: 0 auto;
}

.page-article + .page-article {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(23, 44, 78, 0.12);
}

.page-entry-title {
    margin-bottom: 16px;
}

.page-entry-title a {
    color: #172C4E;
    text-decoration: none;
    font-family: "Instrument Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.page-entry-title a:hover {
    color: #4D742E;
}

.page-entry-content {
    color: #172C4E;
    font-family: "Instrument Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
}

.page-entry-content > *:first-child {
    margin-top: 0;
}

.page-entry-content h1,
.page-entry-content h2,
.page-entry-content h3,
.page-entry-content h4,
.page-entry-content h5,
.page-entry-content h6 {
    color: #172C4E;
    font-family: "Instrument Sans", sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin: 2em 0 0.75em;
}

.page-entry-content h2 {
    font-size: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #90BB51 0%, #4D742E 100%) 1;
    border-image-slice: 0 0 1 0;
}

.page-entry-content h3 {
    font-size: 22px;
}

.page-entry-content p {
    margin: 0 0 1.25em;
    color: rgba(23, 44, 78, 0.85);
}

.page-entry-content a {
    color: #4D742E;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-entry-content a:hover {
    color: #90BB51;
}

.page-entry-content ul,
.page-entry-content ol {
    margin: 0 0 1.25em;
    padding-left: 1.4em;
    color: rgba(23, 44, 78, 0.85);
}

.page-entry-content li {
    margin-bottom: 0.5em;
}

.page-entry-content li::marker {
    color: #90BB51;
}

.page-entry-content strong {
    color: #172C4E;
    font-weight: 600;
}

.page-entry-content blockquote {
    margin: 1.5em 0;
    padding: 18px 24px;
    border-left: 4px solid #90BB51;
    background: rgba(144, 187, 81, 0.08);
    color: #172C4E;
}

.page-read-more {
    margin-top: 20px;
    font-size: 16px;
    padding: 10px 16px;
}

.page-no-results {
    text-align: center;
    color: rgba(23, 44, 78, 0.7);
    font-size: 18px;
}

/* ========== CONTACT PAGE ========== */

.contact-section {
    background: #f7f8fa;
    padding: 80px 20px 100px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 64px;
    align-items: start;
}

.contact-heading {
    color: #172C4E;
    font-family: "Instrument Sans", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 40px;
    max-width: 520px;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #90BB51;
    background: rgba(144, 187, 81, 0.12);
}

.contact-item-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    padding-top: 2px;
}

.contact-item-label {
    color: rgba(23, 44, 78, 0.55);
    font-family: "Instrument Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

.contact-item-link {
    color: #325896;
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
}

.contact-item-link:hover {
    color: #4D742E;
}

.contact-follow {
    background: linear-gradient(145deg, #90BB51 0%, #4D742E 100%);
    border-radius: 24px;
    padding: 36px 32px;
    color: #fff;
}

.contact-follow-heading {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s ease;
}

.contact-social-link:hover {
    opacity: 0.85;
}

.contact-social-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(13, 25, 44, 0.22);
}

.contact-social-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-social-handle {
    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.contact-social-platform {
    font-family: "Instrument Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
}

.contact-extra {
    margin-top: 60px;
}
.serve-cards-container {
	margin-top:50px;
}
.nav-auth a{
	color:#fff;
	gap:2px;
}
.research-section {
	position: relative ;
	overflow: hidden;
}