/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #111;
  line-height: 1.8;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= HEADER ================= */

.site-header {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo img {
  height: 45px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #e60023;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ================= BUTTONS ================= */

.primary-btn {
  background: #111;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #e60023;
}

.outline-btn {
  border: 1px solid #111;
  padding: 14px 28px;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
}

.outline-btn:hover {
  border-color: #e60023;
  color: #e60023;
}

/* ================= HERO ================= */

.inner-hero {
  padding: 60px 0 30px;
  text-align: center;
}

.red-text {
  color: #e60023;
}

.hero {
  padding: 120px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 25px;
}

.hero-sub {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.stat-card {
  margin-bottom: 30px;
}

.stat-card h3 {
  font-size: 40px;
}

.stat-card p {
  font-size: 14px;
  color: #777;
}

/* ================= SECTIONS ================= */

.trust {
  background: #f7f7f7;
  padding: 100px 0;
  text-align: center;
}

.services,
.why,
.cta,
.page-hero,
.services-intro,
.services-list,
.about-overview,
.mission-vision,
.core-values {
  padding: 120px 0;
}

.section-title {
  font-size: 32px;
  margin-bottom: 60px;
  text-align: center;
}

.service-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.card h3 {
  margin-bottom: 15px;
}

/* ================= CTA ================= */

.cta {
  background: #f3f3f3;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

/* ================= FOOTER ================= */

.main-footer {
  background: #f5f2f2;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: #777;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  .logo img {
    height: 35px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 20px 0;
    text-align: center;
    list-style: none;
    margin: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .nav-links li {
    margin: 15px 0;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none !important;
    color: #111 !important;
    font-size: 16px;
    font-weight: 500;
  }

  .nav-links a:hover {
    color: #e60023 !important;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    padding: 80px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
  }

  .services,
  .why,
  .cta,
  .trust,
  .page-hero,
  .services-intro,
  .services-list,
  .about-overview,
  .mission-vision,
  .core-values {
    padding: 70px 0;
  }

  .service-grid,
  .services-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

}