#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff; /* background color */
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 120px;  /* logo size */
    height: auto;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.contact-buttons {
    position: fixed;
    bottom: 20px; /* Back-to-top ke upar space */
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.contact-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-call {
    background: black; /* green */
}

.btn-whatsapp {
    background: #25D366; /* WhatsApp green */
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(0,0,0,0.3);
}
  /* Navbar Links */
.navbar-nav .nav-link {
  font-weight: 500;
  padding: 8px 15px;
}
.navbar-nav .nav-link:hover {
  color: #d32f2f !important;
}
.dropdown-menu {
  border-radius: 8px;
  padding: 10px;
}

/* Logo */
.navbar-brand img {
  height: 50px;
}
@media (max-width: 992px) {  
  .navbar-brand img {
    height: 40px;
  }
}

/* Mobile Menu Improvements */
@media (max-width: 768px) {
  .navbar-collapse {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
  }
  .navbar-nav .nav-link {
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
  }
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  /* Phone number & social icons stack */
  .navbar .d-flex.align-items-center {
    flex-direction: column;
    align-items: flex-start !important;
    margin-top: 15px;
    gap: 10px;
  }
  .navbar .d-flex.align-items-center a {
    font-size: 14px;
  }
  .navbar .d-flex.gap-2 a {
    width: 35px; height: 35px;
    display: flex; justify-content: center; align-items: center;
  }
}

@media (max-width: 992px) {  /* Tablet and below */
  .navbar-brand img {
    height: 30px;
  }
  div#mainNavbar {
    width: 100%;
}
  .breadcrumb-bar {
    margin-top: 0px !important;
}
}
.subcategory-card-unique {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease-in-out;
    position: relative;
}
.subcategory-card-unique:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}
.subcategory-card-image {
    position: relative;
    overflow: hidden;
}
.subcategory-card-image .subcategory-img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.subcategory-card-unique:hover .subcategory-card-image .subcategory-img {
    transform: scale(1.15) rotate(1deg);
}
.subcategory-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230,57,70,0.7);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.subcategory-card-unique:hover .subcategory-overlay {
    opacity: 1;
}
.subcategory-card-body {
    text-align: center;
    padding: 20px;
}
.subcategory-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}
.subcategory-card-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    min-height: 40px;
}
.subcategory-btn {
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.subcategory-btn:hover {
    background-color: #b22222;
    border-color: #b22222;
    transform: translateY(-2px);
}
.car-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.hover-text-primary:hover {
    color: #0d6efd !important;
}
.car-img .car-label {
    font-size: 0.85rem;
    font-weight: 600;
}
.owl-carousel .car-card {
    /* margin: 15px; */
}
@media (max-width: 767px) {
    .car-card { margin: 10px; }
}
.desktop-banner,
.mobile-banner {
    display: none;
    width: 100%;
}

/* Desktop (992px and above) */
@media (min-width: 992px) {
    .desktop-banner { display: block; }
}

/* Mobile (<992px) */
@media (max-width: 991px) {
    .mobile-banner { display: block; }
}

.owl-dots {
    display: none !important;
}
.hero-section .banner-sec img {
    height: 482px !important;
    object-fit: cover;
    filter: brightness(0.5);
}