/* ===== RESET (SAFE) ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE ===== */
html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #E8F5E9;
  color: #2d3748;
}

/* ✅ NAVBAR SAFE LAYER */
#navbar-container {
  width: 100%;
  position: relative;
  z-index: 999;
}

/* ===== MAIN CONTAINER ===== */
.webinar-container {
  max-width: 900px;

  /* 🔥 navbar ke niche push */
  margin: 100px auto 40px;

  padding: 20px;
}

/* ===== TITLE ===== */
.webinar-container .title {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: left;
}

/* ===== CARD ===== */
.webinar-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  margin-bottom: 25px;

  transition: all 0.3s ease;

  /* Animation */
  opacity: 0;
  transform: translateY(40px);
  animation: webinarFadeUp 0.8s ease forwards;
}

/* Hover Effect */
.webinar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ===== CARD TEXT ===== */
.webinar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.webinar-card p {
  color: #555;
  margin-bottom: 20px;
}

/* ===== BUTTON ===== */
.webinar-btn {
  display: inline-block;
  background: #156066;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover */
.webinar-btn:hover {
  background: #0F8F78;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* ===== ANIMATION ===== */
@keyframes webinarFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .webinar-container {
    margin: 80px 15px 30px;
    padding: 15px;
  }

  .webinar-container .title {
    font-size: 1.8rem;
  }

}
