.vehicle-card .ribbon {
    position: absolute;
    top: 10px;
    right: -5px;
    background: gold;
    color: black;
    font-weight: bold;
    padding: 5px 10px;
    transform: rotate(45deg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.rates {
    font-size: 0.9rem;
}
/* Smooth navbar transition */
      .navbar {
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    /* Scroll effect */
    .navbar.scrolled {
      background-color: rgba(255, 255, 255, 0.95) !important;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    /* Brand styling */
    .navbar-brand {
      font-size: 1.4rem;
      letter-spacing: 0.5px;
      color: #222 !important;
    }

    /* Nav links */
    .nav-link {
      font-weight: 500;
      color: #333 !important;
      padding: 0.7rem 1rem;
      transition: color 0.3s ease, transform 0.2s ease;
    }

    .nav-link:hover {
      color: #ffb100 !important;
      transform: translateY(-2px);
    }

    /* Book Now Button */
    .btn-yellow {
      background: linear-gradient(135deg, #ffb100, #ff8800);
      color: #fff;
      border: none;
      border-radius: 30px;
      transition: all 0.3s ease;
      box-shadow: 0 3px 10px rgba(255, 161, 0, 0.3);
    }

    .btn-yellow:hover {
      background: linear-gradient(135deg, #ff9900, #ff6a00);
      box-shadow: 0 5px 15px rgba(255, 136, 0, 0.4);
      transform: translateY(-2px);
      color: #fff;
    }

    /* Mobile backdrop */
    @media (max-width: 991px) {
      .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        margin-top: 0.5rem;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      }

      .nav-link {
        padding: 0.8rem 0;
      }
    }
   
    /* Floating Contact Menu */
      .floating-menu {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1050;
  }

  /* Main Floating Button - Shiva Group */
  .fab {
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .fab:hover {
    background-color: #0056b3;
    transform: scale(1.05);
  }

  /* Options */
  .fab-options {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    gap: 12px;
  }

  .fab-options.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(-5px);
  }

  .fab-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }

  .fab-option.whatsapp { background-color: #25D366; }
  .fab-option.call { background-color: #d4a017; }

  .fab-option:hover {
    transform: scale(1.1);
  }

  /* Label above options */
  .fab-label {
    color: #333;
    font-size: 0.85rem;
    background: #fff;
    padding: 4px 10px;
    border-radius: 10px;
    margin-bottom: 5px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  @media (max-width: 576px) {
    .fab {
      width: 55px;
      height: 55px;
      font-size: 1.4rem;
    }
    .fab-option {
      width: 45px;
      height: 45px;
      font-size: 1.2rem;
    }
  }

  /* Hero Section */
.hero {
  height: 100vh;
  background: url('images/highway-blur.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: '';
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,0.35); /* subtle dark overlay for contrast */
}

.hero .container {
  position: relative; /* keep text above overlay */
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
}

.btn-yellow {
  background-color: #ffb100;
  color: #fff;
  border: none;
}

.btn-yellow:hover {
  background-color: #e2a000;
  color: #fff;
}

.btn-outline-light {
  border-color: #fff;
  color: #fff;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .hero {
    background-size: cover;
    background-position: center;
  }
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero h1, .hero p {
  color: #fff;
  z-index: 2;
}

/* taxi cab */
.btn-outline-dark:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
  transition: 0.3s;
}

/* === ANIMATIONS === */

/* Fade-in on page load */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Slide-in from left */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Slide-in from right */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Slide-up */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bounce */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Pulse */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Glow */
@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(255, 177, 0, 0.5); }
  50% { box-shadow: 0 0 15px rgba(255, 177, 0, 0.8); }
}

/* Apply animations */
main { animation: fadeIn 0.6s ease-in; }
section { animation: slideUp 0.7s ease-out; }
.card { animation: fadeIn 0.6s ease-in; }
.btn-yellow { animation: glow 3s ease-in-out infinite; }
.container h1, .container h2 { animation: slideInLeft 0.6s ease-out; }
.navbar-brand { animation: slideInLeft 0.5s ease-out; }

/* Stagger animations for cards */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

/* Hover scale effect */
.card, .btn-yellow, .fab, .fab-option {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
}

.btn-quote:hover {
  animation: bounce 0.6s ease-in-out;
}

.fab:hover {
  animation: bounce 0.4s ease-in-out;
}

/* Text gradient animation */
.text-gradient {
  background: linear-gradient(135deg, #0d6efd, #ffb100);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInRight 0.7s ease-out;
}

/* Form input focus animation */
.form-control:focus, .form-select:focus {
  border-color: #ffb100;
  box-shadow: 0 0 0 0.2rem rgba(255, 177, 0, 0.25);
  animation: glow 0.6s ease;
}

/* Accordion item animation */
.accordion-item {
  animation: slideUp 0.5s ease-out;
}

/* Badge pop animation */
.badge {
  animation: pulse 2s ease-in-out infinite;
}

/* ...existing vehicle-card, navbar, hero, etc. styles... */
