
    :root {
      --primary:  #1a123b;
      --primary-light:  #431871 ;
      --primary-dark: #350568 ;
      --accent: #f2c6f0;
      --bg: #faf7fc;
      --text: #2a2438;
      --card-bg: #ffffff;
      --border: #e7d7ec;
    }

    body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 0;
      background: var(--bg);
      color: var(--text);
    }

    /* HERO SECTION */
    .hero {
      text-align: center;
      padding: 90px 20px;
      background: linear-gradient(180deg, var(--primary), var(--primary-dark));
      color: #fff;
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }
    .hero h1 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 680px;
      margin: 0 auto;
      opacity: 0.9;
    }

    /* SECTION WRAPPER */
   /* SECTION STYLING */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #350568;
  margin-bottom: 40px;
  font-weight: 700;
}

/* GRID LAYOUT */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 35px;
  align-items: stretch;
}

/* CARD STYLING */
.card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e7d7ec;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
  border-color: #431871;
}

/* IMAGE WRAPPER */
.img-wrapper {
  width: 100%;
  height: 700px; /* fixed uniform height */
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 16px;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills container nicely */
  display: block;
}

/* TEXT */
.card h2 {
  font-size: 1.5rem;
  margin-top: 10px;
  color: #350568;
}

.card h3 {
  font-size: 1.2rem;
  margin-top: 8px;
  color: #431871;
}

.card p {
  color: #555;
  font-size: 1rem;
  margin-top: 10px;
  line-height: 1.6;
  text-align: justify;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .img-wrapper {
    height: 500px;
  }
}

  
    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 26px rgba(0,0,0,0.12);
      border-color: var(--primary-light);
    }


    /* VIDEO */
    .video-box {
      width: 100%;
      max-width: 700px;
      margin: auto;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    /* CTA BUTTON */
    .cta {
      text-align: center;
      padding: 80px 20px;
    }
    .cta button {
      background: var(--primary);
      color: #fff;
      padding: 16px 40px;
      font-size: 1.2rem;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      font-weight: 700;
      transition: 0.25s ease;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }
    .cta button:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(0,0,0,0.15);
    }
     footer {
      text-align: center;
      padding: 30px 10px;
      font-size: 16px;
      background: var(--primary);
      color: white;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

  