@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200..700&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* About Hero Section */

   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .image-section {
      position: relative;
      width: 100%;
      max-width: 100%;
      height: 300px; /* Full screen height */
      overflow: hidden;
    }

    .image-section img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 300px;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* dark transparent overlay */
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      color: white;
      text-align: center;
      padding: 20px;
    }

    .overlay h1 {
      font-size: 3.2rem;
      margin-bottom: 10px;
      font-family: "Arimo", sans-serif;
    }

    .overlay p {
      font-size: 1.5rem;
      font-family: "Arimo", sans-serif;
      color: #edecec;
    }

    @media (max-width: 768px) {
      .overlay h1 {
        font-size: 2rem;
      }

      .overlay p {
        font-size: 1rem;
      }
    }


/* Our Story */

.why-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.left-section {
  position: relative;
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.main-img {
  width: 80%;
  max-width: 400px;
}

.circle-img {
  position: absolute;
  bottom: -130px;
  left: 70%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.right-section {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.right-section h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #223883;
  font-family: "Arimo", sans-serif;
}

.right-section p {
  color: #333333 ;
  margin-bottom: 30px;
  line-height: 1.5;
  font-family: "Arimo", sans-serif;
  font-size: 18px;
}


/* Responsive: Tablet */
@media (max-width: 1024px) {
  .right-section h2 {
    font-size: 32px;
  }

  .main-img {
    max-width: 100%;
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
  }

  .left-section {
    width: 100%;
    align-items: center;
  }

  .main-img {
    width: 90%;
  }

  .circle-img {
    position: static;
    transform: none;
    margin: 20px auto 0;
    width: 180px;
    height: 180px;
  }

  .right-section h2 {
    font-size: 28px;
    text-align: center;
  }

  .right-section p {
    font-size: 15px;
    text-align: center;
  }

}








/* M-V-V Section */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f3ef;
  color: #1d1d1f;
}

.mission-section {
  padding: 50px 20px;
  text-align: center;
}

.mission-section h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #223883 ;
  font-family: "Arimo", sans-serif;
}

.mission-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 40px;
  font-family: "Arimo", sans-serif;
}

.animated-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animated-section.visible {
  opacity: 1;
  transform: translateY(0);
}


.mission-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #e8f0e3;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 28px;
  color: #223883 ;
}


.card h3 {
  color: #223883 ;
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-family: "Arimo", sans-serif;
}

.card p {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: "Arimo", sans-serif;
}

  /* Responsive Styles */
  @media (max-width: 1024px) {
    .mission-section h2 {
      font-size: 2.2rem;
    }

    .mission-subtitle {
      font-size: 1rem;
    }
  }

  @media (max-width: 768px) {
    .mission-section {
      padding: 40px 15px;
    }

    .mission-cards {
      flex-direction: column;
      align-items: center;
      gap: 25px;
    }

    .card {
      width: 90%;
      max-width: 380px;
    }

    .mission-section h2 {
      font-size: 2rem;
    }

    .mission-subtitle {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 480px) {
    .mission-section h2 {
      font-size: 1.75rem;
    }

    .mission-subtitle {
      font-size: 0.9rem;
    }

    .card {
      padding: 25px 15px;
    }

    .card h3 {
      font-size: 1.25rem;
    }

    .card p {
      font-size: 0.9rem;
    }

    .icon-circle {
      width: 50px;
      height: 50px;
    }

    .icon-circle i {
      font-size: 22px;
    }
  }

/* Contact Section */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #fff;
}

.sustainable-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #223883 ;
  min-height: 60vh;
  gap: 40px;
}

.left-content {
  flex: 1;
}

.left-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Arimo", sans-serif;
}

.left-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  font-family: "Arimo", sans-serif;
  color: #d7d7d7;
}

.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.secondary-btn {
  padding: 14px 24px;
  border: 2px solid white;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: "Arimo", sans-serif;
}

.secondary-btn {
  background-color: transparent;
  color: white;
}

.secondary-btn:hover {
  background-color: white;
  color: #223883 ;
}

.right-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-image img {
  width: 450px;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


/* ✅ RESPONSIVE BREAKPOINTS */

@media (max-width: 1024px) {
  .sustainable-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .left-content h1 {
    font-size: 2.5rem;
  }

  .left-content p {
    font-size: 18px;
  }

  .buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .left-content h1 {
    font-size: 2.2rem;
  }

  .left-content p {
    font-size: 16px;
  }

  .secondary-btn {
    font-size: 18px;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .left-content h1 {
    font-size: 1.8rem;
  }

  .left-content p {
    font-size: 15px;
  }

  .secondary-btn {
    font-size: 16px;
    padding: 10px 18px;
  }

  .sustainable-section {
    padding: 30px 15px;
    gap: 20px;
  }
}