/* General Reset */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: 'Poppins', sans-serif;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  color: #fff;
}

/* =================================hero section======================================= */
/* Hero Section */

a {
  text-decoration: none;
  color: inherit;
}

/* Hero Container */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Video Background Slider */
.video-slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
}
.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Overlay for readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

/* Transparent Navbar */
.navbar {
  position: absolute; /* NOT sticky */
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* Glassmorphism Effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 16px 16px;
  transition: all 0.3s ease;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links li a {
  color: white;
  font-weight: 500;
  transition: color 0.3s;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.nav-links li a:hover {
  color: #ffd700;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 200px;
  padding: 60px 40px;
  max-width: 600px;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
  pointer-events: none; /* ✅ Important */
}


.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}
.hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
.btn-primary {
  padding: 12px 30px;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #e5c100;
}

/* === Manual Video Controls === */
/* === Manual Video Controls (Bottom-Centered, Always Horizontal, Responsive) === */
.manual-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  z-index: 10;
  pointer-events: auto;
  padding: 10px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.manual-controls::-webkit-scrollbar {
  display: none;
}

.manual-controls button {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 14px; /* ⬅️ Reduced padding */
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.8rem; /* ⬅️ Slightly smaller font */
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Active button styling */
.manual-controls button.active {
  background-color: #ffd700;
  color: #000;
  border-color: #ffd700;
}

.manual-controls button:hover {
  background-color: #ffd700;
  color: #000;
  border-color: #ffd700;
}

/* Optional tweak for very small devices */
@media (max-width: 480px) {
  .manual-controls {
    bottom: 20px;
    gap: 8px;
    padding: 8px 12px;
  }

  .manual-controls button {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}


.manual-controls button {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.manual-controls button:hover {
  background-color: #ffd700;
  color: #000;
  border-color: #ffd700;
}

/* Fade Animation (optional but used in JS) */
.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fade-in {
  opacity: 1;
  transition: opacity 0.8s ease;
}


/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 30px;
    top: 70px;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 8px;
    z-index: 99;
  }
  .nav-links.active {
    display: flex;
  }
  .hero-content {
    padding: 40px 20px;
  }
  .hero-title {
    font-size: 2rem;
  }
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px; /* shifted from right to left */
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}



/* ================================card packages====================================== */

/* === SECTION & TITLES === */
.yatra-packages-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #111;
}

.slider-wrapper {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  overflow: hidden;
}

.infinite-slider {
  overflow-x: auto;
  scroll-behavior: smooth;
}

.slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.yatra-card {
  background-color: #f6d743;
  border-radius: 12px;
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  padding: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.yatra-card:hover {
  transform: scale(1.03);
}

.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.card-text {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
}

.card-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-btn:hover {
  background-color: #333;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: white;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

@media (max-width: 768px) {
  .slider-wrapper {
    padding: 0 20px;
  }

  .yatra-card {
    min-width: 240px;
  }

  .arrow {
    padding: 10px;
    font-size: 16px;
  }

  .section-title {
    font-size: 2rem;
  }
}


/*================================Big Car============================================================*/

/* big car section */
/* Wrapper Section */
.bigCar-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 5%;
  background-color: #fff;
  flex-wrap: wrap;
}

/* Left Content */
.bigCar-content {
  flex: 1 1 50%;
  max-width: 600px;
}

.bigCar-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin-bottom: 20px;
}

.bigCar-highlight {
  color: #f6d743;
}

/* Paragraph */
.bigCar-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

/* Button */
.bigCar-btn {
  display: inline-block;
  background-color: #f6d743;
  color: #000;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.bigCar-btn:hover {
  background-color: #e9c931;
}

/* Image Container */
.bigCar-image {
  flex: 1 1 45%;
  text-align: right;
}

.bigCar-image img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .bigCar-section {
    flex-direction: column;
    text-align: center;
  }

  .bigCar-content,
  .bigCar-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .bigCar-heading {
    font-size: 2.2rem;
  }

  .bigCar-image {
    text-align: center;
    margin-top: 30px;
  }
}

/* ======= Popular Cabs Section ======= */
.popular-cabs-section {
  padding: 60px 5%;
  background-color: #fff;
  text-align: center;
}

.cab-subheading {
  font-style: italic;
  color: #b59d31;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cab-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
  position: relative;
}

.cab-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #f6d743;
  margin: 10px auto 0;
}

/* ======= Grid layout ======= */
.cab-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* ======= Individual Cab Card (Wider, Image Quality Maintained) ======= */
.cab-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 380px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.cab-card:hover {
  transform: translateY(-5px);
}

.cab-image {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}

.cab-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.cab-card:hover .cab-image img {
  transform: scale(1.07);
}

/* ======= Cab Info ======= */
.cab-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.cab-type {
  font-size: 0.95rem;
  color: #e8b800;
  margin-bottom: 8px;
  font-weight: 500;
}

.cab-desc {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* ======= Feature Tags with FontAwesome Icons ======= */
.cab-tags {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap; /* Force single line */
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: nowrap;
  overflow-x: auto;  /* Optional: allow scroll on mobile */
}

.cab-tag {
  border: 1px solid #eee;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #222;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  min-width: 100px;
}

.cab-tag i {
  color: #f6d743;
  font-size: 1rem;
}

/* ======= Pricing/Offer ======= */
.cab-offer {
  font-weight: 600;
  font-size: 1rem;
  color: #f6d743;
  margin-bottom: 16px;
}

/* ======= CTA Button ======= */
.cab-info-btn {
  display: inline-block;
  width: 100%;
  background-color: #f6d743;
  color: #000;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.cab-info-btn:hover {
  background-color: #e6c832;
}

/* ======= Responsive Design ======= */
@media (max-width: 768px) {
  .cab-heading {
    font-size: 2rem;
  }

  .cab-grid {
    gap: 24px;
  }

  .cab-card {
    width: 100%;
    padding: 20px 16px;
  }

  .cab-image img {
    height: auto;
  }
}

/*========================================Moving Car=================================================*/
/* Section Base */
.comfort-car-section {
  width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* White Background Section */
.comfort-white-bg {
  background-color: #ffffff;
  padding: 60px 20px 40px;
  text-align: center;
}

/* Heading */
.car-heading h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f1a22;
}

.car-heading .highlight {
  color: #f6d743;
}

/* Car Image */
.car-container {
  padding: 20px;
}

.animated-car {
  max-width: 100%;
  height: auto;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease;
}

.animated-car.in-view {
  opacity: 1;
  transform: translateX(0);
}


/* Info Section: Black Background */
.comfort-info {
  background-color: #0e1a21;
  padding: 60px 5%;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.comfort-left {
  flex: 1 1 40%;
}

.comfort-left img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.comfort-right {
  flex: 1 1 55%;
}

.comfort-right h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.4;
}

.comfort-right .yellow {
  color: #f6d743;
}

.comfort-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.comfort-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 10px;
}

/* ✅ Updated Icon Size */
.comfort-box img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background-color: transparent;
  border-radius: 6px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.comfort-box:hover img {
  transform: scale(1.1);
}

.comfort-box p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .comfort-info {
    flex-direction: column;
    text-align: center;
  }

  .comfort-right h4 {
    font-size: 1.3rem;
  }

  .comfort-box img {
    width: 48px;
    height: 48px;
  }
}



/*=========================Family Section========================================================*/

.family-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  background-color: #fff;
  flex-wrap: wrap;
}

.family-content {
  flex: 1 1 50%;
  max-width: 600px;
}

.family-content h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
  color: #111;
}

.family-content h2 .highlight {
  color: #f3cc30;
}

.family-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.booking-info {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.booking-info .highlight {
  color: #f3cc30;
  font-weight: bold;
  font-size: 1.2rem;
}

.btn-book {
  display: inline-block;
  margin-top: 10px;
  background-color: #f3cc30;
  color: #000;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-book:hover {
  background-color: #e0bb29;
}

.family-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.family-image img {
  max-width: 100%;
  height: auto;
}

/*======================Airport Taxi Section=============================================*/
.parallax-section {
  position: relative;
  height: 80vh;
  background-image: url("../assests/Image/airportPic.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: background-position;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.parallax-content {
  color: #fff;
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.parallax-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.highlight {
  color: #f6d743;
}

.parallax-content .subheading {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-style: italic;
  color: #ddd;
}

.btn-book {
  background-color: #f6d743;
  color: #000;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-book:hover {
  background-color: #e5c529;
}

@media (max-width: 768px) {
  .parallax-content h2 {
    font-size: 2.2rem;
  }

  .parallax-content .subheading {
    font-size: 1rem;
  }
}

/*=================================Testimonials==================================================*/

.testimonials {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  overflow: hidden;
  margin-left: 5%;
  margin-right: 5%;
}

.testimonials-header .subtitle {
  font-size: 1rem;
  color: #888;
}

.testimonials-header h3 {
  font-size: 2rem;
  margin: 0.5rem 0;
  color: black;
}

.rating-summary {
  margin-top: 10px;
}

.rating-label {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}

.stars {
  font-size: 1.4rem;
  color: #ffc107;
  margin: 5px 0;
}

.reviews-count {
  color: #333;
}

.google-logo {
  width: 90px;
  margin-top: 8px;
}

/* Scroll Wrapper */
.scroll-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: scroll-right 40s linear infinite;
}

@keyframes scroll-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Review Cards */
.review-card {
  width: 250px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  margin: 0 10px;
  flex-shrink: 0;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.avatar-circle {
  color: #fff;
  width: 45px;
  height: 45px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 10px;
}

.review-meta h4 {
  margin: 0;
  font-size: 1rem;
  color: #000;
}

.review-date {
  font-size: 0.8rem;
  color: #777;
}

.google-icon-wrap {
  margin-left: auto;
}

.google-icon {
  width: 20px;
  height: 20px;
}

.review-stars {
  font-size: 1.1rem;
  color: #ffc107;
  margin: 5px 0;
}

.verified-icon {
  width: 16px;
  vertical-align: middle;
  margin-left: 4px;
}

.review-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}


/* ✅ Trustindex Badge Container */
.trustindex-container {
  display: flex;
  justify-content: flex-end;
  padding: 15px 10px 0 0;
}

.verified-badge {
  background: #1b9f60;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.verified-badge i {
  font-size: 1rem;
}


/*============================Footer===================================================*/
/* Footer */
.footer {
  background-color: #1b1b1b;
  color: #ddd;
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 10% 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f3cc30;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #aaa;
}

.footer-links,
.footer-support,
.footer-contact {
  min-width: 200px;
}

.footer-links h4,
.footer-support h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #fff;
}

.footer-links ul,
.footer-support ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-support ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-support ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-support ul li a:hover {
  color: #f3cc30;
}

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.2rem;
  color: #aaa;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f3cc30;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

/* car insurance */
.car-insurance-section {
  background-color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

.insurance-content {
  max-width: 800px;
  margin: 0 auto;
}

.insurance-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.insurance-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-book {
  padding: 12px 30px;
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-book:hover {
  background-color: #e5c100;
}


/* ======================LOGO================================= */
.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
  background-color: rgba(255, 255, 255, 0.1); /* semi-transparent white backdrop */
  padding: 6px;
  border-radius: 8px;
}

.infinite-slider {
  overflow-x: auto;
  scroll-behavior: smooth;
}


/* =============Full Responsive view======================== */

/* ============================== RESPONSIVE BREAKPOINTS ============================== */

/* Tablet Landscape (992px - 1199px) */
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .navbar {
    padding: 15px 30px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .bigCar-heading,
  .parallax-content h2 {
    font-size: 2.8rem;
  }
}

/* Tablet Portrait (768px - 991px) */
@media screen and (max-width: 991px) and (min-width: 768px) {
  /* Navigation */
  .navbar {
    padding: 15px 25px;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .nav-links li a {
    font-size: 0.95rem;
  }
  
  /* Hero Section */
  .hero-content {
    margin-top: 150px;
    padding: 40px 30px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  /* Manual Controls */
  .manual-controls {
    bottom: 25px;
    gap: 8px;
  }
  
  .manual-controls button {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  
  /* Sections */
  .bigCar-section,
  .comfort-info,
  .family-section {
    padding: 50px 4%;
    gap: 30px;
  }
  
  .bigCar-heading {
    font-size: 2.5rem;
  }
  
  /* Cards */
  .yatra-card {
    min-width: 260px;
    max-width: 260px;
  }
  
  .cab-card {
    width: 320px;
  }
  
  /* Testimonials */
  .testimonial-track {
    animation-duration: 35s;
  }
}

/* Mobile Landscape (576px - 767px) */
@media screen and (max-width: 767px) and (min-width: 576px) {
  /* Navigation */
  .navbar {
    padding: 12px 20px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 20px;
    top: 65px;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
    border-radius: 8px;
    z-index: 99;
    min-width: 200px;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    margin-bottom: 10px;
  }
  
  /* Hero Section */
  .hero {
    min-height: 500px;
  }
  
  .hero-content {
    margin-top: 200px;
    padding: 30px 20px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  /* Manual Controls */
  .manual-controls {
    bottom: 20px;
    gap: 6px;
    padding: 8px 15px;
  }
  
  .manual-controls button {
    padding: 6px 10px;
    font-size: 0.7rem;
  }
  
  /* Sections */
  .section-title,
  .cab-heading {
    font-size: 1.8rem;
  }
  
  .bigCar-section,
  .comfort-info,
  .family-section {
    flex-direction: column;
    padding: 40px 15px;
    text-align: center;
  }
  
  .bigCar-heading {
    font-size: 2rem;
  }
  
  .family-content h2 {
    font-size: 2rem;
  }
  
  /* Cards */
  .slider-wrapper {
    padding: 0 15px;
  }
  
  .yatra-card {
    min-width: 240px;
    max-width: 240px;
    padding: 15px;
  }
  
  .cab-grid {
    gap: 20px;
  }
  
  .cab-card {
    width: 100%;
    max-width: 350px;
  }
  
  .cab-tags {
    justify-content: center;
    gap: 8px;
  }
  
  .cab-tag {
    min-width: 80px;
    padding: 6px 10px;
    font-size: 0.8rem;
  }
  
  /* Comfort Section */
  .comfort-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .comfort-box img {
    width: 48px;
    height: 48px;
  }
  
  /* Parallax */
  .parallax-section {
    height: 60vh;
    min-height: 400px;
  }
  
  .parallax-content h2 {
    font-size: 2rem;
  }
  
  /* Testimonials */
  .testimonials {
    padding: 40px 15px;
    margin-left: 2%;
    margin-right: 2%;
  }
  
  .testimonials-header h3 {
    font-size: 1.7rem;
  }
  
  .review-card {
    width: 220px;
    padding: 15px;
  }
  
  /* Footer */
  .footer {
    padding: 40px 5% 20px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 25px;
  }
}

/* Mobile Portrait (320px - 575px) */
@media screen and (max-width: 575px) {
  /* Navigation */
  .navbar {
    padding: 10px 15px;
  }
  
  .logo {
    font-size: 20px;
  }
  
  .logo img {
    height: 45px;
  }
  
  .nav-links {
    right: 15px;
    top: 60px;
    min-width: 180px;
    padding: 15px;
  }
  
  /* Hero Section */
  .hero {
    min-height: 450px;
  }
  
  .hero-content {
    margin-top: 200px;
    padding: 20px 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 15px;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  /* Manual Controls */
  .manual-controls {
    bottom: 15px;
    gap: 5px;
    padding: 6px 10px;
    max-width: 90%;
  }
  
  .manual-controls button {
    padding: 5px 8px;
    font-size: 0.65rem;
    min-width: 60px;
  }
  
  /* WhatsApp Float */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    left: 15px;
  }
  
  /* Sections */
  .section-title,
  .cab-heading,
  .insurance-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  
  .yatra-packages-section,
  .popular-cabs-section,
  .car-insurance-section {
    padding: 40px 10px;
  }
  
  .bigCar-section,
  .comfort-info,
  .family-section {
    padding: 30px 10px;
  }
  
  .bigCar-heading {
    font-size: 1.7rem;
    line-height: 1.2;
  }
  
  .family-content h2 {
    font-size: 1.7rem;
    line-height: 1.2;
  }
  
  /* Cards */
  .slider-wrapper {
    padding: 0 10px;
  }
  
  .yatra-card {
    min-width: 220px;
    max-width: 220px;
    padding: 12px;
  }
  
  .card-title {
    font-size: 1rem;
  }
  
  .card-text {
    font-size: 0.85rem;
  }
  
  .cab-card {
    padding: 15px;
  }
  
  .cab-name {
    font-size: 1.1rem;
  }
  
  .cab-tags {
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .cab-tag {
    min-width: 70px;
    padding: 5px 8px;
    font-size: 0.75rem;
  }
  
  /* Comfort Section */
  .comfort-white-bg {
    padding: 40px 15px 30px;
  }
  
  .car-heading h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .comfort-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .comfort-box img {
    width: 40px;
    height: 40px;
  }
  
  .comfort-box p {
    font-size: 0.8rem;
  }
  
  /* Parallax */
  .parallax-section {
    height: 50vh;
    min-height: 350px;
  }
  
  .parallax-content {
    padding: 0 15px;
  }
  
  .parallax-content h2 {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  
  .parallax-content .subheading {
    font-size: 0.95rem;
  }
  
  /* Testimonials */
  .testimonials {
    padding: 30px 10px;
    margin-left: 1%;
    margin-right: 1%;
  }
  
  .testimonials-header h3 {
    font-size: 1.5rem;
  }
  
  .rating-label {
    font-size: 1.2rem;
  }
  
  .stars {
    font-size: 1.2rem;
  }
  
  .google-logo {
    width: 70px;
  }
  
  .review-card {
    width: 200px;
    padding: 12px;
  }
  
  .avatar-circle {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .review-meta h4 {
    font-size: 0.9rem;
  }
  
  .review-text {
    font-size: 0.85rem;
  }
  
  /* Footer */
  .footer {
    padding: 30px 3% 15px;
  }
  
  .footer-logo {
    font-size: 1.5rem;
  }
  
  .footer-about p,
  .footer-contact p {
    font-size: 0.85rem;
  }
  
  .footer-links h4,
  .footer-support h4,
  .footer-contact h4 {
    font-size: 1rem;
  }
  
  .social-icons a {
    font-size: 1.1rem;
    margin-right: 10px;
  }
}

/* Very Small Screens (280px - 319px) */
@media screen and (max-width: 319px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .section-title,
  .bigCar-heading,
  .family-content h2 {
    font-size: 1.4rem;
  }
  
  .yatra-card,
  .review-card {
    min-width: 180px;
    max-width: 180px;
  }
  
  .manual-controls button {
    padding: 4px 6px;
    font-size: 0.6rem;
    min-width: 50px;
  }
  
  .comfort-grid {
    grid-template-columns: 1fr;
  }
  
  .cab-tags {
    flex-direction: column;
    align-items: center;
  }
}

/* Cross-Browser Compatibility */
/* Firefox */
@-moz-document url-prefix() {
  .video-bg {
    -moz-object-fit: cover;
  }
  
  .navbar {
    -moz-backdrop-filter: blur(20px);
  }
}

/* Safari */
@supports (-webkit-appearance: none) {
  .navbar {
    -webkit-backdrop-filter: blur(20px) saturate(160%);
  }
  
  .manual-controls button {
    -webkit-backdrop-filter: blur(8px);
  }
}

/* Internet Explorer (fallbacks) */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .navbar {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .manual-controls button {
    background-color: rgba(255, 255, 255, 0.3);
  }
  
  .video-bg {
    width: 100%;
    height: 100%;
  }
}

/* Hover Effects for Touch Devices */
@media (hover: none) and (pointer: coarse) {
  .yatra-card:hover,
  .cab-card:hover {
    transform: none;
  }
  
  .nav-links li a:hover,
  .btn-primary:hover,
  .btn-book:hover {
    background-color: initial;
    color: initial;
  }
  
  .comfort-box:hover img {
    transform: none;
  }
}
