/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d001a;
  color: #fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #e252ff;
}

.logo img { width: 35px; }

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links a:hover { color: #00ffff; }

.dashboard-btn {
  padding: 8px 20px;
  border: 2px solid #e252ff;
  border-radius: 20px;
  color: #e252ff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.dashboard-btn:hover {
  background-color: #e252ff;
  color: #fff;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #e252ff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* FEATURES LIST */
.features-list {
  text-align: center;
  padding: 2rem 5%;
}

.feature-item h3 {
  color: #ff00ff;
  font-size: 2rem;
}

/* IMAGE GRID */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 15px;
  transition: transform 0.3s, background 0.3s;
}

.grid-item:hover {
  transform: translateY(-10px);
  background: rgba(0, 255, 255, 0.1);
}

.grid-item img {
  width: 100%;
  max-width: 250px;
  border-radius: 15px;
  object-fit: cover;
  margin-bottom: 1rem;
  height: 100%;
}

/* STATS COUNTER */
.stats-section {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 5%;
  text-align: center;
}

.stat-box h2 {
  font-size: 2rem;
  color: #00ffff;
}

.stat-box p { font-size: 1rem; }

/* MARQUEE */
.marquee-section {
  margin-top: 2rem;
  overflow: hidden;
}

.marquee {
  background-color: #000;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.marquee-content {
  display: inline-block;
  font-size: 1.5rem;
  color: cyan;
  animation: scrollLeft 15s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 5%;
    background: rgba(0,0,0,0.8);
    padding: 1rem;
    border-radius: 10px;
    display: none;
  }

  .nav-links.active { display: flex; }

  .hamburger { display: flex; }

  .image-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

  .stats-section { flex-direction: column; gap: 2rem; }
}
