* {
    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;
    }
}


/*================= Reason to hire start ================= */

.reason-section {
    padding: 60px 0;
}

.reason-section h2 {
    font-weight: 800;
    font-size: 2rem;
    font-family: "Noto Sans", sans-serif;
}


.reason-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.reason-section img {
    max-width: 100%;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .reason-section {
        padding: 40px 15px;
    }

    .reason-section h2 {
        font-size: 1.6rem;
    }
}

/*================= Reason to hire end ================= */


/*================= Pricing start=================  */

.seat-btn {
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

.active-seat {
    background-color: #b70885 !important;
    color: #fff !important;
}

.inactive-seat {
    background-color: #000;
    color: #fff;
}

/*================= Pricing end  =================*/

/*================== Blog start===============  */

.blog-title {
    color: #b70885;
    /* Your purple */
    font-weight: bold;
}

.blog-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-desc {
    margin-top: 10px;
    font-weight: 500;
}

.blog-desc a {
    color: #b70885;
    text-decoration: none;
}

.blog-desc a:hover {
    text-decoration: underline;
}

.section-heading {
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtext {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/*================== Blog end  ===============*/



/*===================== 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 ====================== */

.grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.img-A {
    height: 400px;
}

.img-B {
    height: 550px;
}

.img-C,
.img-D {
    height: 250px;
}

@media (max-width: 768px) {
    .img-B {
        height: 200px;
    }

    .img-A {
        height: 300px;
    }

    .img-C,
    .img-D {
        height: 200px;
    }
}