/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
.whole{
  background-color:#f1f1f5;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

/* Navbar styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 20px; 
} */

 .logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  
  color: #0c0b0b;
}

.nav-links li a {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition:color 0.3s ease, transform 0.3s ease;
  position: relative; /* needed if you use z-index */
  z-index: 1;
  cursor: pointer;
}

.nav-links li a:hover {
  
  color: goldenrod;
  font-weight: bolder;
  transform: scale(1.2) translateY(3px); /* grow + move slightly down */
  z-index: 2;
} 
.background-video-wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}
.menu-toggle{
  display:none;
}

/* Make video fill the container */
.background-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GIF Overlay on top of video */
.gif-overlay {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the gif */
  width: 500px; /* Adjust based on your design */
  height: auto;
  pointer-events: none; /* Allows clicks to pass through */
  z-index: 2;
}

/* Car Image Slider */
.car-slider-head{
  margin-bottom:50px;
    font-size: 40px;
    color: #000000;
}
.car-slider {
  text-align: center;
  
  padding: 40px 0;
}

.car-slider-container {
  position: relative;
  width: 800px;
  margin: auto;
}

.car-slider-container img {
  width: 100%;
  max-height: 420px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(9, 9, 9, 0.2);
}

.car-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.car-slider-btn.left {
  left: 10px;
}

.car-slider-btn.right {
  right: 10px;
}

.car-slider-btn:hover {
  background-color: rgba(0,0,0,0.8);
}

/* details form*/

.neumorphic {
  background:#e0e5ec;
  border-radius: 20px;

  border: none;
  outline: none;
  font-family: Arial, sans-serif;
  }
  
  .neumorphic-inset {
  background:#e0e5ec; 
  border-radius: 20px;
  box-shadow: inset 10px 10px 20px #a3b1c6, inset -10px -10px 20px #ffffff;
  padding:10px 20px;
  width: 100%;
  margin-bottom: 15px;
  }
  
  .neumorphic-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  width: 80%;
  margin: 40px auto;
  margin-top: 0px;
  text-align: left;
  margin-bottom: 0px;
  }
  .neumorphic-input{
    padding:10px 20px;
    width: 100%;
    margin-bottom: 15px;
  }
  .neumorphic-button{
    padding: 10px 20px;
    background-color: #e0e5ec;
    box-shadow: inset 10px 10px 20px #a3b1c6, inset -10px -10px 20px #ffffff;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease;
    align-self: center;
  }
  
  .neumorphic-button:hover{
    box-shadow: 3px 3px 8px #a3b1c6, -3px -3px 8px #ffffff;
  }
  .form-label {
    
    font-weight: bold;
    margin-bottom: 5px;
    color: #0c0b0b;
    padding-left: 5px;
    
  }
  .button-row {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    width: 100%;
    gap: 15px;
  }
  
 /* Only the popup has these styles */
#booking-form-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#booking-form-popup.active {
  display: flex;
}

  
  .close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
  }
  
  
  /* fleet cars section*/
  .fleet-section {
    text-align: center;
    padding: 50px 20px;
  }
  
  .fleet-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    
  }
  
  .fleet-card {
    width: 250px;
    padding: 15px;
    border-radius: 15px;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    background: #e4e7ea;
    border: 3px solid black;
    padding: 10px; 
  }
  
  .fleet-card:hover {
    
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1), -5px -5px 15px #fff;
    transform: translate(-5px,-5px);
  }
  
  .fleet-main-head{
    margin-bottom:50px;
    font-size: 40px;
    color: #000000;

  }

  .fleet-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .book-btn {
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 20px;
    background-color: #e0e5ec;
    border:none;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 3px 3px 8px #a3b1c6, -3px -3px 8px #ffffff;
    transition: 0.3s ease;
  }
  
  .book-btn:hover {
    box-shadow: inset 3px 3px 8px #a3b1c6, inset -3px -3px 8px #ffffff;
  }
  .fleet-para{
    margin-bottom: 5px;
  }

  .fleet-head{
    margin-top: 10px;
    margin-bottom: 10px;
  }

/*why choose us section*/
.why-choose-us {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.why-choose-us h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.features {
  display: flex;
  justify-content: space-around;
  gap: 0px;
  flex-wrap: wrap;
}
.feature-box {
  width: 30%;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  background-color:#d1d1de ;
}
.feature-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 50%;
  padding-top: 10px;
}

.feature-box p {
  font-size: 1em;
  color: #333;
}
  
  /*outstation cabs*/
  .outstation{
    display:flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #a3b1c6;
    margin: 50px;
    border-radius: 10px;
  }
  .outstation-form-cont{
    width: 75%;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
  }
  .outstation-form-cont-start{
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .outstation-form-cont-desti{
    padding-left: -10px;
  }
  .outstation-left{
    padding:20px;
  }
  .outstation-img{
    min-width: 200px;
    max-width:650px;
    height: 400px;
    border-radius: 5%;
  }

  .outstation-right{
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }


  .start-list-label{
    /* font-family: "roboto"; */
    font-size: 20px;
    color:#0a0a23 ;
    font-weight: bold;
  }
  
  .start-list-input{
    border-radius: 5px;
    background-color:white;
    border:1px solid #0a0a23; 
    padding: 10px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left:5px;
    flex-grow: 1;
  }
  .end-list-input{
    margin-left: 25px;
  }
 
/*pop up for enquiry now section*/
/* Enquiry Popup Overlay */
.enquiry-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding-top: 10%;
}

/* Enquiry Popup Content Card */
.enquiry-card {
  background: #e4e7ea;
  padding: 30px;
  border-radius: 18px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

/* Heading */
.enquiry-heading {
  margin-bottom: 20px;
  text-align: center;
}

/* Labels */
.enquiry-label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

/* Input Fields */
.enquiry-input {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid #ccc;
  box-shadow: inset 10px 10px 20px #c5d0e1, inset -10px -10px 20px #ffffff;
}
.enquiry-input:hover{
  box-shadow: 10px 10px 20px #c5d0e1, inset -10px -10px 20px #ffffff;
}

/* Button Row */
.enquiry-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* Buttons */
.neumorphic-button-enquiry{
  padding: 10px 20px;
  background-color: #f1f4f9;
  box-shadow:inset  3px 3px 8px #a3b1c6, -3px -3px 8px #ffffff;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
  align-self: center;
}
.neumorphic-button-enquiry:hover {
  box-shadow:  5px 5px 10px #a3b1c6, inset -5px -5px 10px #ffffff;
}


/* Close Button */
.enquiry-close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}


  /* packages sections*/

  .package-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 40px;
    box-sizing: border-box;
    background-color: #f5f5f5;
  }
  
  .package-slider-content {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
  }
  
  .package-slider-images {
    flex: 1;
    padding: 20px;
  }
  
  .package-slider-images img {
    width: 100%;
    border-radius: 10px;
    height: auto;
  }
  
  .package-slider-text {
    flex: 1;
    padding: 20px;
    text-align: left;
  }
  
  button#prev-btn, button#next-btn {
    font-size: 2rem;
    background-color: black;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 100%;
    cursor: pointer;
    margin: 0 10px;
    
  }
  
  /* Outer container */
.slider-package-container {
  position: relative;
  width: 95%; /* increased width */
  max-width: 1400px; /* for large screens */
  margin: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 50px;
}

/* Slide wrapper */
.wrapper-package {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

/* Each slide */
.slide-package {
  background-color: #2c3e50;
  display: flex;
  min-width: 100%;
  box-sizing: border-box;
  padding: 40px;
  height: 500px;
  align-items: center;
}

/* Left side with image */
.left-package {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
  height: 100%;
}

.img-package {
  width: 750px;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Right side with text */
.right-package {
  flex: 1;
  display: flex;
  flex-direction: column;
  
  padding-left: 5px;
  height: 100%;
}

.title-package {
  font-size: 28px;
  color: #fff;
  margin-bottom: 15px;
  margin-top: 10px;
  font-size:xx-large;
  text-align: center;
}

.places-package,
.price-package,
.note-package {
  margin: 10px;
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.enquiry-package-button {
  margin-top: 0px;
  padding: 12px 20px;
  background-color: cyan;
  color: black;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  width: fit-content;
  align-self: center;
}

/* Navigation buttons */
.nav-package-btn {
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  z-index: 1;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.left-package-btn {
  left: 10px;
}

.right-package-btn {
  right: 10px;
}

.nav-package-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Footer Section */
.footer {
  background-color: #1a1a1a;
  color: #f0f0f0;
  text-align: center;
  padding: 30px 20px;
  font-family: sans-serif;
}

.social-icons {
  margin-bottom: 15px;
}

.social-icons a {
  color: #f0f0f0;
  margin: 0 10px;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00ccff;
}
.dev-credit{
  padding-top: 10px;
}
.dev-credit a{
  color: #00ccff;
  text-decoration: none;
  padding-top: 10px;
}

.dev-credit a:hover {
  text-decoration: underline;
}
.footer .icons{
  font-size: 1px;
  transition: transform 0.3s ease;
}
.footer .icon:hover {
  transform: scale(1.2); /* optional hover zoom effect */
}
 .outstation-text{
    color: #000000;
  }
@media (max-width: 1024px) {
  .outstation-img{
    width:500px;
    height:380px
  }
    .outstation {
    padding: 15px;
    gap: 20px; /* optional for spacing between left and right */
  }

  .outstation-left {
    width: 45%;
    padding: 10px;
  }

  .outstation-img {
    width: 100%;
    height: 350px;
    max-height: 400px;
    border-radius: 10px;
  }

  .outstation-right {
    width: 50%;
    padding-top: 20px;
    align-items: flex-start;
  }

  .title-package {
    font-size: 24px;
    text-align: center;
  }

  .places-package {
    font-size: 16px;
    text-align: left;
  }

  .outstation-form-cont {
    width: 100%;
    padding: 15px;
  }

  .outstation-form-cont-start {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .start-list-label {
    font-size: 16px;
    display: none;
  }

  .start-list-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-left: 0;
  }

  .end-list-input {
    margin-left: 0;
  }

  .enquiry-package-button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
  }
   .img-package{
    width: 550px;
    height: 100%;
    object-fit: cover;
   }

}

@media (max-width: 768px) {
/* //navbar */

.menu-toggle {
    display: flex;      /* Show hamburger menu on mobile */
    cursor: pointer;
  }

  .nav-links {
    display: none;      /* Hide nav links initially */
    position: absolute;
    top: 60px;          /* Adjust as per navbar height */
    right: 0;
    width: 25%;
    background-color: white;
    flex-direction: column;
    border-radius: 10px;
    padding: 20px 0;
    z-index: 999;
    align-items: center;
  }

  .nav-links.active {
    display: flex;      /* Show nav links when active */
  }

  .nav-links li a {
    text-align: center;
    color: #0a0a23;
  }
  
  .navbar {
    padding: 10px 20px; /* Adjust padding for smaller screens */
  }
.car-slider-container {
  position: relative;
  width: 600px;
  margin: auto;
}
.car-slider-container img {
  max-height: 300px;
  
}
   /* Fleet Section */
   .fleet-grid {
    flex-direction: column;
    align-items: center;
  }

  .fleet-card {
    width: 90%;
    display: flex;
    flex-direction: row; /* Image left, content right */
    gap: 20px;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
  }

  .fleet-card img {
    width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
  }

  .fleet-text-content {
    width: 60%;
    display: flex;
    flex-direction: column; /* Stack name, rate, km, passengers, button vertically */
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .fleet-head, .fleet-para, .book-btn {
    margin: 0; /* Clean margins */
  }
  /* Why Choose Us Section */
  .features {
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-box {
    width: 100%;
    display: flex;
    flex-direction: row; /* Image left, text right */
    gap: 20px;
    align-items: center; /* Align vertically center */
    background-color: #d1d1de;
  }
  
  .feature-box img {
    width: 15%; /* Image will cover 40% */
    height: auto;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .feature-text {
    width: 100%; /* Text will cover 60% */
    text-align: left;
  }
  
  /* Outstation Cabs */
  

  .outstation {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
  }
  .outstation-left{
    width:100%;
    justify-content: center;
  }
  .outstation-right {
    width: 100%;
    padding-top: 0px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .title-package {
    width: 100%;
    font-size: 20px;
    text-align: center;
    margin: 10px 0;
  }

  .places-package {
    text-align: center;
    width: 90%;
    margin: 10px auto;
  }

  .outstation-img {
  width: 90% !important;
  height: auto !important;
  margin-left: 32px;
  
}

  .places-package {
    font-size: 14px;
  }

  .enquiry-package-button {
    margin-top: 10px;
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .slide-package {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .left-package,
  .right-package {
    width: 100%;
    padding: 0;
    height: auto;
  }

  .img-package {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
  }

  .title-package {
    font-size: 40px;
    margin-top: 20px;
  }

  .places-package,
  .price-package,
  .note-package {
    font-size: 16px;
  }

  .enquiry-package-button {
    font-size: 14px;
    padding: 10px 16px;
  }

  .nav-package-btn {
    font-size: 22px;
    padding: 8px;
  }
}
  /* GLOBAL FIXES */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* CAR SLIDER FIX */
  .car-slider-container {
    max-width: 100%;
    overflow: hidden;
  }

  .car-slider-container img {
    width: 100%;
    height: auto;
  }
  
@media (max-width: 426px) {
  .navbar{
    display: flex;
    flex-direction:row ;
    justify-content: space-between;
    padding: 15px;
  }
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 40%;
    flex-direction: column;
    
    display: none;
    padding: 20px 0;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .gif-overlay{
    width: 250px;
  }
  
  .car-slider-container {
    position: relative;
    width: 90%;
    margin: auto;
    padding: 10px 0;
  }
  .car-slider-head{
    margin-bottom: 20px;
    font-size: 30px;
  }
  .car-slider-container img {
  max-height: 200px;
  
}
  .fleet-main-head{
    margin-bottom: 10px;
    font-size: 25px;
  }
  .fleet-grid {
    flex-direction: column;   /* Stack cards vertically */
    align-items: center;      /* Center the single card horizontally */
    gap: 15px;                /* Optional: less space between cards */
  }

  .fleet-card {
    width: 90%;               /* Card takes most of screen */
    display: flex;
    flex-direction: column;   /* Stack image and text vertically */
    align-items: center;      /* Center content */
    text-align: center;       /* Center text */
  }

  .fleet-card img {
    width: 100%;
    height: auto;             /* Allow natural height */
    margin-bottom: 10px;
  }

  .fleet-text-content {
    width: 100%;
  }
  .fleet-head{
    font-size: 18px;
  }
  .fleet-para{
    font-size: 14px;
  }
  .book-btn{
    width:100px;
    align-self: center;
  }
  .enquiry-popup{
    padding-top: 30%;
  }
  .outstation{
    margin:20px;
  }
  
  .outstation-img{
    width: 370px;
    height: 250px;
    margin-left: 16px;
    padding-top: 0px;
  }
  .outstation-form-cont{
    width:90%;
  }
  .outstation-form-cont-start{
    display: flex;
  }
  
  .start-list-label{
    font-size: 14px;
    display: none;
  }

  .end-list-input{
    margin-left: 5px;
  }
  .slider-package-container{
    margin-bottom: 20px;
  }
  .slide-package {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .left-package,
  .right-package {
    width: 100%;
    padding: 0;
    height: auto;
  }

  .img-package {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
  }

  .title-package {
    font-size: 20px;
    margin-top: 20px;
  }

  .places-package,
  .price-package,
  .note-package {
    font-size: 14px;
  }

  .enquiry-package-button {
    font-size: 14px;
    padding: 10px 16px;
  }

  .nav-package-btn {
    font-size: 22px;
    padding: 8px;
  }
}
@media(max-width:376px){
  .car-slider-container img {
  max-height: 179px;
}
  .outstation-img{
    width: 330px;
    height: 220px;
  }
  .outstation-right{
    padding-top: 0px;
  }
}
@media(max-width:321px){
  .car-slider-container img {
  max-height: 150px;
}
  .outstation-form-cont{
    width:100%;
  }
  .outstation-img{
    width: 280px;
    height: 200px;
  }
}