/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE
========================= */
body {
  font-family: Arial, sans-serif;
  background: #fff0f5;
  color: #333;
  line-height: 1.6;
}

/* =========================
   HEADER
========================= */
.header {
  text-align: center;
  background: #ffd6e7;
  padding: 20px 10px;
}

.logo {
  height: 180px;
  display: block;
  margin: 0 auto;
}

/* =========================
   NAVIGATION
========================= */
.nav {
  margin-top: 10px;
}

.nav-link {
  display: inline-block;
  margin: 6px;
  padding: 8px 14px;

  background: #e9d5ff;
  color: #6b21a8;

  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;

  transition: 0.3s;
}

.nav-link:hover {
  background: #c084fc;
  color: white;
}

/* =========================
   HERO
========================= */
.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* =========================
   BUTTONS
========================= */
.button-group {
  margin-top: 20px;
}

.cta-btn {
  display: inline-block;
  margin: 5px;
  padding: 12px 22px;

  background: #a855f7;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;

  transition: 0.3s;
}

.cta-btn:hover {
  background: #9333ea;
  box-shadow: 0 0 10px #c084fc, 0 0 20px #c084fc;
  transform: translateY(-2px);
}

.enroll-btn {
  display: inline-block;
  margin: 5px;
  padding: 12px 22px;

  background: #ff69b4;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;

  transition: 0.3s;
}

.enroll-btn:hover {
  background: #ff4da6;
  box-shadow: 0 0 10px rgba(255,105,180,0.6), 0 0 20px rgba(255,105,180,0.4);
  transform: translateY(-2px);
}

/* =========================
   SECTIONS
========================= */
.section {
  text-align: center;
  padding: 40px 20px;
}

.section h2 {
  margin-bottom: 10px;
}

/* =========================
   TRUST
========================= */
.trust-list {
  list-style: none;
  margin-top: 20px;
}

.trust-list li {
  margin: 8px 0;
  font-size: 18px;
}

/* =========================
   CARDS
========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 250px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* =========================
   CAROUSEL (FIXED)
========================= */
.carousel {
  position: relative;
  max-width: 500px;
  margin: 30px auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-track img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 10px;
}

/* BUTTONS */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

/* =========================
   FACEBOOK
========================= */
.facebook-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;

  background: #1877f2;
  color: white;
  text-decoration: none;

  border-radius: 8px;
  font-weight: 600;
}

.facebook-btn:hover {
  background: #0f5dc2;
}

.fb-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* =========================
   CTA SECTION
========================= */
.cta {
  text-align: center;
  padding: 40px 20px;
  background: #ffe4ec;
}

/* =========================
   CONTACT
========================= */
.contact {
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 20px auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form label {
  text-align: left;
  font-weight: 600;
}

.contact-form button {
  background: #a855f7;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #9333ea;
}

/* =========================
   FOOTER
========================= */
.footer {
  text-align: center;
  padding: 15px;
  background: #ffd6e7;
  margin-top: 20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .logo {
    height: 140px;
  }

  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 24px;
  }

  .carousel {
    max-width: 90%;
  }

  .carousel-track img {
    height: 220px;
  }
}