/* ===============================
   GOOGLE FONTS
================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:wght@100..900&display=swap');

/* ===============================
   ROOT VARIABLES
================================= */
:root {
    /* COLORS */
    --primary-green: #1E8449;
    --secondary-green: #18804D;
    --text-dark: #000000;
    --text-light: #ffffff;
    --text-body: #272727;
    --bg-light: #FBFCFE;
    --text-muted: #6E7975;

    /* GRADIENTS */
    --gradient-primary: linear-gradient(97.87deg, #FFEA00 -39.18%, #006D5B 75.53%);
;

    /* FONTS */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* SIZES */
    --btn-height: 65px;
    --btn-radius: 8px;
    --container-gap: 40px;

    /* SHADOW */
    --card-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* -----------------About banner section 1st----------------- */
  .about-banner-section {
      background: #F6F6F6;
  }
  .about-wrapper {
      display: flex;
      align-items: center;
      gap: 60px;
      padding: 5rem 0;
  }

    .about-content {
      flex: 1;
    }

    .caption {
    display: inline-block;
    letter-spacing: 2px;
    color: #000;
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    background: #FFEA00;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
    }

    .about-heading {
      font-size: 70px;
      line-height: 78px;
      font-weight: 600;
      color: #000;
      margin-bottom: 24px;
    }

.about-text {
    font-size: 18px;
    line-height: 29px;
    color: #747474;
    margin-bottom: 35px;
    font-weight: 400;
    font-family: Inter;
}

  .about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
    font-family: Poppins;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    background: linear-gradient(97.87deg, #FFEA00 -39.18%, #006D5B 75.53%);
  }

    .about-btn:hover {
      color: var(--contrast-color);
    background-color: 
    color-mix(in srgb, var(--accent-color), black 10%);
        border-color: 
    color-mix(in srgb, var(--accent-color), black 10%);
    }
    .about-content {
    width: 44%;
    }
    .about-image {  
        width: 56%;
    }
    .about-image img {
      width: 100%;
      display: block;
      border-radius: 12px;
      object-fit: cover;
    }

    /* Responsive */

    @media (max-width: 991px) {
    .about-content, .about-image {
    width: 50%;
    }
      .about-wrapper {
        flex-direction: column;
        gap: 40px;
      }
      .about-text {
        max-width: 100%;
      }

    }

    @media (max-width: 576px) {
      .about-wrapper {
        padding: 0rem 0;
      }
      .about-banner-section {
        padding: 60px 16px;
      }

      .about-heading {
        font-size: 45px;
        line-height: 50px;
    }

      .about-text {
        font-size: 15px;
        line-height: 1.7;
      }

      .about-btn {
        width: 100%;
        padding: 20px;
      }
    }

/* -------------------------------core value section 2 ------------------------------ */

.core-values-section {
    padding: 5rem 0;
    background: #F6F6F6;
}
.core-heading, .platform-heading {
    font-family: Poppins;
    font-weight: 600;
    font-size: 48px;
    line-height: 76px;
    letter-spacing: 0%;
    color:#000000;
}
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.values-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.value-column {
    flex: 1;
    min-width: 280px;
    border-radius: 20px;
    padding: 4rem 4rem;
    background: linear-gradient(144.19deg, rgba(255, 234, 0, 0.24) 4.72%, rgba(30, 132, 73, 0.24) 96.72%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start;
}
.content {
  width: 100%;
}
.content h3 {
  margin-bottom: 25px;
  text-align: left;
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 0;
  color: #181C1B;
}
.content p {
  margin: 0;
  text-align: left;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #555555;
}
@media screen and (max-width: 1024px){
  .value-column {
    padding: 4rem 1rem;
}
.values-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.values-row > :nth-child(1),
.values-row > :nth-child(2) {
    flex: 0 0 calc(50% - 10px);
}

.values-row > :nth-child(3) {
    flex: 0 0 100%;
}
}
@media screen and (max-width: 768px) {
  .values-row {
    flex-direction: column;
  }
  .content h3{
    font-size: 32px;
  }
  .core-heading, .platform-heading {
    font-size: 38px;
    line-height: 50px;

}
}
/* -----------------About platform section 3rd----------------- */
.about-platform-section {
    background: #F6F6F6;
}
.platform-image {
  width: 40%;
}
.content-platform {
    width: 60%;
}
.about-platform {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 5rem 5rem;
    background: #fff;
    border-radius: 12px;
}

p.platform-text {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: -2%;
    color: #3E4945;
}

.platform-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

    /* Responsive */

    @media (max-width: 991px) {
      .about-platform {
        flex-direction: column;
        gap: 40px;
      }
    .content-platform, .platform-image {
        width: 100%;
    }
    .about-text {
        max-width: 100%;
      }
    }
@media (max-width: 768px){
  .about-content, .about-image {
    width: 100%;
}
}
    @media (max-width: 576px) {
    .about-platform {
    padding: 3rem 1rem;
}
      .about-banner-section {
        padding: 50px 20px;
      }

      .about-heading {
        font-size:45px;
        line-height: 50px;
      }

      .about-text {
        font-size: 15px;
        line-height: 1.7;
      }
    }
/* -------------------uses sed 4th------------------------ */
.who-uses-section {
  padding: 5rem 0;
  background: #f5f5f5;
}

.uses-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.uses-section-header h2 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #000;
  font-family: Poppins;
  font-weight: 600;
  size: 48px;
  line-height: 76px;
  letter-spacing: 0%;
}

.uses-section-header p {
  color: #3E4945;
  margin: 0;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
}

.users-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.user-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 44px 40px;
    display: flex;
    align-items: flex-start;
    gap: 21px;
    height: 100%;
}

.icon-box-sed {
  width: 55px;
  min-width: 55px;
  height: 55px;

  border-radius: 10px;
  background: linear-gradient(135deg, #8cc63f, #00796b);

  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box-sed img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.card-content {
  text-align: left;
}
.card-content h3 {
  margin-bottom: 12px;
  color: #111;
  font-family: Poppins;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0%;
}

.card-content p {
    color: #272727;
    margin: 0;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0%;
}
@media screen and (max-width: 1024px){
.icon-box-sed {
    margin-bottom: 10px;
}
.card-content h3 {
    margin-bottom: 10px;
}
}
@media screen and (max-width: 991px) {
  .users-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .uses-section-header h2 {
    font-size: 38px;
}
  .who-uses-section {
    padding: 60px 0;
  }
  .user-card {
    padding: 25px 20px;
  }

  .card-content h3 {
    font-size: 20px;
  }
}
@media (max-width: 600px){
  .users-grid {
    grid-template-columns: repeat(1, 1fr);
}
}
/* ---------------------------environment-protection 5th----------------------- */

.environment-section {
  padding: 5rem 0;
  background: #f5f5f5;
}

.section-header {
  margin-bottom: 60px;
}
.environment-section-header p {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: -2%;
    text-align: left;
    color:#3E4945;
}
.environment-section-header h2 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #000;
  font-family: Poppins;
  font-weight: 600;
  size: 48px;
  line-height: 76px;
  letter-spacing: 0%;
}
.environment-section-header {
    margin-bottom: 4rem;
}
.section-header p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.environment-row {
  display: flex;
  flex-wrap: wrap;
}

.environment-card {
  width: 33.33%;
  border-right: 1px solid #d9d9d9;
}
.environment-card:nth-child(2),
.environment-card:nth-child(3) {
    padding: 0 40px;
}

.environment-card:nth-child(1) {
    padding-right: 40px;
}
.environment-card:last-child {
  border-right: 0;
  padding-right: 0;
}

.icon-box-evn {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  margin-bottom: 30px;
  background: linear-gradient(97.87deg, #FFEA00 -39.18%, #006D5B 75.53%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box-evn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.card-content h3 {
  color: #000;
  margin-bottom: 25px;
  font-family: Poppins;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0%;
}

@media screen and (max-width: 991px) {

  .environment-row {
    gap: 40px;
  }

  .environment-card {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #d9d9d9;
    padding: 0 0 40px;
  }

  .environment-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .section-header h2 {
    font-size: 40px;
  }
}

@media screen and (max-width: 768px) {
.environment-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .environment-card:nth-child(1), .environment-card:nth-child(2), .environment-card:nth-child(3) {
      padding: 40px;
  }
  .environment-row {
      gap: 0px;
  }
  .environment-section-header h2 {
    font-size: 38px;
    line-height: 50px;
  }
  .environment-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }
  .card-content h3 {
    font-size: 26px;
  }
  .card-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}
/* -----------------------revolution section 6th ----------------------- */

.join-revolution-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.join-box {
    border-radius: 18px;
    padding: 75px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
}
.join-box h2 {
    color: #000;
    margin-bottom: 18px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 48px;
    line-height: 76px;
    letter-spacing: 0;
}

.join-box p {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 3rem;
    width: 50%;
    color: #3E4945;
}

.join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 52px;
    padding: 15px 60px;
    border-radius: 6px;
    background: linear-gradient(97.87deg, #FFEA00 -39.18%, #006D5B 75.53%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .join-box h2 {
      font-size: 38px;
      line-height: 50px;
  }
  .join-revolution-section {
    padding: 60px 0;
  }

  .join-box {
    padding: 60px 20px;
  }
  .join-box p {
    font-size: 15px;
    line-height: 1.4;
  }
  .join-box p {
      width: 100%;
  }
  .join-btn {
    min-width: 140px;
    height: 48px;
    font-size: 15px;
  }
}

/* -----------------------common css-------------------- */
/* padding 1024 and less */
@media screen and (max-width: 1024px){
.about-wrapper, .core-values-section, .who-uses-section {
    padding: 3rem 0;
}
}
