* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.noto {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

body {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    background-color: #f8f9fa;
}

.keywords{
    color: #ecb537;
}
.breadcrumb {
  --bs-breadcrumb-divider-color: #fff; /* This will set divider color */
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #fff !important; /* Force white divider */
}


/* Navbar */
.mauli-nav-navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 12px 2%;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mauli-nav-logo img {
    width: 115px;
}

/* Nav Links */
.mauli-nav-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.mauli-nav-links a {
    text-decoration: none;
    color: #3c4b5e;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.mauli-nav-links a.mauli-nav-active {
    color: #ecb537;
}

.mauli-nav-links a.mauli-nav-active::after {
    width: 100%;
}

.mauli-nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #b70885;
    transition: width 0.3s ease;
}

.mauli-nav-item:hover::after,
.mauli-nav-item.mauli-nav-active::after {
    width: 100%;
}

.mauli-nav-item:hover {
    color: #ecb537;
}

/* Dropdown */
.mauli-nav-dropdown {
    position: relative;
}

.mauli-nav-dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px) scaleY(0.95);
    transform-origin: top;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    border-radius: 10px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mauli-nav-dropdown.hovered .mauli-nav-dropdown-menu {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    pointer-events: all;
}

.mauli-nav-dropdown-menu li {
    opacity: 0;
    transform: translateX(-10px);
    width: 100%;
    transition: all 0.25s ease;
}

.mauli-nav-dropdown.hovered .mauli-nav-dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
}

.mauli-nav-dropdown-menu li a {
    display: block;
    width: 250px;
    padding: 5px 20px;
    text-align: left;
    color: #3c4b5e;
    transition: background 0.2s ease, color 0.2s ease;
    border-radius: 0;
}

.mauli-nav-dropdown-menu li a:hover {
    color: #ecb537;
}

/* Right Side */
.mauli-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mauli-nav-phone {
    text-decoration: none;
    color: #3c4b5e;
    font-weight: 500;
}

.mauli-nav-book-now {
    background: linear-gradient(45deg, #ecb537, #b70885);
    border: none;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.mauli-nav-book-now:hover {
    transform: scale(1.05);
}

.mauli-nav-hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Mobile Sidebar */
.mauli-nav-mobile-sidebar,
.mauli-nav-vehicle-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.mauli-nav-close-btn,
.mauli-nav-back-btn {
    font-size: 20px;
    color: #b70885;
    cursor: pointer;
    margin-bottom: 24px;
    font-weight: bold;
}

.mauli-nav-mobile-menu,
.mauli-nav-vehicle-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mauli-nav-mobile-menu li,
.mauli-nav-vehicle-menu li {
    margin-bottom: 18px;
}

.mauli-nav-mobile-menu a,
.mauli-nav-vehicle-menu a {
    text-decoration: none;
    color: #3c4b5e;
    font-size: 16px;
    padding: 10px 12px;
    display: block;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mauli-nav-mobile-menu a:hover,
.mauli-nav-vehicle-menu a:hover {
    background: #f4f4f4;
    color: #b70885;
}

/* Bottom contact */
.mauli-nav-mobile-contact {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: auto;
}

.mauli-num:hover {
    color: #ecb537;
}

.mauli-nav-mobile-contact .mauli-nav-phone {
    display: block;
    margin-bottom: 15px;
    color: #3c4b5e;
    font-weight: 500;
    text-decoration: none;
}

.mauli-nav-mobile-contact .mauli-nav-book-now {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-radius: 6px;
    background: linear-gradient(45deg, #ecb537, #b70885);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 960px) {
    .mauli-nav-links {
        display: none;
    }

    .mauli-nav-hamburger {
        display: block;
    }

    .mauli-nav-right .mauli-nav-phone,
    .mauli-nav-right .mauli-nav-book-now {
        display: none;
    }
}



/*================== car start ====================== */

/* Sticky Sidebar */
.sticky-form {
    position: sticky;
    top: 110px;
}



.gradient-btn {
    background: linear-gradient(45deg, #ecb537, #b70885);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 600;
}

.gradient-btn:hover {
    opacity: 0.9;
}



.form-control,
.form-select {
    border-left: none;
    box-shadow: none !important;
}

.form-box {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.sticky-form h4 {
    color: #b70885;
    font-weight: 700;
}
/*================== car end ====================== */


    .containerWrap {
      max-width: 1100px;
      margin: 25px auto;
      padding: 0 16px;
    }
    .headRow {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      flex-wrap: wrap;
    }
    .headingText {
      font-size: 26px;
      font-weight: bold;
      margin: 0;
    }
    .switchBlock {
      display: inline-flex;
      border: 1px solid #ccc;
      border-radius: 30px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .switchBlock button {
      border: none;
      padding: 10px 18px;
      font-weight: 600;
      cursor: pointer;
      background: #fff;
      transition: 0.2s;
      min-width: 96px;               /* bigger tap target */
    }
    .switchBlock button.activeTab {
      background: linear-gradient(45deg, #ecb537, #b70885);
      color: #fff;
    }

    /* ===== Slider ===== */
    .photoSlider {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      background: #000;
      aspect-ratio: 16/9;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }
    .slideRow {
      display: flex;
      height: 100%;
      transition: transform 0.35s ease;
      will-change: transform;
    }
    .slideBox { min-width: 100%; height: 100%; }
    .slideBox img { width: 100%; height: 100%; object-fit: cover; }

    .navBtns {
      position: absolute; inset: 0;
      display: flex; justify-content: space-between; align-items: center;
      pointer-events: none;
      padding: 0 6px;
    }
    .navBtns button {
      pointer-events: auto;
      border: none;
      width: 42px; height: 42px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 20px;
      font-weight: bold;
      background: linear-gradient(45deg, #ecb537, #b70885);
      color: #fff;
      box-shadow: 0 3px 10px rgba(0,0,0,.2);
    }
    .dotRow {
      position: absolute; left: 0; right: 0; bottom: 10px;
      display: flex; justify-content: center; gap: 8px;
      padding: 0 8px;
    }
    .dotRow button {
      width: 10px; height: 10px; border-radius: 50%;
      border: none; background: rgba(255,255,255,0.6);
      cursor: pointer;
    }
    .dotRow button.dotActive { background: #fff; }

    /* ===== Grid ===== */
    .photoGrid {
      display: none;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 16px;
      margin-top: 12px;
    }
    .gridCell {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      background: #fff;
    }
    .gridCell img { width: 100%; height: 180px; object-fit: cover; }

    /* ===== Info Card ===== */
    .infoCard {
      margin-top: 22px;
      overflow: hidden;
    }
    .infoCard h2 {
      margin: 0;
      padding: 16px;
      font-size: 20px;
      border-bottom: 1px solid #eee;
    }
    .infoBody { padding: 12px 18px; }
    table.specTable { width: 100%; border-collapse: collapse; }
    table.specTable th, table.specTable td {
      padding: 12px 10px;
      border-bottom: 1px solid #f3f3f3;
      text-align: left;
      vertical-align: top;
    }
    table.specTable th { width: 40%; font-weight: 600; color: #444; }
    .priceHighlight { font-weight: bold; color: #b70885; }
    .noteTxt { color: #666; }

    /* ===== Responsive Breakpoints ===== */

    /* Large tablets / small laptops */
    @media (max-width: 1200px) {
      .containerWrap { max-width: 1000px; }
      .headingText { font-size: 24px; }
    }

    /* Tablets */
    @media (max-width: 992px) {
      .containerWrap { max-width: 900px; }
      .headingText { font-size: 22px; }
      .gridCell img { height: 170px; }
      table.specTable th { width: 44%; }
    }

    /* Big phones / small tablets */
    @media (max-width: 768px) {
      .containerWrap { margin: 18px auto; }
      .headRow { gap: 10px; }
      .switchBlock button { padding: 10px 14px; min-width: 88px; }
      .photoSlider { border-radius: 10px; }
      .gridCell img { height: 160px; }
      .infoCard h2 { font-size: 19px; padding: 14px; }
      .infoBody { padding: 10px 14px; }
      table.specTable th, table.specTable td { padding: 10px 8px; }
      table.specTable th { width: 48%; }
    }

    /* Phones */
    @media (max-width: 576px) {
      .headingText { font-size: 20px; }
      .switchBlock { width: 100%; }
      .switchBlock button { flex: 1; }
      .photoSlider { aspect-ratio: 4/3; }  /* taller for phones */
      .navBtns button { width: 40px; height: 40px; font-size: 18px; }
      .gridCell img { height: 150px; }
      .dotRow { bottom: 8px; gap: 6px; }
      table.specTable th, table.specTable td { padding: 9px 8px; }
    }

    /* Small phones */
    @media (max-width: 400px) {
      .containerWrap { padding: 0 12px; }
      .headingText { font-size: 18px; }
      .switchBlock button { padding: 9px 12px; min-width: 80px; }
      .photoSlider { aspect-ratio: 1/1; }  /* square if super small */
      .gridCell img { height: 135px; }
      table.specTable th, table.specTable td { padding: 8px 6px; }
      table.specTable th { width: 52%; }
    }

    /* Accessibility: reduce motion */
    @media (prefers-reduced-motion: reduce) {
      .slideRow { transition: none; }
    }

/*===================== footer start ====================== */


.fleetflow-footer {
    background: #f8f9fa;
}

.fleetflow-footer a {
    color: #212529;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fleetflow-footer a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -3px;
    background: #b70885;
    transition: width 0.3s ease;
}

.fleetflow-footer a:hover {
    color: #ecb537;
}

.fleetflow-footer a:hover::after {
    width: 100%;
}

.ft{
    color: #b70885;
}

.social-links a {
    display: inline-block;
    font-size: 18px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #212529;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ecb537;
}

.call-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ecb537, #b70885);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.call-btn:hover {
    opacity: 0.85;
    text-decoration: none;
}

/*===================== footer end ====================== */