/* Reset */
html, body {
  height: 100%;
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Section wrapper */
.banner-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Video full screen */
.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

/* Content center */
.home-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

/* Heading */
.main-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Paragraph */
.subtitle {
  font-size: 1.2rem;
  max-width: 650px;
  margin-top: 15px;
}

/* Register button */
.register-btn {
  display: inline-block;
  margin: 30px;
  padding: 12px 38px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #0d6efd, #084298);
  border-radius: 30px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
}

/* Hover effect */
.register-btn:hover {
  background: linear-gradient(135deg, #084298, #0d6efd);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.45);
  color: #ffffff;
}

/* Blinking text */
.blink-text {
  margin-top: 40px;
  font-size: 4rem;
  color: #ffd966;
  animation: blink 2.5s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* Mobile fix */
@media (max-width: 768px) {
  .banner-section {
    height: 100svh;
  }

  .main-title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}

/* 
.heading-text {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
} */

.heading-text {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Subtle glow effect */
.heading-text::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #ffd966);
  margin: 12px auto 0;
  border-radius: 10px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .heading-text {
    font-size: 2.2rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 468px) {

.blink-text{
 margin-top: 20px;
  font-size: 2rem;
}
.home-content{
  justify-content:flex-start
}
}