@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* Header container */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 10px 80px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

/* Logo section */
.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 45px;
  height: 45px;
  margin-right: 10px;
  border-radius: 8px;
}

.logo h1 {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}

/* Navigation menu */
nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f36aff;
  text-shadow: 0 0 8px #f36aff;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px 30px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0d001a;
  color: #fff;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 22px;
  color: #a45cf8;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

nav ul li a:hover, nav ul li a.active {
  color: #a45cf8;
}

.btn {
  background: #a45cf8;
  padding: 8px 16px;
  border-radius: 6px;
}

/* Hero */
.hero {
  position: relative;
  background: url("https://images.unsplash.com/photo-1554224154-22dec7ec8818") center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 15px;
}

.hero-content p {
  color: #dcdcdc;
  font-size: 18px;
  margin-bottom: 25px;
}

.btn-primary {
  background: #a45cf8;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #8e43e7;
}

/* Cards Section */
.cards-section {
  text-align: center;
  padding: 100px 60px;
  background: #12002a;
}

.cards-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: #1e013f;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  font-size: 18px;
  margin: 15px;
  color: #fff;
}

.card p {
  font-size: 14px;
  color: #c3c3c3;
  margin: 0 15px 20px;
}
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 0 40px;
}

/* Footer */
footer {
  background: #0b0016;
  padding: 60px 80px 30px;
  color: #dcdcdc;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left h2 {
  color: #a45cf8;
}

.footer-right input {
  padding: 10px;
  border-radius: 6px;
  border: none;
  width: 250px;
  margin-top: 10px;
}

.footer-right button {
  padding: 10px 16px;
  background: #a45cf8;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.bottom-text {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #2a2a2a;
  margin-top: 40px;
  font-size: 14px;
}
footer {
  background: #120013;
  color: white;
  padding: 60px 80px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 50px;
  border-radius: 10px;
}

.footer-logo p {
  margin-top: 10px;
  color: #aaa;
}

.footer-links ul {
  list-style: none;
  margin-top: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ff4bff;
}

.footer-contact p {
  color: #aaa;
  margin-top: 8px;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  color: #777;
}
/* 🌙 Responsive Navbar Design */
@media (max-width: 900px) {
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    position: relative;
  }

  /* Hide normal menu */
  nav ul {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    border-radius: 10px;
    padding: 15px 0;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease-in-out;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    text-align: center;
    padding: 10px 0;
  }

  nav ul li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
  }

  /* Hamburger icon */
  .menu-toggle {
    display: block;
    font-size: 25px;
    cursor: pointer;
    color: #fff;
  }
}

/* Hide hamburger for desktop */
@media (min-width: 901px) {
  .menu-toggle {
    display: none;
  }

  nav ul {
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
  }
}
/* Animated lines background */
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
      60deg,
      rgba(255, 0, 255, 0.15) 0px,
      rgba(255, 0, 255, 0.15) 2px,
      transparent 2px,
      transparent 40px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(0, 200, 255, 0.15) 0px,
      rgba(0, 200, 255, 0.15) 2px,
      transparent 2px,
      transparent 40px
    );
  animation: moveLines 20s linear infinite;
  opacity: 0.3;
  z-index: 1;
}