.mv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.mv-header {
  text-align: center;
  margin-bottom: 60px;
}

.mv-header h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.mv-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.mv-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.mv-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.mv-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
  position: relative;
  transition: transform 0.4s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
}

.mv-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.mv-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
}

#mission-image {
  background-image: url("../assets/images/mission.jpg");
}

#vision-image {
  background-image: url("../assets/images/vision.jpg");
}

.mv-content {
  padding: 35px;
}

.mv-content h3 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.mv-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.mv-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--text-light);
  font-family: "Neue Montreal", sans-serif;
}

.mv-icon {
  position: absolute;
  top: -30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

@media (max-width: 768px) {
  .mv-header h2 {
    font-size: 2.2rem;
  }

  .mv-header p {
    font-size: 1rem;
  }

  .mv-content {
    padding: 25px;
  }

  .mv-image {
    height: 200px;
  }

  .mv-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    top: -25px;
  }
}
.services-section {
  background: white;
  padding: 80px 20px;
}

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

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 2.5rem;
  color: #000000; /* AgriVeri green */
  margin-bottom: 15px;
}

.divider {
  width: 80px;
  height: 4px;
  background: #807f7f; /* AgriVeri gold */
  margin: 0 auto 20px;
}

.subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 4px solid #a8a8a8;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #1b1b1b;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 2rem;
  }
}
