.why-choose-us {
  padding: 10px 20px;
  background: #fff;

}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-item .icon {
  font-size: 38px;
  color: #000;
  min-width: 50px;
}

.feature-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 28px;
  }
}
   .services {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  height: 100%;
}

/* Hover effect (optional but 🔥) */
.services:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
}

.car-wrap {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.car-wrap .img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.price-wrap {
  background: #ff5f13;
  color: #fff;
  padding: 8px 12px;
  border-top-right-radius: 10px;
}

.price-wrap .rate {
  font-size: 20px;
  font-weight: 700;
}

.price-wrap .from-day {
  margin-left: 8px;
  font-size: 12px;
  line-height: 1.2;
}

.car-wrap h2 {
  font-size: 18px;
  font-weight: 600;
}

.car-wrap .brand {
  font-size: 14px;
  color: #999;
}

.car-specs div {
  width: 33%;
}

.car-specs i {
  font-size: 18px;
  color:#FFC107;
}

.car-specs p {
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: 600;
}

.btn-black {
  border: 1px solid #000;
  color: #000;
  padding: 6px 12px;
  font-size: 14px;
}

.btn-black:hover {
  background: #000;
  color: #fff;
}
.services-section {
  padding: 10px 20px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffb400;
}

.section-header .line {
  display: block;
  width: 60px;
  height: 3px;
  background: #ffb400;
  margin: 10px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #333;
  color: #fff;
  padding: 35px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ffb400;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.service-card .icon {
  font-size: 40px;
  color: #ffb400;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffb400;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  margin-bottom: 12px;
  font-size: 15px;
  position: relative;
  padding-left: 22px;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffb400;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}
.explore{
  font-family:'Poppins',sans-serif;
  background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
  color:#fff;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
  font-weight:700;
}

.section-title span{
  color:orange;
}

.card{
  border:none;
  border-radius:20px;
  overflow:hidden;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.08);
  transition: all .4s ease;
}

.card:hover{
  transform: translateY(-12px) scale(1.03);
  box-shadow:0 25px 50px rgba(255,165,0,.4);
}

.card img{
  height:230px;
  object-fit:cover;
}

.card-body{
  padding:20px;
}

.card-title{
  font-weight:600;
}

.card-text{
  font-size:14px;
  color:#ddd;
}

.badge-custom{
  background: linear-gradient(45deg,orange,#ffcc70);
  color:#000;
  position:absolute;
  top:15px;
  left:15px;
  padding:6px 14px;
  border-radius:30px;
  font-size:12px;
  font-weight:600;
}

.btn-custom{
  background: linear-gradient(45deg,orange,#ffcc70);
  color:#000;
  font-weight:600;
  border-radius:30px;
  padding:6px 18px;
}

.btn-custom:hover{
  background: linear-gradient(45deg,#ffcc70,orange);
}
.card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Keep image height consistent */
.card img {
  height: 220px;
  object-fit: cover;
}

/* Push text nicely */
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* contact */
.contact-section {
  background: #f8f9fa;
}

/* Title */
.contact-section h1 {
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.contact-section h5 {
  letter-spacing: 1px;
}

/* =========================
   CONTACT INFO CARDS
========================= */
.contact-info {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 14px; /* 👈 THIS ADDS PERFECT GAP */
  transition: 0.3s;
}


.contact-info:hover {
  transform: translateY(-6px);
}

.icon-box {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg,#FFC107,#d4a107);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
}

/* =========================
   CONTACT FORM
========================= */
.contact-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-form .form-control {
  height: 55px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 15px 18px;
  font-size: 15px;
  transition: 0.3s;
}

.contact-form textarea.form-control {
  height: auto;
  resize: none;
}

.contact-form .form-control:focus {
  background: #ffffff;
  border-color:#FFC107;
  box-shadow: 0 0 0 4px rgba(255,138,0,0.2);
}

.contact-form .form-control::placeholder {
  color: #9ca3af;
}

/* Button */
.btn-gradient {
background: linear-gradient(135deg,#FFC107,#d4a107);
  border: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  transition: 0.3s;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255,138,0,0.35);
}

/* =========================
   MAP
========================= */
.map-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .contact-form {
    padding: 25px;
  }

  .map-frame {
    min-height: 350px;
  }
}

@media (max-width: 767px) {
  .contact-info {
    flex-direction: column;
    text-align: center;
  }

  .icon-box {
    margin-bottom: 12px;
  }

  .contact-form {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .contact-form {
    padding: 20px;
    border-radius: 16px;
  }

  .contact-form .form-control {
    height: 52px;
    font-size: 14px;
  }

  .btn-gradient {
    font-size: 15px;
    padding: 14px;
  }

  .map-frame {
    min-height: 300px;
    border-radius: 16px;
  }
}
/* footer */
   .site-footer {
      position: relative;
      background: url("../images/bg_2.jpg") center / cover no-repeat;
      color: #cfcfcf;
    }

    .footer-overlay {
      background: rgba(0, 0, 0, 0.85);
      padding-top: 60px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }

    .footer-col h4 {
      color: #ffffff;
      font-size: 20px;
      margin-bottom: 20px;
    }

    .footer-col p {
      font-size: 14px;
      line-height: 1.7;
    }

    .logo-box img {
      width: 90px;
      margin-bottom: 15px;
    }

    /* Quick Links */
    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #cfcfcf;
      text-decoration: none;
      font-size: 14px;
      padding-left: 15px;
      position: relative;
      transition: 0.3s;
    }

    .footer-links a::before {
      content: "›";
      position: absolute;
      left: 0;
      color: #f5b754;
    }

    .footer-links a:hover {
      color: #f5b754;
    }

    /* Social Icons */
    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      color: #ffffff;
      font-size: 20px;
      text-decoration: none;
      transition: 0.3s;
    }

    .social-icons .fb {
      background: #1877f2;
    }

    .social-icons .ig {
      background: #ff5a00;
    }

    .social-icons a:hover {
      transform: translateY(-4px);
    }

    /* Footer Bottom */
    .footer-bottom {
      max-width: 1200px;
      margin: 40px auto 0;
      padding: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      justify-content: space-between;
      font-size: 13px;
    }

    .footer-bottom a {
      color: #f5b754;
      text-decoration: none;
    }

    /* ================= RESPONSIVE ================= */

    @media (max-width: 1024px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .social-icons {
        justify-content: center;
      }

      .footer-links a {
        padding-left: 0;
      }

      .footer-links a::before {
        display: none;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
      }
    }
    .social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Brand colors */
.social-icons .fb {
  background: #1877f2;
}

.social-icons .ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-icons .tw {
  background: #1da1f2;
}

.social-icons a:hover {
  transform: translateY(-4px) scale(1.05);
}
@media (max-width: 600px) {
  .social-icons {
    justify-content: center;
  }
}
/* Floating Icons */
.floating-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Colors */
.float-btn.phone {
  background:deepskyblue;
}

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.arrow {
  background: #2ecc71;
}

/* Mobile adjustment */
@media (max-width: 600px) {
  .floating-icons {
    right: 15px;
    bottom: 15px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}
/* CTA Section */
.taxi-cta {
  background: #FFC107;
  padding: 70px 20px;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Text */
.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #222;
}

/* Image */
.cta-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.cta-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .cta-text h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-image {
    justify-content: center;
  }

  .cta-text h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .taxi-cta {
    padding: 50px 15px;
  }

  .cta-text h2 {
    font-size: 26px;
  }

  .cta-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}
/* ================= TESTIMONIAL SECTION ================= */

.testimony-section {
  background: #ffffff;
  padding: 40px 0;
}

.heading-section .subheading {
  color: #fbbc04;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.heading-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
}

/* Testimonial Card */
.testimony-wrap {
  background: #fff;
  padding: 40px 30px 50px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.4s ease;
}

.testimony-wrap:hover {
  transform: translateY(-8px);
}

/* Vertical Accent Line */
.testimony-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  width: 5px;
  height: 120px;
  background: #fbbc04;
  border-radius: 5px;
}

/* User Image */
.user-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  border: 4px solid #fbbc04;
}

/* Text */
.testimony-wrap .text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.testimony-wrap .name {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.testimony-wrap .position {
  font-size: 14px;
  color: #888;
}

/* ================= OWL DOTS ================= */

.owl-dots {
  text-align: center;
  margin-top: 30px;
}

.owl-dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-dot.active {
  background: #fbbc04;
  width: 14px;
  height: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .heading-section h2 {
    font-size: 30px;
  }

  .testimony-wrap {
    padding: 30px 20px 40px;
  }

  .testimony-wrap::before {
    height: 90px;
  }
}

@media (max-width: 480px) {
  .testimony-wrap .text p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .hero-wrap {
    min-height: auto;
    padding: 80px 0 60px 0;
    background-position: center center;
  }

  .slider-text {
    min-height: auto !important;
    align-items: flex-start !important;
  }

  .hero-wrap .text {
    padding: 0 15px;
  }

  .hero-wrap h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-wrap p {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .hero-wrap {
    min-height: auto;
    padding: 80px 0 60px 0;
    background-position: center center;
  }

  .slider-text {
    min-height: auto !important;
    align-items: flex-start !important;
  }

  .hero-wrap .text {
    padding: 0 15px;
  }

  .hero-wrap h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-wrap p {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .hero-wrap {
    height: 70vh !important ;
  
  }

  .hero-wrap h1 {
    font-size: 32px;   /* scale heading */
    line-height: 1.2;
  }

  .hero-wrap p {
    font-size: 16px;
  }
}

.hero-wrap {
  position: relative;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* darkness control */
  z-index: 1;
}

.hero-wrap .container {
  position: relative;
  z-index: 2;
}
.logo {
  width: 100%;
  max-width: 20%;
}

/* Mobile screen */
@media (max-width: 768px) {
  .logo {
    max-width: 60%;   /* yahan se aur badha sakte ho */
  }
}
    h2 {
      letter-spacing: 1px;
    }

    /* Gallery Card */
    .gallery-card {
      position: relative;
      overflow: hidden;
      border-radius: 18px;
      cursor: pointer;
      background: #fff;
      box-shadow: 0 15px 30px rgba(0,0,0,0.12);
      transition: all 0.4s ease;
    }

    .gallery-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 45px rgba(0,0,0,0.25);
    }

    /* Image */
    .gallery-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .gallery-card:hover img {
      transform: scale(1.15);
    }

    /* Overlay */
    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.35);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.4s ease;
    }

    .gallery-card:hover .overlay {
      opacity: 1;
    }

    /* Icon */
    .overlay i {
      color: #000;
      font-size: 26px;
      background: linear-gradient(135deg, #ffc107, #ffdd55);
      padding: 18px;
      border-radius: 50%;
      transform: scale(0.7) rotate(-45deg);
      transition: all 0.4s ease;
    }

    .gallery-card:hover .overlay i {
      transform: scale(1) rotate(0deg);
    }

    /* 🔥 RESPONSIVE BREAKPOINTS */

    /* Tablets */
    @media (max-width: 991px) {
      .gallery-card img {
        height: 230px;
      }
    }

    /* Mobile */
    @media (max-width: 576px) {
      h2 {
        font-size: 1.6rem;
      }

      .gallery-card img {
        height: 200px;
      }

      .overlay i {
        font-size: 22px;
        padding: 14px;
      }
    }
     .contact-container {
      background: #fff;
      border-radius: 1rem;
      box-shadow: 0 0 30px rgb(0 0 0 / 0.1);
      max-width: 900px;
      width: 100%;
      padding: 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: center;
    }
    /* Left side envelope graphic */
    .contact-graphic {
      flex: 1 1 300px;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: bounce 2s infinite ease-in-out;
    }
    .envelope-icon {
      position: relative;
      width: 160px;
      height: 120px;
      background: #e0e0e7;
      border-radius: 1rem;
      box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
      overflow: visible;
    }
    .envelope-icon::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      border-left: 80px solid transparent;
      border-right: 80px solid transparent;
      border-bottom: 60px solid #6c63ff; /* Purple flap */
      border-radius: 1rem 1rem 0 0;
      z-index: 2;
    }
    .envelope-icon::after {
      content: "";
      position: absolute;
      top: 60px;
      left: 0;
      width: 160px;
      height: 60px;
      background: #f4f4f8;
      border-radius: 0 0 1rem 1rem;
      z-index: 1;
    }
    /* Right side form */
    .contact-form {
      flex: 1 1 350px;
    }
    .contact-form h2 {
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #222;
      font-size: 1.8rem;
    }
    /* Input group icons */
    .form-control {
      border-radius: 2rem !important;
      padding-left: 3rem !important;
      height: 45px;
      box-shadow: none !important;
      border: 1.8px solid #ddd;
      transition: border-color 0.3s ease;
    }
    .form-control:focus {
      border-color: #6c63ff;
      box-shadow: 0 0 6px #6c63ffaa;
      outline: none;
    }
    .input-icon {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #6c63ff;
      font-size: 1.2rem;
      pointer-events: none;
    }
    /* Textarea */
    textarea.form-control {
      min-height: 120px;
      resize: vertical;
    }
    /* Button */
    .btn-send {
      background-color: #ffc107;
      color: #222;
      border: none;
      border-radius: 2rem;
      padding: 12px 40px;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
      transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      user-select: none;
      display: inline-block;
      margin-top: 1.5rem;
    }
    .btn-send:hover,
    .btn-send:focus {
      background-color: #e6b600;
      box-shadow: 0 6px 25px rgba(230, 182, 0, 0.7);
      transform: scale(1.05);
      color: #111;
      outline: none;
    }
    /* Responsive tweaks */
    @media (max-width: 767px) {
      .contact-container {
        flex-direction: column;
      }
      .contact-graphic {
        margin-bottom: 2rem;
      }
    }
    /* Bounce animation */
    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-15px);
      }
    }
    /* Fade in animation */
    .fade-in {
      animation: fadeIn 1s ease forwards;
      opacity: 0;
    }
    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
.hero-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroSlider 20s infinite;
}

/* Dark overlay (agar pehle se hai to skip) */
.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-wrap .container {
  position: relative;
  z-index: 2;
}

@keyframes heroSlider {
  0% {
    background-image: url("../images/1.jpg");
  }
  25% {
    background-image: url("../images/car-10.jpg");
  }
  50% {
    background-image: url("../images/background.jpeg");
  }
  75% {
    background-image: url("../images/car-4.jpg");
  }
  100% {
    background-image: url("../images/car-7.jpg");
  }
}

    .hero-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroSlider 20s infinite ease-in-out;
}

