.carousel {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.carousel-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Overlayed content */
.carousel-content-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: black;
  padding: 1rem;
  width: 90%;
  max-width: 600px;
}

.custom-heading {
  font-size: 35px;
  font-weight: 700;
  color: black;
}

.custom-heading .highlight {
  color: #00b386;
  font-style: italic;
}

.custom-btn {
  margin-top: 20px;
  background-color: transparent;
  color: #00b386;
  font-size: 18px;
  padding: 12px 24px;
  border: 2px solid #00b386;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background-color: #00b386;
  color: #fff;
  cursor: pointer;
}

.quote-info {
  margin-top: 15px;
  font-size: 16px;
  color: #ddd;
}

.heart {
  color: red;
  font-size: 18px;
}

/* Responsive: for small screens */
@media (max-width: 768px) {
  .carousel {
    height: 300px;
  }

  .custom-heading {
    font-size: 24px;
  }

  .custom-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .quote-info {
    font-size: 14px;
  }
}


/* services section  */

.service-card {
  background-color: #f5f8fc;
  border-radius: 12px;
  text-align: center;
  padding: 20px 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card h5 {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.service-card img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
}

.service-card:hover {
  transform: translateY(-5px);
}


/* car section  */

.section-title {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 25px;
}

.rental-card {
  background-color: #f1f4f8;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.rental-card:hover {
  transform: translateY(-4px);
}

.rental-content h5 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #000;
}

.rental-content .text-success {
  color: #00844e !important;
}

.rental-img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
}

.rental-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.rental-footer .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.rental-footer .arrow:hover {
  transform: translateX(4px);
}

.view-more-btn {
  padding: 10px 20px;
  border: none;
  background-color: #00844e;
  color: white;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.view-more-btn:hover {
  background-color: #006c3e;
}


/* move with  */

.move-section {
  width: 100%;
  background-color: #ebf9ed; /* Light green background as in screenshot */
  padding: 80px 0;
}

.move-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.move-heading .highlight {
  color: #1bb55b;
  font-style: italic;
  font-weight: 700;
}

.move-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #111;
}

.move-video img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}


/* wander area  */

.wander-section {
  background: linear-gradient(to bottom, #475472, #0f192e);
  padding: 60px 20px;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 95%;
}

.wander-title {
  font-size: 32px;
  color: white;
  margin-bottom: 40px;
  font-weight: bold;
}

.wander-card {
  text-align: center;
  margin-bottom: 30px;
}

.wander-card img {
  width: 100%;
  max-width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 50% / 60%;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wander-card img:hover {
  transform: scale(1.05);
}

.wander-card p {
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

.explore-btn {
  background-color: #00c46f;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.explore-btn:hover {
  background-color: #00a25b;
}


/* why choose us  */


.why-choose {
  background-color: #f8fafd;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.why-box, .why-center-box {
  background-color: #edf3f9;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
}

.why-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.why-box p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.5;
}

.icon-circle {
  width: 48px;
  height: 48px;
  background-color: #d4ffe7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.icon-circle img {
  width: 24px;
  height: 24px;
}

.why-center-box {
  text-align: center;
  background-color: #ffffff;
}

.why-center-box h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.why-center-box .why-image {
  width: 140px;
  margin: 20px 0;
}

.quote-btn {
  display: inline-block;
  background-color: #00c46f;
  color: white;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 15px;
  transition: background 0.3s;
}

.quote-btn:hover {
  background-color: #00a95c;
}

/* Responsive */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* How to get quote */

.quote-section {
  background-color: #f0f4f9;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.quote-step h4 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

.quote-step h4 span {
  color: #222;
  margin-right: 5px;
}

.highlighted {
  background-color: #ccf5d8;
  padding: 16px 20px;
  border-radius: 14px;
  font-weight: 500;
  color: #333;
}

.quote-step p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.quote-image {
  max-width: 300px;
}

@media (max-width: 768px) {
  .quote-image {
    max-width: 220px;
    margin-top: 30px;
  }
}


/* footer  */

.footer-section {
  background-color: #121217;
  font-family: 'Segoe UI', sans-serif;
}

.footer-links a {
  color: #e1e1e1;
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  transition: 0.3s ease;
}

.social-icon:hover {
  background-color: white;
  color: #121217;
}




/* location  */

.location-section {
  background: #fff;
}

.location-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.location-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.location-name {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  text-align: center;
  padding: 10px 5px;
  font-weight: bold;
  font-size: 1.1rem;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
}

.location-arrows .arrow-btn {
  background: none;
  border: 1px solid #aaa;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  outline: none;
  transition: 0.3s ease;
}

.location-arrows .arrow-btn:hover {
  background-color: #e3e3e3;
}

/* banner area  ///////////////////// */

.about-banner {
  background: url('../images/slider/slid.png') no-repeat center center;
  background-size: cover;
  height: 400px; /* Updated height */
  position: relative;
}

.about-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.about-banner .container {
  position: relative;
  z-index: 2;
}

.about-banner h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.breadcrumb a {
  text-decoration: none;
}


/* about section collage  */

.image-collage {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.img-row {
  display: flex;
  gap: 10px;
}

.img-box {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
}

.img-box img {
  width: 80%;
  height: 70%;
  object-fit: cover;
  display: block;
}

.img-box.tall {
  flex: 2;
}

.img-box.wide {
  flex: 2;
}

@media (max-width: 768px) {
  .img-row {
    flex-direction: column;
  }

  .img-box {
    height: 200px;
  }
}

/* our fleet area  */

.car-card img {
  height: 120px;
  object-fit: cover;
  display: block;
  margin: 0 auto; /* This centers the image */
}

@media (max-width: 768px) {
  .car-card img {
    height: 100px;
    width: auto;         /* Maintain aspect ratio */
    max-width: 100%;     /* Prevent overflow */
  }
}



/* top locations  */

.location-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.location-item:hover img {
  transform: scale(1.05);
}

.location-item h6 {
  font-weight: 600;
}

@media (max-width: 576px) {
  .location-item img {
    width: 100px;
    height: 100px;
  }
}

/* location 2  */

.location-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.location-card:hover {
  transform: translateY(-5px);
}

.location-card .card-img {
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 12px;
}

.location-card .card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.location-card:hover .card-img img {
  transform: scale(1.05);
}

.custom-btn {
  display: inline-block;
  background-color: #1bb55b;
  color: #fff;
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  background-color: white;
  color: #00b386;
}

/* services card  */

.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: left;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .card-img {
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 12px;
}

.service-card .card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .card-img img {
  transform: scale(1.05);
}

.service-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.custom-btn.small {
  padding: 6px 16px;
  font-size: 14px;
  background-color: #00b386;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.custom-btn.small:hover {
  background-color: #1ebc59;
}

/* buttons  */

/* Card Styling */
.click-card {
  display: block;
  background-color: #00b38a;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.click-card:hover {
  background-color: #019472;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.click-card h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
}

/* Popup Modal Styling */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.popup-content h4 {
  margin-bottom: 20px;
}

.popup-content input,
.popup-content select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.popup-content button {
  background-color: #00b38a;
  color: #fff;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.popup-content button:hover {
  background-color: #019472;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 576px) {
  .popup-content {
    padding: 20px;
  }

  .click-card h3 {
    font-size: 20px;
  }
}


/* contact section  */

.contact-section {
  background: #f9f9f9;
}

.contact-section h5, 
.contact-section h4 {
  color: #000;
}

.contact-section a {
  color: #00b38f;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}


