 body {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      background: #f4f4f4;
      color: #333;
    }
    header {
      background-color: #003366;
      color: #fff;
      padding: 1rem;
      text-align: center;
    }
    nav {
      display: flex;
      justify-content: center;
      
    }
    nav a {
      color: #fff;
      padding: 1rem;
      text-decoration: none;
      transition: background 0.3s;
    }
    nav a:hover {
      background: #004080;
    }
    .container {
      padding: 2rem;
      max-width: 1200px;
      margin: auto;
    }
    .equipment-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
    .equipment-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 1rem;
      text-align: center;
    }
    .equipment-card h3 {
      color: #003366;
    }
    .equipment-card button {
      margin-top: 1rem;
      background-color: #0077cc;
      color: #fff;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      cursor: pointer;
    }
    .equipment-card button:hover {
      background-color: #005fa3;
    }
    .form-section {
      background: #fff;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      max-width: 500px;
      margin: 2rem auto;
    }
    .form-section h2 {
      text-align: center;
      color: #003366;
    }
    form {
      display: flex;
      flex-direction: column;
    }
    form input, form select {
      padding: 0.75rem;
      margin: 0.5rem 0;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    form button {
      background: #003366;
      color: white;
      padding: 0.75rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    form button:hover {
      background: #005599;
    }
    footer {
      background: #003366;
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top: 2rem;
    }
    body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
}

/* HEADER */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #004d40;
}

.logo-text .dot {
  color: #ff3b3b;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
  color: #ff3b3b;
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background: url('https://via.placeholder.com/1600x700/cccccc/fff?text=Background+Image') center/cover no-repeat;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  background: #ff3b3b;
  color: white;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
}

.hero-form {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 350px;
}

.hero-form h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.hero-form h2 span {
  color: #ff3b3b;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-form input,
.hero-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.hero-form button {
  padding: 12px;
  background: #004d40;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.hero-form button:hover {
  background: #00332b;
}

/* SLIDER */
.slider-section {
  margin-top: 50px;
}

.slider {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HEADER STYLE */
.centered-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* Left and Right Navigation */
.nav-left ul,
.nav-right ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-left a,
.nav-right a {
  text-decoration: none;
  font-weight: 500;
  color: #0d4d4d;
  transition: color 0.3s;
}

.nav-left a.active,
.nav-left a:hover,
.nav-right a:hover {
  color: #ff3b3b;
}

/* Logo in the Center */
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0d4d4d;
}

.logo .dot {
  color: #ff3b3b;
}

/* Keep logo exactly in center */
.centered-header {
  grid-template-columns: 1fr auto 1fr;
  display: grid;
  align-items: center;
}

.nav-left {
  justify-self: start;
}

.nav-right {
  justify-self: end;
}
.facilities {
  text-align: center;
  padding: 40px 20px;
}

.facilities h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.facility-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.facility-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.facility-card img {
  width: 50px;
  margin-bottom: 15px;
}

.facility-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.facility-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.facility-card a {
  color: #e63946;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

.facility-card a:hover {
  text-decoration: underline;
}
.choose-bike {
  background-color: #f4f7f6;
}

.choose-bike-header {
  background: url('bike-bg.jpg') no-repeat center/cover;
  text-align: center;
  padding: 60px 20px;
}

.choose-bike-header h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
}

.bike-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: -50px auto 50px;
  padding: 0 20px;
}

.bike-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bike-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bike-card img {
  max-width: 100%;
  height: auto;
}

.bike-tag {
  display: inline-block;
  background: #0b3d3b;
  color: white;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 3px;
  margin-top: 10px;
}

.bike-card h3 {
  font-size: 1.1rem;
  margin: 15px 0;
  color: #0b3d3b;
}

.bike-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.bike-card ul li {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
}

.bike-card ul li strong {
  color: #000;
}

.rent-link {
  color: #e63946;
  text-decoration: none;
  font-weight: bold;
}

.rent-link:hover {
  text-decoration: underline;
}
.site-footer {
  background-color: #164141;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.footer-phone {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-nav {
  margin: 15px 0;
}

.footer-nav a {
  color: white;
  margin: 0 10px;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
}

/* .footer-nav a::before {
  content: '›';
  margin-right: 5px;
  color: white;
} */

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-social {
  margin: 20px 0;
}

.footer-social a {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin: 0 5px;
  background: white;
  color: #164141;
  line-height: 38px;
  text-align: center;
  font-size: 1.1rem;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}

.footer-social a:hover {
  background: #e63946;
  color: white;
}

.footer-bottom {
  font-size: 0.85rem;
  color: #ccc;
}

.footer-bottom .brand {
  color: white;
  font-weight: bold;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header.centered-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  position: relative;
  border-bottom: 1px solid #ddd;
}

/* Logo centered with flex-grow */
header .logo {
  flex: 1;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #004d40;
}

header .logo .dot {
  color: red;
}

/* Nav styles */
header nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

header nav ul li a {
  text-decoration: none;
  color: #004d40;
  font-size: 16px;
  transition: color 0.3s ease;
}

header nav ul li a.active,
header nav ul li a:hover {
  color: red;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  background: #222;
  padding: 8px 12px;
  border-radius: 3px;
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 2000;
}

/* Mobile styles */
@media (max-width: 768px) {
  /* stack header */
  header.centered-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  /* hide both navs by default */
  .nav-left,
  .nav-right {
    width: 100%;
    display: none;
  }

  .nav-left ul,
  .nav-right ul {
    flex-direction: column;
    background: #222;
    padding: 10px 0;
  }

  .nav-left ul li a,
  .nav-right ul li a {
    color: #fff;
    padding: 10px;
    display: block;
  }

  /* show navs when active */
  header.centered-header.active .nav-left,
  header.centered-header.active .nav-right {
    display: block;
  }

  /* keep logo centered */
  header .logo {
    order: -1;
    margin-bottom: 10px;
  }
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header.centered-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  position: relative;
  border-bottom: 1px solid #ddd;
}

/* Logo centered with flex-grow */
header .logo {
  flex: 1;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #004d40;
}

header .logo .dot {
  color: red;
}

/* Nav styles */
header nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

header nav ul li a {
  text-decoration: none;
  color: #004d40;
  font-size: 16px;
  transition: color 0.3s ease;
}

header nav ul li a.active,
header nav ul li a:hover {
  color: red;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  background: #222;
  padding: 8px 12px;
  border-radius: 3px;
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 2000;
}

/* Mobile styles */
@media (max-width: 768px) {
  /* stack header */
  header.centered-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  /* hide both navs by default */
  .nav-left,
  .nav-right {
    width: 100%;
    display: none;
  }

  .nav-left ul,
  .nav-right ul {
    flex-direction: column;
    background: #222;
    padding: 10px 0;
  }

  .nav-left ul li a,
  .nav-right ul li a {
    color: #fff;
    padding: 10px;
    display: block;
  }

  /* show navs when active */
  header.centered-header.active .nav-left,
  header.centered-header.active .nav-right {
    display: block;
  }

  /* keep logo centered */
  header .logo {
    order: -1;
    margin-bottom: 10px;
  }
}
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #004d40;
}

.contact-info p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #004d40;
}

.contact-form button {
  background: #004d40;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #00695c;
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
