* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #050505;
  color: white;
  overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -2;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 85, 0.2), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0, 183, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #050505, #0a0a0a, #111111);
}

.bg-animation::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: moveGrid 15s linear infinite;
}

@keyframes moveGrid {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-60px, -60px);
  }
}

/* Navbar */
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(15px);
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255,0,85,0.5));
}

.logo h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo h2::first-letter {
  color: #ff0055;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ff0055;
}

.nav-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(135deg, #ff0055, #ff4d88);
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255,0,85,0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding-top: 120px;
}

.hero-content {
  flex: 1;
}

.mini-title {
  color: #ff0055;
  margin-bottom: 20px;
  letter-spacing: 3px;
  font-size: 0.9rem;
}

.hero-content h1 {
  font-size: 5.5rem;
  line-height: 1;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 30px;
}

.hero-content h1 span {
  color: #ff0055;
  text-shadow: 0 0 20px rgba(255,0,85,0.8);
}

.hero-text {
  max-width: 650px;
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn,
.secondary-btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.primary-btn {
  border: none;
  background: linear-gradient(135deg, #ff0055, #ff4d88);
  color: white;
  box-shadow: 0 0 25px rgba(255,0,85,0.35);
}

.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(255,0,85,0.6);
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: white;
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}

/* Glass Card */
.glass-card {
  width: 420px;
  position: relative;
  padding: 40px;
  border-radius: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  overflow: hidden;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.card-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255,0,85,0.3);
  border-radius: 50%;
  filter: blur(80px);
  top: -80px;
  right: -80px;
}

.glass-card h2 {
  font-size: 3rem;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 20px;
}

.glass-card p {
  color: #d6d6d6;
  line-height: 1.8;
  margin-bottom: 30px;
}

.stats {
  display: flex;
  justify-content: space-between;
}

.stats h3 {
  color: #ff0055;
  font-size: 2rem;
}

.stats span {
  color: #bcbcbc;
}

/* Sections */
section {
  padding: 120px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title p {
  color: #ff0055;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 3rem;
  font-family: 'Orbitron', sans-serif;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.about-box {
  padding: 40px;
  border-radius: 25px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
}

.about-box:hover {
  transform: translateY(-15px);
  background: rgba(255,255,255,0.08);
}

.icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-box h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.about-box p {
  color: #d0d0d0;
  line-height: 1.7;
}

/* Services */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 50px 40px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255,0,85,0.18);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  filter: blur(50px);
}

.service-card:hover {
  transform: scale(1.04);
}

.service-card h3 {
  margin-bottom: 20px;
  font-size: 1.7rem;
}

.service-card p {
  line-height: 1.8;
  color: #d0d0d0;
}

/* Fu
/* COMING SOON */
.coming-soon {
  text-align: center;
  padding: 80px 8%;
}

.coming-soon h1 {
  font-size: 3.5rem;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 5px;
  color: transparent;
  -webkit-text-stroke: 1px #ff0055;
  text-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
}

/* CONTACT FORM */
.contact-form {
  padding: 120px 8%;
  text-align: center;
}

.contact-form form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: white;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff0055;
  box-shadow: 0 0 15px rgba(255,0,85,0.3);
}

.contact-form button {
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff0055, #ff4d88);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255,0,85,0.5);
}

/* FOOTER IMPROVEMENT */
footer {
  text-align: center;
  padding: 60px 8%;
  background: rgba(0,0,0,0.6);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-line {
  width: 150px;
  height: 2px;
  background: #ff0055;
  margin: 20px auto;
  box-shadow: 0 0 20px rgba(255,0,85,0.5);
}
/* =========================
   RESPONSIVE DESIGN
   ========================= */

/* Tablets */
@media (max-width: 1024px) {

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 4rem;
  }

  .glass-card {
    width: 90%;
  }

  .nav-links {
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 140px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-text {
    font-size: 1rem;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .glass-card {
    width: 100%;
    padding: 25px;
  }

  .stats {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .logo h2 {
    font-size: 1.5rem;
  }

  .nav-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .about-box,
  .service-card {
    padding: 25px;
  }

  .coming-soon h1 {
    font-size: 2.5rem;
  }
}
/* =========================
   HAMBURGER MENU
   ========================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 5px;
  transition: 0.3s;
}

/* Mobile menu hidden state */
.nav-links {
  transition: all 0.3s ease;
}

/* TABLET + MOBILE */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;

    transform: translateY(-200%);
    opacity: 0;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .navbar {
    position: relative;
  }

  .nav-btn {
    display: none; /* optional: clean mobile look */
  }
}