* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background-color: #f9fafb;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 45px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center; 
  height: 100%; 
}

.nav-logo img {
  height: 50px; 
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}
.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #F01920;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #F01920;
  transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Cars Slider Section */
.cars-slider {
  padding: 50px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #1f2937;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #F01920;
  margin: 10px auto 20px;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 50px;
  color: #6b7280;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.car-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.car-card:hover {
  transform: translateY(-5px);
}

.car-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.car-details {
  padding: 15px;
}

.car-details h3{
  font-size: 1.3rem
}

.car-details p{
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 15px;
}

.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 14px;
  color: #555;
  margin: 8px 0;
}

.car-specs span i {
  color: #F01920;
}

.car-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.amenity {
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  color: #F01920;
}

.car-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.rent-btn {
  background: #F01920;;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.rent-btn:hover {
  background: #0056b3;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #f9fafb;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #F01920;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #1f2937;
}

.feature-card p {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: #191919;
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 10px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #F01920;
}

.footer-section p {
  margin-bottom: 15px;
  color: #d1d5db;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.footer-section ul li a:hover {
  color: #F01920;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1f2937;
  border-radius: 5px;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #F01920;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #374151;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* call now */
.call-now-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 1000;
}

.call-now-btn:hover {
    background: #1ebe57;
    transform: scale(1.1);
}


/* Responsive Design */
@media (max-width: 992px) {
  .slide {
    min-width: 50%;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
  position: fixed;
  left: -100%;
  top: 70px;
  flex-direction: column;
  background: #fff;
  width: 100%;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 20px 0;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .slide {
    min-width: 100%;
  }
    
  /* Hamburger animation into X */
  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

}

/* Rental Experience */
.rental-experience {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.experience-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.experience-card h3 {
  margin-bottom: 15px;
}

.experience-card ul {
  padding-left: 20px;
  margin: 15px 0;
}

.experience-card.elite {
  border-left: 6px solid #0077cc;
  color: #6b7280;
}

.experience-card.standard {
  border-left: 6px solid #F01920;
  color: #6b7280;
}

.comparison-table {
  overflow-x: auto;
  margin-top: 30px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.comparison-table th {
  background: #F01920;
  color: #fff;
  font-weight: 600;
}

/* slider css */
.car-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.car-slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Navigation buttons */
.slider .prev,
.slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.slider .prev {
  left: 10px;
}

.slider .next {
  right: 10px;
}

.slider .prev:hover,
.slider .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: white;
}

/* search btn */
/* Search Section */
.search-item {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 20px 0;   /* space around */
}

.search-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;  /* keeps it neat on large screens */
}

/* Input field */
.search-input {
  flex: 1;                /* auto resize */
  min-width: 150px;
  padding: 13px 15px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  outline: none;
  font-size: 16px;
}

/* Button */
.search-btn {
  background: #F01920;
  border: none;
  color: white;
  padding: 13px 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background: #0056b3;
}

/* Why Choose Us */
.why-choose {
  padding: 30px 20px;
  background: #fff;
  text-align: center;
}

.why-choose .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.why-choose .subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.why-item {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.why-item i {
  font-size: 2rem;
  color: #F01920;
  margin-bottom: 15px;
}

.why-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Membership Section */
.membership {
  padding: 30px 20px;
  background: #f9f9f9;
  text-align: center;
}

.membership .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.membership .subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.membership-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.membership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.membership-card .card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.membership-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.membership-card i {
  font-size: 1.5rem;
  color: #F01920;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #F01920;
  margin: 15px 0;
}

.price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px;
  text-align: left;
  color: #444;
}

.benefits li {
  margin: 8px 0;
}

.btn-join {
  display: inline-block;
  padding: 10px 20px;
  background: #F01920;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-join:hover {
  background: #084298;
}

/* Highlight popular plan */
.membership-card.popular {
  border: 2px solid #F01920;
  transform: scale(1.05);
}

.membership-card.popular .badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #ed7e87;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Referral text */
.membership-benefits {
  margin-top: 40px;
  font-size: 1rem;
  color: #333;
}


/* privacy policy */
.privacy-policy {
  background: #f9fafc;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 30px auto;
}
.privacy-policy .section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}
.policy-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
}
.policy-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-item i {
  font-size: 22px;
  color: #F01920;
  flex-shrink: 0;
  margin-top: 5px;
}
.policy-item p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

/* about us page code */
.about-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  margin-top: 15px;
  margin-bottom: 25px;
}

.about-card i {
  color: #F01920;
  margin-right: 8px;
}

.about-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: #F01920;
}

/* Who We Serve - Vertical Cards */
.serve-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  margin-top: 20px;
}

.serve-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #F01920;
}

.serve-card p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
}
.verticle_card {
  display: flex;
  gap: 15px;
}

/* Icons */
.serve-icon {
  font-size: 40px;
  color: #F01920;
  background: #e8f0ff;
  padding: 18px;
  border-radius: 50%;
}


/* ✅ Services */
.services {
  background: #f9fafc;
}
.services .row > div {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.services .row > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}
.services p {
  margin: 0;
  font-size: 1rem;
  color: #444;
}
.services strong {
  color: #F01920;
}

/* ✅ How It Works */
.how-it-works {
  background: #f8f9fa;
}
.how-it-works ol {
  max-width: 406px;
  margin: 0 auto;
  padding-left: 20px;
}
.how-it-works li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  position: relative;
  padding-left: 10px;
}
.how-it-works li strong {
  color: #F01920;
}

/* car partner code here */
.add-car-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: auto;
}

.add-car-form .form-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.tab {
  display: none;
}

.form-navigation {
  margin-top: 20px;
  text-align: right;
}

.form-navigation .btn {
  min-width: 100px;
  padding: 10px 20px;
  margin-left: 10px;
  border-radius: 8px;
}

.step-indicators {
  text-align: center;
  margin-top: 25px;
}

.step {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.step.active {
  background-color: #007bff;
}

.step.finish {
  background-color: #28a745;
}

.tab {
  display: none;
}

input.invalid, select.invalid, textarea.invalid {
  border: 2px solid red;
}

.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
  background-color: #0d6efd;
}

.step.finish {
  background-color: #28a745;
}
