* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #050505;
  color: #fff;
  overflow-x: hidden;
}

.grid-bg {
  position: fixed;
  inset: 0;
  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;
  z-index: -2;
}

.hero .glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 170, 0, 0.35) 0%,
    rgba(255, 170, 0, 0) 70%
  );
  filter: blur(120px);
  z-index: -1;
}

.navbar nav a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffaa00;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 170, 0, 0.35), transparent 70%);
  filter: blur(120px);
  z-index: -1;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 25px;
  color: #aaa;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 60px;
}

.accent {
  color: #ffaa00;
}

.hero p {
  margin-top: 25px;
  color: #aaa;
  font-size: 18px;
  line-height: 1.6;
}

.hero-content p {
  text-align: center;
}
.story {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 140px 80px;
  flex-wrap: wrap;
}

.story-left {
  max-width: 500px;
}

.story-left h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 30px;
}

.story-left p {
  margin-bottom: 20px;
  color: #aaa;
  line-height: 1.6;
}

.story-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stat h3 {
  font-size: 50px;
  color: #ffaa00;
}

.stat span {
  color: #aaa;
}

.expertise {
  padding: 140px 80px;
  text-align: center;
}

.expertise-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.expertise-card {
  background: #0c0c0c;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.4s;
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 170, 0, 0.4);
}

.timeline-section {
  padding: 140px 80px;
  text-align: center;
}

.timeline {
  margin-top: 60px;
}

.timeline-item {
  margin-bottom: 50px;
}

.timeline-item span {
  color: #ffaa00;
  font-size: 14px;
}

.timeline-item h3 {
  margin-top: 10px;
}

.cta {
  padding: 140px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.btn-primary {
  background: #ffaa00;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  color: black;
  display: inline-block;
}

footer {
  text-align: center;
  padding: 40px;
  font-size: 14px;
  color: var(--text-muted);
}


@media (max-width: 1024px) {
  section {
    padding: 100px 50px;
  }

  .story {
    gap: 60px;
  }
}



@media (max-width: 900px) {
  .story {
    flex-direction: column;
    text-align: center;
    padding: 100px 30px;
  }

  .story-left {
    max-width: 100%;
  }


  .expertise-grid {
    grid-template-columns: 1fr;
  }


  .hero h1 {
    font-size: 42px;
  }
}


@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  section {
    padding: 80px 25px;
  }

}
