/* Primary Color: Deep Transport Blue- #0D0C75
Secondary Color: Logistics Steel Blue- #2E5AAC
Accent Color: Transport Orange- #FF7A00
Neutral Background: Light Logistics Grey- #F4F6FA 
Text Color: Dark Grey- #2C2C2C */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", sans-serif;
  text-align: center;
  background-color: #f4f6fa;
  color: #2c2c2c;
}
ul {
  list-style: none;
}
/* Header & Nav */
header {
  background-image: url("images/1.jpeg");
  background-size: cover;
  background-position: center;
  padding: 80px 20px 40px;
}
header img {
  width: 400px;
  border-radius: 10px;
  margin-bottom: 10px;
}
h1 {
  font-size: 56px;
  background-color: #0d0c75;
  color: #ffffff;
  padding: 10px 0;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 10px;
}
header p {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Navigation Bar */
nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  background-color: #0d0c75;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}
nav ul li a {
  display: block;
  padding: 10px 25px;
  background-color: #0d0c75;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition:
    background 0.3s,
    color 0.3s;
}
nav ul li a:hover {
  background-color: #f0f8ff;
  color: #0d0c75;
}

/* Quote Button */
.quoteBtn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background-color: #ff7a00;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
  margin-bottom: 20px;
}
.quoteBtn:hover {
  background-color: #e66a00;
  transform: translateY(-2px);
}

/* Sections */
section {
  max-width: 600px;
  margin: 30px auto;
  padding: 70px 30px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
section:nth-child(even) {
  background-color: #f6f6f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
h2,
h3 {
  color: #0d0c75;
  margin-bottom: 20px;
}
p,
li {
  color: #2c2c2c;
  line-height: 1.5;
}
/* Gallery */
#gallery div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
#gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s;
}
#gallery img:hover {
  transform: scale(1.05);
}

/* Contact Section */
#contact {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}
#contact div {
  background-color: #f4f6fa;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
}
#contact a {
  color: #ff7a00;
  text-decoration: none;
}
#contact a:hover {
  text-decoration: underline;
}

/* Form Section */
form {
  max-width: 700px;
  margin: auto;
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
  text-align: left;
}
form label {
  display: block;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 6px;
}
form input,
form textarea,
form select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}
form textarea {
  min-height: 120px;
  resize: vertical;
}
form button {
  padding: 14px 30px;
  background-color: #ff7a00;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
}
form button:hover {
  background-color: #e66a00;
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: #0d0c75;
  color: #f6f6f6;
  text-align: center;
  padding: 30px;
  font-size: 14px;
}
footer p {
  color: #ffffff;
}

/* Media Queries */
@media (max-width: 700px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
    margin: 0 auto 20px;
  }
  nav ul li {
    width: auto;
  }
  nav ul li a {
    width: 100%;
    padding: 12px 20px;
  }
  .row {
    grid-template-columns: 1fr;
  }
  section {
    padding: 25px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  }
  .quoteBtn {
    width: 90%;
    max-width: 350px;
    padding: 16px;
    font-size: 18px;
  }
}
