* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0b0b10;
  color: #eaeaf0;
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 16px 40px;
  background: rgba(10, 10, 18, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}
.logo span {
  color: #8b5cf6;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links a {
  color: #eaeaf0;
  text-decoration: none;
}
.btn-nav {
  background: #8b5cf6;
  padding: 8px 16px;
  border-radius: 20px;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: radial-gradient(circle at top, #2a124f, #0b0b10);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 40px;
}

.hero-content h1 {
  font-size: 46px;
}
.hero-content p {
  margin-top: 12px;
  opacity: 0.85;
}

.btn-primary {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* SECTIONS */
.section {
  padding: 100px 60px;
}
.section.dark {
  background: #11111a;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ABOUT */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.about-image {
  height: 600px;
  background: linear-gradient(135deg, #2a124f, #11111a);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: #1a1a28;
  padding: 30px;
  border-radius: 18px;
}

/* COVERAGE */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.coverage-box {
  background: #1a1a28;
  padding: 24px;
  text-align: center;
  border-radius: 16px;
}

/* CONTACT */
.contact-box {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #07070c;
  padding: 80px 60px 40px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-copy {
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-wrapper,
  .service-grid,
  .coverage-grid,
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0b0b10;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    display: none;
  }
  .nav-links.active {
    display: flex;
  }

  .about-wrapper,
  .service-grid,
  .coverage-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 24px;
  }

  .hero-content h1 {
    font-size: 34px;
  }
}
