/* ===== Education Hero Section ===== */
.edu-hero-sctn {
  padding: 60px 0 70px;
  background: linear-gradient(135deg, #f0f4ff 0%, #fff 50%, #fef5f5 100%);
  position: relative;
  overflow: hidden;
}
.edu-hero-sctn::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(215, 23, 46, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.edu-hero-content {
  position: relative;
  z-index: 2;
}
.edu-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(215, 23, 46, 0.1);
  color: var(--primary-color1);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.edu-hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color2);
  line-height: 1.25;
  margin-bottom: 18px;
}
.edu-hero-content h1 span {
  color: var(--primary-color1);
}
.edu-hero-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 90%;
}
.edu-hero-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.edu-contact-btn {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color2);
  border-bottom: 2px solid var(--primary-color1);
  padding-bottom: 3px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.edu-contact-btn:hover {
  color: var(--primary-color1);
  gap: 10px;
}
/* Hero Image */
.edu-hero-img-box {
  position: relative;
}
.edu-hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.edu-hero-img img {
  width: 100%;
  display: block;
}
.edu-hero-floating-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-color2);
  animation: eduFloat 4s ease-in-out infinite;
}
.edu-hero-floating-card i {
  color: var(--primary-color1);
  font-size: 18px;
}
.edu-flt-1 {
  top: 20px;
  left: -20px;
  animation-delay: 0s;
}
.edu-flt-2 {
  bottom: 30px;
  right: -20px;
  animation-delay: 1.5s;
}
@keyframes eduFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* ===== Challenges Section ===== */
/* .edu-challenges-sctn {
  padding: 80px 0;
  background: #f8f9fa;
} */
.edu-challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 45px;
}
.edu-challenge-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  text-align: center;
}
.edu-challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(215, 23, 46, 0.08);
  border-color: rgba(215, 23, 46, 0.1);
}
.edu-challenge-icon {
  width: 55px;
  height: 55px;
  background: rgba(215, 23, 46, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
  color: var(--primary-color1);
  transition: all 0.3s;
}
.edu-challenge-card:hover .edu-challenge-icon {
  background: var(--primary-color1);
  color: #fff;
}
.edu-challenge-card h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color2);
  margin-bottom: 8px;
}
.edu-challenge-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
/* ===== Solutions Section ===== */
/* .edu-solutions-sctn {
  padding: 80px 0;
  background: #fff;
} */
.edu-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 45px;
}
.edu-solution-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.edu-solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(215, 23, 46, 0.08);
  border-color: rgba(215, 23, 46, 0.1);
}
.edu-sol-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color1), #ff4a5a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(215, 23, 46, 0.2);
}
.edu-solution-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color2);
  margin-bottom: 8px;
}
.edu-solution-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
/* ===== Benefits Section ===== */
/* .edu-benefits-sctn {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
} */
.edu-benefits-sctn .title-wrap p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}
.edu-benefits-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 45px;
}
.edu-benefit-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
}
.edu-benefit-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 23, 46, 0.15);
  box-shadow: 0 10px 30px rgba(215, 23, 46, 0.08);
}
.edu-benefit-stat-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: linear-gradient(135deg, var(--primary-color1), #ff4a5a);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(215, 23, 46, 0.2);
}
.edu-benefit-stat-info h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color2);
  line-height: 1.2;
  margin-bottom: 2px;
}
.edu-benefit-stat-info span {
  font-size: 14px;
  color: #666;
}
.edu-benefits-timeline {
  position: relative;
  max-width: 940px;
  margin: 50px auto 0;
  padding: 5px 0;
}
.edu-benefits-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color1) 0%, rgba(215, 23, 46, 0.12) 100%);
  border-radius: 5px;
  transform: translateX(-50%);
}
.edu-timeline-item {
  position: relative;
  width: 50%;
  padding: 0 50px 35px 0;
}
.edu-timeline-item:nth-child(even) {
  margin-left: 50%;
  padding: 0 0 35px 50px;
}
.edu-timeline-item:last-child {
  padding-bottom: 0;
}
.edu-timeline-dot {
  position: absolute;
  top: 22px;
  right: -32px;
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid rgba(215, 23, 46, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-color1);
  box-shadow: 0 8px 20px rgba(215, 23, 46, 0.15);
  z-index: 2;
  transition: all 0.3s;
}
.edu-timeline-item:nth-child(even) .edu-timeline-dot {
  right: auto;
  left: -32px;
}
.edu-timeline-item:hover .edu-timeline-dot {
  background: linear-gradient(135deg, var(--primary-color1), #ff4a5a);
  color: #fff;
  transform: scale(1.08);
}
.edu-timeline-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 26px 28px;
  transition: all 0.3s;
}
.edu-timeline-card::before {
  content: '';
  position: absolute;
  top: 28px;
  right: -9px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  transform: rotate(45deg);
}
.edu-timeline-item:nth-child(even) .edu-timeline-card::before {
  right: auto;
  left: -9px;
  border-right: 0;
  border-left: 1px solid #f0f0f0;
}
.edu-timeline-item:hover .edu-timeline-card {
  transform: translateY(-5px);
  border-color: rgba(215, 23, 46, 0.15);
  box-shadow: 0 12px 35px rgba(215, 23, 46, 0.08);
}
.edu-timeline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  background: rgba(215, 23, 46, 0.08);
  color: var(--primary-color1);
  font-size: 14px;
  font-weight: 700;
  border-radius: 9px;
  margin-bottom: 12px;
}
.edu-timeline-card h6 {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-color2);
  margin-bottom: 6px;
}
.edu-timeline-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.7;
}
.edu-benefits-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
/* ===== Responsive ===== */
@media (max-width: 1399px) {
  .edu-hero-content h1 {font-size: 25px;margin-bottom: 15px;}
}
@media (max-width: 992px) {
  .edu-hero-content h1 {
    font-size: 23px;
  }
  .edu-hero-content p {
    max-width: 100%;
  }
  .edu-hero-img-box {
    margin-top: 0;
  }
  .edu-challenges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .edu-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .edu-flt-1 {
    left: 10px;
  }
  .edu-flt-2 {
    right: 10px;
  }
}
@media (max-width: 768px) {
  .edu-benefits-stats {
    grid-template-columns: 1fr;
  }
  .edu-benefits-timeline {
    max-width: 100%;
    margin-top: 40px;
  }
  .edu-benefits-timeline::before {
    left: 20px;
    transform: none;
  }
  .edu-timeline-item,
  .edu-timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 0 0 30px 70px;
  }
  .edu-timeline-dot,
  .edu-timeline-item:nth-child(even) .edu-timeline-dot {
    left: -1px;
    right: auto;
    width: 42px;
    height: 42px;
    font-size: 16px;
    top: 20px;
  }
  .edu-timeline-card::before,
  .edu-timeline-item:nth-child(even) .edu-timeline-card::before {
    left: -9px;
    right: auto;
    border-left: 1px solid #f0f0f0;
    border-right: 0;
  }
}
@media (max-width: 576px) {
  /* .edu-hero-content h1 {
    font-size: 26px;
  } */
  .edu-challenges-grid {
    grid-template-columns: 1fr;
  }
  .edu-solutions-grid {
    grid-template-columns: 1fr;
  }
  .edu-hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .edu-benefits-btns {
    flex-direction: column;
    align-items: center;
  }
}
