/* CSS Document */
/* GENERAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* TOP BAR */
.top-bar {
    width: 100%;
    background-color: #111;
    color: #fff;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
}

.top-bar a i {
    margin-right: 5px;
}

.top-left a:last-child {
    margin-right: 0;
}

/* MAIN NAVBAR */
/* FIX 1: Changed background to White */
.main-navbar {
    width: 100%;
    height: 70px; 
    position: fixed;
    top: 40px; 
    left: 0;
    z-index: 999;
    /* FIX: Solid White background */
    background: #ffffff; 
    /* Removed backdrop-filter since background is solid */
    display: flex;
    align-items: center;
    /* Add a subtle shadow for better separation from content */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}

/* Container for flex layout */
.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    height: 100%;
}

/* LOGO bigger without affecting navbar height (DESKTOP) */
.logo img {
    height: 100px; 
    width: auto;
    object-fit: contain;
    margin-top: -15px; 
    margin-bottom: -15px; 
}


.main-navbar ul {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.main-navbar ul li a {
    display: block;
    padding: 10px 20px;
    /* On a white navbar, links can have a transparent or very light background */
    background: transparent; 
    color: #111;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.main-navbar ul li a:hover {
    background: #ff9800;
    color: #fff;
}
/* LOGO (DESKTOP) */
.logo img {
    height: 100px; /* Big Logo on Desktop */
    width: auto;
    object-fit: contain;
    margin-top: -15px; 
    margin-bottom: -15px; 
}
/* ... (Desktop Menu Items styles remain same) ... */

/* HAMBURGER MENU (Desktop Hidden, Mobile Visible) */
.hamburger {
    display: none; /* Desktop mein chhupa rahega */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    /* FIX: Color changed to black for visibility on white navbar */
    background: #111; 
    border-radius: 2px;
}


/* MOBILE RESPONSIVE FIXES */
@media (max-width:768px){

    /* NAV MENU ITEMS FULL WIDTH */
    .main-navbar ul li {
        width: 100%;
        text-align: center;
    }

    /* MENU LINKS */
    #nav-menu li a {
        display: block;
        width: 90%;
        margin: 0 auto;
        text-align: center;
        padding: 10px 0;

        color: #000000;
        background: #f3f4f5;
    }

    /* HOVER FIX */
    #nav-menu li a:hover {
        background: #000000;
        color: #ffffff;
    }

    /* LOGO SIZE FIX */
    .logo img {
        height: 50px;
        margin-top: 2px;
        margin-bottom: 0;
    }

    /* MOBILE NAVBAR FIX */
    .main-navbar {
        width: 100%;
        height: 60px;         /* Mobile height */
        position: fixed;
        top: 40px;
        left: 0;
        z-index: 999;
       background: #ffffff;
        display: flex;
        align-items: center;
        box-shadow: 0 2px 5px rgba(166, 201, 10, 0.836);
    }

    /* HAMBURGER SHOW */
    .hamburger {
        display: flex;
    }

    /* MOBILE DROPDOWN MENU */
    .main-navbar ul {
        position: absolute;
        top: 60px;             /* Nav ke neeche open hoga */
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(193, 209, 216, 0.363);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    /* ACTIVE STATE ? dropdown open */
    .main-navbar ul.active {
        max-height: 500px;
    }
}




.banner {
  width: 100%;
  height: 80vh;
  background-image:url(../IMAGES/banner.jpg);
  background-position: center top; /* better for mobile */
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Optional overlay */
.banner::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.4); /* dark overlay for text contrast */
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
}

/* Responsive adjustments */
@media(max-width:768px){
  .banner {
    height: 50vh; /* reduce height for mobile */
    background-position: top center; /* focus on top part */
  }

  .banner h1 {
    font-size: 28px;
  }

  .banner p {
    font-size: 16px;
  }

  .banner button {
    padding: 10px 20px;
    font-size: 14px;
  }
}


    /* TOUR PACKAGES SECTION */
    .packages {
      width: 100%;
      padding: 80px 20px;
      background: #f8f8f8;
    }

    .packages h2 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 50px;
      color: #333;
    }

    .package-cards {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      transition: 0.3s;
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card-content h3 {
      font-size: 22px;
      margin-bottom: 15px;
      color: #222;
    }

    .card-content p {
      font-size: 16px;
      margin-bottom: 20px;
      color: #555;
    }

    .card-buttons {
      display: flex;
      gap: 10px;
    }

    .card-buttons a {
      flex: 1;
      text-align: center;
      padding: 10px;
      border-radius: 5px;
      font-weight: 500;
      color: #fff;
      transition: 0.3s;
    }

    .btn-call {
      background: #4caf50;
    }

    .btn-call:hover {
      background: #45a049;
    }

    .btn-whatsapp {
      background: #25d366;
    }

    .btn-whatsapp:hover {
      background: #1ebe57;
    }




.fleet-fullwidth {
  width: 100%;
  padding: 80px 0; /* only vertical padding */
 background:url(../IMAGES/sUVQIO.jpg);
  position: relative;
}

.fleet-fullwidth h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color:#000066;
  width: 100%;
}

/* FULL-WIDTH GRID */
.fleet-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row on desktop */
  gap: 40px;
  width: 100%;
  padding: 0 20px; /* optional small side padding */
  box-sizing: border-box;
}

.fleet-item {
  background: rgba(255,255,255,0.95); /* transparent white */
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.fleet-item:hover {
  transform: translateY(-10px);
}

.fleet-item {
  background: rgba(255,255,255,0.95); /* slightly transparent main card background */
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.car-bg {
  position: relative;
  background-color:#FFFFFF; /* your company color, can change */
  border-radius: 15px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.car-bg img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.company-name {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

/* Fleet info overlay remains visible */
.fleet-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,50,0.85);
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  opacity: 1; /* always visible */
}


.fleet-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,50,0.85); /* semi-transparent overlay */
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  opacity: 1; /* always visible */
  transition: none; /* remove hover fade */
}

/* Remove hover effect */
.fleet-item:hover .fleet-info {
  opacity: 1; /* keep it always visible */
}


.fleet-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.fleet-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.fleet-buttons a {
  padding: 8px 15px;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.fleet-buttons .btn-call {
  background: #4caf50;
}

.fleet-buttons .btn-call:hover {
  background: #45a049;
}

.fleet-buttons .btn-whatsapp {
  background: #25d366;
}

.fleet-buttons .btn-whatsapp:hover {
  background: #1ebe57;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){
  .fleet-container {
    grid-template-columns: 1fr; /* 1 car per row on mobile */
    padding: 0 10px;
  }
  .fleet-info {
    opacity: 1; /* always visible on mobile */
  }
}











.testimonials {
  width: 100%;
  padding: 80px 20px;
  background-color: #fff5e6; /* cream background */
}

.testimonials h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
}

/* Grid for 6 cards */
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* Card styling */
.testimonial-card {
  position: relative;
  border-radius: 20px;
  padding: 60px 20px 20px 20px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: visible;
}

/* Client image */
.client-img {
  position: absolute;
  top: -30px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  background-color: #fff;
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text inside card */
.testimonial-card p {
  font-size: 16px;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 18px;
  font-weight: bold;
}

/* Responsive */
@media(max-width:768px){
  .testimonial-container {
    grid-template-columns: 1fr; /* 1 card per row on mobile */
  }
}





.social-media {
  width: 100%;
  padding: 80px 20px;
  background-color: #fefefe;
  text-align: center;
}

.social-media h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

/* Different colors for each platform */
.social-icon.instagram { background: #E1306C; }
.social-icon.facebook { background: #3b5998; }
.social-icon.twitter { background: #1DA1F2; }
.social-icon.google { background: #DB4437; }
.social-icon.pinterest { background: #BD081C; }
.social-icon.linkedin { background: #0077B5; }
.social-icon.justdial { background: #FF9933; }
.social-icon.tripadvisor { background: #34E0A1; }

/* Hover effect */
.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width:768px){
  .social-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}




.footer {
  width: 100%;
  background-color: #111;
  color: #fff;
  padding: 80px 20px 30px 20px;
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fbb034;
}

.footer-column p,
.footer-column ul li {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #ccc;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  cursor: pointer;
  transition: 0.3s;
}

.footer-column ul li:hover {
  color: #fbb034;
}

/* Social icons in footer */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #fbb034;
}

/* Bottom copyright */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #333;
  padding-top: 20px;
}

/* Responsive */
@media(max-width:1024px){
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}


/* ===== About Page Css ===== */



/* ===== Inner Banner ===== */
.inner-banner {
  width: 100%;
  height: 60vh; /* half of main banner */
  background:url("../IMAGES/inner banner.webp");
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}

.inner-banner::before {
  content: "";
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.4);
}

.inner-banner-content {
  position: relative;
  z-index: 1;
}

.inner-banner h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.inner-banner p {
  font-size: 18px;
}


/* ===== About Section ===== */
.about-section {
  padding: 60px 20px;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

@media(max-width:768px){
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-content {
    margin-top: 20px;
  }
}


/* ===== Director Section ===== */
.director-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.director-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.director-message h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.director-message p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
}

.director-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media(max-width:768px){
  .director-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .director-image {
    order: -1; /* Image above text on mobile */
  }
}

/* ===== Tours Section ===== */
.tours-section {
  padding: 60px 20px;
  text-align: center;
}

.tours-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.tour-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.tour-card p {
  font-size: 16px;
  color: #555;
}


/* ===== Services Page ===== */


/* ===== Services Section ===== */
.services-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #222;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 22px;
  margin: 15px 0 10px;
  color: #333;
}

.service-card p {
  font-size: 16px;
  color: #666;
  padding: 0 15px;
  margin-bottom: 15px;
}

.service-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.call-btn {
  background: #fbb034;
  color: #fff;
}

.call-btn:hover {
  background: #ff9800;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* Responsive */
@media(max-width:992px){
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .services-grid {
    grid-template-columns: 1fr;
  }
}



/* ===== Tours Section ===== */
.tours-section {
  padding: 80px 20px;
  background: #fff;
}

.tours-section .section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #222;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tour-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.tour-card:hover {
  transform: translateY(-8px);
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tour-card h3 {
  font-size: 22px;
  margin: 15px 0 10px;
  color: #333;
}

.tour-card p {
  font-size: 16px;
  color: #555;
  padding: 0 15px;
  margin-bottom: 10px;
}

.tour-card .transport {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fbb034;
  margin-bottom: 15px;
}

.tour-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.call-btn {
  background: #fbb034;
  color: #fff;
}

.call-btn:hover {
  background: #ff9800;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* Responsive */
@media(max-width:992px){
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .tours-grid {
    grid-template-columns: 1fr;
  }
}


.contact-form-section {
      background: #fff;
      padding: 60px 20px;
      text-align: center;
    }

    .contact-form-section h2 {
      font-size: 32px;
      margin-bottom: 30px;
      color: #222;
    }

    .contact-form {
      max-width: 700px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 15px;
      outline: none;
      transition: 0.3s;
    }

    .contact-form .form-group input:focus,
    .contact-form .form-group textarea:focus {
      border-color: #fbb034;
      box-shadow: 0 0 5px rgba(251,176,52,0.5);
    }

    .btn-submit {
      padding: 14px 25px;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      background: #fbb034;
      color: #fff;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn-submit:hover {
      background: #ff9800;
    }



