* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 50px;
  width: auto;
}

.navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 0.9rem;
}

.nav-book-btn {
  padding: 8px 16px;
  background-color:#007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background-image: url("/image/car\ 1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: white;
  width: 100%;
}

.herooooo {
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  max-width: 600px;
  color: white;
  z-index: 1;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.hero-book-btn {
  padding: 12px 24px;
  font-size: 1rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero-book-btn:hover {
  background-color: #333;
}

/* About Us Section */
.about-us {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
  align-items: flex-start;
  background-color: #f9f9f9;
}

.about-images {
  flex: 1;
  min-width: 300px;
}

.main-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 2;
  min-width: 300px;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.about-text h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #333;
}

/* Booking Tabs Section */
.booking-tabs {
  background: url("/image/car\ 5.jpg") no-repeat center/cover;
  padding: 40px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.booking-tabs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.tab-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.tab-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.tab-button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: black;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  font-size: 0.9rem;
}

.tab-button.active {
  background: #00aee0;
  color: white;
}

.form-container {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 10px;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: black;
  margin-left: 200px;
}

/* Our Services Section */
.our-services {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.our-services h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  text-align: center;
  padding: 15px;
}

.service-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #f0f0f0;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-card a {
  color: black;
  text-decoration: none;
  transition: color 0.3s;
}

.service-card a:hover {
  color: #00aee0;
}

.service-card p {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.4;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  text-align: center;
  padding: 15px;
}

.stat-card img {
  width: 70px;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 0.9rem;
  color: #222;
}

/* Footer */
.footer {
  background-color: #000;
  padding: 40px 20px 20px;
  color: #fff;
  font-size: 0.9rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  margin-bottom: 20px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 15px;
}

.footer-col h3,
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

.footer-col p {
  margin-bottom: 15px;
  line-height: 1.5;
  color: #ccc;
  margin-left: 0px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  margin-left: 20px;
}

.social-icons a img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

.call-now {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #fff;
}

.call-now strong {
  font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    position: relative;
  }

  .hamburger {
    display: block;
    z-index: 100;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    gap: 30px;
    padding: 20px;
  }

  .nav-links.show {
    right: 0;
  }

  .hero {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text h3 {
    font-size: 1.2rem;
  }

  .tab-title {
    font-size: 1.5rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  header {
    padding: 10px 15px;
  }

  .logo img {
    height: 40px;
  }

  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-book-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .about-us {
    padding: 30px 15px;
  }

  .about-text h2 {
    font-size: 1.4rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-col {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Vehicle Cards */
.car-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.vehicle-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.vehicle-card:hover {
  transform: scale(1.03);
}

.vehicle-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.vehicle-card h3 {
  margin-top: 10px;
  font-size: 1.1rem;
}

.vehicle-card p {
  font-size: 0.9rem;
  color: #555;
  margin: 5px 0;
}

.vehicle-card strong {
  color: #e67e22;
  font-size: 1rem;
}