* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar-menu {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

.navbar li {
  height: 50px;
}

.navbar li:first-child {
  margin-right: auto;
}

.navbar a {
  height: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.navbar a:hover {
  color: #007bff;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: white;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none; /* hidden by default */
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.3s ease;
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
  padding: 12px 16px;
  text-decoration: none;
  color: #000000;
  transition: background 0.2s;
}

.sidebar a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.hero-section {
  position: relative;
  background-image: url("Waltrex\ Banner\ for\ laptops.jpg"); /* or your updated BG */
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: flex-start; /* move content to top */
  justify-content: flex-start;
  padding: 90px 80px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 145, 255, 0.005); /* adjust darkness if needed */
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 600px;
  text-align: left;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 5px;
}

.order-now {
  max-width: fit-content;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 70px;
}

.hero-content h3 {
  font-size: 2.5rem;
  color: white;
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  text-shadow: 2px 2px 4px #22222280;
}

.menu-button {
  display: none;
}

.quote-section {
  background: #f4f4f4;
  padding: 60px 20px;
}

.quote-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.quote-container h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #073777;
}

.quote-container p {
  margin-bottom: 20px;
  color: #444;
}

.quote-container label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
}

.quote-container input,
.quote-container textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  resize: none;
}

.contact-box {
  margin-top: 30px;
  padding: 20px;
  background: #f0f8ff;
  border: 1px solid #cce0ff;
  border-radius: 8px;
}

.contact-box h3 {
  margin-bottom: 15px;
  color: #073777;
  font-size: 1.2rem;
  font-weight: 700;
}

.quote-container button {
  margin-top: 25px;
  background: #073777;
  color: white;
  padding: 12px 20px;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.quote-container button:hover {
  background: #0552a5;
}


.services {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 250px);
  gap: 10px;
  justify-content: center;
}

.service-item {
  flex: 0 0 calc(25% - 30px);
  box-sizing: border-box;
  margin-bottom: 30px;
  text-align: center;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding-top: 0;
  padding-bottom: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-item h4 {
  margin: 5px 0 0 0;
  font-size: 1rem;
  color: #073777;
}

.service-item a {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 10px;
  background: #073777;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-size: 1.5rem;
}

.service-item p {
  font-size: 0.9rem;
  color: #555;
  margin: 5px 5px;
}

.service-item a:hover {
  background: #0552a5;
}

.service-image {
  max-width: 100%;
  height: 200px;
}

.section-title {
  font-size: 50px;
  color: #073777;
  margin-bottom: 15px;
}

.section-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}


.trusted-brands {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.trusted-title {
  font-size: 2.2rem;
  color: #073777;
  margin-bottom: 30px;
}

.brand-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brand-track {
  display: flex;
  gap: 40px;
  animation: scrollBrands 20s linear infinite;
  width: max-content;
}

.brand-card {
  flex: 0 0 auto;
  width: 150px;
  height: 80px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card img {
  max-width: 80%;
  max-height: 60px;
  object-fit: contain;
}

@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .brand-card {
    width: 120px;
    height: 70px;
  }
}


.contact {
  background-color: #073777;
  padding: 60px 20px;
  color: white;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.contact h2 {
  margin-bottom: 15px;
  font-size: 2rem;
  color: #ffffff;
}

.contact p {
  margin: 5px 0;
  color: #ffffff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.contact-info p {
margin: 5px 0;
  color: #ffffff;  
}

.contact-info a {
  color: #d8d6d6;
  text-decoration: none;
}

.contact-info a:hover {
  transition: color 0.3s ease;
  color: #0063cd;
}


.footer {
  background: #073777;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.footer p {
  margin: 0;
}


@media (max-width: 900px) {
  .service-item {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .service-item {
    flex: 0 0 100%;
  }
}


@media (max-width: 768px) {
  .hideOnMobile {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-section {
    background-image: url("Waltrex\ Banner\ for\ tabs.jpg");
    width: 100%;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
  }

  .sidebar {
    display: none; /* or transform it off-screen */
  }

  .hero-section {
    background-image: url("Waltrex Banner 2.jpg");
    width: 100%;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
  }
  .hero-section {
    padding: 20px 20px;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 600px;
    text-align: left;
    margin-top: 40px;
    margin-left: 30px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .order-now {
    max-width: fit-content;
    background: #073777;
    padding: 8px 8px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
  }

  .hero-content h3 {
    font-size: 25px;
    color: #ffffff;
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    rotate: 0deg;
  }
}


@media (max-width: 480px) {
  .sidebar {
    width: 100%;
  }

  .hero-section {
    background-image: url("Waltrex Banner 3.jpg");
    width: 100%;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
  }


  .hero-content {
    margin-top: 80px;
    margin-left: 0px;
  }


  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .hero-content h3 {
    font-size: 30px;
    color: #ffffff;
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    margin-left: 0px;
    rotate: 0deg;
  }
}

  .order-now {
    max-width: fit-content;
    background: #073777;
    padding: 8px 8px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
  }















  