    * {
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: #f9fafb;
      color: #1f2937;
      line-height: 1.6;
    }

   /* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #512da8;
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* spacing between logo and text */
  text-decoration: none;
  color: #512da8;
  font-weight: bold;
  font-size: 1.25rem;
  background: white;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
}

.logo img {
  height: 40px;  /* adjust this value if still too big */
  width: auto;
  display: block;
}

/*Default Desktop*/
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffca28;
}

/* Hide hamburger by default */
.menu-toggle {
  display: none;
}

/* Hide menu on small screens */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #512da8;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    z-index: 999;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block !important;
    cursor: pointer;
    font-size: 24px;
    color: #222;
  }
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-ambassador {
  position: relative;
  color: #ffa726;
  font-weight: bold;
  text-shadow: 0 0 5px #ffa726, 0 0 10px #ffb74d;
  animation: pulseZoom 2s infinite, glow 1.5s infinite alternate;
  overflow: hidden;
}

/* Zoom effect */
@keyframes pulseZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Glow effect */
@keyframes glow {
  from {
    text-shadow: 0 0 5px #ffa726, 0 0 10px #ffb74d;
  }
  to {
    text-shadow: 0 0 10px #ffb74d, 0 0 20px #ffc107;
  }
}

/* Shine effect */
.nav-ambassador::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
  transform: skewX(-25deg);
}

.nav-ambassador:hover::before {
  animation: shine 1.2s ease forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}


    .ambassador-section {
      padding: 10px 0;
      background: linear-gradient(to right, #e0f2fe, #ffffff);
      text-align: center;
    }

    .ambassador-section h1 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #1e3a8a;
    }

    .ambassador-section p {
      max-width: 700px;
      margin: 0 auto 2rem;
      font-size: 1rem;
      color: #374151;
    }

    .ambassador-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      padding: 0.5rem;
      max-width: 280px;
      flex: 1 1 260px;
      transition: transform 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #3b82f6;
      margin-top: 0.75rem;
    }

    .card p {
      font-size: 0.95rem;
      color: #4b5563;
    }

    .section-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
      text-align: left;
      color: #1e40af;
    }

    .text-section {
      max-width: 800px;
      margin: 0 auto 2rem;
      margin-top: 30px;
      text-align: left;
    }

    .text-section ul {
      padding-left: 1.2rem;
    }

    .text-section li {
      margin-bottom: 0.5rem;
    }

    .apply-form {
      max-width: 800px;
      margin: 0 auto;
      background: #ffffff;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .apply-form h2 {
      font-size: 1.5rem;
      font-weight: 600;
      color: #1e40af;
      margin-bottom: 1rem;
    }

    .form-group {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea {
      flex: 1 1 250px;
      padding: 0.75rem;
      border: 1px solid #d1d5db;
      border-radius: 6px;
      font-size: 0.95rem;
    }

    .form-group textarea {
      resize: vertical;
    }

    .submit-btn {
      background-color: #2563eb;
      color: #fff;
      border: none;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .submit-btn:hover {
      background-color: #1d4ed8;
    }

    @media (max-width: 640px) {
      .card {
        max-width: 100%;
      }

      .form-group {
        flex-direction: column;
      }
    }



.roles-responsibilities {
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.centered {
  text-align: center;
  color: #1e3a8a;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.roles-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.role-box {
  flex: 1 1 300px;
  padding: 2rem;
  min-width: 280px;
}

.role-left {
  background-color: #1e3a8a;
  color: #ffffff;
}

.role-right {
  background-color: #facc15;
  color: #111827;
}

.role-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.role-box ul {
  list-style-type: disc;
  padding-left: 1.2rem;
}

.role-box li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .roles-wrapper {
    flex-direction: column;
  }
}

.roles-resp-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.side-graphic {
  width: 120px;
  height: auto;
  opacity: 0.9;
}

.left-graphic {
  order: 1;
}

.roles-wrapper {
  order: 2;
  z-index: 1;
}

.right-graphic {
  order: 3;
}

@media (max-width: 768px) {
  .roles-resp-container {
    flex-direction: column;
  }

  .side-graphic {
    display: none;
  }
}

.benefits-section {
  padding-bottom: 60px;
  padding-top: 30x;
  background-color: #f8fafc;
  text-align: center;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.benefit-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 2rem 1.5rem;
  max-width: 220px;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1d4ed8;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.benefit-card p {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .benefit-card {
    max-width: 100%;
  }
}

.apply-section {
  padding: 30px 0;
  background: #ffffff;
}

.apply-section .section-title {
  color: #1e40af;
  margin-bottom: 2rem;
}

.form-actions {
  text-align: center;
  margin-top: 1.5rem;
}


