/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #ffffff;
}

/* Header */
header {
  background-color: #000000;
  padding: 20px;
  text-align: center;
}

header h1 {
  color: #3399ff;
  font-size: 2.5rem;
  text-shadow: 0 0 10px #3399ff;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #3399ff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #3399ff;
}

/* Hero Section with Gradient Overlay */
.hero.full-hero {
  position: relative;
  height: 90vh;
  background: linear-gradient(
      to bottom right,
      rgba(0, 0, 64, 0.8),
      rgba(0, 0, 0, 0.8)
    ),
    url("assets/INDIA.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10%;
  animation: fadeIn 2s ease-in-out;
}

.hero .overlay {
  text-align: left;
  max-width: 600px;
  animation: slideIn 1s ease-in-out;
}

.hero-text h2 {
  font-size: 3rem;
  color: #3399ff;
  margin-bottom: 15px;
  text-shadow: 0 0 12px #3399ff;
}

.hero-text p {
  font-size: 1.3rem;
  color: #e0e0e0;
  line-height: 1.6;
}


/* Footer */
footer {
  background-color: #000000;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #999;
  border-top: 1px solid #222;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  nav a {
    display: inline-block;
    margin: 10px;
    font-size: 0.95rem;
  }
}
