.edu-1 {
  position: relative;
  width: 100%; 
  background: url('/assets/img/edu-bg-1.jpg') center/cover no-repeat;
  padding: 60px 0; 
}

.edu-1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,20,40,0.6); 
}

.edu-1 h1 {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.edu-1 .swiper {
  position: relative;
  z-index: 1;  
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: auto;
  max-height: 600px;
  border-radius: 12px;
  transition: transform 0.3s;
}

.swiper-slide img:hover {
  transform: scale(1.03);
}

.edu-1 .container {
  position: relative;
  z-index: 1; 
}


.edu-intro, .edu-modules, .edu-benefits, .edu-gallery, .edu-cta {
  padding: 60px 20px;
}

.edu-modules .card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
}

.edu-benefits ul {
  list-style: none;
  padding: 0;
}
.edu-benefits li::before {
  content: "✔ ";
  color: var(--accent);
}

.edu-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.edu-gallery img {
  width: 100%;
  border-radius: 8px;
}

.edu-cta {
  background: #0d1117;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

