/* Full-page layout */
body, html {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Video background */
#bgVideo {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.5);
  z-index: -1;
} 

/* google font*/
.share-tech-regular {
  font-family: "Share Tech", sans-serif;
  font-weight: 600;
  font-style: normal;
font-size: 5rem;   /* bigger size */
  font-weight: 700;  /* bold */
  line-height: 1.2;
}
.hero-desc {
  font-size: 1.5rem; /* smaller size than heading */
  font-weight: 400;
  line-height: 1.5;
}
.hero-mem {
  font-size: 2rem; /* smaller size than heading */
  font-weight: 400;
  line-height: 1.5;
}
 
/* HERO container consist of lets go to login card*/
.hero-container {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  max-width: 600px;
  text-align: center;
}

.hero-card {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none; /* prevent interaction when hidden*/ 
}

.hero-card.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto; /* allow interaction when active*/
}


/* Navbar layout */
.nav-custom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.nav-custom .container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.right-links {
  position: absolute;
  right: 20px;
}

/* Logo styles */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-img {
  height: 110px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(255,255,255,0.2);
}
.brand-text {
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.4rem;
  text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

/* Hero glass card */
.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 60px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: inline-block;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}
.glass-card h1 { margin-bottom: 20px; }
.glass-card p { margin-bottom: 30px; }
.glass-card .btn {
  box-shadow: 0 6px 28px rgba(255,193,7,0.25);
  transition: transform 0.3s ease;
}
.glass-card .btn:hover { transform: scale(1.05); }

/* Glassmorphism card for login */
.login-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  max-width: 400px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* Input fields */
.login-card input {
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #fff;
}

.login-card input::placeholder {
  color: rgba(255,255,255,0.7);
}

/* Button hover */
.login-card button:hover {
  background: #ffc107;
  color: #111;
}


/* Footer */
.footer {
  color: #fff;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 5;
}

/* Responsive */
@media (max-width: 767px) {
  .logo-img { height: 120px; }
  .glass-card { padding: 20px 30px; max-width: 90%; }
  .right-links { display: none; }
  .hero { padding: 0 20px; }
}

