.hero-wave-section {
  background: linear-gradient(to right, #2892d5, #1428a0);
  color: white;
  position: relative;
  overflow: hidden;
  /* text-align: center; */
  padding: 100px 20px 60px;
}

.hero-wave-section h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 0;
}

.custom-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.custom-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

@media (max-width: 768px) {
  .hero-wave-section h1 {
    font-size: 36px;
  }

  .custom-wave svg {
    height: 80px;
  }
}








.about-intro {
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 32px;
  color: #268bcc;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-images {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.about-images .large {
  grid-column: span 2;
}

.about-images img {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  object-fit: cover;
}


@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-images .large {
    grid-column: span 1;
  }
}



/* Mission SECTION CSS START  */

.mission-vision-section {
  position: relative;
  padding-bottom: 150px;
  background-color: #fff;
}

.mv-background-img {
  width: 100%;
  height: 450px;
  object-fit: cover !important;
  display: block;
  object-position: top;
}


.mission-vision-box {
  max-width: 1100px;
  margin: -120px auto 0 auto; 
  background-color: #268bcc;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  position: relative;
  z-index: 10;
}

.mission-vision-box-para{
text-align: left;
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
}

.mv-col {
  flex: 1 1 48%;
  color: white;
}

.mv-icon {
  width: 50px;
  margin-bottom: 15px;
}

.mv-icon img {
  width: 100%;
  height: auto;
}

.mv-col h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.mv-col p {
  font-size: 16px;
  line-height: 1.7;
}


@media (max-width: 768px) {
  .mission-vision-box {
    flex-direction: column;
    padding: 40px 20px;
    margin: -60px 20px 0 20px;
    text-align: left;
  }

  .mv-col {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .mv-col h3 {
    font-size: 20px;
  }

  .mv-col p {
    font-size: 15px;
  }

  .mv-icon {
    margin: 0 auto 15px;
  }
}


/* Mission SECTION CSS CLOSE  */







.cleancard-faq-section {
  font-family: 'Montserrat', sans-serif;
  padding: 60px 20px;
  background: #fff;
}
.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid #b0b0ff;
  margin-bottom: 20px;
  border-radius: 4px;
  overflow: hidden;
}
.faq-question {
  background: #2196d3;
  color: #fff;
  font-weight: bold;
  padding: 16px 20px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: '\25BE';
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}
.faq-question.active::after {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 15px 20px;
  background: #f9f9f9;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}







.terms-section {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  padding: 80px 20px;
  color: #222;
}

.terms-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-section h1 {
  font-size: 26px;
  color: #1a75cf;
  margin-bottom: 30px;
}

.terms-section h2 {
  font-size: 20px;
  color: #0076c0;
  margin-top: 40px;
  margin-bottom: 10px;
  border-left: 4px solid #0076c0;
  padding-left: 12px;
}

.terms-section p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.terms-section ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.terms-section ul li {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.6;
}


@media screen and (max-width: 600px) {
  .terms-section {
    padding: 60px 15px;
  }

  .terms-section h1 {
    font-size: 22px;
  }

  .terms-section h2 {
    font-size: 18px;
  }

  .terms-section p,
  .terms-section ul li {
    font-size: 14px;
  }
}





.privacy-section {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  padding: 80px 20px;
  color: #222;
}

.privacy-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-section h1 {
  font-size: 26px;
  color: #1a75cf;
  margin-bottom: 30px;
}

.privacy-section h2 {
  font-size: 20px;
  color: #0076c0;
  margin-top: 40px;
  margin-bottom: 10px;
  border-left: 4px solid #0076c0;
  padding-left: 12px;
}

.privacy-section p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.privacy-section ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.privacy-section ul li {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.6;
}
