html {
  scroll-behavior: smooth;
  width: 100%;
}
body {
  margin: 0; 
  font-family: 'Poppins', sans-serif;
  color: black;
  background: white;
  width: 100%;
  overflow-x: hidden;
}
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  margin-left: auto;
}
#main-nav2 {
  display: none;
  position: static;
  background: none;
}

section {
  min-height: 65vh; 
  padding: 60px 20px;
}
header {
    background: #222;
    color: #fff;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #444;
}
.logo-wrapper {
    display: flex;
    align-items: center;
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo-img {
  height: 40px;
  margin-right: 10px;
}
.logo-text {
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.navbar-inner {
width: 100%;

  padding: 10px 20px;
  
}
#main-nav {
 background: none;
 top: 4.7%;
 right: 30%;
}

.top-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
 
}

#nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  background: transparent;
  z-index: 10;
}

.language-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
}
.branding {
  display: flex;
  align-items: center;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}
.layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.language-switcher img {
  width: 48px;
  height: 32px;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.language-switcher img:hover {
  transform: scale(1.1);
}

.hero {
    display: flex;
    position: relative;
    justify-content: center;
  align-items: center;
  height: 100px;
  padding: 40px 20px;
  flex-wrap: wrap;
  background: linear-gradient(to bottom, #3d3d3d, #111);
  color: white;
}
.hero-img {
  width: 30%;
  height: 30%;
}
.hero-text {
  width: 100%;
  left: 32%;  
   top: 30%;  
}
.hero-inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  
}
.hero-section {
  background: linear-gradient(to bottom, #4b4b4b, #111);
  color: white;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  background: url('images/circles-bg.svg') no-repeat center;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  opacity: 0.1;
  z-index: 0;
}

.button-primary {
  padding: 10px 20px;
  border: 2px solid white;
  color: white;
  background: transparent;
  font-size: 16px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.button-primary:hover {
  background: white;
  color: black;
}

 .truck-img {
  width: 100%;
  height: auto;
}

.about {
    display: flex;
    justify-content: center;
  align-items: center;
    gap: 20px;
    padding: 40px 20px;
}
.about-img {
    width: 50%;
}
.about-text {
    width: 50%;
}
.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(to bottom, #3d3d3d, #111);
  color: white;
}
.contact2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 58px 60px;
    background: linear-gradient(to bottom, #3d3d3d, #111);
    color: white;
}
    .contact-container {
      display: flex;
      flex-wrap: wrap;
      padding: 40px;
      max-width: 1200px;
      margin: auto;
      gap: 2rem;
    }

    .contact-info {
      flex: 1;
      min-width: 250px;
    }
    .contact-info2 {
      align-items: center;
      justify-content: left;
      width: 100%;
    }

    .contact-info h2 {
      font-size: 24px;
      margin-bottom: 1rem;
    }

    .contact-info p, .contact-info a {
      margin: 0.5rem 0;
      color: white;
      text-decoration: none;
    }

    .contact-icons {
      margin-top: 1.5rem;
      display: flex;
      gap: 1rem;
      font-size: 1.5rem;
    }

    .contact-icons i {
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .contact-icons i:hover {
      transform: scale(1.2);
      color: #007bff;
    }
.contact-form {
      flex: 2;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      min-width: 300px;
    }

    .contact-form label {
      font-weight: bold;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 10px;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      width: 100%;
    }

    .contact-form button {
      background-color: #0052cc;
      color: white;
      border: none;
      padding: 12px 24px;
      font-size: 1rem;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      align-self: flex-start;
    }

    .contact-form button:hover {
      background-color: #003d99;
    }

  
.map iframe {
    height: 600px;
    border: none;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
    max-height: 100vw;
}
.map {
  overflow: hidden;
  position: relative;
  max-height: 100vw;
  max-width: 100vw;
}
footer {
    text-align: center;
    padding: 10px;
    background: #111;
    color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.slider-text-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.slider-box {
  max-width: 600px;
  flex: 1 1 50%;
}

.main-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.main-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.main-slider img.active {
  opacity: 1;
  z-index: 1;
}

button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 10px 14px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

button.prev { left: 10px; }
button.next { right: 10px; }

.thumbs {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.thumbs img {
  width: 120px;
  height: 70px;
  object-fit: cover;
  opacity: 0.4;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.thumbs img.active {
  opacity: 1;
  outline: 2px solid #000;
}

.text-box {
  flex: 1 1 40%;
  max-width: 500px;
}

.text-box h2 {
  margin-bottom: auto;
}

.text-box hr {
  width: 40px;
  border: 1px solid #000;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .navbar-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
   body {
    overflow-x: hidden;
  }
  .map {
    overflow-x: hidden;
    position: relative;
    height: 100%;
    overflow: hidden;
  }
  .map iframe {
    overflow-x: hidden;
    overflow: hidden;
    position: relative;
  }
  nav ul {
    flex-direction: column;
    gap: 15px;
  }

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

  .hero-text h1 {
    font-size: 24px;
  }
  .main-slider {
   position: relative;
    width: 100%;
   height: 200px;
   overflow: hidden;
}
.main-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

  .slider-text-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .text-box, .slider-box {
    max-width: 100%;
  }

  .about {
    flex-direction: column;
    text-align: center;
  }

  .contact-container {
    padding: 20px;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }

  .thumbs img {
    width: 80px;
    height: 50px;
  }
}
  @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
      }
    }
    @media (max-width: 768px) {
}
@media (max-width: 768px) {
  .hero-text {
    left: 5%;
    width: 80%;
    top: 10%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
   .navbar {
  padding: 0;
  margin: 0;
  max-height: 60px;
  height: auto;
  position: relative;
  overflow: visible;
}
  .navbar-inner {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    height: auto;
    overflow: visible;
  }

   .top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    min-height: 60px;
    z-index: 2;
  }
  .branding {
    display: flex;
    align-items: center;
  }

  .logo-img {
    height: -1%;
    margin-right: 8px;
  }
   .logo-text {
    font-size: -10%;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    
  }
  .hero-inner{
      display: flex;
  flex-wrap: nowrap;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  }
  .hero-img {
  width: 50%;
  height: 50%;
  padding-bottom: 5%
}
  #main-nav2 {
  display: none;
  justify-content: center;
  height: 20%;
  width: 100%;
}
.main-nav {
  width: 100%;
  display: none !important;
}
  #nav-links {
    display: none !important;
  }

  #nav-links2 {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #1c1c1c;
    padding: 20px 0;
    width: 100%;
    gap: 20px;
  }

  #nav-links.show {
    display: flex;
    top: 21%;
    left: 0;
    width: 100%;
    z-index: 2;
    background-color: #1c1c1c;
    box-sizing: border-box;
  overflow-x: hidden;
  }

  nav {
    width: 100%;
  }
}