.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: #1c1c1c;
  border-top: 2px solid #ff7c24;
  border-bottom: 2px solid #ff7c24;
  padding: 10px 0;
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated text */
.marquee-text {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  color: #ff7c24;
  font-family: 'Montserrat', sans-serif;
  animation: slideToCenter 30s ease-in-out infinite;
}

/* Icon style */
.marquee-text i {
  margin-right: 10px;
  color: #ff7c24;
}

/* Keyframes to move text from right to center, back to right */
@keyframes slideToCenter {
  0% {
    transform: translateX(100vw);
    opacity: 0;
  }
  30% {
    transform: translateX(50%);
    opacity: 1;
  }
  50% {
    transform: translateX(0%);
    opacity: 1;
  }
  70% {
    transform: translateX(50%);
    opacity: 1;
  }
  100% {
    transform: translateX(100vw);
    opacity: 0;
  }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .marquee-text {
    font-size: 14px;
  }

  .marquee-container {
    height: auto;
    padding: 8px 0;
  }
}




.subheader {
  background-color: #1c1c1c;
  padding: 10px 30px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  border-bottom: 2px solid #ff7c24;
  flex-wrap: wrap;
}

/* Contact Nav */
.contact-nav {
  display: flex;
  align-items: center;
}

.contact-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* Stylish Button-Like Links */
.contact-link {
  background-color: transparent;
  color: #fff;
  border: 2px solid #ff7c24;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 0 #ff7c24;
}

/* Icon inside button */
.contact-link i {
  font-size: 16px;
  color: #ff7c24;
  transition: color 0.3s ease;
}

/* Hover Effects */
.contact-link:hover {
  background-color: #ff7c24;
  color: #fff;
  box-shadow: 0 5px 15px rgba(255, 124, 36, 0.4);
}

.contact-link:hover i {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .subheader {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-list {
    flex-direction: column;
    gap: 10px;
  }
}
/* NAV MENU: Base */
.moto-widget-menu-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* MENU ITEM LINKS */
.moto-widget-menu-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  border: 2px solid #ff7c24;
  border-radius: 30px;
  background-color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 0 #ff7c24;
}

/* HOVER EFFECT */
.moto-widget-menu-link:hover {
  background-color: #ff7c24;
  color: #fff;
  box-shadow: 0 5px 15px rgba(255, 124, 36, 0.4);
}

/* ACTIVE PAGE STYLE (optional) */
.moto-widget-menu-link.active {
  background-color: #ff7c24;
  color: #fff;
  border-color: #ff7c24;
}

/* HAMBURGER ICON (mobile toggle) */
.moto-widget-menu-toggle-btn {
  display: none; /* Hide by default unless for mobile */
  background-color: #ff7c24;
  color: #fff;
  padding: 10px 12px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

/* RESPONSIVE MENU */
@media (max-width: 768px) {
  .moto-widget-menu-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-top: 10px;
  }

  .moto-widget-menu-toggle-btn {
    display: block;
    margin-bottom: 10px;
  }
}
