.hero-section {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 0 24px;
  text-align: center;
}

.hero-video {
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 2, 2, 0.5);
  z-index: -1;
}

.glass-card {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 2.5rem;
  border-radius: 1rem;
  background: rgba(12, 10, 10, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
}

.glass-card h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #f2f2f2;
}

.glass-card p {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  color: #f2f2f2;
  margin-bottom: 2rem;
}

/*.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  text-align: center;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content .highlight {
  color: #5182EF;
}

.hero-content p {
  font-size: 1.5rem;
  line-height: 1.5;
  max-width: 90%;
} */

.btn-primary {
  padding: 12px 28px;
  background: linear-gradient(90deg, #FF0DF7, #1B2DFB);
  border: none;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-primary:hover {
  opacity: 0.85;
}

/* Tablet */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}

/* Mobile */
@media (max-width: 500px) {
  .hero-section {
    padding-top: 80px;
    padding-left: 16px;
    padding-right: 16px;
  }
 
  .glass-card h1 {
  font-size: 1.5rem;
}
 
.glass-card p {
  font-size: 1rem;
 
}
 
  .btn-primary {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}