body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #111111;
  color: #ffffff;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
nav {
  background-color: #000000;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  height: 65px;
}

.logo {
  font-weight: 700;
  font-size: 1.6rem;
  background: linear-gradient(to right, #ff7f50, #32cd32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse-neon 3s ease-in-out infinite;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #ffffff;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.nav-links a:hover {
  background-color: #1c2e56;
  color: #ffcc00;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  top: 100%;
  left: 0;
  min-width: 160px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 999;
}

.dropdown-content li {
  padding: 0.5rem 1rem;
}

.dropdown-content li a {
  color: #fff;
  display: block;
  list-style-type: none;

}

.dropdown-content li a:hover {
  background-color: #1c2e56;
}

.dropdown:hover .dropdown-content {
  display: block;
  list-style-type: none;

}

/* Header & Video */
header {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-container video {
  width: 100%;
  height: 90%;
  object-fit: cover;
}

#video-text {
  position: absolute;
  top: 40%;
  left: 49%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  opacity: 0;
  animation: popUp 1s ease forwards;
  animation-delay: 19s;
  z-index: 2;
  max-width: 1000px;
  padding: 1rem;
}


#video-text h2 {
  font-size: 2.5rem;
  color: rgb(255, 174, 68);
  margin-bottom: 1rem;
}

#video-text strong {
color: #f3591c;
}




#video-text ul {
  list-style: none;
  padding: 0;
}

#video-text ul li {
  text-align: left;
  font-size: 1rem;
  padding: 5px 0;
}

section {
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: 2rem auto;
  border-radius: 12px;
  background: #3d3d3d;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

section h2 {
  color: #8c00ff;

  text-shadow: 0 0 10px #8400ff, 0 0 20px #9900ff;

font-size: 1.8em;
}

section:hover {

  color: rgb(255, 255, 255);
  text-shadow: 0 0 10px #df351e38, 0 0 20px #ffffff63;

}



section p{

font-size: 1.1em;
text-align: justify;

}





section:hover {
  transform: scale(1.02);
}

.content-box {
  background: #0a0606;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(255, 128, 44, 0.349);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.content-box:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 15px 40px rgba(146, 51, 234, 0.336);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #222;
  color: rgb(255, 255, 255);
  font-size: 0.9rem;
}

/* Animations */
@keyframes popUp {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes pulse-neon {
  0%, 100% {
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ff0000;
  }
  50% {
    text-shadow: 0 0 15px #ffffff, 0 0 30px #9333ea;
  }
}


/* Contact Form */
.contact-form {
  margin-top: 2rem;
  padding: 2rem;
  background: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}



.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #2d2d2d;
  color: #ffffff;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: #333;
  box-shadow: 0 0 8px #ff7f50;
}

.contact-form button {
  background-color: #ff7f50;
  color: #fff;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #ff4500;
}