@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 {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #111);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 40px;
  min-height: 100vh;
  background: #000; 
  color: #fff;
  position: relative;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

.hero-content h4 {
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0.8;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 15px 0;
}

.hero-content h1 span {
  color: #fff;
  text-shadow: 0 0 15px #ff4ec8, 0 0 25px #4eb5ff;
}

.hero-content p {
  margin: 20px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

.hero-content .highlight {
  color: #4eb5ff;
  font-weight: bold;
  text-shadow: 0 0 8px #4eb5ff;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #ff4ec8;
  border-color: #ff4ec8;
  color: #fff;
  box-shadow: 0 0 15px #ff4ec8;
}

.hero-image {
  max-width: 450px;
  margin-top: 40px;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.7));
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-image {
    max-width: 300px;
    margin: 20px auto 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}



/* glowing bg orbs */
body::before, body::after {
  content: '';
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.3;
  z-index: 0;
  animation: float 10s infinite alternate ease-in-out;
}
body::before {
  top: -100px;
  left: -150px;
  background: #ff4ec8;
}
body::after {
  bottom: -150px;
  right: -150px;
  background: #4eb5ff;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

/* Navbar */
.navbar {
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  position: fixed;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.logo img {
  height: 40px;   /* adjust size */
  width: auto;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #ff4ec8;
}
/* Glow effect for big title */
.glow-text {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 30px #4eb5ff, 0 0 45px #4eb5ff;
  opacity: 0;
  animation: fadeUp 1.5s ease-out forwards;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.5s ease-out forwards;
}

.fade-in.delay {
  animation-delay: 0.8s;
}

.fade-in.delay2 {
  animation-delay: 1.2s;
}

/* Keyframes for smooth fade */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}


/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 80px;
  background: url('background.jpg') no-repeat center center/cover;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 1;
}

.tagline {
  font-size: 1.5rem;
  color: #aaa;
  margin-bottom: 10px;
}

.title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.description {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff4ec8;
  border-color: #ff4ec8;
  color: #fff;
  box-shadow: 0 0 15px #ff4ec8;
}
.right-image {
  position: absolute;  /* stays relative to its parent container */
  top: 100px;          /* adjust downwards */
  right: 50px;         /* adjust from the right edge */
}

.right-image img {
  width: 200px;   /* size control */
  height: auto;
}


/* Info Section */
.info {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  z-index: 1;
  background: #0f0f0f;
}

.info-box {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 0 15px rgba(255,255,255,0.05);
  transition: 0.3s;
}

.info-box:hover {
  box-shadow: 0 0 25px rgba(255, 78, 200, 0.4);
}

.info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ff4ec8;
}

.info-box p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

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;
}