/* Global Styles */
* {
  box-sizing: border-box;
}
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #000;
  font-family: 'Rajdhani', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* Background effect */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #141414 25%, #000 75%);
  z-index: -1;
}

/* Header styling */
header {
  text-align: center;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 2px solid #222;
}
header h1 {
  font-size: 3rem;
  margin: 0;
  letter-spacing: 3px;
  
}
header .subtext {
  font-size: 1.2rem;
  margin: 10px 0;
  
}

/* Navigation styles */
nav {
  margin-top: 20px;
}
.nav-link {
  text-decoration: none;
  color: #4fc3f7;
  padding: 10px 20px;
  border: 1px solid #4fc3f7;
  border-radius: 25px;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-link:hover {
  background: #4fc3f7;
  color: #000;
}

/* Main content styling */
main {
  padding: 40px 20px;
  max-width: 960px;
  margin: 0 auto;
}
section {
  margin-bottom: 60px;
}
section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid #4fc3f7;
  display: inline-block;
  padding-bottom: 10px;
}
section p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 10px 0;
  text-align: justify;
}
.tagline {
  font-style: italic;
  text-align: center;
  margin-top: 20px;
}

/* Footer styling */
footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.85);
  border-top: 2px solid #222;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 0.9rem;
}

/* Animation classes */
.animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay animations for sequential effect */
.animate:nth-child(1) { animation-delay: 0.2s; }
.animate:nth-child(2) { animation-delay: 0.4s; }
.animate:nth-child(3) { animation-delay: 0.6s; }
.animate:nth-child(4) { animation-delay: 0.8s; }
.animate:nth-child(5) { animation-delay: 1s; }

/* Responsive adjustments */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.5rem;
  }
  section h2 {
    font-size: 2rem;
  }
  .nav-link {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}