* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ================= ABOUT HERO ================= */
/* .about-hero {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("images/about-banner.png") center/cover no-repeat;
} */
 .about-hero {
     height: 400px;
     /* margin-top: 120px; */
     background:
         linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
         url("images/about-banner.png") center / cover no-repeat;
 }

/* ================= ABOUT CONTENT ================= */
.about-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #141414;
    text-align: justify;
}

/* ================= IMAGE STYLE ================= */
.about-img-wrapper {
    width: 350px;
    height: 350px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #f2f2f2;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

 /* ABOUT end  */

 /* ================= TEAM SECTION ================= */

 .team-section {
     background: #e9fff3;
     padding: 90px 0;
 }

 .team-tag {
     font-size: 14px;
     font-weight: 600;
     color: #2f6b2f;
     display: inline-block;
     margin-bottom: 8px;
 }

 .team-title {
     font-size: 36px;
     font-weight: 700;
     margin-bottom: 8px;
 }

 .team-subtitle {
     font-size: 14px;
     color: #555;
     /* max-width: 520px; */
 }

.team-btn {
    display: inline-block;
    align-self: flex-start;
    background: #2f6b2f;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.team-btn:hover {
    background: #1f4d1f;
    color: #fff;
}
 /* Team Card */
 .team-card {
     text-align: center;
 }

 .team-card img {
     width: 260px;
     height: 260px;
     border-radius: 50%;
     object-fit: cover;
     margin-bottom: 16px;
 }

 .team-card h5 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 4px;
 }

 .team-card span {
     font-size: 14px;
     color: #3b82f6;
     font-weight: 500;
 }

 /* Responsive */
 @media(max-width:768px) {
     .team-header {
         flex-direction: column;
         gap: 20px;
     }

     .team-title {
         font-size: 26px;
     }
 }

 /* TEAM SECTION End */

 /* ================= WHAT WE STAND FOR ================= */

 .stand-section {
     padding: 90px 0;
     background: #ffffff;
 }

 .stand-title {
     font-size: 32px;
     font-weight: 700;
     margin-bottom: 25px;
 }

 /* Tabs */
 .stand-tabs {
     display: flex;
     justify-content: center;
     gap: 30px;
     margin-bottom: 30px;
 }

 .stand-tab {
     background: none;
     border: none;
     font-size: 15px;
     font-weight: 500;
     padding-bottom: 6px;
     cursor: pointer;
     position: relative;
     color: #222;
 }

 .stand-tab.active::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: 0;
     width: 100%;
     height: 2px;
     background: #000;
 }

 /* Content box */
 .stand-content {
     display: flex;
     justify-content: center;
 }

 .stand-box {
     display: none;
     background: #e8fff3;
     padding: 28px 40px;
     /* max-width: 900px; */
     text-align: left;
 }

 .stand-box.active {
     display: block;
 }

 .stand-box h4 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 10px;
 }

 .stand-box p {
     font-size: 14px;
     line-height: 1.7;
     color: #191919;
 }

 /* Responsive */
 @media(max-width:768px) {
     .stand-tabs {
         gap: 18px;
         flex-wrap: wrap;
     }

     .stand-box {
         padding: 22px;
     }
 }

 /* WHAT WE STAND FOR End */

 /* ================= OUR VALUES ================= */

 .values-section {
     background: #fff;
     padding: 90px 0;
 }

 .values-title {
     font-size: 30px;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .value-card {
     max-width: 320px;
     margin: auto;
     padding: 10px;
 }

 .value-icon {
     font-size: 26px;
     margin-bottom: 14px;
    height: 50px;
 }

 .value-card h5 {
     font-size: 16px;
     font-weight: 600;
     margin-bottom: 8px;
 }

 .value-card p {
     font-size: 13.5px;
     line-height: 1.6;
     color: #555;
 }

 /* Responsive */
 @media(max-width:768px) {
     .values-title {
         font-size: 26px;
     }
 }

 /* ================= GREEN STRIP ================= */

 .green-strip {
     width: 100%;
     height: 120px;
     background: #f2fff0;
 }

 /* .green-strip {
     width: 100%;
     height: 140px;
     background: #f2fff0;
 } */
 /* OUR VALUES End */


 /* All Responsive  */
 @media (max-width: 576px) {

     .about-hero {
         height: 240px;
     }

     .about-content p {
         font-size: 15px;
     }

     .about-img-wrapper {
         width: 220px;
         height: 220px;
     }

     .team-title {
         font-size: 24px;
         text-align: center;
     }

     .team-card img {
         width: 200px;
         height: 200px;
     }

     .stand-box {
         padding: 18px;
     }

     .values-section {
         padding: 50px 0;
     }
 }

 /* TABLET (≤ 768px) */
 @media (max-width: 768px) {

     .about-hero {
         height: 300px;
     }

     .about-content p {
         font-size: 16px;
     }

     .about-img-wrapper {
         width: 280px;
         height: 280px;
     }

     .team-section {
         padding: 60px 0;
     }

     .team-title {
         font-size: 28px;
     }

     .stand-tabs {
         gap: 18px;
     }
 }

 /* SMALL DESKTOP (≤ 1200px) */
 @media (max-width: 1200px) {

     .about-hero {
         height: 360px;
     }

     .team-title {
         /* font-size: 32px; */
     }

     .stand-box {
         padding: 24px 30px;
     }
 }



 /* ================= EXTRA SMALL MOBILE ================= */
 @media (max-width: 360px) {

     /* HERO */
     .about-hero {
         height: 200px;
     }

     /* TEXT */
     .about-content p {
         font-size: 14px;
         line-height: 1.6;
     }

     /* IMAGE */
     .about-img-wrapper {
         width: 190px;
         height: 190px;
         border-width: 4px;
     }

     /* TEAM */
     .team-section {
         padding: 40px 0;
     }

     .team-title {
         font-size: 22px;
         text-align: center;
     }

     .team-card img {
         width: 170px;
         height: 170px;
     }

     .team-card h5 {
         font-size: 15px;
     }

     .team-card span {
         font-size: 13px;
     }

     /* STAND FOR */
     .stand-title {
         font-size: 22px;
     }

     .stand-tabs {
         gap: 12px;
     }

     .stand-tab {
         font-size: 13px;
     }

     .stand-box {
         padding: 16px;
         font-size: 13px;
     }

     /* VALUES */
     .values-section {
         padding: 40px 0;
     }

     .values-title {
         font-size: 22px;
     }

     .value-card {
         max-width: 100%;
     }

     .value-icon {
         height: 40px;
     }
 }