    .section-body {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
      padding: 60px 20px;
      max-width: 1100px;
      margin: 50px auto;
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .section-body.show {
      opacity: 1;
      transform: translateY(0);
    }

    .section-body:nth-child(even) {
      flex-direction: row-reverse;
    }

    .section-body-content {
      flex: 1 1 50%;
    }

    .section-body-content h2 {
      color: #3d5afe;
      margin-bottom: 20px;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-body-content p,
    .section-body-content ul {
      font-size: 1rem;
      line-height: 1.7;
    }

    .section-body-content ul {
      list-style: none;
      padding-left: 0;
    }

    .content-img {
      flex: 1 1 45%;
      max-width: 100%;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    }

    .cta {
      text-align: center;
      padding: 40px 20px;
      background: #fff;
      border-radius: 12px;
      max-width: 800px;
      margin: 60px auto;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .cta h2 {
      color: #3d5afe;
      font-size: 1.6rem;
    }

    .cta a {
      background: #3d5afe;
      color: white;
      padding: 12px 30px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      margin-top: 20px;
    }

    .cta a:hover {
      background: #2a3eb1;
    }

    @media (max-width: 768px) {
      .section-body {
        flex-direction: column !important;
      }
    }




        .hero {
      position: relative;
      width: 100%;
      height: 70vh;
      overflow: hidden;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .hero img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 100px 20px;
      text-align: center;
      position: relative;
      z-index: 2;
      color: #fff;
    }

    .welcome h2 {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .welcome p {
      font-size: 16px;
    }

    .welcome a {
      color: #fff;
      text-decoration: underline;
    }


   
  .custom-footer {
  background-color: #f8f9fa;
  padding: 40px 20px 20px;
  font-family: 'Inter', sans-serif;
  color: #333;
}

.custom-footer-top {
  max-width: 1200px;
  margin: 0 auto;
}

.custom-footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer-links ul,
.footer-courses ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-courses ul li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-courses a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-courses a:hover {
  color: #3d5afe;
}

.footer-map iframe {
  width: 100%;
  height: 120px;
  border-radius: 8px;
}

.custom-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
}

.custom-footer-bottom a {
  color: #3d5afe;
  text-decoration: none;
}

.custom-footer-bottom a:hover {
  text-decoration: underline;
}
