.logo {
  height: 40px;
  width: auto;
}
/* Prevent brand wrapping */
.navbar-brand {
  white-space: nowrap;
}

/* Mobile fix */
@media (max-width: 576px) {
  .brand-text {
    font-size: 15px;   /* slightly smaller */
  }

  .logo {
    width: 32px;
    height: auto;
  }
}

.btn {
  background: linear-gradient(
    135deg,
    rgba(3, 165, 56, 0.3),
    rgba(235, 156, 11, 0.9)  /* main gold */
          /* subtle green hint */
  );
  border: none;
  color: white;
}
.btn:hover{
  background: linear-gradient(
    135deg,
    rgba(228, 171, 65, 0.9),  /* main gold */
    rgba(5, 217, 75, 0.3)      /* subtle green hint */
  );
  border: none;
  color: white;
}
@media (max-width: 576px) {
  .logo {
    height: 32px;
  }
}

/* Hero Section */
.hero {
  background: url('images/banner.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden; /* ensures canvas stays within section */
}

/* Optional overlay effect if you want darker background */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* adjust opacity as needed */
  z-index: 1;
}

/* Canvas for animated fireflies */
.hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* below text but above background */
  filter: blur(1px);
}

/* Keep hero content above everything */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow:
    2px 2px 6px rgba(3, 165, 56, 0.3),   /* bright green glow */
    4px 4px 12px rgba(1, 94, 50, 0.3),   /* deeper green depth */
    0 0 5px rgba(235, 156, 11, 0.3);    /* warm golden accent */
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.2rem;
  color: #f8f8f8;
  text-shadow:
    1px 1px 5px rgba(3, 165, 56, 0.3),
    2px 2px 8px rgba(1, 94, 50, 0.3),
    0 0 5px rgba(235, 156, 11, 0.3);
}

.hero .btn {
  margin-top: 20px;
  background: linear-gradient(
    135deg,
    rgba(235, 156, 11, 0.9),  /* main gold */
    rgba(3, 165, 56, 0.3)      /* subtle green hint */
  );
  border: none;
}

/* Hide default Bootstrap dropdown arrow */
.nav-item.dropdown .nav-link::after {
  display: none;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
/* Initial transparent navbar */
.navbar {
  transition: all 0.3s ease;
  background: transparent;
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: rgba(240, 180, 25, 1) !important; /* warm golden hover color */
  
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .navbar-brand:hover {
  color: rgba(78, 153, 45, 0.95) !important; /* richer green */
}

.navbar .nav-link.active {
  color:  rgba(78, 153, 45, 0.95) !important;
}
/* After scroll */
.navbar.scrolled {
  background: white !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand {
  color: rgba(240, 180, 25, 1) !important; /* warm golden hover color */
}
.navbar.scrolled .nav-link.active{
  color:  rgba(78, 153, 45, 0.95) !important;
}
/* Transparent background */
.dropdown-menu {
  background: linear-gradient(
    135deg,
    rgba(235, 156, 11, 0.9),  /* main gold */
    rgba(3, 165, 56, 0.3)      /* subtle green hint */
  );
  border: none;
  padding: 10px;
}

/* Dropdown links styling */
.dropdown-item {
  color: #fff;
  transition: background 0.3s;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.934);
}

/* Packages Section */
.package-card {
  transition: transform 0.3s;
  background: linear-gradient(
    135deg,
    rgba(235, 156, 11, 0.3),  /* soft gold */
    rgba(3, 165, 56, 0.1)     /* very light green hint */
  );
}
.package-card img {
  height: 250px; /* fixed height for all images */
  object-fit: cover;
}
.package-card:hover {
  transform: translateY(-10px);
}
/* Overlay hover effect */
.bg-light {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: rgb(3, 165, 56); /* brand green */
}


.bg-light:hover {
  transform: scale(1.05); /* smooth zoom */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35); /* creative glow */
  background: rgba(255, 255, 255, 0.9); /* make it brighter */
}
/* Make all vehicle card images equal height */
#choose-ride .card-img-top,
.vehicle-img {
  height: 220px;          /* Adjust height as you like (200–250px recommended) */
  width: 100%;
  object-fit: cover;      /* Crops nicely and keeps card size uniform */
  object-position: center;
}

/* Booking Section with Background Image */
.booking-section {
  
  position: relative;
  padding: 80px 0;
}

.booking-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  
}
.booking-section h2 {
  color: black;
  font-weight: bold;
}

.booking-section .container {
  position: relative;
  z-index: 2; /* keep form above overlay */
}

.booking-form {
  background: linear-gradient(
    135deg,
    rgba(235, 156, 11, 0.3),  /* soft gold */
    rgba(3, 165, 56, 0.1)     /* very light green hint */
  );
  border-radius: 10px;
  padding: 30px;
}

.booking-form input,
.booking-form select {
  border-radius: 8px;
  padding: 10px;
}

.booking-form button {
  border-radius: 25px;
  padding: 10px 30px;
}
.booking-form button:hover {
  background-color: linear-gradient(
    135deg,
    rgba(243, 175, 48, 0.3),  /* soft gold */
    rgba(12, 201, 75, 0.1)     /* very light green hint */
  );;
}
.why-choose-us {
  background: linear-gradient(
    135deg,
    rgba(235, 156, 11, 0.3),  /* soft gold */
    rgba(3, 165, 56, 0.1)     /* very light green hint */
  );
  position: relative;
}


.why-choose-us .card {
  background: #fff;
  border-radius: 20px;
}
.testimonial {
  width: 80%;       /* adjust width */
  margin: 0 auto;   /* centers horizontally */
  text-align: center;
}

/* Footer Styles */
  .site-footer {
    background: linear-gradient(135deg, rgba(47, 179, 91, 0.95), rgba(245, 180, 60, 0.9));
    color: #fff;
    padding: 60px 0 20px; /* ⬅ reduced bottom padding */
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 1;
  }

  .site-footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }

  .site-footer .footer-col {
    flex: 1 1 220px;
  }

  .site-footer .footer-logo {
    width: 80px;
    margin-bottom: 15px;
  }

  /* Headings */
  .site-footer h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
  }

  .site-footer h4::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: rgba(235,156,11,1);
    margin-top: 5px;
    margin-bottom: 10px;
  }

  /* Paragraphs & Links */
  .site-footer p, 
  .site-footer li a {
    font-size: 14px;
    color: #fff;
    line-height: 1.7;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin-bottom: 8px;
  }

  .site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .site-footer ul li {
    margin-bottom: 8px;
  }

  .site-footer ul li::before {
    content: "•";
    color: rgba(235,156,11,1);
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }

  /* Social Icons */
  .site-footer .social-icons {
    margin-top: 15px;
  }

  .site-footer .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-right: 10px;
    background: rgba(3,165,56,1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .site-footer .social-icons a:hover {
    background: rgba(235,156,11,1);
  }

  /* Divider + Copyright */
  .site-footer hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.3);
    margin: 20px 0 10px; /* ⬅ tightened spacing */
  }

  .footer-bottom p {
    margin: 0;
    font-size: 14px;
  }
  .whatsapp-float {
      position: fixed;
      width: 65px;
      height: 65px;
      bottom: 25px;
      right: 25px;
      background-color: #25D366;
      color: #fff;
      border-radius: 50%;
      text-align: center;
      font-size: 35px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
      animation: pulse 2s infinite;
      transition: transform 0.3s ease;
      text-decoration: none;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      color: #fff;
      text-decoration: none;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
      }

      70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }
/* 🔥 HERO RESPONSIVE STYLES */

/* For large tablets and smaller desktops (max width 1200px) */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .hero .btn {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

/* For tablets (max width 992px) */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero .btn {
    font-size: 0.95rem;
    padding: 10px 22px;
  }
}

/* For small tablets and large phones (max width 768px) */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    padding: 80px 20px;
    height:80vh;
  }
  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .hero .btn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}

/* For mobile screens (max width 576px) */
@media (max-width: 576px) {
  .hero {
    padding: 60px 15px;
  }
  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero .btn {
    font-size: 0.85rem;
    padding: 8px 18px;
  }

  /* Optional: reduce blur and firefly intensity for performance */
  .hero canvas {
    filter: blur(0.5px);
  }
}

/* For very small screens (max width 400px) */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero .btn {
    font-size: 0.8rem;
    padding: 6px 16px;
  }
}

  /* Responsive Footer */
  @media (max-width: 768px) {
    .site-footer .footer-row {
      flex-direction: column;
      gap: 20px;
    }
    .site-footer .footer-col {
      flex: 1 1 100%;
      text-align: center;
    }
    .site-footer h4::after {
      margin-left: auto;
      margin-right: auto;
    }
  }
/* Show dropdown normally on desktop (hover) */
@media (min-width: 768px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
}
/* 🌟 Hamburger icon color (yellow) */
.navbar-toggler {
  border-color: rgba(240, 180, 25, 1) !important;
  color: rgba(240, 180, 25, 1);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(240, 180, 25, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* 🌙 Mobile Navbar Background When Toggled */
@media (max-width: 760px) {
  .navbar-collapse {
    background: linear-gradient(
    135deg,
    rgba(235, 156, 11, 0.3),  /* soft gold overlay */
    rgba(3, 165, 56, 0.1)     /* light green overlay */
  ),
  #ffffff; /* solid white base */
    padding: 10px 15px;
  }

  .navbar-collapse .nav-link {
    color: rgba(240, 180, 25, 1) !important; /* gold text for consistency */
  }

  .navbar-collapse .nav-link:hover {
    color: rgba(78, 153, 45, 0.95) !important; /* green hover */
  }
}


