/* Global Styles */
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fc;
  color: #222;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #00317a;
  padding: 15px 10%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.logo a {
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00bfff;
}

.btn-nav {
  background: #e63946;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
}

/* Hero */
.hero {
  background: url("images/delivery.jfif") no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 10px;
}

.hero h1 {
  font-size: 2.5rem;
  text-shadow: 2px 2px 5px #000;
}

.hero p {
  margin: 20px 0;
  font-size: 1.2rem;
}

.btn-primary {
  background: #e63946;
  padding: 12px 25px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #d62828;
}

/* Sections */
section {
  padding: 60px 10%;
}

h2 {
  color: #00317a;
  margin-bottom: 20px;
}

/* Services */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-5px);
}

/* Footer */
footer {
  background: #00317a;
  color: white;
  padding: 40px 10%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-container h4 {
  margin-bottom: 10px;
}

.footer-container ul {
  list-style: none;
  padding: 0;
}

.footer-container ul li {
  margin: 5px 0;
}

.footer-container ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-container ul li a:hover {
  color: #00bfff;
}

.social-icons img {
  width: 24px;
  margin-right: 10px;
}


/* ===========================
   Responsive Media Queries
   =========================== */

/* Tablets (max-width: 991px) */
@media (max-width: 991px) {
  .navbar {
    padding: 15px 5%;
  }
  .nav-links {
    gap: 15px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  section {
    padding: 40px 5%;
  }
  footer {
    padding: 30px 5%;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 5%;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }
  .btn-nav {
    width: 100%;
    text-align: center;
  }
  .hero {
    height: 70vh;
    padding: 20px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  footer {
    text-align: center;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .btn-primary {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .service {
    padding: 15px;
  }
  footer {
    font-size: 0.9rem;
  }
}