/* ================================
   General Styles
================================ */
body {
  font-family: Arial, sans-serif;
  color: #4d2170;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  position: relative;
  overflow-x: hidden;
}

/* ================================
   Background Video
================================ */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ================================
   Header Text
================================ */
.brand-name {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #923389;
  letter-spacing: 2px;
  text-align: center;
}

.tagline-line {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #453081;
  text-align: center;
  line-height: 1.4;
  z-index: 1;
  position: relative;
}



/* ================================
   Navbar
================================ */
.custom-nav {
  border: 2px solid #923389;
  border-radius: 20px;
  padding: 10px 20px;
  margin-top: 20px;
  text-align: center;
  backdrop-filter: blur(6px);
  z-index: 1;
  position: relative;
}

.custom-nav a {
  color: #453081;
  font-weight: bold;
  margin: 0 20px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.custom-nav a:hover,
.custom-nav a.active {
  color: #453081;
  border-bottom: 2px solid #923389;
}

/* ================================
   Buttons
================================ */
.text-end .btn-orange {
  margin-left: 10px;
  padding: 8px 20px;
  border: none;
  background: #923389;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1;
  position: relative;
}

.text-end .btn-orange:hover {
  background: #453081;
  transform: translateY(-2px);
}

.btn-white-orange {
  background: #fff;
  color: #453081;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 25px;
  border: 2px solid #923389;
  transition: 0.3s;
  z-index: 1;
  position: relative;
}

.btn-white-orange:hover {
  background: #923389;
  color: #fff;
  border: 2px solid #453081;
}

/* ================================
   Hero Section
================================ */
.hero-box h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: 1px;
  color: #453081;
  z-index: 1;
  position: relative;
}

.hero-box p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #923389;
  margin-top: 15px;
  z-index: 1;
  position: relative;
}

.btn-start-learning {
  background: #fff;
  color: #453081;
  font-weight: bold;
  border-radius: 12px;
  padding: 12px 30px;
  border: 2px solid #923389;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  z-index: 1;
  position: relative;
}

.btn-start-learning:hover {
  background: #923389;
  color: #fff;
  border: 2px solid #453081;
  transform: translateY(-3px);
}


/* ================================
   Info Boxes
================================ */
.info-box {
  background: #453081;
  color: #fff;
  border-radius: 15px;
  padding: 25px;
  transition: 0.3s;
  z-index: 1;
  position: relative;
}

.info-box i {
  color: #453081;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ================================
   Footer
================================ */
footer {
  margin-top: auto;
  background: #923389;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ================================
   Forms
================================ */
#formContainer {
  position: absolute;
  top: 50px;
  right: 0;
  width: 550px;
  max-width: 90%;
  z-index: 1000;
}

.form-card {
  background: #453081;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
  color: #fff;
  transition: all 0.3s ease;
}

#formContainer .form-card {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
}

#formContainer .form-card.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.form-card h2, .form-card h4 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Password visibility toggle */
.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5;
  color: #888;
}

/* Submit Button */
.form-card .btn-orange {
  width: 100%;
  font-weight: bold;
  padding: 12px;
}

/* ================================
   Form Link Text (Updated)
================================ */
.form-card p {
  color: #eee;
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.form-card p a {
  color: #fff; /* violet/purple link */
  font-weight: 600;
  text-decoration: none;
}

.form-card p a:hover {
  color: #fff; /* brighter violet on hover */
  text-decoration: underline;
}

