/* ===========================
   HEMELVAART LOGISTICS STYLES
   =========================== */

:root {
  --primary: #1F3D82;
  --secondary: #ffd800;
  --background: #f5f7fa;
  --white: #fff;
  --gray: #f0f4fa;
}

/* GLOBAL RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--background);
  color: #232323;
  line-height: 1.6;
}

.container {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
}
.hyphen{
  color: #46C1CE;
  text-decoration: none;
  font:Roboto;
  stroke: white;
  stroke-width: 2px;
}

.mail{
  text-decoration: none;
  color: #1F3D82;
}

.number{
  text-decoration: none;
  color: #1F3D82;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

header {
  background: var(--white);
  color: var(--white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 1px 8px rgba(18, 87, 162, 0.1);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 5000px;
  margin: 0 0;
  padding: 0 5%;
}

.logo {
  width: 600px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  
}

/* NAVIGATION MENU */
nav ul {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s;
}

nav a:hover,
nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* HAMBURGER MENU BUTTON */
#menuToggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

#menuToggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation */
#menuToggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
#menuToggle.open span:nth-child(2) {
  opacity: 0;
}
#menuToggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.hero-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.hero-content {
  position: absolute;
  top: 70px;
  left: 7%;
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(18, 87, 162, 0.12);
  max-width: 500px;
  color: var(--primary);
}

.hero-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 7px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 500;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(18, 87, 162, 0.08);
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #0f4c8b;
}

/* ===========================
   CONTENT SECTIONS
   =========================== */

.info-section {
  background: rgb( blue);
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: 0 2px 13px rgba(18, 87, 162, 0.07);
  padding: 40px 0;
}
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.solution-content{
  text-align: justify;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: justify; /* optional for better alignment */
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  object-fit: contain;
}

h2 {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 2rem;
  text-align: center;
}
#mission.info-section {
  background: var(--primary);    /* full blue background for the section */
  box-shadow: none;
  padding: 40px 0;
  border-radius: 12px;
}

/* Mission inner container text: white heading and content in a transparent white box */
#mission .container h2 {
  color: var(--white);
  font-size: 1.9rem;
  text-align: center;
  margin-bottom: 18px;
}

/* Mission content box — add slight white translucent card on the blue */
#mission .mission-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06); /* subtle contrast over blue */
  color: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(18,87,162,0.12);
  font-size: 1.02rem;
  line-height: 1.6;
  text-align: justify;
}

/* If you want the paragraph itself to look like a solid white-on-blue block: */
#mission .mission-content p {
  color: var(--white);
  margin: 0;
}
.about-flex {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-img {
  width: 330px;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 9px rgba(18, 87, 162, 0.09);
}

.about-text {
  flex: 2 1 400px;
   text-align: justify;
}


/* Solutions */
.solutions-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.solution-card {
  background: var(--gray);
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 240px;
  max-width: 300px;
  box-shadow: 0 1px 5px rgba(18, 87, 162, 0.08);
  text-align: center;
  justify-content: center;
}

.solution-img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 7px;
  margin-bottom: 13px;
}

/* Stories */
.stories-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.story-card {
  background: var(--gray);
  border-radius: 10px;
  padding: 16px;
  flex: 1 1 220px;
  max-width: 280px;
  box-shadow: 0 1px 5px rgba(18, 87, 162, 0.08);
  text-align: center;
}

.story-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}

.story-card blockquote {
  font-style: italic;
  color: #333;
  margin-bottom: 8px;
}

/* Contact Section */
.contact-section {
  background: var(--white);
  margin-bottom: 16px;
  padding-bottom: 30px;
  border-radius: 10px;
}

.contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-info {
  list-style: none;
  font-size: 1.1rem;
}

form {
  background: var(--gray);
  padding: 22px;
  border-radius: 9px;
  box-shadow: 0 0 9px rgba(18, 87, 162, 0.04);
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 370px;
  width: 100%;
}

label {
  font-weight: 500;
  margin-bottom: 3px;
}

input,
textarea {
  padding: 8px;
  border: 1px solid #c2ccda;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--primary);
}

button {
  background: var(--primary);
  color: var(--white);
  padding: 11px 0;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

button:hover {
  background: #094178;
}

#formStatus {
  margin-top: 8px;
  font-size: 1rem;
  color: var(--primary);
}

/* ===========================
   FOOTER
   =========================== */

footer {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
  border-radius: 0 0 10px 10px;
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */

/* Tablets & below */
@media (max-width: 1024px) {
  .solutions-grid,
  .stories-grid,
  .contact-grid,
  .about-flex {
    flex-direction: column;
    gap: 18px;
  }

  .hero-content {
    position: static;
    background: none;
    box-shadow: none;
    border-radius: 0;
    max-width: none;
    padding: 24px 5%;
    text-align: center;
  }

  .about-img {
    width: 100%;
    height: 200px;
  }
  .logo{
    width: 390px;
  }
}

/* Mobile Navigation */
@media (max-width: 900px) {
  #menuToggle {
    display: flex;
  }
  

  nav {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: var(--white);
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  nav.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  nav li {
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  nav a {
    display: block;
    padding: 12px;
  }

  .logo {
    width: 400px;
  }

.solutions-grid {
  display: grid;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}
}

/* Small phones (320px–480px) */
@media (max-width: 480px) {
  .logo {
    width: 200px;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-img {
    max-height: 180px;
  }

  .btn-primary {
    padding: 10px 22px;
    font-size: 1rem;
  }

  .info-section {
    padding: 20px 0;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
