/* GENERAL */
body {
  font-family: Arial;
  margin: 0;
}

header {
  background: white;
  padding: 20px 0;   /* slightly more space = more premium */
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* PAYMENT BUTTON */
.pay-btn {
  background: green;
  border: none;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #4a90e2, #2f6fa5);
  color: white;
  text-align: center;
  padding: 80px;
  line-height: 1.6;
}

/* BUTTONS */
.btn {
  padding: 10px 20px;
  background: orange;
  color: white;
  text-decoration: none;
  margin: 10px;
}

/* SECTION */
.container {
  padding: 40px;
}

/* MAP SECTION */
.directions-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.map-box iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 10px;
}

.map-box {
  flex: 1;
  min-width: 300px;
}

/* LOGO SCROLL */
.logo-slider {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 40px;
  animation: scroll 25s linear infinite;
}

.logo-track img {
  height: 50px;
  opacity: 0.7;
}

.logo-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ANIMATION */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CENTER HEADER */
.header-center {
  text-align: center;
}

/* LOGO */
.logo {
  display: block;
  margin: 0 auto 10px auto;
  height: 70px;
}

/* NAV BUTTONS */
.nav-buttons {
  text-align: center;
}

/* BUTTON STYLE */
.nav-buttons a {
  display: inline-block;
  background: #f7a600;
  color: white;
  padding: 6px 14px;
  margin: 5px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: 0.3s;
}

/* ===== CARRIER BANNER ===== */

.carrier-banner {
  background: #f9f9f9;
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
}

.logo-slider {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  width: fit-content;
  animation: scroll 35s linear infinite;
}

.logo-track img {
  height: 55px;
  margin: 0 30px;
  opacity: 0.7;
  transition: 0.3s ease;
}

.logo-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.more-text {
  margin-top: 15px;
  font-weight: bold;
  color: #2f6fa5;
}


.nav-buttons a:hover {
  background: #ffb733;
}
.image-banner {
  overflow: hidden;
  width: 100%;
  background: #f5f5f5;
  padding: 20px 0;
}

.banner-track {
  display: flex;
  width: calc(250px * 8); /* adjust based on number of images */
  animation: scrollBanner 40s linear infinite;
}

.banner-track img {
  width: 250px;
  height: 160px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 8px;
}

/* Slow continuous scroll */
@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.image-banner {
  overflow: hidden;
  width: 100%;
  background: #f5f5f5;
  padding: 20px 0;
}

.banner-track {
  display: flex;
  width: max-content; /* 🔥 important fix */
  animation: scrollBanner 100s linear infinite;
}

.banner-track img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 8px;
  flex-shrink: 0; /* 🔥 prevents resizing glitch */
}

/* perfect loop */
@keyframes scrollBanner {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.image-banner:hover .banner-track {
  animation-play-state: paused;
}
.dropdown {
  position: relative;
}

.dropbtn {
  cursor: pointer;
  padding: 10px 0;
}

/* hidden by default */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 240px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
  border-radius: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
}

/* list items */
.dropdown-content li {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

.dropdown-content li:hover {
  background-color: #f5f5f5;
}

/* ✅ SHOW ON HOVER */
.dropdown:hover .dropdown-content {
  display: block;
}
.dropbtn {
  color: white;   /* or whatever your nav uses */
  font: inherit;
}
.services {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

.services h2 {
  text-align: center;
  margin-bottom: 30px;
}

.services h3 {
  margin-top: 25px;
  color: #004080;
}

.services p {
  line-height: 1.6;
  color: #444;
}
hr {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin: 30px 0;
}
.services {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

.services p {
  line-height: 1.6;
}

hr {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin: 30px 0;
}

/* make the clickable area bigger */
.dropdown {
  position: relative;
  display: inline-block;
}

/* ensures link and dropdown behave together */
.dropbtn {
  display: inline-block;
  padding: 6px 14px;
}

/* ✅ THIS ensures dropdown doesn't block clicking */
.dropdown-content {
  margin-top: 5px;
}

/* show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}