.dept-overview {
  padding: 30px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overview-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: nowrap;
}

.overview-text {
  width: 50%;
}

.overview-text h2 {
  font-size: 3rem;
  color: #171994;
  margin-bottom: 20px;
}

.overview-text h2 span {
  color: #3a868f;
  text-decoration: underline;
}

.overview-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.overview-image {
  width: 45%;
  text-align: center;
}

.overview-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .overview-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .overview-text, .overview-image {
    width: 100%;
  }
}

/* Services  */

/* .npd-services {
  padding: 10px 10%;
  background: #fff;
}

.npd-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: nowrap;
}

.npd-image {
  width: 45%;
  text-align: center;
}

.npd-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.npd-text {
  width: 50%;
}

.npd-text h2 {
  font-size: 2.2rem;
  color: #171994;
  margin-bottom: 20px;
}

.npd-text h2 span {
  color: #3a868f;
}

.npd-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.npd-text ul {
  list-style: disc inside;
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .npd-content {
    flex-direction: column;
    text-align: center;
  }

  .npd-image, .npd-text {
    width: 100%;
  }

  .npd-text ul {
    padding-left: 0;
  }
} */

/* End */

/* Services Section */

.services-cards {
  padding: 30px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: #171994;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid #173054;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card i {
  font-size: 30px;
  color: #3a868f;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  color: #171994;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Services Section End */

/* Statistics Section */
.stats-section {
  position: relative;
  padding: 50px 20px;
  background: #f3f7fb;
  overflow: hidden;
  text-align: center;
}

.stats-overlay {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(182, 0, 22, 0.08);
  border-radius: 50% 35% 55% 45%;
  z-index: 0;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  width: 220px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-card h2 {
  font-size: 48px;
  font-weight: 700;
  color: #173054;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.stats-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(0, 128, 128, 0.08);
  border-radius: 40% 60% 55% 45% / 55% 35% 65% 45%;
  z-index: 0;
}
/* Statistics End */