    :root {
      --accent-blue: #1a73ff;
      --nav-blue: #081b3a;
      --light-grey: #f5f7fb;
    }

    * { box-sizing: border-box; }

 /*   body {
      margin: 0;
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #ffffff;
      overflow-x: hidden; 
    }

    /* ================= GLOBAL NAV MENU ================= */
    .nav-shell {
      width: 100%;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }

    .nav-logo {
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 2px;
      color: #ffffff;
      white-space: nowrap;
    }

    .nav-center {
      flex: 1;
      display: none; /* visible on lg+ */
      justify-content: center;
    }

    .main-menu {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 1.2rem;
      align-items: center;
      font-size: 0.9rem;
      white-space: nowrap;
    }

    .main-menu .menu-link {
      color: #c7ccde;               /* light grey text */
      text-decoration: none;
      padding: 0.3rem 0.1rem;
      border-radius: 999px;
      transition: all 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.2rem;
    }

    .main-menu .menu-link.active {
      background: var(--accent-blue);  /* blue pill for active */
      color: #ffffff;
      padding: 0.35rem 0.8rem;
      box-shadow: 0 0 18px rgba(26,115,255,0.7);
    }

    .main-menu .menu-link:hover {
      color: #ffffff;                  /* white hover */
    }

    .main-menu .dropdown-toggle::after {
      margin-left: 0.25rem;
    }

    .menu-actions {
      display: none; /* visible on lg+ */
      align-items: center;
      gap: 0.5rem;
      white-space: nowrap;
    }
	

    .nav-btn {
      border-radius: 999px;
      padding: 0.35rem 0.9rem;
      font-size: 0.85rem;
      font-weight: 600;
      border: none;
    }

    .nav-btn-login {
      background: var(--accent-blue);
      color: #ffffff;
    }

    .nav-btn-post {
      background: #e53935;
      color: #ffffff;
    }

    .nav-btn:hover {
      opacity: 0.9;
    }

    /* Burger for mobile */
    .nav-burger {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 4px;
      width: 34px;
      height: 34px;
      background: rgba(0,0,0,0.35);
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.25);
      cursor: pointer;
      padding: 0;
    }
    .nav-burger span {
      display: block;
      width: 18px;
      height: 2px;
      background: #ffffff;
      border-radius: 999px;
    }

    /* Custom dark-blue dropdown */
    .custom-dropdown {
      background: #050b1a;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.08);
      padding: 0.3rem 0;
      min-width: 180px;
    }
    .custom-dropdown .dropdown-item {
      color: #e5e9ff;
      font-size: 0.85rem;
      padding: 0.35rem 0.9rem;
    }
    .custom-dropdown .dropdown-item:hover {
      background: var(--accent-blue);
      color: #ffffff;
    }

   
    /* ================= TOP NAV AFTER SCROLL ================= */
    .scroll-navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: #000000;
      color: #fff;
      padding: 0.45rem 1.1rem;
      display: none;
    }
    .scroll-navbar.show {
      display: block;
    }

   

    

    /* ================= MOBILE NAV DRAWER ================= */
    .mobile-drawer-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 1080;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }
    .mobile-drawer-backdrop.open {
      opacity: 1;
      pointer-events: all;
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      right: 0;
      height: 100%;
      width: 280px;
      max-width: 85%;
      background: #050b1a; /* dark blue drawer */
      color: #ffffff;
      z-index: 1090;
      transform: translateX(100%);
      transition: transform 0.25s ease;
      display: flex;
      flex-direction: column;
    }
    .mobile-drawer.open {
      transform: translateX(0);
    }
    .mobile-drawer-header {
      padding: 0.9rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .mobile-drawer-header span {
      font-weight: 700;
      letter-spacing: 1px;
      font-size: 0.95rem;
    }
    .mobile-drawer-close {
      background: none;
      border: none;
      color: #ffffff;
      font-size: 1.2rem;
      cursor: pointer;
    }
    .mobile-drawer-body {
      padding: 0.6rem 0.9rem;
      flex: 1;
      overflow-y: auto;
      font-size: 0.9rem;
    }
    .mobile-link {
      display: block;
      padding: 0.4rem 0.2rem;
      color: #e4e8ff;
      text-decoration: none;
    }
    .mobile-link.active {
      color: #ffffff;
      font-weight: 600;
    }
    .mobile-section-title {
      margin-top: 0.8rem;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #9ba1cf;
    }
    .mobile-accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 0.35rem 0.2rem;
      color: #e4e8ff;
    }
    .mobile-accordion-header span {
      font-size: 0.9rem;
    }
    .mobile-accordion-body {
      display: none;
      padding-left: 0.4rem;
      font-size: 0.85rem;
    }
    .mobile-accordion-body a {
      display: block;
      padding: 0.25rem 0;
      text-decoration: none;
      color: #c2c6ff;
    }
    .mobile-accordion-body a:hover {
      color: #ffffff;
    }

    .mobile-drawer-footer {
      padding: 0.6rem 0.9rem 0.9rem;
      border-top: 1px solid rgba(255,255,255,0.12);
      display: flex;
      gap: 0.4rem;
    }
    .mobile-drawer-footer .nav-btn {
      flex: 1;
      font-size: 0.8rem;
      padding-block: 0.4rem;
    }

    /* ================= BRANDS AUTO SCROLL ================= */
    .brands-section {
      background: #fff;
      padding: 1.8rem 0;
    }
    .brands-scroll {
      overflow: hidden;
    }
    .brands-track {
      display: flex;
      gap: 3rem;
      animation: brandsMove 22s linear infinite;
      align-items: center;
    }
    .brands-track img {
      height: 38px;
      object-fit: contain;
      filter: grayscale(35%);
    }
    @keyframes brandsMove {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ================= MAIN SECTIONS / CARDS ================= */
    main {
      background: var(--light-grey);
    }
    .section-padding {
      padding: 3rem 0;
    }
    .section-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: #101935;
      margin-bottom: 1.3rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .section-title::before {
      content: "";
      width: 26px;
      height: 3px;
      border-radius: 999px;
      background: var(--accent-blue);
      display: inline-block;
    }

    .pill-card {
      background: #fff;
      border-radius: 16px;
      padding: 1rem 1.1rem;
      box-shadow: 0 8px 20px rgba(24,40,90,0.08);
      cursor: pointer;
      transition: 0.2s;
    }
    .pill-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(24,40,90,0.18);
    }
    .pill-title { font-weight: 600; font-size: 0.95rem;color: #212529; }
    .pill-sub { font-size: 0.8rem; color: #6c7282; }

    .stat-card {
      background: #fff;
      border-radius: 18px;
      padding: 1rem 1.2rem;
      box-shadow: 0 8px 20px rgba(24,40,90,0.08);
    }
    .stat-number {
      font-size: 1.5rem;
      font-weight: 700;
    }
    .stat-label {
      font-size: 0.8rem;
      color: #6c7282;
    }

.featured-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;

  /* Light → medium gray border */
  border: 1px solid #e2e6eb;

  display: flex;
  flex-direction: column;
  height: 100%;

  transition: transform 0.25s ease, border-color 0.25s ease;
}

.featured-card:hover {
  transform: translateY(-4px);

  /* Slightly darker border on hover */
  border-color: #cfd6de;
}


    .featured-img-wrapper {
      background: transparent !important;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      padding: 1.1rem 1rem 0.2rem;
    }
.featured-wrapper,
.featured-scroll {
  background: transparent !important;
}
.featured-card {
  background: #ffffff !important;
}
    .featured-img-wrapper img {
      max-height: 110px;
      width: auto;
    }
    .featured-body {
      padding: 0.9rem 1.2rem 1.1rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      flex: 1;
    }
    .featured-title { font-weight: 600; font-size: 0.95rem; }
    .featured-meta { font-size: 0.78rem; color: #6c7282; }
    .featured-location { font-size: 0.78rem; color: #6c7282; }
    .featured-price { font-weight: 700; color: #0077c2; }
    .btn-compare {
      font-size: 0.78rem;
      border-radius: 999px;
      padding: 0.25rem 0.9rem;
    }
    .btn-compare.selected {
      background: var(--accent-blue);
      color: #fff;
    }

    .hiw-card {
      background: #fff;
      border-radius: 18px;
      padding: 1.2rem 1.3rem;
      box-shadow: 0 10px 25px rgba(24,40,90,0.08);
      height: 100%;
      font-size: 0.85rem;
      color: #6c7282;
    }
    .hiw-card h6 { font-weight: 600; color: #101935; }

    .testimonial-card {
      background: #fff;
      border-radius: 18px;
      padding: 1.2rem 1.3rem;
      box-shadow: 0 10px 25px rgba(24,40,90,0.08);
      display: flex;
      gap: 1rem;
      font-size: 0.85rem;
    }
    .testimonial-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
    }
    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .testimonial-name { font-weight: 600; }
    .testimonial-stars { color: #ffb400; font-size: 0.8rem; }

    /* FAQ + Sell */
    .faq-section {
      background: #eef2fb;
      padding: 3rem 0 3.2rem;
    }
    .sell-card {
      background: #fff;
      border-radius: 22px;
      padding: 1.8rem 2rem;
      box-shadow: 0 16px 40px rgba(24,40,90,0.18);
      font-size: 0.85rem;
    }

    /* FOOTER */
    .footer {
      background: #050f23;
      color: #d5ddf6;
      padding: 2.2rem 0 1.4rem;
      font-size: 0.8rem;
    }
    .footer h6 {
      color: #fff;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
    }
    .footer a {
      color: #d5ddf6;
      text-decoration: none;
    }
    .footer a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.12);
      margin-top: 1.3rem;
      padding-top: 0.7rem;
      font-size: 0.75rem;
      color: #9ba5d0;
    }

    /* ================= COMPARE DRAWER ================= */
    .compare-drawer {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      background: #111829;
      color: #fff;
      transform: translateY(100%);
      transition: transform 0.3s ease;
      z-index: 900;
      padding: 0.4rem 1rem 0.6rem;
    }
    .compare-drawer.open {
      transform: translateY(0);
    }
    .compare-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      margin-bottom: 0.4rem;
    }
    .compare-close {
      background: none;
      border: none;
      color: #fff;
      font-size: 1.1rem;
      cursor: pointer;
    }
    .compare-list {
      display: flex;
      gap: 0.7rem;
      font-size: 0.8rem;
      flex-wrap: wrap;
    }
    .compare-pill {
      background: #222c43;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
    }
    .compare-actions {
      margin-top: 0.4rem;
      display: flex;
      gap: 0.4rem;
      justify-content: flex-end;
    }

    /* ================= DEALER LOGIN PANEL ================= */
    .dealer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      display: none;
      z-index: 1000;
    }
    .dealer-overlay.open {
      display: block;
    }
    .dealer-panel {
      position: fixed;
      top: 0;
      right: 0;
      width: 340px;
      max-width: 90%;
      height: 100%;
      background: #0b1020;
      color: #fff;
      padding: 1.4rem 1.6rem;
      transform: translateX(100%);
      transition: transform 0.35s ease;
    }
    .dealer-overlay.open .dealer-panel {
      transform: translateX(0);
    }
    .dealer-panel h4 {
      font-size: 1.2rem;
      margin-bottom: 0.3rem;
    }
    .dealer-close {
      position: absolute;
      right: 0.8rem;
      top: 0.7rem;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.2rem;
      cursor: pointer;
    }
    .dealer-panel small { opacity: 0.7; }

.fixedtopbar .hero-menu-overlay{
	
	  position: absolute;
	    background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.05)
  );
}

.hero-menu-overlay {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background: #000;
  z-index: 1000; /* ABOVE video & overlay */

  overflow: visible !important;
  padding: 0.45rem 1.1rem;
}

    /* =============== RESPONSIVE BREAKPOINTS =============== */
    @media (max-width: 991.98px) {
      .hero-menu-overlay {
        padding-inline: 0.8rem;
      }
      .scroll-navbar {
        padding-inline: 0.8rem;
      }

      .hero-content {
        padding: 90px 1rem 210px;
        align-items: flex-start;
      }
      .hero-text-panel {
        max-width: 100%;
        padding: 1.1rem 1rem;
      }

      .hero-stats {
        gap: 1.4rem;
        font-size: 0.75rem;
      }
      .hero-stats span {
        font-size: 1.1rem;
      }

      .hero-search-bar {
        padding: 0.9rem;
      }

      .slide-menu { display: none; }
      .slide-menu-mobile { display: block; }
    }

    @media (min-width: 992px) {
      .nav-center {
        display: flex;
      }
      .menu-actions {
        display: flex;
      }
      .nav-burger {
        display: none;
      }
    }

    @media (max-width: 575.98px) {
      .hero-search-bar .row > div {
        margin-bottom: 0.2rem;
      }
      .sell-card {
        padding: 1.3rem 1.2rem;
      }
    }



/* ================= HERO ================= */
/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;

  z-index: 1;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,

  );
}

.hero-text {
  position: absolute;
  top: 40%;
  left: 7%;
  transform: translateY(-50%);
  color: #ffffff;
  max-width: 420px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-text p {
  font-size: 1rem;
}


/* HERO ADVANCED SEARCH FORM - FIXED CENTER */
.hero-search-container {
  position: absolute;
  bottom: 40px;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 90%;
  max-width: 1050px;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  display: block !important;
  margin: 0 auto !important;
}


/* Location */
.hero-location {
  position: absolute;
  right: 25px;
  top: -35px;
  color: #ffffff;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-location .city {
  font-weight: 600;
  text-decoration: underline;
}

/* Search bar row */
.hero-search-bar {
  background: #ffffff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  gap: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

/* Toggle buttons */
.toggle-buttons {
  display: flex;
  gap: 5px;
}

.toggle-btn {
  background: transparent;
  border: none;
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  color: #444;
  font-size: 0.95rem;
}

.toggle-btn.active {
  background: rgba(0, 153, 153, 0.15);
  color: #006666;
  border: 1px solid #009999;
}

/* Search input */
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  padding-left: 5px;
}

/* Search button */
.search-icon {
  background: none;
  border: none;
  font-size: 1.2rem;
  padding: 10px;
  color: #444;
  cursor: pointer;
  border-radius: 50%;
}

/* Filters */
.filter-row {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid #dddddd;
  padding: 7px 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn i {
  font-size: 0.9rem;
}

.filter-btn:hover {
  background: rgba(255, 128, 0, 0.18);
  border-color: rgba(255, 128, 0, 0.6);
}

.active-filter {
  background: rgba(0, 150, 150, 0.18);
  border-color: rgba(0, 150, 150, 0.4);
}





/* ================= WHY CHOOSE ================= */
.why-section {
  background: #f5f8ff;
  padding: 60px 0;
}

.why-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0a1a3c;
  margin-bottom: 35px;
}

.title-bar {
  width: 14px;
  height: 3px;
  background: #1a73ff;
  border-radius: 2px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Cards */
.why-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* Icon */
.why-icon {
  font-size: 2.6rem;
  color: #ff7b00;
  margin-bottom: 14px;
}

/* Text */
.why-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0a1a3c;
}

.why-card p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.featured-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.featured-scroll {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  gap: 15px;
  width: 100%;
}
/* Desktop */
.featured-item {
  flex: 0 0 33.333%;
  cursor: pointer;
}

/* Mobile – show ONLY ONE card */
@media (max-width: 768px) {
  .featured-item {
    flex: 0 0 100%;
  }
}

.featured-col {
  flex: 0 0 33.333%;
}

.scroll-btn {
  position: absolute;
  z-index: 10;
  background: #000;
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.scroll-btn.left {
  left: -15px;
}

.scroll-btn.right {
  right: -15px;
}

@media (max-width: 768px) {
  .featured-col {
    flex: 0 0 80%;
  }
}



/* SECTION TITLES */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #0a1a3c;
}

/* ================= LUXURY FLEET ================= */
.fleet-section {
  padding: 60px 20px;
  background: #f5f8ff;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.fleet-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.fleet-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.fleet-info {
  padding: 16px;
}

.fleet-info h5 {
  font-weight: 600;
  margin-bottom: 4px;
}

/* ================= PREMIUM SERVICES ================= */
.services-section {
  padding: 60px 20px;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.service-box {
  background: #0a1a3c;
  color: #fff;
  border-radius: 14px;
  padding: 22px 10px;
  text-align: center;
  transition: 0.3s;
}

.service-box a{
	color:#fff;
}

.service-box i {
  font-size: 2.2rem;
  color: #ff7b00;
  margin-bottom: 8px;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(10,26,60,0.5);
}


.services-grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}

/* Tablets */
@media (max-width: 1200px) {
  .services-grid-7 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-grid-7 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* BASE LOGO STYLE (shared) */
.logo-img {
  height: 64px;                 /* slightly big */
  width: auto;

  position: relative;
  top: 14px;                    /* HALF overlap outside header */

 background: rgba(0, 0, 0, 0.4);

  padding: 8px 12px;
  border-radius: 14px;

  backdrop-filter: blur(8px);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35));

  transition: all 0.3s ease;
  z-index: 1100;
}

/* HERO HEADER – slightly bigger logo */
.hero-menu-overlay .logo-img {
  height: 100px;
  top: 18px;                    /* more overlap on hero */
}

/* STICKY HEADER – smaller & tighter */
.scroll-navbar .logo-img {
  height: 68px;
  top: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.08);

}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
  .logo-img {
    height: 50px;
    top: 10px;
    padding: 6px 10px;
  }

  .hero-menu-overlay .logo-img {
    height: 58px;
    top: 12px;
  }
}




.brand-scroller {
  background: #f2f6ff;
  padding: 24px 0;
}

/* BRAND TRACK */
.brand-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: brandScroll 22s linear infinite;
}

/* LOGO CARD (WHITE SQUARE) */
.brand-track img {
  height: 40px;                 /* logo size inside box */
  width: auto;

  background: #ffffff;         /* white background */
  padding: 12px;               /* spacing inside square */

  width: 70px;
  height: 70px;                /* 70x70 square */
  object-fit: contain;

  border-radius: 16px;         /* rounded square */
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);

  opacity: 0.9;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* HOVER EFFECT */
.brand-track img:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}
@media (max-width: 768px) {
  .brand-track img {
    width: 60px;
    height: 60px;
    padding: 10px;
  }
}
/* ANIMATION */
@keyframes brandScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.chakra-logo {
  height: 60px;
  max-height: 12vh;
  width: auto;
}


.hero {
  position: relative;
  height: 100vh;

}

/* SLIDESHOW AT BOTTOM */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

/* OVERLAY ABOVE IMAGES */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* TEXT ABOVE OVERLAY */
.hero-text {
  position: relative;
  z-index: 3;
}

/* SEARCH — BOTTOM CENTER OF HERO */
.hero-search-container {
  position: absolute;
  left: 50%;
  bottom: 40px;               /* distance from bottom */
  transform: translateX(-50%);
  z-index: 4;

  width: 100%;
  max-width: 900px;           /* keeps it clean */
  padding: 0 16px;
}


@media (max-width: 768px) {
  .hero {
    height: 600px;
    padding: 120px 0 80px;
  }
}
@media (max-width: 768px) {
  .hero-search-container {
    bottom: -30px;  /* pushes it a bit outside hero */
  }
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #0d6efd; /* Bootstrap primary */
  color: #fff;
  transform: translateY(-3px);
}




.filters {
  display: flex;
  gap: 12px;
  padding: 10px;
}

/* Pill button */
.filter-btn {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: #f3f4f6;
}

/* Dropdown wrapper */
.filter-dropdown {
  position: relative;
}

/* Dropdown menu */
.dropdown1 {
  position: absolute;
  top: 110%;
  left: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  width: 180px;
  display: none;
  z-index: 100;
}

/* Dropdown items */
.dropdown1 li {
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
}

.dropdown1 li:hover {
  background: #f3f4f6;
}


.filter-dropdown .dropdown1 {
  display: none;
}

.filter-dropdown.open .dropdown1 {
  display: block;
}


.easy-autocomplete input {
    border-color: #ccc;
    border-radius: 4px;
    border-style: solid;
    border-width: 0px !important;
    box-shadow: 0 0px 0px rgba(0,0,0,0.1) inset  !important;
    color: #555;
    float: none;
    padding: 6px 12px;
	width:100%;
}

a{
	
	text-decoration:none;
	
}

.menu-actions li{
		list-style:none;
	}
	
	
	.loan-tabs .nav-link-btn {
    background: #f1f5f9;
    border-radius: 30px !important;
    padding: 10px 26px;
    margin: 0 6px;
    font-weight: 500;
}
.loan-tabs .active .nav-link-btn  {
    background: #1f4fd8;
    color: #fff;
}





.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f2f2f2;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}
