  html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }

  /* Desktop Navbar */
  .navbar-brand img {
    max-height: 25px;
    width: auto;
    margin-right: 30px;
  }

  .navbar-sai img {
    margin-top: 5px;
    width: 240px;
    height: 50px;
    object-fit: contain;
    margin-right: 16px;
  }

  .center-navbar {
    margin-left: auto;
    margin-right: auto;
  }

  .navbar-nav {
    gap: 1.5rem;
  }

  .navbar-icons {
    margin-left: 2rem;
  }

  .desktop-navbar {
    display: flex;
  }

  /* Mobile Navbar */
  .mobile-navbar {
    display: none;
  }

  .mobile-navbar .navbar {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mobile-navbar img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
  }

  @media (max-width: 600px) {
    .mobile-navbar img {
      height: 26px;
    }
    .mobile-navbar .fs-6 {
      font-size: 1rem;
    }
  }

  .mobile-navbar .text-center {
    flex: 1;
  }

  .mobile-navbar .d-flex.align-items-center.gap-2 {
    margin-right: 4px;
  }

  /* Switch between desktop & mobile nav */
  @media (max-width: 991.98px) {
    .desktop-navbar { display: none !important; }
    .mobile-navbar { display: flex !important; }
  }

  /* Fixed mobile navbar */
  .mobile-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1050;
    box-shadow: 0 1px 12px rgba(0,0,0,0.07);
  }

  /* Sidebar Nav */
  .mobile-sidenav {
    position: fixed;
    top: 56px;
    right: -340px;
    width: 340px;
    max-width: 100vw;
    height: calc(100% - 56px);
    background: #fff;
    z-index: 1049;
    box-shadow: -2px 0 8px rgba(0,0,0,0.13);
    transition: right 0.25s;
    overflow-y: auto;
  }

  .mobile-sidenav.open {
    right: 0;
  }

  .sidenav-backdrop {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 56px);
    background: rgba(0,0,0,0.38);
    z-index: 1048;
    display: none;
  }

  .sidenav-backdrop.active {
    display: block;
  }

  body.sidenav-open {
    overflow: hidden;
  }











  
  /* Hero Section */
  /* HERO SECTION – CAROUSEL */
/* Hero Section - Fixed */
.hero-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

/* Remove the conflicting first-child rule */
.mySlides:first-child {
  display: none; /* Remove this line entirely */
}

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: 0 auto;
}

/* Make sure slides are properly sized */
.mySlides {
  display: none;
  width: 100%;
}

/* Ensure images take full width and maintain aspect ratio */
.hero-slide-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 900px; /* Prevent images from being too tall */
  object-fit: cover; /* Ensure proper image scaling */
}

/* Navigation buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 2;
  background-color: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Dots */
.hero-dots-wrapper {
  text-align: center;
  margin: 15px 0;
  position: absolute;
  bottom: 10px;
  width: 100%;
  z-index: 2;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: #717171;
}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Mobile spacing */
@media (max-width: 575.98px) {
  .hero-image {
    margin-top: 56px; /* Height of fixed navbar */
  }
  
  .hero-slide-img {
    max-height: 300px;
  }
}
/* 🔥 Force-remove any background applied by older or cached CSS */
.hero-image,
.hero-image::before {
  background: none !important;
  background-image: none !important;
  content: none !important;
}














/* Video Section */
.video-section {
  padding: 40px 0;
  background: #efeded;
}

.video-box {
  width: 95vw;
  max-width: 1200px;
  aspect-ratio: 16/6;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.09);
  background: url('assets/images/ALLNEW.avif') center center/cover no-repeat;
  position: relative;
  margin: 0 auto;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 41, 41, 0.30);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 110px;
  height: 110px;
  font-size: 2.4rem;
  background: rgba(245,245,245,0.95);
  box-shadow: 0 2px 12px rgba(0,0,0,0.11);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn i {
  font-size: 3.5rem;
  color: #2a2f38;
}

.video-container {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #000;
  border-radius: 18px;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

@media (max-width: 767.98px) {
  .video-box {
    max-width: 98vw;
    aspect-ratio: 16/9;
    height: 220px;
  }
  .play-btn {
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }
  .play-btn i {
    font-size: 2.2rem;
  }
}

/* Dealer Section */
.dealer-section {
  background: #f6f7fa;
}

.dealer-section .card {
  border: none;
  border-radius: 10px;
}

.dealer-section .card-body {
  padding: 1.25rem 1.5rem;
}

/* Facilities icons */
.dealer-section .card-body .d-flex img {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 4px;
  transition: box-shadow 0.2s;
}

.dealer-section .card-body .d-flex img:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

/* List item style (general) */
.dealer-section .list-group-item {
  border: none;
  border-radius: 0;
  padding: 1rem 0.5rem;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 2px;
  transition: background 0.15s;
}

.dealer-section .list-group-item:hover {
  background: #f3f7ff;
}

/* Badges */
.dealer-section .badge {
  font-size: 0.95rem;
  padding: 6px 15px;
  background: #ecf1f2;
}

/* Filters width */
.dealer-section .form-select,
.dealer-section .form-control {
  min-width: 140px;
  font-size: 1rem;
}

/* Buttons */
.dealer-section .btn {
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
}

/* Responsive columns */
@media (max-width: 991.98px) {
  .dealer-section .row.g-4 {
    gap: 2.2rem 0;
  }
  .dealer-section .col-lg-5,
  .dealer-section .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .dealer-section .ratio {
    min-height: 220px !important;
  }
}

/* Mobile filter layout */
@media (max-width: 575.98px) {
  .dealer-section .row.justify-content-center,
  .dealer-section .row.align-items-end {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0;
    padding: 20px;
  }
  .dealer-section .col-auto {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 1rem !important;
  }
  .dealer-section .form-select,
  .dealer-section .form-control {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
    font-size: 1rem;
  }
  .dealer-section .btn.btn-dark {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
    font-size: 1.08rem;
  }
}

/* Extra dealer list / map helper styles if needed */
#find-dealer .card { border: none; }
#dealerList .dealer-item { padding: 14px 12px; border-bottom:1px solid #eee; cursor: pointer; }
#dealerList .dealer-item:hover { background:#fafafa; }
#dealerList .dealer-title { font-weight:700; }
#dealerList .distance { color:#2b6cb0; font-weight:600; float:right; }
.facility-icons img { height:36px; width:36px; object-fit:contain; margin-right:8px; }

@media (max-width: 991.98px) {
  #map { height:420px; }
  #dealerList { max-height:320px; }
}

/* Dealer card header + marker */
.dealer-card .card-header {
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  cursor: pointer;
}

/* Custom marker */
.dealer-marker {
  position: relative;
  width: 32px;
  height: 38px;
  background: #082a4e;
  border-radius: 16px 16px 16px 16px / 16px 16px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.05rem;
  margin-right: 10px;
  box-shadow: 0 2px 10px rgba(8,42,78,0.12);
}

.dealer-marker:before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 13px solid #082a4e;
}

.dealer-marker:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

/* Inner icon/content */
.dealer-marker .marker-content {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  color: #082a4e;
  font-weight: 700;
  margin-top: 6px;
}

.dealer-title {
  font-weight: 700;
  font-size: 1.18rem;
}

.dealer-location {
  font-size: 0.97rem;
}

.card-header .text-primary {
  font-weight: 600;
  font-size: 1rem;
}

.card-header .bi {
  font-size: 1.5rem;
  transition: transform 0.2s;
}

.dealer-card .card-body {
  font-size: 1rem;
  background: #fff;
  padding: 1.2rem 1.5rem;
}

.dealer-card .d-flex.gap-3 img {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 4px;
  height: 32px;
  transition: box-shadow 0.2s;
}

@media (max-width: 600px) {
  .dealer-card .card-header,
  .dealer-card .card-body {
    padding: 0.65rem 0.7rem;
  }
  .dealer-title {
    font-size: 1.06rem;
  }
}
