  /* Reset & Base */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Poppins", sans-serif;
    background: #f8fbff;
  }

  /* === ROOT COLORS (Orange + Blue Theme) === */
:root {
  --primary-orange: #ff6b35;   
  --primary-blue: #001d5a; 
  --dark-blue: #00277d;  
  --light-bg: #fff8f5;     
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --border-accent: #ff6b35;
  --whatsapp-green: #25D366;     /* Official WhatsApp Green */
  --whatsapp-dark: #128C7E;      /* Hover Dark Green */
}
/* Button Styles */
.button {
  background: var(--primary-orange);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.button:hover {
  background: var(--primary-blue);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
}
/* ===============================
       NAVBAR
    ================================= */
    .nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;            /* space between icon and logo */
  text-decoration: none;
}

/* Car Icon */
.nav-logo i {
  font-size: 28px;
  color: #efc343;      /* change color as you like */
}

/* Logo Image */
.nav-logo img {
  height: 45px;        /* adjust size */
  width: auto;
  display: block;
}

/* Optional: Navbar container */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
    .travel-navbar {
      background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 2px solid var(--primary-orange);
    }
    .navbar-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 30px;
      height: 80px;
    }

    /* Logo */
    .nav-logo a {
      color: var(--text-dark);
      font-size: 28px;
      font-weight: 700;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-logo i {
      color: var(--primary-orange);
      font-size: 36px;
    }

    /* Desktop Menu */
    .nav-menu {
      display: flex;
      gap: 35px;
      align-items: center;
    }
    .nav-menu > li {
      position: relative;
      list-style: none;
    }
    .nav-menu > li > a {
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      padding: 10px 0;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.3s;
    }
    .nav-menu > li > a:hover {
      color: var(--primary-blue);
    }
    .nav-menu > li > a i {
      font-size: 12px;
      transition: transform 0.3s;
    }
    .nav-menu > li:hover > a i {
      transform: rotate(180deg);
    }

    /* Simple Dropdown */
    .dropdown {
      position: absolute;
      top: 100%;
      left: 105%; 
      transform: translateX(-50%);
      background: var(--white);
      min-width: 250px;
      border-radius: 12px;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
      padding: 15px 0;
      display: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      margin-top: 10px;
      border: 1px solid #ffe0d0;
      z-index: 1001;
    }
    .nav-menu > li:hover .dropdown {
      display: block;
      opacity: 1;
      visibility: visible;
      margin-top: 0;
    }
    .dropdown a {
      display: block;
      padding: 10px 20px;
      color: var(--text-light);
      text-decoration: none;
      font-size: 14.5px;
      transition: all 0.3s;
    }
    .dropdown a:hover {
      background: #fff0e6;
      color: var(--primary-orange);
      padding-left: 25px;
    }

    /* Enquiry Icon */
.enquiryBtn {
  /* background: var(--primary-orange); */
  background:#0d9175;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
  gap: 8px; /* space between icon and text */
}

.enquiryBtn:hover {
  background: var(--primary-blue);
  transform: scale(1.05); /* slight scale */
  font-size: 17px; /* optional smooth font increase */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Optional: make sure icon size is consistent */
.enquiryBtn i {
  font-size: 20px; /* keep icon size fixed */
}


    /* Mobile Toggle */
    .mobile-toggle {
      display: none;
      color: var(--text-dark);
      font-size: 26px;
      cursor: pointer;
    }

    /* Mobile Sidebar */
    .mobile-sidebar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 300px;
      height: 100vh;
      background: var(--white);
      padding: 30px;
      transition: left 0.4s ease;
      z-index: 2000;
      overflow-y: auto;
      border-right: 3px solid var(--primary-orange);
    }
    .mobile-sidebar.active {
      left: 0;
    }
    .mobile-sidebar .logo {
      color: var(--text-dark);
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 40px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .mobile-sidebar ul {
      list-style: none;
    }
    .mobile-sidebar ul li {
      border-bottom: 1px solid #ffe0d0;
    }
    .mobile-sidebar ul li a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      color: var(--text-dark);
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
    }
    .submenu a {
      padding-left: 25px !important;
      font-size: 15px !important;
      font-weight: 400 !important;
    }
    .submenu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .submenu.active {
      max-height: 600px;
    }
/* Close icon for mobile sidebar */
#mobileSidebar .close-sidebar {
  position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 1001;
    background: #ff4500;
    border-radius: 50%;
    width: 35px;
    align-items: center;
    text-align: center;
    color: #fff;
}

/* Close icon for mobile sidebar */
#mobileSidebar .close-sidebar {
  position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 1001;
    background: #ff4500;
    border-radius: 50%;
    width: 35px;
    align-items: center;
    text-align: center;
    color: #fff;
}
    /* Backdrop */
    .backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      z-index: 1999;
    }
    .backdrop.active {
      opacity: 1;
      visibility: visible;
    }

    /* Enquiry Popup */
    .enquiry-popup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      background: white;
      width: 400px;
      max-width: 90%;
      border-radius: 18px;
      padding: 30px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      z-index: 2001;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
    }
    .enquiry-popup.active {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
      visibility: visible;
    }
    .popup-header {
      text-align: center;
      margin-bottom: 20px;
    }
    .popup-header h3 {
      color: var(--text-dark);
      font-size: 22px;
      margin-bottom: 8px;
    }
    .popup-header p {
      color: var(--text-light);
      font-size: 14px;
    }
    .form-group {  /* margin-bottom: 18px; */  }
    .form-group label {
      display: block;
      /* margin-bottom: 6px; */
      font-weight: 600;
      color: var(--text-dark);
    }
    .form-group input {
      width: 100%;
      padding: 14px;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      font-size: 15px;
      transition: all 0.3s;
    }
    .form-group input:focus {
      outline: none;
      border-color: var(--primary-orange);
      box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
    }
    .submit-btn {
      width: 100%;
      background: var(--primary-orange);
      color: white;
      padding: 14px;
      border: none;
      border-radius: 50px;
      font-size: 17px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }
    .submit-btn:hover {
      background: var(--primary-blue);
    }
    .close-popup {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 35px;
      height: 35px;
      background: #f0f0f0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
      color: #888;
      transition: all 0.3s;
    } 
    .close-popup:hover {
      background: #ff6b35;
      color: white;
    }  
 
    /* Responsive */
    @media (max-width: 992px) {
      .nav-menu {
        display: none;
      }
      .mobile-toggle {
        display: block;
      }
      .navbar-inner {
        padding: 0 20px;
      }
    }
/* Banner Slider */
.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slides-container {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}
.slide {
  flex: 0 0 100%;
  position: relative;
}
.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  padding: 20px;
  text-align: center;
  /* background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(0, 123, 255, 0.7)); */
}
.overlay h1 {
  margin-bottom: 10px;
  font-size: 2.8rem;
  font-weight: 700;
}
.overlay p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.overlay a {
  text-decoration: none;
  background: var(--primary-orange);
  padding: 14px 30px;
  color: var(--white);
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}
.overlay a:hover,
.overlay a:focus {
  background: var(--primary-blue);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.dots span {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.dots span.active {
  background: var(--primary-orange);
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  z-index: 2;
}
.arrow:hover,
.arrow:focus {
  background: var(--primary-orange);
}
.arrow.left {
  left: 15px;
}
.arrow.right {
  right: 15px;
}

@media (max-width: 768px) {
  .overlay h1 {
    font-size: 2.2rem;
  }
  .overlay p {
    font-size: 1rem;
  }
  .overlay a {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .arrow {
    font-size: 1.5rem;
    padding: 8px;
  }
}
@media (max-width: 480px) {
  .overlay h1 {
    font-size: 1.8rem;
  }
  .overlay p {
    font-size: 0.9rem;
  }
  .overlay {
    padding: 10px;
  }
  .dots span {
    width: 8px;
    height: 8px;
  }
  .arrow {
    font-size: 1.2rem;
    padding: 6px;
  }
}
/* About Section */
.about-section {
  padding: 100px 0; /* top space increased */
  background: var(--light-bg);
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Background image at bottom */
.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px; /* adjust image visibility */
  background-image: url("images/package/about-bg.png"); /* <-- your image here */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain; /* keeps quality */
  opacity: 0.35; /* light transparent feel */
  pointer-events: none;
}

.about-container {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 25px;
}

/* Titles + Text same */
.small-title {
  color: var(--primary-orange);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  max-width: 1400px;
}

.readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-orange);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 17px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.readmore-btn:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .main-title {
    font-size: 28px;
  }

  .about-section {
    padding: 60px 0 80px;
  }

  .about-section::after {
    height: 160px;
    background-size: contain;
    opacity: 0.28;
  }
}


/* ===============================
   CUSTOMER SUPPORT SECTION
=================================*/
.customer-support {
  /* background:#ffdecf; */
  padding: 60px 0;
}

.customer-support-section {
  overflow: hidden;
}

.customer-support-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  padding: 0 30px;
  transition: transform 0.3s ease;
}

.customer-support-card {
  background: linear-gradient(135deg, #ff8c5a, var(--primary-orange));
  color: var(--white);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.customer-support-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 45px rgba(255, 107, 53, 0.35);
  background: linear-gradient(135deg, #ff7a3d, #e65c00);
}

.customer-support-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
  transition: transform 0.5s ease;
}

.customer-support-card:hover .customer-support-icon img {
  transform: translateY(-14px) scale(1.1);
}

.customer-support-content h3 {
  font-size: 1.3rem;
  margin: 0 0 14px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.customer-support-content p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.96;
}

/* Tablet */
@media (max-width: 992px) {
  .customer-support-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }
}

/* Mobile Carousel View */
@media (max-width: 600px) {
  .customer-support {
    padding: 35px 0;
  }

  .customer-support-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 18px;
    padding: 18px;
    gap: 22px;
    -webkit-overflow-scrolling: touch;
  }

  .customer-support-card {
    flex: 0 0 80%;
    max-width: 80%;
    min-width: 275px;
    scroll-snap-align: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px;
  }

  .customer-support-icon img {
    width: 55px;
    height: 55px;
    margin-bottom: 14px;
  }

  .customer-support-content h3 {
    font-size: 1.2rem;
  }

  .customer-support-content p {
    font-size: 0.95rem;
  }

  .customer-support-track::-webkit-scrollbar {
    display: none;
  }
}

/* ===============================
   BOOKING ENQUIRY SECTION
=================================*/
.booking-enquiry {
  position: relative;
  background: url("images/bg-rajasthan-cab.webp") center/cover no-repeat;
  padding: 110px 0;
  color: #fff;
}

.booking-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.85), rgba(0, 123, 255, 0.75));
  backdrop-filter: blur(3px);
}

.booking-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 65px;
}

/* LEFT CONTENT */
.booking-left h1 {
  /* font-size: 50px; */
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 3px 3px 15px rgba(0,0,0,0.6);
  color: var(--white);
}

.booking-left .subtitle {
  font-size: 19px;
  margin-top: 18px;
  margin-bottom: 28px;
  opacity: 0.95;
  color: #f0f0f0;
}

.simple-title {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 700;
  color: #ffd1b3;
}

.booking-points {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.booking-points li {
  font-size: 18px;
  margin: 14px 0;
  padding-left: 8px;
  color: #fff;
}

.booking-points li::before {
  color: #ffddb3;
  font-weight: bold;
  margin-right: 14px;
  font-size: 20px;
}
.booking-points li i {
  color: #002d5e; /* Blue Color */
  background-color: #ff6b35;
  border-radius: 50%;
  padding: 8px;
}

.experience-text {
  font-size: 18px;
  margin-top: 25px;
  font-style: italic;
  opacity: 0.92;
  color: #ffe6d1;
}

/* RIGHT FORM */
.booking-right {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  color: #333;
  border: 3px solid var(--primary-orange);
}

.booking-form .form-row {
  display: flex;
  gap: 5px;
}

.booking-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.booking-form label {
  font-size: 15.5px;
  /* margin-bottom: 9px; */
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 8px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 17px;
  border-radius: 14px;
  border: 2.5px solid #eaeaea;
  background: #fdfdfd;
  font-size: 16.5px;
  transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #f8fbff;
  box-shadow: 0 0 0 6px rgba(0, 123, 255, 0.18);
}

.booking-form textarea {
  height: 140px;
  resize: none;
}

.booking-btn {
  width: 100%;
  background: var(--primary-orange);
  color: #fff;
  padding: 20px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.booking-btn:hover {
  background: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0, 123, 255, 0.45);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .booking-left {
    text-align: center;
  }

  .booking-left h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .booking-enquiry {
    padding: 75px 0;
  }

  .booking-left h1 {
    font-size: 35px;
  }

  .booking-right {
    padding: 38px 28px;
  }

  .booking-form .form-row {
    flex-direction: column;
  }

  .booking-btn {
    padding: 18px;
    font-size: 18.5px;
  }
}
/* ================================
   TOUR PACKAGE SECTION
================================ */
.tour-package-section {
  width: 100%;
  text-align: center;
  padding: 70px 0;
  background: var(--light-bg);
}

.tour-package-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.tour-package-heading span {
  color: var(--primary-orange);
  font-weight: 800;
}

.tour-package-subtext {
  max-width: 780px;
  margin: 0 auto 45px;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

/* SLIDER */
.tour-package-slider-container {
  position: relative;
  width: 92%;
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.tour-package-slider {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
  padding: 12px 0;
}

/* CARD */
.tour-package-card {
  min-width: 300px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
  transition: all 0.4s ease;
  background: var(--white);
}

.tour-package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(255, 107, 53, 0.25);
}

.tour-package-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-package-card:hover img {
  transform: scale(1.06);
}

/* OVERLAY */
.tour-package-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent);
  color: var(--white);
  text-align: left;
}

.tour-package-overlay h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}

.tour-package-stars {
  margin-top: 10px;
  color: var(--gold-star);
  font-size: 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* ARROWS */
.tour-package-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 6px 16px;
  font-size:32px;
  cursor: pointer;
  background: var(--white);
  color: var(--primary-orange);
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: all 0.3s ease;    width: 55px;
}

.tour-package-arrow:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.tour-package-prev { left: 18px; }
.tour-package-next { right: 18px; }

/* MOBILE */
@media (max-width: 768px) {
  .tour-package-slider { gap: 16px; }
  .tour-package-card { min-width: 270px; }
  .tour-package-arrow { padding: 12px 14px; font-size: 26px; }
  .tour-package-prev { left: 10px; }
  .tour-package-next { right: 10px; }
}

/* ================================
   DAY TOUR SECTION
================================ */
.day_tour-section {
  padding: 80px 0;
  background: #fafafa;
}

.day_tour-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.day_tour-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--text-light);
  max-width: 920px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* WRAPPER */
.day_tour-slider-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* 🔥 GRID LAYOUT (MAIN FIX) */
.day_tour-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
  gap: 28px;
}

/* CARD DESIGN */
.day_tour-card {
  width: 100%;
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.11);
  transition: all 0.4s ease;
  border: 1px solid #f3f3f3;
}

.day_tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 42px rgba(255, 107, 53, 0.22);
  border-color: var(--primary-orange);
}

/* IMAGE */
.day_tour-img-box {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.day_tour-img-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.day_tour-card:hover .day_tour-img-box img {
  transform: scale(1.08);
}

/* TEXT */
.day_tour-card-title {
  font-size: 19px;
  font-weight: 600;
  margin: 16px 0 10px;
  color: var(--text-dark);
}

.day_tour-days,
.day_tour-route {
  font-size: 12.5px;
  color: var(--text-light);
}

/* FEATURES */
.day_tour-features-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 16px 0;
  font-size: 13px;
  color: #444;
}

.day_tour-features-left,
.day_tour-features-right {
  width: 50%;
}

/* FOOTER */
.day_tour-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BUTTONS */
.day_tour-price-btn {
  background: var(--primary-orange);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.day_tour-price-btn:hover {
  background: var(--primary-blue);
}

/* 🔥 RESPONSIVE GRID */
@media (max-width: 1024px) {
  .day_tour-slider {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

@media (max-width: 768px) {
  .day_tour-slider {
    grid-template-columns: repeat(1, 1fr); /* 1 per row */
  }
}
/* ===============================
   RCS SERVICE SECTION
=================================*/
.RCS-section {
  background: var(--light-bg);
  padding: 70px 0;
}

.RCS-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

/* Title */
.RCS-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.RCS-title span {
  color: var(--primary-orange);
}

.RCS-subtitle {
  max-width: 880px;
  margin: 0 auto 35px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 16px;
}

/* Tabs */
.RCS-tabs {
  background: #fff;
  padding: 10px;
  border-radius: 50px;
  display: inline-flex;
  gap: 28px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
  margin-bottom: 45px;
  border: 1px solid #ffe0d0;
}

.RCS-tab {
  background: transparent;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.RCS-tab:hover {
  background: #ffe0d0;
  color: var(--primary-orange);
}

.RCS-tab.active {
  background: var(--primary-orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
}

/* Card Grid */
.RCS-cards {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.RCS-cards.active {
  display: grid;
}

/* Cards */
.RCS-card {
  background: var(--white);
  border-radius: 16px;
  padding-bottom: 18px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
}

.RCS-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 35px rgba(255, 107, 53, 0.22);
  border-color: var(--primary-orange);
}

.RCS-card img {
  width: 100%;
  /* height: 190px; */
  object-fit: cover;
  transition: transform 0.5s ease;
}

.RCS-card:hover img {
  transform: scale(1.06);
}

.RCS-card h4 {
  padding: 15px 18px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 992px) {
  .RCS-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .RCS-tabs {
    gap: 18px;
    padding: 8px;
  }

  .RCS-tab {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .RCS-section {
    padding: 50px 0;
  }

  .RCS-title {
    font-size: 28px;
  }

  .RCS-subtitle {
    font-size: 15px;
  }

  .RCS-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px;
    justify-content: center;
  }

  .RCS-tab {
    padding: 9px 16px;
    font-size: 13.5px;
  }

  .RCS-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .RCS-card h4 {
    font-size: 16.5px;
  }
}
/* ============================================
   ATTRACTIVE DARK FOOTER – CUSTOM THEME
============================================ */
.footer-section {
  background: linear-gradient(145deg, #0d1117, #111827);
  padding: 70px 20px 0;
  border-top: 3px solid #ff6b35;
  color: #dbe4f3;
  backdrop-filter: blur(8px);
}

/* Layout */
.footer-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  padding-bottom: 50px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Logo */
.footer-logo img {
  width: 120px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255,107,53,0.35));
}
.footer-logo p {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 15px;
}

/* Social Icons */
.footer-social a {
  font-size: 24px;
  margin-right: 16px;
  color: #ff6b35;
  transition: 0.3s ease;
}
.footer-social a:hover {
  color: #ffaa85;                   
  transform: translateY(-4px) scale(1.12);
}

/* Headings */
.footer-heading {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ff6b35;
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 45px;
  height: 3px;
  background: #ff6b35;
  border-radius: 2px;
}

/* Links */
.footer-links li { 
  list-style: none; 
  margin-bottom: 12px; 
}
.footer-links a {
  color: #cdd4e4;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: 0.35s ease;
  text-decoration: none;
}

/* Right arrow */
.footer-links a::before {
  content: "→";
  color: #ff6b35;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b35;
  padding-left: 8px;
}
.footer-links a:hover::before {
  transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  font-size: 14.5px;
  color: #cfd8e5;
  padding-top: 10px;
  padding-bottom: 70px;
  backdrop-filter: blur(6px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 0 20px 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px 40px;
  }

  .footer-heading {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
  }

  .footer-accordion .accordion-icon::before {
    content: "+";
    font-size: 22px;
    color: #ff6b35;
    display: block;
  }
  .footer-accordion.active .accordion-icon::before {
    content: "-";
  }

  .footer-accordion .footer-links {
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .footer-accordion.active .footer-links { max-height: 420px; }

  .footer-bottom {
    padding: 15px 0;
    font-size: 13px;
  }
}


/* ===============================
   FLOATING BUTTONS
=================================*/
.floating-buttons {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  z-index: 999;
}

.floating-buttons a {
  width: 3.4375rem;
  height: 3.4375rem;
  background: #25d366;                     /* WhatsApp green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 12px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.floating-buttons .call-button {
  background: #f97316;                     /* orange for call */
  box-shadow: 0 5px 12px rgba(255, 107, 53, 0.35);
}

.floating-buttons a:hover,
.floating-buttons a:focus {
  transform: scale(1.15);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

/* Mobile tweak */
@media (max-width: 600px) {
  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
    gap: 0.75rem;
  }
  .floating-buttons a {
    width: 3rem;
    height: 3rem;
    font-size: 1.3rem;
  }
}

/* ===============================
   FLOATING BUTTONS
=================================*/
.floating-buttons {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  z-index: 999;
}

.floating-buttons a {
  width: 3.4375rem;
  height: 3.4375rem;
  background: #25d366;                     /* WhatsApp green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 12px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.floating-buttons .call-button {
  background: #f97316;                     /* orange for call */
  box-shadow: 0 5px 12px rgba(255, 107, 53, 0.35);
}

.floating-buttons a:hover,
.floating-buttons a:focus {
  transform: scale(1.15);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

/* Mobile tweak */
@media (max-width: 600px) {
  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
    gap: 0.75rem;
  }
  .floating-buttons a {
    width: 3rem;
    height: 3rem;
    font-size: 1.3rem;
  }
}

/* ===============================
   SCROLL TO TOP BUTTON
=================================*/
.scroll-top-btn {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  width: 3.125rem;
  height: 3.125rem;
  background: #1e293b;                     /* dark slate */
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
}

.scroll-top-btn:hover,
.scroll-top-btn:focus {
  background: #fbbf24;                     /* gold on hover */
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

/* Mobile tweak */
@media (max-width: 600px) {
  .scroll-top-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }
}

/* =================================== */
/* BLOGS SECTION - ORANGE + BLUE THEME */
/* =================================== */
.blog-section {  
  background: var(--light-bg);
  padding: 80px 0;
  text-align: center;
}

.blog-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.blog-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 5px;
  background: var(--primary-orange);
  border-radius: 3px;
}

.blog-subtitle {
  font-size: 16.5px;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.09);
  transition: all 0.5s ease;
  text-align: left;
  border: 1px solid #eee;
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 7px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card:hover {
  transform: translateY(-14px);
  border-color: var(--primary-orange);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.18);
}

.blog-img -wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #fff8f0;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.12);
}

.blog-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  height: 45px;
  z-index: 2;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.22));
}

.blog-content {
  padding: 22px;
}

.blog-meta {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.blog-meta i {
  color: var(--primary-orange);
  font-size: 0.95rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-dark);
}

.blog-card-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
  
.blog-read-more {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease;
  margin-top: 10px;
  text-decoration: none;
}

.blog-read-more:hover {
  color: var(--primary-orange);
  gap: 12px;
}

.blog-read-more i {
  font-size: 1.15rem;
  transition: transform 0.4s ease;
}

.blog-read-more:hover i {
  transform: translateX(6px);
}

/* Blog Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .blog-section {
    padding: 60px 0;
  }

  .blog-title {
    font-size: 30px;
  }

  .blog-subtitle {
    font-size: 15px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-img-wrapper {
    height: 180px;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-card-title {
    font-size: 1.15rem;
  }
}

/* testimonail section  */
/* Section */
.testimonial-section {
    width: 100%;
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.testimonial-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}
/* Titles */
.testimonial-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-subtitle {
    color: #777;
    margin-bottom: 40px;
}

/* Carousel container */
.testimonial-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

/* Card Style */
.testimonial-card {
    flex: 0 0 auto; /* prevents shrinking */
    width: 100%;
    max-width: 420px;
    background: #F8F9FA;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.1);
    border: 1px solid rgb(198, 198, 198);
}


/* Quote icon */
.testimonial-quote {
    font-size: 40px;
    color: #008037;
}

/* Stars */
.testimonial-stars {
    font-size: 18px;
    color: #FFC107;
}

.testimonial-stars span {
    color: #000;
    font-size: 16px;
}

/* Text */
.testimonial-text {
    margin-top: 10px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* User section */
.testimonial-user {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.testimonial-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-location {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* Dots */
.testimonial-dots {
    text-align: center;
    margin-top: 20px;
}

.testimonial-dots span {
    height: 10px;
    width: 10px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
}

.testimonial-dots .active {
    background: #008037;
}

/* Container for fixed buttons */
.fixed-buttons {
  position: fixed;
  bottom: 20px; /* Margin from bottom */
  left: 50%;
  transform: translateX(-50%); /* Center horizontally */
  z-index: 9999; /* On top of all elements */
  display: flex;
  justify-content: center;
  gap: 15px; /* Space between buttons */
  flex-wrap: wrap; /* Wrap on small screens if needed */
}

/* Common button styles */
.fixed-buttons .btn {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between icon and text */
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease; /* Smooth hover effect for all properties */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow */
}

/* Send Enquiry Button */
.fixed-buttons .btn-enquiry {
  background-color: #007bff;
}

.fixed-buttons .btn-enquiry:hover {
  background-color: #0056b3;
  transform: scale(1.05); /* Slight zoom effect */
}

/* WhatsApp Button */
.fixed-buttons .btn-whatsapp {
  background-color: #25d366;
}

.fixed-buttons .btn-whatsapp:hover {
  background-color: #128c7e;
  transform: scale(1.05); /* Slight zoom effect */
}

/* Icon size */
.fixed-buttons .btn i {
  font-size: 20px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .fixed-buttons {
    bottom: 10px;
    gap: 10px;
  }

  .fixed-buttons .btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .fixed-buttons .btn i {
    font-size: 18px;
  }
}

/* faq section  */
.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0f4ff, #e6ecff);
}
 
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 40px;
  position: relative;
}

.faq-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background: var(--primary-orange);
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* --- FAQ BOX --- */
.faq-box {
  background: #ffffff;
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  border-left: 5px solid var(--primary-orange);
  transition: all 0.3s ease;
}

.faq-box.active {
  border-left: 5px solid var(--primary-blue);
  transform: translateY(-3px);
}

/* Question Row */
.faq-question {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--primary-blue);
}

.faq-icon {
  font-size: 26px;
  color: var(--primary-orange);
  font-weight: bold;
  transition: 0.3s;
}

/* Active icon rotation */
.faq-box.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-blue);
}

/* Answer Area */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin: 16px 0;
}

/* Hover effect */
.faq-box:hover {
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
  .faq-title {
    font-size: 28px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
}


/* === ROOT COLORS (Orange + Blue Theme) === */
:root {
  --primary-orange: #ff6b35;
  --primary-blue: #001d5a;
  --dark-blue: #00277d;
  --light-bg: #fff8f5;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --border-accent: #ff6b35;
  --whatsapp-green: #25D366;  
  --whatsapp-dark: #128C7E;
}

/* ------------------- ABOUT BANNER ------------------- */
.about-banner {
    width: 100%;
    height: 300px;
    background-image: url('images/about/about-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-banner .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 29, 90, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.about-banner h1 {
    font-size: 40px;
    margin: 0;
    color: var(--white);
}

.about-banner p {
    font-size: 18px;
    margin-top: 10px;
    color: var(--white);
}

/* ------------------- ABOUT CONTENT ------------------- */
.about-content-section {
    width: 100%;
    padding: 60px 8%;
    font-family: 'Poppins', sans-serif;
}

.about-content-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.about-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* LEFT IMAGES */
.about-content-images {
    position: relative;
    width: 380px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.about-content-img-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
}

/* EXPERIENCE CIRCLE */
.about-content-experience-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-orange);
    color: var(--white);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    text-align: center;
    padding-top: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about-content-experience-circle span {
    font-size: 26px;
    font-weight: 700;
}

.about-content-experience-circle p {
    font-size: 11px;
    margin-top: 4px;
}

/* RIGHT CONTENT */
.about-content-text {
    flex: 1;
}

.about-content-small-title {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.about-content-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.about-content-text p {
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* BUTTONS */
.about-content-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.about-content-btn {
    padding: 12px 22px;
    border-radius: 30px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.about-content-btn.yellow { background: var(--primary-orange); }
.about-content-btn.green { background: var(--primary-blue); }

.about-content-btn:hover {
    opacity: 0.9;
}

/* ------------------- ABOUT OWNER ------------------- */
.about-owner-section {
    width: 100%;
    padding: 70px 8%;
    font-family: 'Poppins', sans-serif;
}

.about-owner-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-owner-left,
.about-owner-right {
    flex: 1;
    min-width: 280px; /* for responsive */
}

.about-owner-small-title {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.about-owner-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.about-owner-left p {
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-owner-subheading {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

/* OWNER IMAGE */
.about-owner-right img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ------------------- WHY CHOOSE US ------------------- */
.whychoose-section {
    width: 100%;
    padding: 60px 8%;
    background: var(--light-bg);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.whychoose-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.whychoose-title span {
    color: var(--primary-orange);
}

.whychoose-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Cards */
.whychoose-card {
    text-align: left;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.whychoose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Icons */
.whychoose-icon {
    font-size: 38px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.whychoose-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.whychoose-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* ------------------- RESPONSIVE ------------------- */
@media screen and (max-width: 1024px) {
    .about-content-wrapper, 
    .about-owner-container {
        flex-direction: column;
    }
    
    .about-content-images {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .whychoose-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .about-content-section,
    .about-owner-section,
    .whychoose-section {
        padding: 50px 5%;
    }

    .about-banner h1 {
        font-size: 32px;
    }

    .about-banner p {
        font-size: 16px;
    }

    .about-content-heading {
        font-size: 24px;
    }

    .about-owner-title {
        font-size: 24px;
    }

    .whychoose-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {
    .whychoose-container {
        grid-template-columns: 1fr;
    }

    .about-content-images {
        grid-template-columns: 1fr;
    }

    .about-content-experience-circle {
        width: 90px;
        height: 90px;
        padding-top: 18px;
    }

    .about-content-experience-circle span {
        font-size: 22px;
    }

    .about-content-experience-circle p {
        font-size: 10px;
    }

    .about-content-heading,
    .about-owner-title {
        font-size: 20px;
    }

    .whychoose-title {
        font-size: 24px;
    }
}

.Car-Rental-banner-section {
    width: 100%;
    padding: 125px 10px;
    background: url("images/back_pages.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Dark overlay */
.Car-Rental-banner-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

/* Main Container */
.Car-Rental-banner-container {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Form Box */
.Car-Rental-banner-form-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.Car-Rental-banner-form-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary);
}

.Car-Rental-banner-form-box p {
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
}

.Car-Rental-banner-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.Car-Rental-banner-row input {
    width: calc(50% - 5px);
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.Car-Rental-banner-form textarea {
    width: 100%;
    height: 110px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: none;
    margin-bottom: 15px;
}

.Car-Rental-banner-form button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.4s;
    background: #0d9175;
}

.Car-Rental-banner-form button:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251,207,76,0.4);
}

.Car-Rental-banner-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
    z-index: 12;
}

.Car-Rental-banner-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
    transition: all 0.6s ease;
}

.Car-Rental-banner-image::after {
    position: absolute;
    top: 20px;
    right: 10px;
    background: var(--accent);
    color: #000;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(251,207,76,0.5);
    z-index: 15;
    animation: float 4s ease-in-out infinite;
}

.Car-Rental-bottom-car {
    position: absolute;
    bottom: 0;
    right: 0PX;
    width: 45%;
    max-width: 650px;
    z-index: 11;
    pointer-events: none;
}

.Car-Rental-bottom-car img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    transform: translateY(20px);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@media (max-width: 900px) {
    .Car-Rental-banner-container {
        /* flex-direction: column !important;  */
        text-align: center;
        gap: 50px;
    }
    .Car-Rental-banner-image::after {
        top: 15px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        font-size: 13px;
        padding: 10px 18px;
    }

    .Car-Rental-bottom-car {
        display: block;
    }
}

@media (max-width: 600px) {
      .Car-Rental-bottom-car {
        width: 80%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        left: -75px;
    }

    .Car-Rental-bottom-car img {
        margin-right: 20px; 
        float: left;        
    }
    .Car-Rental-banner-row {
        flex-direction: column;
    }
    .Car-Rental-banner-row input {
        width: 100%;
    }
    
    .Car-Rental-banner-form-box {
        padding: 25px 20px;
    }
    
    .Car-Rental-banner-form-box h2 {
        font-size: 28px;
    }

    .Car-Rental-banner-image img {
        width: 95%;
        border-radius: 14px;
    }
}


/* rental price  */
  /* Container */
  .Rental-Price-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
  }

  /* Section Title */
  .Rental-Price-title {
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--text-dark);
  }

  /* Table Styles */
  .Rental-Price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
  }

  /* Table Head */
  .Rental-Price-table thead tr {
    background-color: var(--primary-blue);
    color: var(--white);
  }

  .Rental-Price-table th,
  .Rental-Price-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
  }

  /* Zebra Stripe on body rows */
  .Rental-Price-table tbody tr:nth-child(even) {
    background-color: var(--light-bg);
  }

  /* Responsive */
  @media (max-width: 600px) {
    .Rental-Price-table,
    .Rental-Price-table thead,
    .Rental-Price-table tbody,
    .Rental-Price-table th,
    .Rental-Price-table td,
    .Rental-Price-table tr {
      display: block;
      width: 100%;
    }
    .Rental-Price-table thead tr {
      display: none;
    }
    .Rental-Price-table tbody tr {
      margin-bottom: 20px;
      border: 1px solid var(--primary-blue);
      border-radius: 8px;
      padding: 10px;
    }
    .Rental-Price-table tbody td {
      border: none;
      position: relative;
      padding-left: 50%;
      text-align: right;
      font-size: 14px;
    }
    .Rental-Price-table tbody td::before {
      position: absolute;
      top: 12px;
      left: 15px;
      width: 45%;
      white-space: nowrap;
      font-weight: 600;
      color: var(--primary-blue);
      content: attr(data-label);
      text-align: left;
      font-size: 14px;
    }
  }

  /* luxury car rental  */
  
/* ==== MAIN SECTION ==== */
.LuxuryTempoTraveller-section {
  width: 100%;
  padding: 60px 0;
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.LuxuryTempoTraveller-head h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 40px;
}

/* ==== CARD WRAPPER ==== */
.LuxuryTempoTraveller-wrapper {
  width: 1400px;
  max-width: 95%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ==== CARD ==== */
.LuxuryTempoTraveller-card {
  background: var(--white);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: 0.3s;
  border: 2px solid #eee;
}

.LuxuryTempoTraveller-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-orange);
}

/* ==== IMAGE BOX ==== */
.LuxuryTempoTraveller-imageBox {
  width: 100%;
  height: 180px;
  background: #f3f3f3;
  border-radius: 18px;
  padding: 12px;
  position: relative;
}

.LuxuryTempoTraveller-imageBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.LuxuryTempoTraveller-whatsapp {
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--whatsapp-green);
  color: white;
  padding: 7px 9px;
  border-radius: 50%;
  font-size: 18px;
    width: 13%;
}

/* ==== TITLE ==== */
.LuxuryTempoTraveller-title {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-blue);
}

/* ==== DETAILS ==== */
.LuxuryTempoTraveller-infoRow {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  background: var(--primary-orange);
  color: white;
  padding: 10px 15px;
  border-radius: 14px;
  font-size: 14px;
}

.LuxuryTempoTraveller-infoRow i {
  margin-right: 6px;
}

.LuxuryTempoTraveller-details {
  margin-top: 15px;
  background: #eef4ff;
  border-radius: 14px;
  padding: 15px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ==== BUTTONS ==== */
.LuxuryTempoTraveller-buttons {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
}

.LuxuryTempoTraveller-call,
.LuxuryTempoTraveller-book {
  width: 48%;
  text-align: center;
  padding: 10px 0;
  font-size: 15px;
  border-radius: 14px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.LuxuryTempoTraveller-call {
  background: var(--dark-blue);
}

.LuxuryTempoTraveller-call:hover {
  background: var(--primary-blue);
}

.LuxuryTempoTraveller-book {
  background: var(--primary-orange);
}

.LuxuryTempoTraveller-book:hover {
  background: #ff5318;
}

.LuxuryTempoTraveller-buttons i {
  margin-right: 7px;
}

/* ==== RESPONSIVE ==== */
@media(max-width: 992px) {
  .LuxuryTempoTraveller-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .LuxuryTempoTraveller-wrapper {
    grid-template-columns: 1fr;
  }
}

section.Rental-Price-section ul {
    padding-left: 25px;
    margin: 10px 0;
    background: #e6eef9;
    border-radius: 25px;
    padding: 15px;
    padding-left: 35px;
}
section.Rental-Price-section ul {
    padding-left: 25px;
    margin: 10px 0;
}