/* Modern Hero Section Styles */
.modern-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/images/varify-hero.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  overflow: hidden;
  z-index: 0;
}

/* Force background image visibility */
body {
  margin: 0;
  padding: 0;
}

/* Override any conflicting backgrounds */
.verify-main {
  background: none !important;
}

/* Ensure background image is visible */
body {
  margin: 0;
  padding: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(26, 26, 46, 0.7) 0%, 
    rgba(74, 16, 96, 0.6) 50%, 
    rgba(45, 27, 0, 0.5) 100%
  );
  z-index: 2;
}

.tech-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0.3;
}

.tech-line {
  position: absolute;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(139, 47, 201, 0.6), 
    transparent
  );
}

.tech-line:nth-child(1) {
  top: 20%;
  left: -100%;
  width: 200%;
  height: 1px;
  transform: rotate(-5deg);
  animation: slideLine 8s ease-in-out infinite;
}

.tech-line:nth-child(2) {
  top: 60%;
  left: -100%;
  width: 200%;
  height: 1px;
  transform: rotate(3deg);
  animation: slideLine 10s ease-in-out infinite reverse;
}

.tech-line:nth-child(3) {
  top: 80%;
  left: -100%;
  width: 200%;
  height: 1px;
  transform: rotate(-2deg);
  animation: slideLine 12s ease-in-out infinite;
}

@keyframes slideLine {
  0%, 100% {
    transform: translateX(0) rotate(-5deg);
  }
  50% {
    transform: translateX(50px) rotate(-5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
}

.shield-icon {
  margin-bottom: 2rem;
  animation: float 4s ease-in-out infinite;
}

.shield-icon svg {
  width: 80px;
  height: 80px;
  color: white;
  filter: drop-shadow(0 4px 20px rgba(139, 47, 201, 0.3));
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 10px 20px rgba(139, 47, 201, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 15px 30px rgba(139, 47, 201, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.verify-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modern-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modern-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.modern-input:focus {
  outline: none;
  border-color: rgba(139, 47, 201, 0.8);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(139, 47, 201, 0.3);
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 1rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.qr-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.qr-option:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.qr-icon {
  width: 20px;
  height: 20px;
}

.gradient-button {
  background: linear-gradient(135deg, #8B2FC9 0%, #E91E8C 50%, #F5A623 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 47, 201, 0.3);
  position: relative;
  overflow: hidden;
}

.gradient-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent
  );
  transition: left 0.6s ease;
}

.gradient-button:hover::before {
  left: 100%;
}

.gradient-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 47, 201, 0.4);
}

.gradient-button:active {
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    padding: 1rem;
    max-width: 400px;
  }
  
  .glass-card {
    padding: 2rem;
    border-radius: 20px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .shield-icon svg {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 1rem;
    max-width: 320px;
  }
  
  .glass-card {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .gradient-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}
