/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #e252ff;
}
.logo img {
  width: 35px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  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; /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 101; /* above nav */
}

.hamburger span {
  display: block;
  height: 3px;
  background: #e252ff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger open/close animation */
.rotate1 { transform: rotate(45deg) translate(5px, 5px); }
.rotate2 { transform: rotate(-45deg) translate(5px, -5px); }
.fade { opacity: 0; }

/* HERO SECTION */
.hero {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 4rem 5%;
  min-height: 80vh;
}
.hero-content {
  grid-column: 1 / span 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-content h1 span {
  color: #00ffff;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.cta-btn {
  background-color: transparent;
  border: 2px solid #00ffff;
  padding: 10px 25px;
  color: #00ffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1rem;
  transition: 0.3s ease;
}
.cta-btn:hover {
  background-color: #00ffff;
  color: #000;
}

/* HERO IMAGE */
.hero-image {
  grid-column: 8 / span 5;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.3s;
}
.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.hero-image img:hover {
  transform: scale(1.05);
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 10px 0;
  background: rgba(0,0,0,0.6);
}
.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* STATISTICS SECTION */
.stats-section {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 50px 5%;
  background: rgba(255,255,255,0.05);
}
.stat-number {
  font-size: 2.5rem;
  color: #00ffff;
}
.stat-label {
  font-size: 1rem;
  margin-top: 5px;
}

/* CONTENT SECTION */
.content-section {
  padding: 50px 5%;
  text-align: center;
}
.content-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.content-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.learn-btn {
  background-color: #00ffff;
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
.learn-btn:hover {
  background-color: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
}

/* FEATURES SECTION */
.features-container, .features-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 50px 5%;
}
.feature-item {
  flex: 1 1 30%;
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 15px;
}
.feature-item h3 {
  margin-bottom: 15px;
  color: #00ffff;
}
.feature-item p {
  font-size: 1rem;
}

/* COLLABORATION SECTION */
.collaboration-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 50px 5%;
  gap: 2rem;
  align-items: center;
}
.collaboration-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.image-box img {
  width: 20%;
}
.collaboration-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.collaboration-info p {
  margin-bottom: 20px;
}
.collaboration-info .cta-button {
  padding: 10px 25px;
  border-radius: 30px;
  background-color: #00ffff;
  color: #000;
  text-decoration: none;
}
.collaboration-info .cta-button:hover {
  background-color: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
}

/* IMAGE SLIDER */
.image-slider {
  overflow: hidden;
  padding: 30px 5%;
  background: rgba(255,255,255,0.05);
}
.image-container {
  display: flex;
  animation: slide 20s linear infinite;
}
.image-container img {
  width: 250px;
  margin-right: 20px;
  border-radius: 15px;
}
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SOCIAL SECTION */
.social-section {
  padding: 50px 5%;
  text-align: center;
}
.social-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.social-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  transition: 0.3s;
}
.social-grid a:hover {
  background: #00ffff;
  color: #000;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .hero-image {
    grid-column: 2 / -1;
    margin-top: 2rem;
    transform: translateX(0);
    animation: none;
  }
  .collaboration-section {
    grid-template-columns: 1fr;
  }
  .features-container, .features-list {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 20px;
  }

  /* NAV LINKS */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
    text-align: center;
    background-color: #000;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 0;
    z-index: 100;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 10px 0;
  }
  .nav-links a {
    font-size: 18px;
    color: #fff;
  }

  /* HAMBURGER */
  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }
  .hero-content {
    grid-column: 1 / -1;
    text-align: center;
  }
  .hero-image {
    grid-column: 1 / -1;
    margin-top: 1.5rem;
  }
  .marquee-content {
    font-size: 0.9rem;
  }
  .stats-section {
    flex-direction: column;
    gap: 20px;
  }
  .features-container, .features-list {
    gap: 15px;
  }
  .image-container img {
    width: 200px;
  }
  .social-grid {
    flex-direction: column;
  }
}
