    /* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: 'CCRegeneration', sans-serif;

}
body {
  font-family: 'CCRegeneration', sans-serif;
  color: #111;
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  padding: 15px 30px;
  border-bottom: 1px solid #eee;
}
.header-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 40px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cleaner-btn {
background-image: linear-gradient(180deg, #9fc63d 0%, #29a782 100%);  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: lighter;
  font-size: 20px;
  transition: all 0.3s ease;
}
.cleaner-btn:hover {
background-image: linear-gradient(180deg, #9fc63d 0%, #29a782 100%);  color: #fff;
}
.lang-switch {
  display: flex;
background-color: #ffffff;
border: 2px solid #d9d9d9;
  border-radius: 30px;
  overflow: hidden;
  font-weight:lighter ;
}

.lang-btn {
  flex: 1;
  padding: 8px 20px;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: lighter;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #111;
}

.lang-btn.active {
background-color: #29a782;
  color: #fff;
  font-weight: lighter;
}

/* ===== HERO SECTION WITH BACKGROUND ===== */
.top-section {
  width: 100%;
  height: 95vh;
  background: url("./assets/Images/banner.png") no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
}
.top-overlay {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  /* padding: 0 20px; */
}
.top-text {
  max-width: 510px;
  /* padding: 30px; */
  border-radius: 10px;
}
.top-text h1 {
  font-size: 50px;
  font-weight: regular;
  line-height: 1.3;
  margin-bottom: 20px;
    font-family: 'CCRegeneration', sans-serif;

}
.top-text p {
  font-size: 36px;
  margin-bottom: 30px;
color: #000000;
    font-family: 'CCRegeneration', sans-serif;
    font-weight: lighter;

}
.download-btn {
  display: inline-block;
background-image: linear-gradient(180deg, #9fc63d 0%, #29a782 100%);  color: #fff;
  color: #fff;
  font-size: 20px;
  font-weight: lighter;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.download-btn:hover {
  background: linear-gradient(90deg, #1e7a36, #66c44d);
}
/* Mobile Menu Toggle */
.menu-toggle {
  font-size: 26px;
  cursor: pointer;
  display: none;
}
.lang-btn.active{
  background-color: #29a782 !important;
  color: #fff !important;
  font-weight: lighter !important;
}
/* Mobile Dropdown */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 15px;
  gap: 15px;
  width: 265px;
  margin: 0 auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu .open .lang-switch .lang-btn .active{
    background-color: #29a782 !important;
  color: #fff !important;
  font-weight: lighter !important;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .top-text {
    text-align: center;
    margin: 0 auto;
  }
    .header-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
            border: 2px solid #8080808f;
        padding: 0px 10px;
        border-radius: 10px;
  }
   .header-actions {
    display: none; /* hide by default */
    flex-direction: column;
    align-items: center; /* center content */
    background: #f9f9f9;
    padding: 20px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;  /* full width */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    z-index: 999;
  }

  .top-section{
    height: 80vh;
  }
  .header-actions.active {
    display: flex; /* show when toggle is clicked */
  }

  .cleaner-btn {
    display: block;
    margin: 10px auto;
    text-align: center;
    width: 50%; /* optional - make it look better */
  }

  .lang-switch {
    margin-top: 15px;
    justify-content: center;
    /* width: 100%; */
    display: flex;
  }

  .lang-btn {
    flex: 1; /* make buttons equal size */
    max-width: 120px;
    text-align: center;
  }
}

/* ------------Mission Section ---------------- */
.mission-section{
    padding: 100px 0px;
}
.mission-content h2{
    text-align: center;
    font-size: 40px;
    font-weight: regular;
    margin-bottom: 25px;
      font-family: 'CCRegeneration', sans-serif;

}
.mission-content p{
    font-weight: lighter;
    font-size: 30px;
    text-align: center;
    max-width: 1100px;
    margin:0 auto;
    color: #231e20;
}

  .faq-container {
      max-width: 1300px;
      margin: 0 auto;
    }

    .faq-item {
background-color: #f3f3e5;
      margin-bottom: 45px;
      border-radius: 19px;
      padding: 20px;
      cursor: pointer;
      position: relative;
      transition: all 0.3s ease;
    }

    .faq-question {
      font-weight: regular;
      font-size: 30px;
      margin: 0;
      display: flex;
      color: #231e20;
      justify-content: space-between;
      align-items: center;
      font-family: 'CCRegeneration', sans-serif;
    }

    .faq-answer {
      margin-top: 10px;
      display: none;
      font-size: 16px;
      line-height: 1.6;
color: #231e20;
      font-family: 'CCRegeneration', sans-serif;
    }

    /* Toggle icon */
    .faq-toggle {
         width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #29a782;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    padding-top: 15px;
    flex-shrink: 0;
    font-weight: lighter;
    transition: transform 0.3s ease;
    font-family: 'CCRegeneration', sans-serif;
    }

    .faq-item.active .faq-answer {
      display: block;
      font-size: 25px;
      font-weight: lighter;
      
    }

    .faq-item.active .faq-toggle {
      background: #29a782;
    }
    .faq-head h2{
         text-align: center;
    font-size: 40px;
    font-weight: regular;
    margin-bottom: 70px;
      font-family: 'CCRegeneration', sans-serif;
    }
/* image-section */


.section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      gap: 0;
      position: relative;
    }

    .image-wrapper {
      position: relative;
      display: inline-block;
    }

    .section img {
      width: 600px;
      /* border-radius: 12px; */
      object-fit: cover;
      z-index: 1;
      /* border-top-right-radius: 50px; */
    }
    .section .image-content{
            border-top-right-radius: 50px;
    }
    .play-btn img{
        width: 100px;
    }
    /* Play Button */
     .play-btn {
      position: absolute;
      bottom: -15px;
      left: -15px;
      width: 90px;
      height: 90px;
      border-radius: 50%;
background: 
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, #9fc63d 0%, #29a782 100%) border-box; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: transform 0.2s;
      
    }
/*   
    .play-btn::before {
       content: "";
    display: inline-block;
    margin-left: 9px;
    border-left: 27px solid #0aa574;
    border-top: 17px solid transparent;
    border-bottom: 15px solid transparent;
    border-radius: 3px;
    } */

    .content-box {
      background: #fff;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.15);
      max-width: 400px;
      margin-left: -80px; /* overlap */
      z-index: 2;
      position: relative;
    }

    .content-box h2 {
      margin-bottom: 20px;
      font-size: 22px;
      font-weight:regular;
      font-family: 'CCRegeneration', sans-serif;
    }

    .step {
      display: flex;
      margin-bottom: 15px;
      font-size: 18px;
      font-family: 'CCRegeneration', sans-serif;
      font-weight: lighter;
    }

    .step span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      /* width: 35px;
      height: 32px; */
      border-radius: 50%;
      margin-right: 12px;
      font-weight: regular;
      color: #000;
      line-height: initial;
      font-family: 'CCRegeneration', sans-serif;
    }

    .s1 { background:  #f5bdbd;width: 50px; height: 36px; }
    .s2 { background: #d1f5bd;width: 40px; height: 36px; }
    .s3 { background: #bdd3f5;width: 40px; height: 36px; }

    .learn-more {
      display: inline-flex;
      align-items: center;
      color:  #29a782;
      font-weight: regular;
      text-decoration: none;
      margin-top: 10px;
      font-size: 16px;
      font-family: 'CCRegeneration', sans-serif;
    }

   .learn-more::after {
    content: "→";
    margin-left: 8px;
    width: 28px;
    height: 28px;
    border-radius: 40px;
    background-color: #29a782;
    color: #fff;
    padding-left: 6px;
}

    @media (max-width: 768px) {
      .section {
        flex-direction: column;
        text-align: center;
        padding: 10px;
      }
      /* .s1{
        width: 60px;
        height: 35px;
      }
      .s2{
        width: 40px;
        height: 35px;
      }
       .s3{
        width: 46px;
        height: 35px;
      } */
      .learn-more::after {
    content: "→";
    margin-left: 8px;
    width: 28px;
    height: 28px;
    border-radius: 40px;
    background-color: #29a782;
    color: #fff;
    padding-right: 5px;
}
      .step p{
        text-align: start;
      }
      .content-box {
        margin-left: 0; /* remove overlap */
      }
      .section img {
        width: 100%;
      }
      .play-btn {
        /* bottom: 15px;
        left: 15px; */
        width: 50px;
        height: 50px;
        z-index: 999;
      }
    }
  @media(max-width:375px) and (min-width:320px){
    .s1{
      width: 58px;
      height: 36px;
    }
  }
    @media(max-width:768px) and (min-width:425px){
      .s1{
        width: 40px;
        height: 36px;
      }
    }


    /* Modal */
    .modal {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.7);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 999;
    }
    .modal-content {
      background: #000;
      padding: 10px;
      border-radius: 10px;
      max-width: 800px;
      width: 50% !important;
      position: relative;
    }
    .modal video {
      width: 100%;
      border-radius: 8px;
    }
    .close-btn {
      position: absolute;
      top: -15px;
      right: -15px;
      background: #fff;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      font-size: 20px;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-weight:lighter;
      font-family: 'CCRegeneration', sans-serif;
    }



/* footer */
.footer-section{
    padding: 30px 20px;
    background:  #231e20;
    color: #fff;
}
.map{
    display: flex;
    justify-content: center;
    align-items: center;
}
.map-text{
   text-align: center;
   font-weight: lighter;
   font-size: 17px;
   margin: 0 auto 0 5px;
   max-width: 250px;
   line-height: 1.5;
   font-family: 'CCRegeneration', sans-serif;
}
.copyright{
color: #9a9a9a;
    font-size: 17px;
    font-weight: lighter;
    font-family: 'CCRegeneration', sans-serif;
}
.footer-row{
    padding: 20px 0px 0px 0px;

}
.footer-col3{
    text-align: end;
}
.footer-col3 p{
    font-family: 'CCRegeneration', sans-serif;
    font-size: 17px;
    font-weight: lighter;
    text-align: center;
    /* max-width: 317px; */
color: #9a9a9a;


}
.social-link{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.social-link img{
    height: 60px;
}

.footer-logo{
    height: 60px;
}
.map-img{
  height: 40px;
}
/* .footer-col{
    
} */
.vertical-divider {
  border-left: 2px solid gray;
  height: 300%;
  min-height: 300px; /* adjust height */
}
.divider.col-lg-1{
  width: 4.33333%;
}


/* ---------download section--------- */
  .download-section {
      /* display: flex;
      justify-content: center;
      align-items: center; */
      padding: 150px 20px;
      /* gap: 50px; */
            background: #21a292; /* green background */

    }
    .container.download-row.row{
        margin:auto;
    }
    .download-left {
      text-align: center;
      margin:auto !important;
    }
    .download-left h3 {
      font-size: 32px;
      margin-bottom: 10px;
      font-weight: lighter;
      color: #fff;
         font-family: 'CCRegeneration', sans-serif;
    }
    .download-left h4 {
      font-size: 40px;
      font-weight: lighter;
      margin-bottom: 20px;
       font-family: 'CCRegeneration', sans-serif;
      color: #fff;
    }
    .app-buttons {
      display: flex;
      justify-content:center;
      gap: 15px;
    }
    .app-buttons img {
      height: 80px;
      cursor: pointer;
    }
   
    .separator {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      color: #fff;
    }
    .separator span {
      background: #eaf0f6;
      color: #084981;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight:lighter;
      font-size: 30px;
             font-family: 'CCRegeneration', sans-serif;
    }
    .separator-line {
         width: 1.5px;
    height: 130px;
    background: #b4bcc5;
    }
    .download-right {
      text-align: center;
    }
    .download-right p {
      margin-bottom: 20px;
      font-size: 20px;
      font-family: 'CCRegeneration', sans-serif;
      font-weight: lighter;
      color: #fff;
    }
    .download-right img {
      width: 280px;
      height: 280px;
      /* background: white; */
      padding: 10px;
      border-radius: 8px;
      /* box-shadow: 0 3px 8px rgba(0,0,0,0.2); */
    }

    /* @media(max-width:992px) and(min-width:768px){
      .footer-col3 p{
        text-align: center;
      }
    } */
 @media(max-width:768px) and(min-width:620px){
    .modal-content{
            width: 50% !important;
        }
        .section img{
          width: 370px;
        }
        .vertical-divider {
         display: none;
}
 }
  @media(max-width:620px) and (min-width:320px){
       .modal-content{
            width: 60% !important;
        }
    .col-lg-5.col-md-6.col-sm-12.col-xs-12.text-center{
      margin-bottom: 20px;
    }
             .vertical-divider {
         display: none;
}
  }

    @media(max-width:992px) and (min-width:769px){
        .section .image-content{
            width: 400px;
        }
        .play-btn img{
            width: 90px;
        }
        .modal-content{
            width: 30% !important;
        }
        .map-text{
          text-align: start;
        }
        .top-section{
          height: 100vh;
        }
           .vertical-divider {
         display: none;
}
    }
    /* @media(max-width:1500px) and (min-width:992px){
           .top-section{
          height: 130vh;
        }
    } */
    /* Responsive */
    @media(max-width: 768px){
      .download-section {
        flex-direction: column;
        gap: 40px;
      }
      .separator {
        flex-direction: row;
      }
      .separator-line {
        height: 1px;
        width: 80px;
      }
      .top-text h1{
        font-size: 30px;
      }
      .top-text p{
        font-size: 20px;
      }
      .download-btn{
        font-size: 15px;
      }
      .mission-content h2 {
        font-size: 25px;
      }
      .mission-content p{
        font-size: 20px;
      }
      .mission-section{
        padding: 50px 0px;
      }
      .faq-head h2{
        font-size: 25px;
      }
      .faq-question{
        font-size: 20px;
      }
         .vertical-divider {
         display: none;
}
     
      .faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #29a782;
    color: #fff;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    padding-top: 8px;
    flex-shrink: 0;
    font-weight: lighter;
    transition: transform 0.3s ease;
    font-family: 'CCRegeneration', sans-serif;
}
.faq-item.active .faq-answer {
    display: block;
    font-size: 15px;
    font-weight: lighter;
}
.faq-container{
    padding: 10px;
}
.app-buttons img {
    height: 40px;
    cursor: pointer;
}
.download-left h4{
    font-size: 25px;

}
.download-left h3{
    font-size: 20px;
}

.separator span {
    background: #eaf0f6;
    color: #084981;
    border-radius: 50%;
    width: 54px;
    height: 53px;
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    font-weight: lighter;
    font-size: 30px;
    font-family: 'CCRegeneration', sans-serif;
}
.download-right img {
    width: 245px;
    height: 245px;
}
.download-section {
    padding: 100px 20px;
}
.footer-row{
    padding: 0;
}
.footer-col img{
    margin-bottom: 10px;
}
.footer-col3 p{
    text-align: start;
}
.social-link{
    justify-content: start;
}
.separator{
    justify-content: center;
}
 .download-left{
        min-width: 100% !important;
    }
    .download-right{
        min-width: 100% !important;
    }
    .separator{
        min-width: 100% !important;
    }
    .footer-col{
        min-width: 100% !important;
    }
    .map-text{
      text-align: start;
    }
    }


@media(max-width:992px){
    .top-overlay{
        padding: 50px;
    }
    .faq-container{
        padding: 20px;
    }
    .download-left{
        max-width: 34% !important;
    }
    .download-right{
        max-width: 34% !important;
    }
    .separator{
        max-width: 28% !important;
    }
    .download-left h3{
        font-size: 17px;
    }
    .download-left h4{
        font-size: 20px;
    }
    .app-buttons img {
    height: 36px;
    cursor: pointer;
}
.download-right img {
    width: 180px;
    height: 180px;
}
.footer-col{
    max-width: 50% !important;
}
.footer-col3 p{
    text-align:start;
}
.social-link{
    justify-content: start;
}
}


@media(max-width:1024px){
    .top-overlay{
        padding: 50px;
    }
    .faq-container{
        padding: 20px;
    }
    .step {
    display: flex
;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: 'CCRegeneration', sans-serif;
    font-weight: lighter;
}
.learn-more::after {
    content: "→";
    margin-left: 8px;
    width: 28px;
    height: 28px;
    border-radius: 40px;
    background-color: #29a782;
    color: #fff;
    padding-left: 6px;
}
}

@media(max-width:1399px){
      .top-overlay{
        padding: 50px;
    }
    .faq-container{
        padding: 20px;
    }
}




    /* font */
    @font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegeneration\ Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Bold.otf') format('truetype');
  font-weight: 250;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Bold.ttf') format('truetype');
  font-weight:250;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Regular.otf') format('truetype');
  font-weight: 250;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Regular.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Ultra.otf') format('truetype');
  font-weight: 250;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Ultra.ttf') format('truetype');
  font-weight: 250;
  font-style: normal;
}

@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Bold.eot') format('truetype');
  font-weight: 250;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Regular.eot') format('truetype');
  font-weight: 250;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Ultra.eot') format('truetype');
  font-weight: 250;
  font-style: normal;
}

@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Bold.woff') format('truetype');
  font-weight: 250;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Regular.woff') format('truetype');
  font-weight: 250;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Ultra.woff') format('truetype');
  font-weight: 250;
  font-style: normal;
}

@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Bold.woff2') format('truetype');
  font-weight: 250;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Regular.woff2') format('truetype');
  font-weight: 250;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegenerationW00-Ultra.woff2') format('truetype');
  font-weight: 250;
  font-style: normal;
}

@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegeneration-Light.otf') format('truetype');
  font-weight: 250;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegeneration-Light.woff') format('truetype');
  font-weight: 250;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegeneration\ Light.woff2') format('truetype');
  font-weight: 250;
  font-style: normal;
}
@font-face {
  font-family: 'CCRegeneration';
  src: url('font/CCRegeneration\ Light.eot') format('truetype');
  font-weight: 250;
  font-style: normal;
}