


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
}
/* Logo */
.navbar .logo img {
    height: 60px;
   /* width: auto;*/
   width: 95px;
    display: block;
}

/* Nav Links Container */
.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navbar .nav-links li a {
    text-decoration: none;
    color: navy;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-links li a:hover {
    color: orange;
}
/* Contact Button */
.navbar #herobtn {
    background-color: orange;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

.navbar #herobtn:hover {
    background-color: grey;
    color: #fff;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: navy;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 200px;
        height: calc(100% - 70px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: start;
        gap: 1rem;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a,
    .contact-button {
        width: 100%;
        display: block;
    }

    .nav-links.show {
        right: 0;
    }
}
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* HERO SECTION */
.hero {
    position: relative;
    background: url('back2.jpg') center/cover no-repeat;
    min-height: 60vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    overflow: hidden;
    margin-top: 70px; /* Adjust this to match your navbar height */
    z-index: 1;
}

/* Overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Layer text above overlay */
.hero h1,
.hero p,
.hero button {
    position: relative;
    z-index: 2;
}


/* Typography */
.hero h1 {
    font-size: 2.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    max-width: 800px;
}

.hero p {
    font-size: 1.1rem;
    margin-top: 0.8rem;
    max-width: 600px;
}

/* Button styling */
.hero button {
    margin-top: 1.2rem;
    padding: 0.75rem 1.5rem;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        margin-top: 60px; /* smaller navbar on mobile */
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero button {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}

.services {
    text-align: center;
}
.services {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  background-color: black;
  color: white;
}

.services h2 {
  font-size: 28px;
  font-weight: 700;
}

.services p {
  font-size: 16px;
  color: #9d9d9d;
}

.service-card {
  background: #ebe8e8;
  color: #000;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  width: 320px;
  margin: 20px auto;
}

.service-card img {
  border-radius: 15px;
  width: 100%;
  height: auto;
}

.service-card h2 {
  margin-top: 15px;
  font-size: 20px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (min-width: 768px) {
  .services {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .services > h2,
  .services > p,
  .services > br {
    grid-column: 1 / -1;
  }

  .service-card {
    margin: 0;
  }
}
.book-ride {
    text-align: center;

}
/* MAIN WRAPPER */
.book-ride {
  text-align: center;
  padding: 40px 20px;
  background-color: rgb(233, 231, 231);
}

.book-ride h1 {
  font-size: 30px;
  margin-bottom: 20px;
}

/* RIDE CARD */
.ride-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  margin: 25px auto;
  max-width: 950px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

.ride-card h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* IMAGE ROW — horizontal scrolling */
/*.image-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-behavior: smooth;
}*/

/*.image-row img {
  width: 300px;
  height: 290px;
  border-radius: 15px;
  flex-shrink: 0;  /* Forces horizontal layout /
}*/
.image-row img {
  border-radius: 15px;
  width: 300px;
  height: 290px;
}

/* BUTTON */
.ride-card button {
  margin-top: 20px;
  background: #000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
  .image-row img {
    width: 260px;
    height: auto;
  }
}

/* CONTACT SECTION */
.contact-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 40px 25px;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
  transition: 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #000;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.form-group textarea {
  height: 150px;
  resize: none;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  font-size: 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #333;
}

/* MOBILE */
@media (max-width: 600px) {
  .contact-section {
    padding: 30px 15px;
  }

  .contact-form {
    padding: 25px 20px;
  }
}
footer {
    height: 50px;
    padding-top: 20px;
    width: 100%;
    background-color: #000;
    color: white;
    text-align: center;
    padding-bottom: 50px;
}
.form-group h1, p{
text-align: center;
}
