:root {
    --primary: #0A653A;
    --primary-dark: #084f2d;
    --secondary: rgb(166, 248, 166);
    --mainbg: #d1e7dd;
    --bg1: rgb(148, 215, 237);
    --bg2: #91db91;
    --btn1: #ff9f1c;
    --btn2: rgb(30, 60, 85);
    --lighttext: white;
    --darkgreentext: #0A653A;
    --darktext: black;
    --font1: 'Poppins', sans-serif;
    --font2: 'Roboto', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
}

/*  SECTION SPACING  */
.container>div {
    margin-top: 60px;
    margin-bottom: 60px;
}

/*  PAGE HEADER  */
.abouthead {
    text-align: center;
    margin-top: 40px;
}

.abouthead h2 {
    font-weight: 700;
    color: var(--primary);
    font-style: var(--font1);
}

/* .abouthead p {
    color: #555;
    max-width: 600px;
    margin: 10px auto;
} */
.abouthead p {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    color: var(--darktext);
    ;
    line-height: 1.6;
    font-style: var(--font2);
}

/*  MISSION SECTION  */
.missionsection {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.missionsection h3 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-style: var(--font1);
}

.missionsection p {
    color: var(--darktext);
    font-size: 16px;
    font-style: var(--font2);
}

/*  VALUES SECTION  */
.valuessection h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
    font-style: var(--font1);
}

.valuescardcontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.valuescard {
    width: 250px;
    background-color: var(--bg2);
    ;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.25s ease-in-out;
}

/* Card icon circle */
.cardhead {
    width: 55px;
    height: 55px;
    background-color: var(--primary);
    ;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
}

.cardhead i {
    color: var(--lighttext);
    ;
    font-size: 24px;
}

.valuescard:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.cardname {
    color: var(--primary);
    ;
    font-size: 17px;
    font-weight: 600;
}

.cardcontent {
    color: var(--darktext);
    ;
    font-size: 14px;
}

/*  OFFER Section  */
.offersection h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 25px;
font-style: var(--font1);
}

.offer {
    background-color: var(--bg1);
    ;
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.offer h4 {
    color: var(--primary);
    ;
    font-size: 17px;
    font-weight: 600;
    font-style: var(--font1);
}

.offer:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.imgsection img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin-bottom: 12px;
    object-fit: cover;
}
/* Responsive */
@media (max-width: 768px) {
    .countercard {
        max-width: 80px;
        max-height: 100px;
    }

    .count-number {
        font-size: 20px;
        font-weight: 400;
        color: var(--primary);
        margin-bottom: 3px;
    }

    .count-text {
        font-size: 14px;
        font-weight: 400;
        color: var(--darktext);
    }
}

.Nostyle {
    list-style: none;
}

/*  TEAM SECTION  */
.teamsection h3 {
    text-align: center;
    color: var(--primary);
    ;
    margin-bottom: 25px;
    font-style: var(--font1);
}

.teamcardcontainer {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.teamcard {
    background-color: var(--bg1);
    ;
    width: 280px;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.25s ease;
}

.teamcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.teamcard .imgsection {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    /* border: 5px solid var(--);
    background-color: var(--primary); */
}


.teamcard .imgsection img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}

.teamcard p {
    font-size: 14px;
    color: var(--darktext);
    font-style: var(--font2);
}

/* TECHNOLOGY SECTION */
.technonlogysection h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 25px;
    font-style: var(--font1);
}

.techsection {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.techcard {
    background-color: var(--bg2);
    ;
    width: 250px;
    padding: 20px;
    border-radius: 12px;
    transition: 0.25s ease;
    text-align: center;
}

.techcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.techcard h4 {
    color: var(--primary);
    ;
    font-weight: 600;
    font-style: var(--font1);
}

.techcard p {
    color: var(--darktext);
    font-size: 14px;
    font-style: var(--font2);
}

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

    .valuescard,
    .teamcard,
    .techcard {
        width: 100%;
    }
}
/* EXPAND  */

.expand{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transform:translateY(-6px);
    transition:all 0.35s ease;
    border-top:1px dashed var(--primary);
}

.expand.show{
    max-height:500px;
    opacity:1;
    transform:translateY(0);
    padding-top:16px;
    margin-top:16px;
}