* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(180deg, #0f172a, #020617);
  color: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

img {
  max-width: 100%;
  display: block;
}

/* ================= NAVBAR ================= */

header {
  position: sticky;
  top: 0;
  background: rgba(11,17,32,0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  transition: 0.3s;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 22px;
}

.logo span {
  color: #f97c33;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #f8fafc;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #3b82f6;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
}

/* ================= HERO ================= */

.hero {
  padding: 100px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-text p {
  color: #94a3b8;
  margin-bottom: 25px;
}

/* ================= BUTTON ================= */

.btn {
  background: #3b82f6;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.glow {
  box-shadow: 0 0 15px rgba(59,130,246,0.5);
}

.btn:hover {
  background: #2563eb;
}

/* ================= SERVICES ================= */

.services-preview {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #1e293b;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(59,130,246,0.2);
}

/* ================= CTA ================= */

.cta {
  padding: 80px 0;
  text-align: center;
}

.cta h2{
  margin-bottom: 20px;
}

/* ================= FOOTER ================= */

footer {
  padding: 20px 0;
  text-align: center;
  color: #94a3b8;
}

/* ================= REVEAL ================= */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 900px) {

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #0b1120;
    width: 200px;
    display: none;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
  }

  .hamburger {
    display: flex;
  }
}
