/* :root {
    --font_color: #000000;
    --head_bg: #9df3b8;
    --font_style: "Inter", sans-serif;
    --logo_color: green;
    --head_font_color: rgb(70, 129, 70);
} */



/* header banner*/
/* header {
    text-align: center;
    background-color: var(--head_bg);
    padding: 0.8px;
    color: var(--head_font_color);

}
.header_text {
    position: relative;
    top: -80px;
    opacity: 0;
    animation: revealText 0.9s ease-out forwards;
    
} */

@keyframes revealText {
    0% { top: -80px; opacity: 0; }
    100% { top: 0; opacity: 1; }
}
header span {
    color: var(--logo_color);
    font-weight: bolder;
}


/*alternative code for * place*/
html {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #EDEDED;
  /* color: #5b4436; */
}



/* ===== SECTION 1 ===== */
/* === ABOUT SECTION - MATCHING MISSION/VISION LAYOUT === */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 20px;
  gap: 60px;
  text-align: left;
}

.about-left {
  flex: 1;
  max-width: 400px;
}

.about-left h2 {
  font-size: 42px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.about-right {
  flex: 1;
  max-width: 600px;
}

.about-right p {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 30px;
}

/* === Stats Section === */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px; /* reduced gap: 15px row-gap, 30px column-gap */
  align-items: start; /* aligns stats nicely */
}

.stat h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 3px; /* reduced margin */
  color: #333;
}

.stat p {
  font-size: 14px;
  color: #666;
  font-family: 'Poppins', sans-serif;
  margin: 0; /* remove extra margin */
}


/* === Responsive Design === */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .about-left,
  .about-right {
    max-width: 100%;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr); /* Keep two per row on tablet/phone */
    gap: 20px;
    justify-items: center;
  }

  .about-left h2 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .about-left h2 {
    font-size: 28px;
  }

  .about-right p {
    font-size: 15px;
  }

  .stat h3 {
    font-size: 20px;
  }

  .stat p {
    font-size: 13px;
  }
}


/* ===== SECTION 2 ===== */
.about-image-section {
  padding: 40px 10% 40px; /* ↓ reduced bottom padding (was 60px/80px) */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins";
  
}

.image-left {
  flex: 0 0 60%;
  max-width: 800px;
  margin: 0 auto;
}

.image-left img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  
}

/* ===== IMAGE REVEAL ANIMATION ===== after about us */
.adv_img {
  position: relative;
  display: inline-block;
  overflow: hidden;
    width: 1350px;
  height: 520px;/* match image height */
}

.adv_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adv_img .reveal_mask2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #b8b8b8;
  z-index: 2;
}

.adv_img .reveal_mask2.animate {
  animation: reveal 2s ease forwards;
  animation-delay: 0.2s;
}

/* ===== ANIMATIONS ===== */
.slide-in {
  opacity: 0;
  transform: translateX(-120px);
  transition: all 1s ease-out;
}

.slide-in.show {
  opacity: 1;
  transform: translateX(0);
}

@keyframes reveal {
  0% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 572px) {
  .about-section,
  .about-image-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%; /* smaller mobile padding */
  }

  .about-left,
  .about-right,
  .image-left {
    max-width: 100%;
  }

  .stats {
    justify-content: center;
  }
  footer{
    justify-content: center;
  }
}



/* ===== VISION SECTION ===== 3rd section */
/* === VISION SECTION (styled like mission-section) === */
.vision-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 20px;
  gap: 60px;
  text-align: left;
}

.vision-text {
  flex: 1;
  max-width: 600px;
}

.vision-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.vision-text p {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.vision-text::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: black;
  margin-top: 20px;
}

/* === Animated image section (no JS) === */
.vision-image {
  flex: 1;
  max-width: 400px;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInFromRight 1.5s ease-out forwards;
  animation-delay: 0.3s;
}

.vision-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* === Keyframes animation === */
@keyframes slideInFromRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .vision-section {
    flex-direction: column;
    text-align: center;
  }

  .vision-text,
  .vision-image {
    max-width: 100%;
  }

  .vision-text::after {
    margin-left: auto;
    margin-right: auto;
  }
}






/*4th section mission*/

/* ===== FIXED MISSION SECTION ===== */
.mission-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 20px;
  gap: 60px;
  text-align: left;
}

.mission-image {
  flex: 1;
  max-width: 400px;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.2s ease-out;
}

.mission-image img {
  width: 100%;
  border-radius: 8px;
}

.mission-text {
  flex: 1;
  max-width: 600px;
}

.mission-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.mission-text p {
  font-size: 16px;
  line-height: 1.6;
}

.mission-text::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  margin-top: 20px;
}

.mission-image.show {
  opacity: 1;
  transform: translateX(0);
}



    /* icons*/
  

.trust-section {
  padding: 60px 20px;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  line-height: 1.4;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  border: 1px solid #f1f1f1;
  padding: 30px;
  border-radius: 8px;
  background-color: #fff;
  text-align: left;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.icon {
  font-size: 24px;
  margin-bottom: 15px;
   transition: color 0.3s ease; 
}

.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.card:hover {
  background-color: #9df3b8; /* change to any color you like */
  transform: translateY(-5px); /* optional subtle lift effect */
}
.card:hover .icon {
  color: black; /* icon color change on hover */
}
/* animation icon section*/
.trust-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When visible */
.trust-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.center-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}



/*contact us*/
/*.contact-cta-section {*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  background-color: #8bf0a1;*/
/*  padding: 40px 30px; */
/*  margin: 40px auto;*/
/*  max-width: 1200px;*/
/*  border-radius: 8px;*/
/*  gap: 30px;*/
/*  flex-wrap: wrap;*/
/*}*/

/*.contact-cta-content {*/
/*  flex: 1;*/
/*  min-width: 280px;*/
/*}*/

/*.contact-cta-content h2 {*/
/*  font-size: 22px;*/
/*  color: black;*/
/*  font-weight: 600;*/
/*  margin-bottom: 16px;*/
/*}*/

/*.contact-cta-content button {*/
/*  background-color: black;*/
/*  color: #fff;*/
/*  border: none;*/
/*  padding: 10px 20px;*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*  border-radius: 4px;*/
/*  cursor: pointer;*/
/*  transition: background-color 0.3s ease;*/
/*}*/

/*.contact-cta-content button:hover {*/
/*  background-color: #9df3b8;*/
/*}*/

/*.contact-cta-image {*/
/*  flex: 1;*/
/*  min-width: 280px;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*}*/

/*.contact-cta-image img {*/
/*  width: 100%;*/
/*  max-width: 400px;*/
/*  height: auto;*/
/*  object-fit: contain;*/
/*  border-radius: 6px;*/
/*}*/

.contact-cta-section {
  width: 100%;
  display: flex;
  justify-content: center;   /* center horizontally */
  padding: 40px 0;

}

.contact-cta-section img {
  width: 80%;                /* control width */
  max-width: 1172px;         /* prevent too large on big screens */
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 12px;

}


