/* ================= GENERAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f4f6f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
header {
  background: #0c1a2c;
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
}

.logo span {
  color: white;
  font-size: 18px;
  font-weight: bold;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  transition: 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
}

.hero-content {
  max-width: 650px;
}

.hero h1 {
  font-size: 46px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 25px;
}

.btn {
  background: #ffcc00;
  padding: 12px 26px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ffcc00;
  color: #ffcc00;
  margin-left: 10px;
}

/* ================= TRUCK ================= */
.truck {
  position: absolute;
  bottom: 0;
  height: 85px;
  animation: truckMove 14s linear infinite;
}

@keyframes truckMove {
  0% { left: -200px; }
  100% { left: 110%; }
}

/* ================= STATS ================= */
.stats {
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.stat-card {
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: .3s;
  border-top: 4px solid #ffcc00;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-card h2 {
  font-size: 42px;
  color: #0c1a2c;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 15px;
  color: #555;
}

/* ================= SERVICES ================= */
.services {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,.1);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  padding: 15px;
}

.card p {
  padding: 0 15px 20px;
}

/* ================= INDUSTRIES ================= */
.industries {
  background: #f8f8f8;
  padding: 80px 0;
}

.industry-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  text-align: center;
}

.industry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.industry-card h3 {
  padding: 15px;
}

/* ================= PARTNERS ================= */
.partners {
  background: #0c1a2c;
  padding: 70px 0;
}

.section-title.light {
  color: white;
}

.slider {
  overflow: hidden;
  margin-top: 30px;
}

.slider-track {
  display: flex;
  align-items: center;
  animation: scroll 28s linear infinite;
}

.brand {
  background: transparent;
  padding: 10px 25px;
  margin: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.brand img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.brand:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================= CTA ================= */
.cta {
  background: #ffcc00;
  padding: 70px 0;
  text-align: center;
}

.cta h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 20px;
}

/* ================= FOOTER ================= */
footer {
  background: #0c1a2c;
  color: white;
  padding: 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

footer a {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin-top: 6px;
}

footer a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
}

/* ================= CONTACT CARD ================= */
.contact-card h3 {
  margin-bottom: 15px;
  color: #0c1a2c;
}

.office-info {
  margin-bottom: 18px;
  line-height: 1.6;
  color: #444;
}

.office-title {
  display: block;
  font-weight: bold;
  color: #0c1a2c;
  margin-bottom: 4px;
}

.contact-card {
  background: #f8f9fb;
  padding: 25px;
  border-radius: 10px;
  border-top: 4px solid #ffcc00;
}

/* ================= MOBILE RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    margin-left: 0;
    margin-top: 8px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons a {
    margin-bottom: 10px;
    display: inline-block;
  }

  .stats-grid, .grid, .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .truck {
    height: 60px;
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    margin: 5px 0;
  }

  .hero h1 {
    font-size: 28px;
    text-align: center;
  }

  .hero p {
    font-size: 14px;
    text-align: center;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons a {
    margin: 5px 0;
  }

  .truck {
    height: 50px;
  }

  .card img, .industry-card img, .brand img {
    height: auto;
    max-width: 100%;
  }

  .stats-grid, .grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    text-align: center;
  }
}