body {
  font-family: "Nata Sans", sans-serif;
  margin: 0;
  padding: 0;
  color: #000;
}

/* Header */
.header {
  background: #fff;

}

.hed {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 60px;
}

.container {
  width: 1400px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.header nav ul {
  list-style: none;
  display: flex;
  gap: 50px;
}

.header nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact p {
  margin: 0;
  font-size: 12px;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  background: #2E3E94 url('/img/bg/about.png') no-repeat right;
  border-radius: 20px;
  margin: 20px 60px;

}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 800;
  color: white;
  margin: 25px 0px;
}

.hero-text p {
  font-size: 20px;
  margin: 20px 0;
  color: white;
}

.btn {
  background: #FFA500;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
}

/* Booking Box */
.booking-box {
  background: white;
  border-radius: 15px;
  padding: 25px;
  width: 300px;
  color: black;
}

.booking-box h3 {
  margin-bottom: 20px;
}

.booking-box form {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.booking-box select,
.booking-box input {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.booking-box button {
  background: #FFA500;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
}

/* Features */
.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 60px;
  background: white;
  text-align: center;
}

.feature img {
  height: 40px;
  margin-bottom: 10px;
}

.feature h4 {
  margin: 10px 0 5px;
}

.bok {
  display: flex;
  justify-content: center;
}

.booking-container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 900px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 500px;
  top: 470px;
}

/* Tabs */
.vehicle-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tab {
  padding: 10px 20px;
  background: #f2f2f2;
  border: none;
  border-radius: 6px;
  margin-right: 5px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab.active {
  background: #ffb400;
  color: white;
}

.spot-booking {
  background: #fff6e5;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 14px;
}

.spot-booking a {
  color: #ff9800;
  font-weight: bold;
}

/* Form section */
.form-section {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.location-box {
  flex: 1;
}

label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.input-group {
  display: flex;
  align-items: center;
  background: #f8f8f8;
  /* padding: 8px; */
  border-radius: 8px;
}

.input-group input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
}



.datetime {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.datetime input {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.swap-icon {
  margin: 0 15px;
  font-size: 20px;
  background: #f8f8f8;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

/* Same location */
.same-location {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Button */
.drive-btn {
  background: #ffb400;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  margin-top: 15px;
  cursor: pointer;
}

.booking-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.vehicle-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.spot-booking {
  background: #fef3c7;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
}

.form-section {
  display: grid;
  /* grid-template-columns: 1fr 85px 1fr; */
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: center;
}

.location-box {
  background: #f9fafb;
  padding: 15px;
  border-radius: 8px;
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.input-group {
  position: relative;
}

select,
input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}



.datetime {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.datetime input {
  flex: 1;
}

.swap-icon {
  text-align: center;
  font-size: 20px;
  background: #f3f4f6;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drive-btn {
  margin-top: 20px;
  padding: 13px 25px;
  background: #fbbf24;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}


.drive-btn:hover {
  background: #f59e0b;
}



/* 1 */


.cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Fade-in animation for cards */
.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  width: 320px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

/* Slight delay for each card */
.card:nth-child(1) {
  animation-delay: 0.1s;
}

.card:nth-child(2) {
  animation-delay: 0.2s;
}

.card:nth-child(3) {
  animation-delay: 0.3s;
}

.card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Hover animation */
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* Smooth image zoom on hover */
.card img {
  height: 50%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}

/* Fade-up keyframes */
@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.content {
  padding: 15px;
  flex: 1;
}

.car-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 25px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.old-price {
  text-decoration: line-through;
  font-size: 14px;
  color: #999;
  margin-right: 5px;
}

.per-day {
  font-size: 14px;
  color: #555;
}

.icons {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 10px;
  color: #333;
}

.btn {
  display: block;
  text-align: center;
  padding: 12px;
  background-color: #FFD54F;
  font-weight: bold;
  border-radius: 0 0 15px 15px;
  text-decoration: none;
  color: black;
}

.btn:hover {
  background-color: #ffca28;
}

/* Heading styles */
.section-heading {
  text-align: center;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 800;
}

.section-subheading {
  text-align: center;
  color: #666;
  font-size: 20px;
  margin-bottom: 80px;
}

/* View More button */
.view-more-btn {
  display: inline-block;
  padding: 12px 25px;
  background: black;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 30px;
}

.view-more-btn:hover {
  background: #333;
}

.view-more-container {
  text-align: center;
  margin-top: 40px;
}


/* 2 */


h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 60px;
}

.reviews-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card .content {
  padding: 30px 20px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  position: relative;
}

.review-card .content::before {
  content: "❝";
  font-size: 28px;
  color: #2E3E94;
  position: absolute;
  top: 10px;
  left: 20px;
}

.review-card .footer {
  background-color: #2E3E94;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-card .footer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: -30px;
  border: 3px solid white;
}

.review-card .company {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 10px;
}

.review-card .name {
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
}

/* 3 */

.footer {
  background-color: #2E3E94;
  padding: 30px 0;
  text-align: center;
}

.footer .logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer .logo span {
  color: black;
}

.footer .logo span.o {
  color: orange;
}

.footer nav a {
  margin: 0 10px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: 500;
}

.footer .contact {
  margin: 15px 0;
  justify-content: center;
  color: #ffffff;
}

.footer .contact span {
  margin: 0 15px;
}

.footer .social-icons {
  margin: 20px 0;
}

.footer .social-icons a {
  margin: 0 10px;
  text-decoration: none;
  color: #2E3E94;
  background: #2E3E94;
  color: white;
  border-radius: 50%;
  padding: 10px 12px;
  display: inline-block;
}

.footer .bottom-links {
  margin-top: 20px;
}

.footer .bottom-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 10px;
}

.footer .copyright {
  margin-top: 15px;
  font-size: 14px;
  color: #fff;
}



.form-section {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.location-box {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-box label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}


.input-group input,
.datetime input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

.input-group input:focus,
.datetime input:focus {
  border-color: #2E3E94;
  background: #fff;
  box-shadow: 0 0 8px rgba(46, 62, 148, 0.2);
  outline: none;
}


.datetime {
  display: flex;
  gap: 12px;
}


.bok {
  text-align: center;
  margin-top: 25px;
}



.abut {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.steps-container {
  text-align: center;
  padding: 50px 20px;
}


.steps-container h2 {
  font-size: 28px;
  margin-bottom: 5px;
  color: #000;
}

.steps-container p {
  color: #777;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}


.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  max-width: 150px;
}


.step-icon {
  background: #2E3E94;
  /* Green-yellow */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.step-icon img {
  width: 40px;
  height: 40px;
}


.step-text {
  font-size: 14px;
  color: #000;
}


.step:after {
  content: '';
  position: absolute;
  top: 30px;
  right: -35px;
  width: 90px;
  height: 2px;
  border-bottom: 2px dotted #2E3E94;
}

.step:last-child:after {
  display: none;
}


@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    gap: 30px;
  }

  .step:after {
    display: none;
  }
}