.mission-vision {
  background: #fff;
  color: #333;
  padding: 90px 10%;
  text-align: center;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.mv-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  justify-items: center;
}

.mv-card {
  background: #f8f8f8;
  border-top: 6px solid #e60000;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out forwards;
}

.mv-card:nth-child(1) { animation-delay: 0.3s; }
.mv-card:nth-child(2) { animation-delay: 0.5s; }
.mv-card:nth-child(3) { animation-delay: 0.7s; }

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.mv-card i {
  font-size: 2.5rem;
  color: #e60000;
  margin-bottom: 15px;
}

.mv-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.mv-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

/* Fade-up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .mission-vision {
    padding: 70px 6%;
  }

  .mv-card {
    padding: 30px 20px;
  }

  .mv-card h2 {
    font-size: 1.4rem;
  }

  .mv-card p {
    font-size: 1rem;
  }
}


.project-steps {
  background: #f8f9fa;
  color: #333;
  padding: 90px 10%;
  text-align: center;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.project-steps h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #e60000;
  border-bottom: 4px solid #e60000;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.project-steps p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.step-card {
  background: #fff;
  border-top: 6px solid #e60000;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  width: 260px;
  padding: 30px 25px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out forwards;
}

.step-card:nth-child(1) { animation-delay: 0.2s; }
.step-card:nth-child(2) { animation-delay: 0.4s; }
.step-card:nth-child(3) { animation-delay: 0.6s; }
.step-card:nth-child(4) { animation-delay: 0.8s; }
.step-card:nth-child(5) { animation-delay: 1s; }

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.step-number {
  background: #e60000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  position: relative;
  z-index: 2;
}

.step-card i {
  font-size: 2rem;
  color: #e60000;
  margin-bottom: 10px;
}

.step-card h2 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* Connect steps with arrows */
.steps-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(230, 0, 0, 0.2);
  z-index: 0;
}

.step-card::after {
  content: "\f061"; /* Font Awesome right arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  color: #e60000;
  font-size: 1.2rem;
}

.step-card:last-child::after {
  content: none;
}

/* Fade Up Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .steps-container {
    flex-direction: column;
    gap: 50px;
  }
  .steps-container::before {
    display: none;
  }
  .step-card::after {
    display: none;
  }
}
