 /* General Styles */
 body {
  font-family: 'Poppins', sans-serif;
  background-color: #050607;
  color: #fff;
}
@keyframes slideDown {
  from {
    padding-top: 0;
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    padding-top: 400px;
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate {
  animation: slideDown 2s ease-out forwards;
}

.hero-content {
  padding-top: 0;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 1.5s ease-out;
}

.hero-content.down {
  padding-top: 400px;
  opacity: 1;
  transform: translateY(0);
}

.hero-content.up {
  padding-top: 0;
  opacity: 0.5;
  transform: translateY(-50px);
}

/* Neon Green Accent */
.text-neon {
  color: #7FFF6E !important;
}

.btn-neon {
  background: linear-gradient(90deg, #7FFF6E, #45d86b);
  color: #000 !important;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

.btn-neon:hover {
  background: linear-gradient(90deg, #45d86b, #7FFF6E);
  transform: translateY(-2px);
}

.btn-transparent {
  background: transparent;
  color: #fff !important;
  font-weight: 300;
  border: 1px solid #fff;
  transition: 0.3s ease;
}

.btn-transparent:hover {
  background: linear-gradient(90deg, #45d86b, #7FFF6E);
  transform: translateY(-2px);
}

/* Video Background Section */
.video-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
/* Sound Notification */
.sound-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #7FFF6E;
  padding: 15px 20px;
  border-radius: 10px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(127, 255, 110, 0.3);
  animation: fadeInOut 3s forwards;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-20px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-20px); }
}
/* Dark Sections */
.dark-section {
  background-color: #050607;
}

/* Connect Section */
.connect-section {
  background-image: url('../img/landing_page/vector_7.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.connect-section .form-control {
  border: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.connect-section .btn-dark {
  background-color: #000;
  color: #7FFF6E;
  font-weight: 600;
}

.connect-section form label {
  width: 100%;
  text-align: left;
}

.submit-btn-1, .submit-btn-2{
  background-color: rgba(0, 0, 0, 0.214);
  color: white;
  border: 1px solid white;
  font-weight: 600;
  width: 150px;
  border-radius: 50px;
}

.submit-btn-1:hover, .submit-btn-2:hover{
  background-color: white;
  color: grey;
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.vector-1 img{
  width: 400px;
  height: 300px;   
}

.section-2 .vector-3 {
  width: 100%;
  height: 700px;
}

.section-3 .vector-4 {
  width: 80%;
  height: 400px;
}

.section-3 .first{
  background-image: url('../img/landing_page/vector_6.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
  .vector-1 img{
      width: 300px;
      height: 200px;   
  }
  
  .section-2 .vector-3 {
      display: none;
  }
  
  .section-3 .vector-4 {
      width: 80%;
      height: 300px;
  }
  
  .form-2{
      margin-top: 40px;
  }
  .sound-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    font-size: 0.9rem;
  }
}