* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #08101c;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section {
  padding: 90px 0;
}

.tag {
  color: #00d9ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-head h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.section-desc {
  color: #a8b3c7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: #00d9ff;
  color: #04111a;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 217, 255, 0.25);
}

.btn-outline {
  border-color: rgba(255,255,255,0.15);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  border-color: #00d9ff;
  color: #00d9ff;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 16, 28, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  color: #dbe4f5;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #00d9ff;
}

.nav-cta {
  display: inline-flex;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-btn span {
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  border-radius: 10px;
}

.hero {
  padding: 80px 0 70px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 90px);
}

.hero-text h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero-desc {
  color: #a8b3c7;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
}

.stat-box h3 {
  color: #00d9ff;
  margin-bottom: 6px;
  font-size: 22px;
}

.stat-box p {
  color: #dbe4f5;
  font-size: 14px;
}

.trust-strip {
  padding-bottom: 10px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  text-align: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dbe4f5;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 26px;
  transition: 0.3s ease;
}

.card:hover,
.project-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,217,255,0.35);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.card p {
  color: #a8b3c7;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  transition: 0.3s ease;
}

.project-video {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #000;
}

.project-body {
  padding: 22px;
}

.project-body h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.project-body p {
  color: #a8b3c7;
}

.about-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}

.about-text h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.about-text p {
  color: #a8b3c7;
  margin-bottom: 14px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 26px;
  transition: 0.3s ease;
}

.contact-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.contact-card p {
  color: #dbe4f5;
  margin-bottom: 10px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  background: #0d1522;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-family: inherit;
  outline: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(0,217,255,0.45);
}

.footer {
  padding: 35px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #060c15;
}

.footer h3 {
  color: #00d9ff;
  font-size: 24px;
  margin-bottom: 10px;
}

.footer p {
  color: #a8b3c7;
}

.copy {
  margin-top: 8px;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero-wrap,
  .about-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .projects-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text,
  .about-text {
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 4%;
    right: 4%;
    background: #0b1320;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-menu.show {
    display: flex;
  }

  .services-grid,
  .projects-grid,
  .trust-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .section-head h2,
  .about-text h2 {
    font-size: 30px;
  }

  .project-video {
    height: 210px;
  }
}

@media (max-width: 560px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}