/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #222;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.05) 26%, transparent 27%, transparent 74%, rgba(255,255,255,0.05) 75%, rgba(255,255,255,0.05) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.05) 26%, transparent 27%, transparent 74%, rgba(255,255,255,0.05) 75%, rgba(255,255,255,0.05) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
  min-height: 100vh;
  overflow-x: hidden;
  animation: gridMove 10s linear infinite;
}

/* Animated grid */
@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

/* Navbar */
.navbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.3s;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #5da6ff;
  text-decoration: none;
  letter-spacing: 1px;
  transition: text-shadow 0.3s;
}

.nav-logo:hover {
  text-shadow: 0 0 10px #5da6ff;
}

.nav-right .nav-link {
  color: #aaa;
  text-decoration: none;
  margin-left: 30px;
  font-size: 1rem;
  transition: color 0.2s, text-shadow 0.3s;
}

.nav-right .nav-link:hover,
.nav-right .nav-link.active {
  color: #5da6ff;
  text-shadow: 0 0 8px #5da6ff;
}

/* Feature Section */
.feature-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 20px;
  text-align: center;
}

.feature-box {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  transition: all 0.3s ease;
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
}

.feature-box:hover {
  border-color: #4e8cff;
  box-shadow: 0 0 15px #4e8cff;
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  color: #4e8cff;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #7baeff;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
