* {
    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;
}

/* 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;
    }
}


/*===================== hero section start================================  */

/* Background + gradient overlay */
.hero-section {
    position: relative;
    min-height: 80vh;
    /* background:
        linear-gradient(45deg, rgba(236, 182, 55, 0.807), rgba(183, 8, 133, 0.73)),
        url(./Photos/Home/Hero-section.jpg) no-repeat center center/cover; */
    /* background-image: linear-gradient(to right, rgba(0, 0, 0, 0.651), rgba(0, 0, 0, 0.47)), url(./Photos/Home/Hero-section.jpg); */
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.651), rgba(0, 0, 0, 0.47)), url(../Photos/Home/Gemini_Generated_Image_dbi6rsdbi6rsdbi6.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

/* Left side content */
.hero-content h1 {
    font-weight: 700;
    color: white;
    font-size: 3rem;
}


.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Feature list */
.feature-icons {
    display: flex;
    gap: 25px;
    color: white;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-icons i {
    color: #ecb537;
    margin-right: 8px;
}

/* Gradient buttons */
.btn-gradient {
    background: linear-gradient(45deg, #ecb537, #b70885);
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    border: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-white {
    background-color: white;
    color: black;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    border: none;
}

/* Booking Card */
.mauli-booking-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}



.mauli-booking-card h4 {
    font-weight: 700;
    color: #b70885;
    margin-bottom: 20px;
}

/* Inputs & Select */
.mauli-form-control,
.mauli-form-select,
.mauli-form-select-service {
    border-radius: 8px;
    padding-left: 25px !important;
    /* increased to give more space for icon */
    border: 1px solid #ddd;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    height: 45px;
    /* keeps consistent height for all fields */
}

.mauli-form-control:focus,
.mauli-form-select:focus {
    border-color: #b70885;
    box-shadow: 0 0 0 2px rgba(183, 8, 133, 0.2);
}

/* Icons inside inputs */
.mauli-input-icon {
    position: absolute;
    left: 15px;
    /* slightly more space from left */
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
    /* slightly larger for visibility */
    pointer-events: none;
    /* ensures clicks focus input instead of icon */
}

/* Gradient Button */
.mauli-btn-search {
    background: linear-gradient(45deg, #ecb537, #b70885);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mauli-btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(183, 8, 133, 0.3);
}


/*===================== hero section end  ================================*/


/*============================ Fleet start ===================== */
.premium-fleet-section h2 {
    color: #b70885;
}

.fleet-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    overflow: hidden;
}

.fleet-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    /* Aspect ratio trick */
    overflow: hidden;
}

.fleet-img-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.fleet-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #ecb537, #b70885);
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.fleet-feature {
    display: inline-block;
    background: #f4f4f4;
    color: #333;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-right: 4px;
}


.btn-book-read {
    background: white;
    border: none;
    padding: 8px 15px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 6px;
    color: grey;
    font-weight: 600;
    width: 100%;
    transition: color 0.2s ease;
}

.btn-book-read:hover {
    color: black;
}

.btn-book {
    background: linear-gradient(45deg, #ecb537, #b70885);
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    width: 100%;
}

.btn-view-all {
    background: white;
    border: none;
    color: grey;
    padding: 10px 20px;
    border: 1px solid black;
    border-radius: 8px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}


.btn-view-all:hover {
    color: black;
}

.btn-book:hover {
    opacity: 0.9;
}

/*============================ Fleet end ===================== */


/*================= Reason to hire start ================= */

.reason-section {
    padding: 60px 0;
}

.reason-section h2 {
    font-weight: 800;
    font-size: 2rem;
}

.reason-section .sub-title {
    color: #ecb537;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reason-section .sub-title::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #ecb537;
}

.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 ================= */

/*================ Services card start  =================*/
.services-section {
    padding: 60px 20px;
    text-align: center;
}

.services-section h2 {
    font-weight: bold;
    color: #b70885;
}

.services-section p {
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    text-align: left;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(45deg, #ecb537, #b70885);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.badge-custom {
    background: #f5f5f5;
    color: #555;
    font-size: 0.8rem;
    padding: 4px 10px;
    height: 100%;
    border-radius: 20px;
    margin-bottom: 10px;
    display: inline-block;
}

.service-card h5 {
    font-weight: bold;
    margin-top: 5px;
}

.service-card ul {
    padding-left: 20px;
    margin-top: 10px;
}

.service-card ul li {
    color: #555;
    margin-bottom: 5px;
}

.service-card ul li::marker {
    color: #b70885;
}

/*================ Services card end  =================*/


/*====================== why choose start ===================== */

.feature-card {
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/*====================== why choose 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 ====================== */