
        body {
            background-color: #f9fafb;
            font-family: Arial, sans-serif;
        }

        .mega-menu-link{
            text-decoration: none;

        }

        /* Header Auth Buttons (Login & Register) */
        .om-auth-btns {
            display: flex;
            gap: 10px;
            margin-left: 15px;
            padding-left: 15px;
            border-left: 1px solid #e9ecef;
        }

        .om-btn-login {
            display: inline-block;
            padding: 8px 20px;
            color: #151b26;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            border: 2px solid #e9ecef;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .om-btn-login:hover {
            border-color: #e50f10;
            color: #e50f10;
        }

        .om-btn-register {
            display: inline-block;
            padding: 8px 20px;
            background: #e50f10;
            color: #fff !important;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            border: 2px solid #e50f10;
            border-radius: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(229, 15, 16, 0.2);
        }

        .om-btn-register:hover {
            background: #151b26;
            border-color: #151b26;
            box-shadow: 0 4px 10px rgba(21, 27, 38, 0.2);
            transform: translateY(-2px);
        }

        @media (max-width: 1199px) {
            .om-auth-btns {
                border-left: none;
                margin-left: 0;
                padding-left: 0;
            }
        }

        /* Header Contact Badge Animations */
        @keyframes pulse-red {
            0% { box-shadow: 0 0 0 0 rgba(229, 15, 16, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(229, 15, 16, 0); }
            100% { box-shadow: 0 0 0 0 rgba(229, 15, 16, 0); }
        }

        .contact-phone-badge {
            font-weight: 700;
            color: #e50f10 !important;
            background: rgba(229, 15, 16, 0.1);
            padding: 6px 16px;
            border-radius: 20px;
            animation: pulse-red 2s infinite;
            display: inline-block;
            transition: all 0.3s;
        }

        .contact-phone-badge:hover {
            background: #e50f10;
            color: #fff !important;
            animation: none;
        }

        .social-icons li a { transition: all 0.3s ease; }
        .social-icons li a:hover, .menu-footer-link p a:hover {
            color: #e50f10 !important;
            transform: translateY(-3px);
            display: inline-block;
        }

        /* About Us Enhanced Card */
        .about-us-card {
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-left: 6px solid #e50f10;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .about-us-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(229,15,16,0.1);
        }

        /* FAQ Accordion Styling Enhancement */
        .prt-toggle_style_classic {
            background: #fff;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            border: 1px solid #eee;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .prt-toggle_style_classic:hover {
            box-shadow: 0 8px 20px rgba(229,15,16,0.1);
            border-color: rgba(229,15,16,0.2);
            transform: translateX(5px);
        }
        .toggle-title { margin: 0; }
        .toggle-title a {
            display: block;
            padding: 18px 25px;
            font-weight: 700;
            font-size: 16px;
            color: #333 !important;
            text-decoration: none;
            transition: color 0.3s ease, background 0.3s ease;
            position: relative;
        }
        .toggle-title a.active, .toggle-title a:hover {
            color: #e50f10 !important;
            background: rgba(229,15,16,0.02);
        }
        .toggle-content {
            padding: 0 25px 20px;
            color: #555;
            font-size: 15px;
            line-height: 1.7;
        }

        /* =========================================================
           WHY CHOOSE - PERFECT MAIN ROW (Your custom code preserved)
        ========================================================= */
        .om-main-row {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1600px;
            margin: 55px auto 0;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 220px repeat(4, minmax(0, 1fr)) 220px;
            gap: 18px;
            align-items: center;
        }

        .om-side-image {
            position: relative;
            width: 100%;
            height: 360px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
        }

        .om-mechanic, .om-bike {
            position: relative;
            z-index: 5;
            display: block;
            width: 210px;
            height: 330px;
            object-fit: contain;
            object-position: center;
            filter: drop-shadow(0 15px 20px rgba(0,0,0,.12));
        }

        .om-mechanic { animation: omFloatLeft 4s ease-in-out infinite; }
        .om-bike { animation: omFloatRight 4s ease-in-out infinite; }

        .om-paint-circle {
            position: absolute;
            z-index: 1;
            width: 280px;
            height: 280px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            background: radial-gradient(circle, rgba(229,15,16,.13) 0%, rgba(229,15,16,.07) 45%, rgba(229,15,16,.02) 68%, transparent 72%);
        }

        .om-red-shape {
            position: absolute;
            z-index: 1;
            width: 120px;
            height: 35px;
            right: -15px;
            top: 65px;
            background: #e50f10;
            transform: rotate(-25deg);
            clip-path: polygon(0 35%, 100% 0, 82% 100%, 10% 100%);
        }

        .om-feature {
            position: relative;
            width: 100%;
            min-height: 350px;
            padding: 25px 18px 22px;
            background: #fff;
            border: 1px solid #eeeeee;
            border-radius: 18px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
        }

        .om-feature:hover {
            transform: translateY(-10px);
            border-color: rgba(229,15,16,.25);
            box-shadow: 0 20px 45px rgba(229,15,16,.10);
        }

        .om-number {
            position: absolute;
            left: 15px;
            top: 15px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #ed1018;
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            z-index: 10;
            box-shadow: 0 6px 14px rgba(229,15,16,.25);
        }

        .om-icon-wrapper {
            position: relative;
            width: 150px;
            height: 150px;
            flex-shrink: 0;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .om-icon-wrapper::before {
            content: "";
            position: absolute;
            width: 145px;
            height: 145px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(229,15,16,.12), rgba(229,15,16,.04) 65%, transparent 67%);
        }

        .om-icon-wrapper::after {
            content: "";
            position: absolute;
            width: 145px;
            height: 145px;
            border-radius: 50%;
            border: 1.5px solid #e50f10;
            border-left-color: transparent;
            border-bottom-color: transparent;
            transform: rotate(25deg);
            transition: transform .6s ease;
        }

        .om-feature:hover .om-icon-wrapper::after { transform: rotate(200deg); }

        .om-icon {
            position: relative;
            z-index: 5;
            width: 105px;
            height: 105px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #ed1018;
            box-shadow: 0 10px 25px rgba(229,15,16,.25);
            transition: transform .4s ease, box-shadow .4s ease;
        }

        .om-feature:hover .om-icon {
            transform: scale(1.08) rotate(5deg);
            box-shadow: 0 15px 35px rgba(229,15,16,.35);
        }

        .om-icon i { color: #fff; font-size: 42px; }
        .om-feature h3 { margin-bottom: 13px; color: #18212c; font-size: 20px; line-height: 1.3; font-weight: 800; }
        .om-feature p { margin: 0 auto; max-width: 210px; color: #526273; font-size: 14px; line-height: 1.75; }

        .om-red-line {
            width: 42px;
            height: 3px;
            margin: 16px auto 0;
            background: #e50f10;
            transition: width .4s ease;
        }
        .om-feature:hover .om-red-line { width: 65px; }

        /* Animations */
        @keyframes omFloatLeft {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        @keyframes omFloatRight {
            0% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
            100% { transform: translateY(0); }
        }

        /* Bottom Section Wrapper */
        .om-bottom-wrapper { position: relative; margin-top: 50px; margin-bottom: 40px; }
        .om-bottom-wrapper::before {
            content: "";
            position: absolute;
            left: 0; right: 0; top: -16px;
            height: 30px;
            background: #e50f10;
            clip-path: polygon(0 0, 100% 70%, 100% 100%, 0 25%);
            z-index: 2;
        }
        .om-bottom-section {
            position: relative;
            background: #151d28;
            border-radius: 0 0 15px 15px;
            min-height: 240px;
            padding: 55px 45px 40px;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1.2fr 1fr 1fr 1.3fr;
            align-items: center;
            overflow: hidden;
        }
        .om-bottom-section::before {
            content: "";
            position: absolute;
            width: 700px; height: 700px;
            right: -300px; bottom: -450px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(229,15,16,.12), transparent 65%);
        }

        .om-bottom-message, .om-bottom-item, .om-bottom-cta { position: relative; z-index: 3; }
        .om-brush-text {
            display: inline-block; padding: 15px 25px;
            background: #e50f10; color: #ffffff;
            font-size: 25px; font-weight: 700; font-style: italic;
            line-height: 1.25; transform: rotate(-3deg);
            clip-path: polygon(2% 15%, 96% 3%, 100% 85%, 5% 100%);
        }
        .om-arrow { color: #ffffff; font-size: 30px; margin-left: 220px; margin-top: -5px; transform: rotate(25deg); }
        .om-bottom-item { text-align: center; padding: 0 18px; border-right: 1px solid rgba(255,255,255,.20); }
        .om-bottom-icon { width: 48px; height: 48px; margin: 0 auto 12px; border: 3px solid #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 21px; }
        .om-bottom-item h4 { margin-bottom: 7px; color: #ffffff; font-size: 17px; font-weight: 800; }
        .om-bottom-item p { margin: 0; color: #c4cbd3; font-size: 13px; line-height: 1.5; }
        .om-bottom-cta { text-align: center; }
        .om-cta-button { display: flex; align-items: center; justify-content: center; gap: 25px; width: 220px; margin: 0 auto; padding: 15px 20px; background: #ed1018; border-radius: 40px; color: #ffffff !important; font-size: 14px; font-weight: 800; text-decoration: none !important; box-shadow: 0 10px 25px rgba(229,15,16,.25); transition: all .3s ease; }
        .om-cta-button:hover { background: #ffffff; color: #e50f10 !important; transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,.25); }
        .om-with-text { margin-top: 13px; color: #ffffff; font-size: 18px; font-style: italic; font-weight: 600; }

        /* Media Queries omitted for brevity, keeping structure intact */
        @media (max-width: 1400px) {
            .om-main-row { grid-template-columns: 180px repeat(4, minmax(0, 1fr)) 180px; gap: 12px; padding: 0 15px; }
            .om-mechanic, .om-bike { width: 175px; height: 300px; }
        }
        @media (max-width: 1100px) {
            .om-main-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 850px; }
            .om-side-image { display: none; }
        }
        @media (max-width: 767px) {
            .om-main-row { display: grid; grid-template-columns: 1fr; }
            .om-bottom-section { display: block; padding: 55px 20px 40px; }
            .om-bottom-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding: 20px 10px; }
            .om-arrow { display: none; }
        }

    /* Header Contact Badge Animations */
    @keyframes pulse-red {
        0% { box-shadow: 0 0 0 0 rgba(229, 15, 16, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(229, 15, 16, 0); }
        100% { box-shadow: 0 0 0 0 rgba(229, 15, 16, 0); }
    }

    .contact-phone-badge {
        font-weight: 700;
        color: #e50f10 !important;
        background: rgba(229, 15, 16, 0.1);
        padding: 6px 16px;
        border-radius: 20px;
        animation: pulse-red 2s infinite;
        display: inline-block;
        transition: all 0.3s;
    }

    .contact-phone-badge:hover {
        background: #e50f10;
        color: #fff !important;
        animation: none;
    }

    .social-icons li a { transition: all 0.3s ease; }
    .social-icons li a:hover, .menu-footer-link p a:hover {
        color: #e50f10 !important;
        transform: translateY(-3px);
        display: inline-block;
    }

    /* =========================================================
       ABOUT INTRO SECTION ENHANCEMENTS
    ========================================================= */
    .about-intro-text {
        background: #fff;
        padding: 35px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .about-btn-container {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 25px;
    }

    .about-btn {
        background: #fff;
        border: 1px solid #e50f10;
        color: #e50f10;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(229, 15, 16, 0.05);
        cursor: default;
    }

    .about-btn p {
        margin: 0;
    }

    .about-btn:hover {
        background: #e50f10;
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(229, 15, 16, 0.25);
    }

    .featured-image-radius {
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        transition: transform 0.5s ease;
    }
    .featured-image-radius:hover {
        transform: scale(1.02);
    }

    /* =========================================================
       BOTTOM FEATURE ICON BOXES ENHANCEMENT
    ========================================================= */
    .featured-icon-box.style5 {
        background: black;
        border-radius: 15px;
        padding: 20px 25px;
        margin-bottom: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.04);
        display: flex;
        align-items: center;
        gap: 20px;
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
    }

    .featured-icon-box.style5:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 25px rgba(229,15,16,0.1);
        border-left-color: #e50f10;
    }

    .featured-icon-box.style5 .prt-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(229,15,16,0.1);
        color: #e50f10;
        border-radius: 50%;
        font-size: 20px;
        transition: all 0.3s ease;
    }

    .featured-icon-box.style5:hover .prt-icon {
        background: #e50f10;
        color: #fff;
    }

    .featured-title h3 { margin: 0; font-size: 18px; font-weight: 700; }
    .featured-title a { color: #222; text-decoration: none; transition: color 0.3s ease; }
    .featured-title a:hover { color: #e50f10; }

    /* =========================================================
       MAIN SECTION (WHY RIDERS TRUST US) - Preserved Custom CSS
    ========================================================= */
    .om-trust-section { position: relative; overflow: hidden; padding: 90px 0 80px; background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%); }
    .om-trust-circle { position: absolute; border-radius: 50%; pointer-events: none; }
    .om-trust-circle-one { width: 450px; height: 450px; left: -280px; top: 150px; background: rgba(229,15,16,.035); }
    .om-trust-circle-two { width: 350px; height: 350px; right: -220px; top: 500px; border: 2px solid rgba(229,15,16,.07); }
    
    .om-trust-heading { max-width: 850px; margin: 0 auto 50px; }
    .om-trust-label { display: flex; align-items: center; justify-content: center; gap: 15px; color: #e50f10; font-size: 14px; font-weight: 800; letter-spacing: 2px; }
    .om-trust-label span { width: 45px; height: 2px; background: #e50f10; }
    .om-trust-heading h2 { margin: 18px 0 12px; color: #151d28; font-size: 48px; font-weight: 800; line-height: 1.15; }
    .om-trust-heading h2 strong { color: #e50f10; }
    .om-trust-heading > p { max-width: 750px; margin: 0 auto; color: #657383; font-size: 16px; line-height: 1.8; }

    .om-stat-row { margin-bottom: 80px; display: flex; justify-content: center; }
    .om-stat-box { position: relative; height: 100%; padding: 32px 20px; text-align: center; background: #ffffff; border: 1px solid #eeeeee; border-radius: 18px; transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease; }
    .om-stat-box:hover { transform: translateY(-10px); border-color: rgba(229,15,16,.25); box-shadow: 0 20px 45px rgba(0,0,0,.08); }
    .om-stat-icon { width: 65px; height: 65px; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #ffffff; background: #e50f10; font-size: 25px; box-shadow: 0 10px 25px rgba(229,15,16,.20); transition: transform .4s ease; }
    .om-stat-box:hover .om-stat-icon { transform: rotate(10deg) scale(1.08); }
    .om-stat-number { color: #151d28; font-size: 30px; line-height: 1; font-weight: 900; }
    .om-stat-box h4 { margin: 10px 0 5px; color: #151d28; font-size: 17px; font-weight: 800; }
    .om-stat-box p { margin: 0; color: #718092; font-size: 13px; line-height: 1.6; }

    .om-feature-area { padding: 55px 45px; margin-bottom: 80px; background: #151d28; border-radius: 25px; position: relative; overflow: hidden; }
    .om-feature-area::before { content: ""; position: absolute; width: 400px; height: 400px; right: -180px; top: -180px; border-radius: 50%; background: rgba(229,15,16,.10); }
    .om-feature-area::after { content: ""; position: absolute; width: 220px; height: 220px; left: -100px; bottom: -130px; border-radius: 50%; border: 2px solid rgba(229,15,16,.15); }
    
    .om-feature-content { position: relative; z-index: 2; padding-right: 35px; }
    .om-feature-label { display: inline-flex; align-items: center; gap: 8px; color: #e50f10; font-size: 13px; font-weight: 800; letter-spacing: 1.5px; }
    .om-feature-content h3 { margin: 15px 0; color: #ffffff; font-size: 38px; line-height: 1.2; font-weight: 800; }
    .om-feature-content h3 span { color: #e50f10; }
    .om-feature-content > p { color: #b9c1ca; font-size: 15px; line-height: 1.8; max-width: 500px; }

    .om-check-list { margin-top: 25px; }
    .om-check-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 17px; }
    .om-check-icon { flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #ffffff; background: #e50f10; font-size: 12px; }
    .om-check-item strong { color: #ffffff; font-size: 15px; }
    .om-check-item p { margin: 3px 0 0; color: #8f9ba8; font-size: 13px; }

    .om-service-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .om-service-box { position: relative; display: flex; align-items: center; gap: 13px; padding: 20px 18px; min-height: 105px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10); border-radius: 14px; text-decoration: none !important; transition: background .35s ease, transform .35s ease, border-color .35s ease; }
    .om-service-box:hover { transform: translateY(-5px); background: rgba(229,15,16,.12); border-color: rgba(229,15,16,.5); }
    .om-service-icon { flex-shrink: 0; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: #e50f10; border-radius: 12px; color: #ffffff; font-size: 20px; }
    .om-service-box h4 { margin: 0 0 4px; color: #ffffff; font-size: 15px; font-weight: 800; }
    .om-service-box p { margin: 0; color: #8e9aa8; font-size: 12px; line-height: 1.5; }
    .om-service-arrow { position: absolute; right: 13px; bottom: 12px; color: #e50f10; font-size: 12px; transition: transform .3s ease; }
    .om-service-box:hover .om-service-arrow { transform: translateX(5px); }

    .om-process-section { position: relative; }
    .om-process-heading { margin-bottom: 40px; }
    .om-process-heading > span { color: #e50f10; font-size: 13px; font-weight: 800; letter-spacing: 2px; }
    .om-process-heading h3 { margin-top: 8px; color: #151d28; font-size: 34px; font-weight: 800; }
    .om-process-row { position: relative; }
    .om-process-row::before { content: ""; position: absolute; left: 16.5%; right: 16.5%; top: 60px; height: 2px; background: repeating-linear-gradient(90deg, #e50f10 0, #e50f10 8px, transparent 8px, transparent 16px); }
    .om-process-box { position: relative; z-index: 2; text-align: center; padding: 0 25px; }
    .om-process-number { position: absolute; top: -5px; right: 25%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #151d28; color: #ffffff; font-size: 10px; font-weight: 800; }
    .om-process-icon { width: 100px; height: 100px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #ffffff; border: 2px solid #e50f10; color: #e50f10; font-size: 34px; box-shadow: 0 12px 30px rgba(0,0,0,.08); transition: all .4s ease; }
    .om-process-box:hover .om-process-icon { color: #ffffff; background: #e50f10; transform: translateY(-8px) rotate(5deg); box-shadow: 0 18px 35px rgba(229,15,16,.25); }
    .om-process-box h4 { margin-bottom: 8px; color: #151d28; font-size: 20px; font-weight: 800; }
    .om-process-box p { max-width: 280px; margin: auto; color: #6b7887; font-size: 14px; line-height: 1.7; }

    .om-trust-cta { position: relative; display: flex; align-items: center; gap: 25px; margin-top: 75px; padding: 30px 35px; background: #e50f10; border-radius: 18px; overflow: hidden; box-shadow: 0 15px 40px rgba(229,15,16,.20); }
    .om-trust-cta::after { content: ""; position: absolute; width: 300px; height: 300px; right: -150px; top: -180px; border-radius: 50%; border: 35px solid rgba(255,255,255,.08); }
    .om-cta-icon { position: relative; z-index: 2; flex-shrink: 0; width: 65px; height: 65px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #ffffff; color: #e50f10; font-size: 27px; }
    .om-cta-content { position: relative; z-index: 2; flex: 1; }
    .om-cta-content span { color: rgba(255,255,255,.75); font-size: 11px; font-weight: 800; letter-spacing: 2px; }
    .om-cta-content h3 { margin: 5px 0; color: #ffffff; font-size: 25px; font-weight: 800; }
    .om-cta-content p { margin: 0; color: rgba(255,255,255,.85); font-size: 13px; }
    .om-cta-button { position: relative; z-index: 3; flex-shrink: 0; display: inline-flex; align-items: center; gap: 20px; padding: 14px 24px; border-radius: 30px; background: #151d28; color: #ffffff !important; text-decoration: none !important; font-size: 13px; font-weight: 800; transition: all .35s ease; }
    .om-cta-button:hover { background: #ffffff; color: #e50f10 !important; transform: translateY(-3px); }

    /* Media Queries Preserved */
    @media (max-width: 991px) {
        .om-trust-section { padding: 65px 0; }
        .om-trust-heading h2 { font-size: 40px; }
        .om-stat-row { margin-bottom: 50px; }
        .om-stat-box { margin-bottom: 20px; }
        .om-feature-area { padding: 40px 30px; }
        .om-feature-content { padding-right: 0; margin-bottom: 40px; }
        .om-process-row::before { display: none; }
        .om-process-box { margin-bottom: 35px; }
        .om-trust-cta { flex-wrap: wrap; }
        .om-cta-content { min-width: 70%; }
    }
    @media (max-width: 767px) {
        .om-trust-section { padding: 50px 0; }
        .om-trust-heading { margin-bottom: 35px; }
        .om-trust-heading h2 { font-size: 32px; }
        .om-trust-heading > p { font-size: 14px; }
        .om-feature-area { padding: 35px 20px; border-radius: 18px; }
        .om-feature-content h3 { font-size: 30px; }
        .om-service-grid { grid-template-columns: 1fr; }
        .om-service-box { min-height: 90px; }
        .om-process-heading h3 { font-size: 28px; }
        .om-trust-cta { display: block; text-align: center; padding: 30px 20px; }
        .om-cta-icon { margin: 0 auto 15px; }
        .om-cta-content h3 { font-size: 21px; }
        .om-cta-button { margin-top: 20px; }
    }


     /*allservices section*/
    /* Enhanced Card Styling & Animations */
    .featured-imagebox-portfolio {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        margin-bottom: 30px;
        border: 1px solid transparent;
    }

    .featured-imagebox-portfolio:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(229, 15, 16, 0.15); /* Brand red tinted shadow */
        border-color: rgba(229, 15, 16, 0.2);
    }

    .featured-thumbnail {
        overflow: hidden;
        position: relative;
    }

    .featured-thumbnail img {
        transition: transform 0.6s ease;
        width: 100%;
        object-fit: cover;
    }

    .featured-imagebox-portfolio:hover .featured-thumbnail img {
        transform: scale(1.08); /* Smooth image zoom on hover */
    }

    .featured-title {
        padding: 20px 18px 10px;
    }

    .featured-title h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
    }

    .featured-title a {
        color: #222;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .featured-imagebox-portfolio:hover .featured-title a {
        color: #e50f10;
    }

    .service-price-card {
        background: #fff;
        border-top: 1px solid #f0f0f0;
        padding: 18px;
    }

    .price-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        font-size: 16px;
        font-weight: 700;
        color: #333;
    }

    /* Styled the Book Now link into an attractive button */
    .price-row a.book-btn {
        background: #e50f10;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        padding: 8px 18px;
        border-radius: 30px;
        text-decoration: none;
        white-space: nowrap;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(229, 15, 16, 0.3);
    }

    .price-row a.book-btn:hover {
        background: #222;
        box-shadow: 0 4px 10px rgba(34, 34, 34, 0.3);
        transform: translateY(-2px);
    }

    .booking-charge {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 15px;
        padding-top: 12px;
        border-top: 1px dashed #e0e0e0;
        font-size: 14px;
        color: #666;
    }

    .booking-charge strong {
        color: #111;
        font-size: 15px;
    }

    /* Pulse animation for the phone number to attract attention */
    @keyframes pulse-red {
        0% { box-shadow: 0 0 0 0 rgba(229, 15, 16, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(229, 15, 16, 0); }
        100% { box-shadow: 0 0 0 0 rgba(229, 15, 16, 0); }
    }

    .contact-phone-badge {
        font-weight: 700;
        color: #e50f10 !important;
        background: rgba(229, 15, 16, 0.1);
        padding: 6px 16px;
        border-radius: 20px;
        animation: pulse-red 2s infinite;
        display: inline-block;
        transition: all 0.3s;
    }

    .contact-phone-badge:hover {
        background: #e50f10;
        color: #fff !important;
        animation: none;
    }

    /* Footer Social Icon Hovers */
    .social-icons li a {
        transition: all 0.3s ease;
    }
    .social-icons li a:hover, .menu-footer-link p a:hover {
        color: #e50f10 !important;
        transform: translateY(-3px);
        display: inline-block;
    }
        
      
    

        /* Stepper */
        .header-stepper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid #eaeaea;
            position: relative;
            margin-bottom: 30px;
        }
        .header-stepper::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: #eaeaea;
            z-index: 1;
        }
        .step {
            position: relative;
            z-index: 2;
            background: #fff;
            padding: 0 15px;
            text-align: center;
        }
        .step-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            background: #fff;
            font-weight: bold;
            color: #555;
        }
        .step.active .step-circle {
            background: #e50f10;
            border-color: #e50f10;
            color: #fff;
        }
        .step.active span {
            color: #e50f10;
            font-weight: bold;
        }

        /* Form Elements */
        .section-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            margin-top: 30px;
            color: #222;
        }
        .required-star {
            color: #e50f10;
        }
        
        .btn-check:checked + .btn-outline-secondary {
            background-color: #f8f9fa;
            border-color: #222;
            color: #222;
            font-weight: bold;
        }
        .btn-outline-secondary {
            border-color: #ddd;
            color: #555;
            border-radius: 8px;
            margin-right: 10px;
            margin-bottom: 10px;
            padding: 10px 20px;
        }

        .add-vehicle-btn {
            border: 2px dashed #e50f10;
            color: #e50f10;
            background: #fffafa;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            font-weight: bold;
            display: block;
            width: 100%;
            transition: all 0.3s;
        }
        .add-vehicle-btn:hover {
            background: #fee;
        }

        /* Right Sidebar Order Summary */
        .order-summary-sidebar {
            position: sticky;
            top: 20px;
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid #f5c6c6;
        }
        .service-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .service-info img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 15px;
            border: 1px solid #eee;
        }
        .booking-charge-box {
            background-color: #fff5f5;
            border-radius: 8px;
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 14px;
        }
        .total-price-section {
            border-top: 1px solid #eaeaea;
            padding-top: 20px;
            margin-bottom: 20px;
        }
        .btn-continue {
            background-color: #e50f10;
            color: #fff;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: bold;
            width: 100%;
            font-size: 16px;
        }
        .btn-continue:hover {
            background-color: #c40a0b;
            color: #fff;
        }
   

       /* schedule section */
        
      
       



        /* Stepper Navigation */
        .header-stepper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid #eaeaea;
            position: relative;
            margin-bottom: 30px;
        }
        /* Gray background line */
        .header-stepper::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: #eaeaea;
            z-index: 1;
        }
        /* Red progress line (Step 1 to Step 2) */
        .header-stepper::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 10%;
            width: 33%; /* Progress to step 2 */
            height: 2px;
            background: #e50f10;
            z-index: 1;
        }
        .step {
            position: relative;
            z-index: 2;
            background: #fff;
            padding: 0 15px;
            text-align: center;
        }
        .step-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            background: #fff;
            font-weight: bold;
            color: #555;
        }
        /* Completed Step */
        .step.completed .step-circle {
            background: #e50f10;
            border-color: #e50f10;
            color: #fff;
        }
        .step.completed span {
            color: #222;
            font-weight: bold;
        }
        /* Active Step */
        .step.active .step-circle {
            background: #e50f10;
            border-color: #e50f10;
            color: #fff;
        }
        .step.active span {
            color: #e50f10;
            font-weight: bold;
        }

        /* Form Elements */
        .section-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            margin-top: 25px;
            color: #222;
        }
        .required-star {
            color: #e50f10;
        }
        
        /* Custom Input Groups (with icons) */
        .input-group-text {
            background-color: #fff;
            border-right: none;
            color: #666;
            padding-left: 20px;
        }
        .custom-input {
            border-left: none;
            padding-left: 10px;
            padding-top: 12px;
            padding-bottom: 12px;
        }
        .custom-input:focus {
            box-shadow: none;
            border-color: #dee2e6;
        }
        .input-group:focus-within {
            box-shadow: 0 0 0 0.25rem rgba(229, 15, 16, 0.25);
            border-radius: 0.375rem;
        }

        /* Gender Selection Pills */
        .btn-check:checked + .btn-outline-secondary {
            background-color: #fff5f5;
            border-color: #e50f10;
            color: #e50f10;
            font-weight: bold;
        }
        .btn-outline-secondary {
            border-color: #ddd;
            color: #555;
            border-radius: 8px;
            margin-right: 15px;
            margin-bottom: 10px;
            padding: 10px 30px;
            background-color: #fff;
        }
        .btn-outline-secondary:hover {
            background-color: #f8f9fa;
            color: #222;
            border-color: #ccc;
        }

        /* Product Card (Optional Section) */
        .product-card {
            border: 1px solid #eaeaea;
            border-radius: 12px;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .product-icon {
            border: 2px solid #222;
            border-radius: 12px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #222;
        }
        .btn-add-product {
            border: 1px solid #e50f10;
            color: #e50f10;
            background: #fff;
            padding: 5px 25px;
            border-radius: 8px;
            font-weight: bold;
        }
        .btn-add-product:hover {
            background: #fff5f5;
        }

        /* Right Sidebar Order Summary */
        .order-summary-sidebar {
            position: sticky;
            top: 20px;
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid #f5c6c6;
        }
        .service-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .service-info img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 15px;
            border: 1px solid #eee;
        }
        .booking-charge-box {
            background-color: #fff5f5;
            border-radius: 8px;
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 14px;
        }
        .total-price-section {
            border-top: 1px solid #eaeaea;
            padding-top: 20px;
            margin-bottom: 20px;
        }
        .btn-continue {
            background-color: #e50f10;
            color: #fff;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: bold;
            width: 100%;
            font-size: 16px;
        }
        .btn-continue:hover {
            background-color: #c40a0b;
            color: #fff;
        }
   

      /*schedule servies section*/
        
        
      

        /* Stepper Navigation */
        .header-stepper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid #eaeaea;
            position: relative;
            margin-bottom: 30px;
        }
        /* Gray background line */
        .header-stepper::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: #eaeaea;
            z-index: 1;
        }
        /* Red progress line (Step 1 to Step 3) */
        .header-stepper::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 10%;
            width: 66%; /* Progress to step 3 */
            height: 2px;
            background: #e50f10;
            z-index: 1;
        }
        .step {
            position: relative;
            z-index: 2;
            background: #fff;
            padding: 0 15px;
            text-align: center;
        }
        .step-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            background: #fff;
            font-weight: bold;
            color: #555;
        }
        /* Completed Step */
        .step.completed .step-circle {
            background: #e50f10;
            border-color: #e50f10;
            color: #fff;
        }
        .step.completed span {
            color: #222;
            font-weight: bold;
        }
        /* Active Step */
        .step.active .step-circle {
            background: #e50f10;
            border-color: #e50f10;
            color: #fff;
        }
        .step.active span {
            color: #e50f10;
            font-weight: bold;
        }

        /* Form Elements */
        .section-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            margin-top: 25px;
            color: #222;
        }
        
        /* Custom Input Groups (with icons) */
        .input-group-text {
            background-color: #fff;
            border: none;
            color: #999;
            padding-left: 20px;
            padding-right: 10px;
        }
        .custom-input {
            border: none;
            padding-left: 10px;
            padding-top: 15px;
            padding-bottom: 15px;
            color: #555;
            font-weight: 500;
        }
        .custom-input::placeholder {
            color: #aaa;
            font-weight: normal;
        }
        .custom-input:focus {
            box-shadow: none;
        }
        .input-group.date-time-wrapper {
            border: 1px solid #ddd;
            border-radius: 12px;
            background: #fff;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .input-group.date-time-wrapper:focus-within {
            border-color: #e50f10;
            box-shadow: 0 0 0 0.2rem rgba(229, 15, 16, 0.1);
        }
        .chevron-icon {
            background-color: #fff;
            border: none;
            color: #ccc;
            padding-right: 20px;
        }

        /* Right Sidebar Order Summary */
        .order-summary-sidebar {
            position: sticky;
            top: 20px;
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid #f5c6c6;
        }
        .service-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .service-info img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 15px;
            border: 1px solid #eee;
        }
        .booking-charge-box {
            background-color: #fff5f5;
            border-radius: 8px;
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 14px;
        }
        .total-price-section {
            border-top: 1px solid #eaeaea;
            padding-top: 20px;
            margin-bottom: 20px;
        }
        .btn-continue {
            background-color: #e50f10;
            color: #fff;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: bold;
            width: 100%;
            font-size: 16px;
        }
        .btn-continue:hover {
            background-color: #c40a0b;
            color: #fff;
        }
  

    
        
        
        .main-card {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            margin-bottom: 20px;
        }

        /* Stepper Navigation */
        .header-stepper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid #eaeaea;
            position: relative;
            margin-bottom: 25px;
        }
        .header-stepper::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: #eaeaea;
            z-index: 1;
        }
        .header-stepper::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 10%;
            width: 90%; /* Progress to step 4 */
            height: 2px;
            background: #e50f10;
            z-index: 1;
        }
        .step {
            position: relative;
            z-index: 2;
            background: #fff;
            padding: 0 10px;
            text-align: center;
        }
        .step-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            background: #fff;
            font-weight: bold;
            color: #555;
        }
        .step.completed .step-circle {
            background: #e50f10;
            border-color: #e50f10;
            color: #fff;
        }
        .step.completed span, .step.active span {
            color: #222;
            font-weight: bold;
        }
        .step.active .step-circle {
            background: #e50f10;
            border-color: #e50f10;
            color: #fff;
        }
        .step.active span {
            color: #e50f10;
        }

        /* Summary List */
        .summary-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .summary-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            font-size: 15px;
        }
        .summary-list li .icon {
            color: #e50f10;
            width: 25px;
            font-size: 16px;
            margin-top: 3px;
        }
        .summary-list li .label {
            color: #555;
            width: 100px;
            flex-shrink: 0;
        }
        .summary-list li .value {
            color: #222;
            font-weight: 600;
            flex-grow: 1;
            text-align: right;
            word-break: break-word;
        }

        /* Advance Payment Input */
        .advance-pay-wrapper {
            background: #f8f9fa;
            border-radius: 8px;
            display: flex;
            align-items: center;
            padding: 5px 15px;
            margin-top: 15px;
        }
        .advance-pay-wrapper input {
            border: none;
            background: transparent;
            box-shadow: none;
            font-weight: bold;
            font-size: 16px;
        }
        .advance-pay-wrapper input:focus {
            outline: none;
            box-shadow: none;
        }
        .btn-pay-full {
            color: #e50f10;
            font-weight: bold;
            border: none;
            background: transparent;
            white-space: nowrap;
        }

        /* Payment Methods */
        .payment-method-card {
            display: block;
            border: 1px solid #eaeaea;
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.2s;
            background: #fff;
        }
        .payment-method-card:hover {
            border-color: #ccc;
        }
        .btn-check:checked + .payment-method-card {
            border-color: #e50f10;
            background-color: #fffafa;
        }
        .method-icon {
            color: #e50f10;
            font-size: 20px;
            width: 35px;
        }
        .radio-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .btn-check:checked + .payment-method-card .radio-dot {
            border-color: #e50f10;
        }
        .btn-check:checked + .payment-method-card .radio-dot::after {
            content: '';
            width: 10px;
            height: 10px;
            background: #e50f10;
            border-radius: 50%;
        }

        /* Right Sidebar */
        .order-summary-sidebar {
            position: sticky;
            top: 20px;
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid #f5c6c6;
        }
        .bill-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 15px;
            color: #555;
        }
        .bill-row.total {
            border-top: 1px solid #eaeaea;
            padding-top: 15px;
            margin-top: 5px;
            font-weight: bold;
            color: #222;
            font-size: 18px;
        }
        
        .pay-now-box {
            background-color: #fff5f5;
            border: 1px solid #f5c6c6;
            border-radius: 12px;
            padding: 20px;
            margin-top: 25px;
            margin-bottom: 20px;
        }
        
        .btn-pay {
            background-color: #e50f10;
            color: #fff;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: bold;
            width: 100%;
            font-size: 18px;
        }
        .btn-pay:hover {
            background-color: #c40a0b;
            color: #fff;
        }
         
        /*contact section*/
        /* Header Contact Badge Animations */
        @keyframes pulse-red {
            0% { box-shadow: 0 0 0 0 rgba(229, 15, 16, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(229, 15, 16, 0); }
            100% { box-shadow: 0 0 0 0 rgba(229, 15, 16, 0); }
        }

        .contact-phone-badge {
            font-weight: 700;
            color: #e50f10 !important;
            background: rgba(229, 15, 16, 0.1);
            padding: 6px 16px;
            border-radius: 20px;
            animation: pulse-red 2s infinite;
            display: inline-block;
            transition: all 0.3s;
        }

        .contact-phone-badge:hover {
            background: #e50f10;
            color: #fff !important;
            animation: none;
        }

        .social-icons li a { transition: all 0.3s ease; }
        .social-icons li a:hover, .menu-footer-link p a:hover {
            color: #e50f10 !important;
            transform: translateY(-3px);
            display: inline-block;
        }

        /* =========================================================
           SHORT & ATTRACTIVE CONTACT UI
        ========================================================= */
        
        .contact-cards-wrap {
            padding: 80px 0 40px;
        }

        .contact-card {
            background: #fff;
            padding: 45px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            border-bottom: 4px solid transparent;
        }

        .contact-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(229, 15, 16, 0.12);
            border-bottom-color: #e50f10;
        }

        .cc-icon {
            width: 80px; 
            height: 80px;
            background: rgba(229, 15, 16, 0.08);
            color: #e50f10; 
            font-size: 32px;
            border-radius: 50%; 
            display: flex;
            align-items: center; 
            justify-content: center;
            margin: 0 auto 25px; 
            transition: all 0.4s ease;
        }

        .contact-card:hover .cc-icon {
            background: #e50f10; 
            color: #fff; 
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 20px rgba(229, 15, 16, 0.3);
        }

        .contact-card h3 { 
            font-size: 24px; 
            font-weight: 800; 
            color: #151b26; 
            margin-bottom: 12px; 
        }

        .contact-card p { 
            color: #666; 
            font-size: 15px; 
            line-height: 1.6;
            margin-bottom: 20px; 
        }

        .contact-card a, .contact-card span.fw-bold { 
            color: #151b26; 
            font-size: 18px; 
            font-weight: 800; 
            text-decoration: none; 
            transition: color 0.3s; 
            display: inline-block;
        }

        .contact-card a:hover { 
            color: #e50f10; 
        }

        /* Map Area */
        .map-area { 
            padding-bottom: 80px; 
        }

        .map-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .map-header h2 {
            font-size: 32px;
            font-weight: 800;
            color: #151b26;
        }
        
        .map-header span {
            color: #e50f10;
        }

        .map-box { 
            border-radius: 20px; 
            overflow: hidden; 
            box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
            border: 6px solid #fff; 
            transition: transform 0.3s ease;
        }

        .map-box:hover {
            transform: scale(1.01);
        }

        .map-box iframe { 
            width: 100%; 
            height: 450px; 
            border: none; 
            display: block; 
        }

        @media (max-width: 991px) {
            .contact-card { margin-bottom: 30px; }
            .map-box iframe { height: 350px; }
        }
    

      /* login and register page */

    /* =========================================================
       HEADER
    ========================================================= */

    .contact-phone-badge {
        font-weight: 700;
        color: #e50f10 !important;
        background: rgba(229, 15, 16, 0.1);
        padding: 6px 16px;
        border-radius: 20px;
        display: inline-block;
        transition: all 0.3s;
    }

    .contact-phone-badge:hover {
        background: #e50f10;
        color: #fff !important;
    }

    .social-icons li a {
        transition: all 0.3s ease;
    }

    .social-icons li a:hover {
        color: #e50f10 !important;
        transform: translateY(-3px);
        display: inline-block;
    }


    /* =========================================================
       AUTH PAGE
    ========================================================= */
.auth-wrapper {
    position: relative;
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}


    /* =========================================================
       AUTH CARD
    ========================================================= */

    .auth-card {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        border: 1px solid #f0f0f0;
        max-width: 550px;
        margin: 0 auto;
    }


    /* =========================================================
       AUTH HEADER
    ========================================================= */

    .auth-header {
        background: #151b26;
        padding: 35px 30px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .auth-wrapper::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;

    background-image: url('https://media.istockphoto.com/id/614415432/photo/this-bike-will-be-perfect.jpg?s=612x612&w=0&k=20&c=ocm2We_PX3gWAz5UtdHlC2Ns5L43_A-OAK2a1jtnBV0=');
    background-size: cover;
    background-position: center;

    filter: blur(4px);
    transform: scale(1.02);

    z-index: 0;
}


.auth-wrapper > .container {
    position: relative;
    z-index: 1;
}
    .auth-header::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: -30px;
        width: 100px;
        height: 100px;
        background: rgba(229, 15, 16, 0.05);
        border-radius: 50%;
    }

    .auth-header h3 {
        color: #fff;
        margin: 0;
        font-size: 28px;
        font-weight: 800;
        position: relative;
        z-index: 2;
    }

    .auth-header span {
        color: #e50f10;
    }


    /* =========================================================
       AUTH BODY
    ========================================================= */

    .auth-body {
        padding: 40px;
    }


    /* =========================================================
       LOGIN / REGISTER TABS
    ========================================================= */

    .auth-nav-pills {
        background: #f8f9fa;
        border-radius: 30px;
        padding: 5px;
        margin-bottom: 30px;
        display: flex;
    }

    .auth-nav-pills .nav-item {
        flex: 1;
        text-align: center;
    }

    .auth-nav-pills .nav-link {
        color: #666;
        font-weight: 700;
        border-radius: 25px;
        padding: 12px 20px;
        transition: all 0.3s ease;
        width: 100%;
    }

    .auth-nav-pills .nav-link.active {
        background-color: #e50f10;
        color: #fff;
        box-shadow: 0 4px 15px rgba(229, 15, 16, 0.3);
    }


    /* =========================================================
       FORM
    ========================================================= */

    .form-group {
        margin-bottom: 20px;
        text-align: left;
    }

    .form-group label {
        font-size: 14px;
        font-weight: 700;
        color: #444;
        margin-bottom: 8px;
        display: block;
    }

    .custom-input {
        width: 100%;
        padding: 14px 20px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        font-size: 15px;
        color: #333;
        transition: all 0.3s;
    }

    .custom-input:focus {
        background: #fff;
        border-color: #e50f10;
        box-shadow: 0 0 0 4px rgba(229, 15, 16, 0.1);
        outline: none;
    }

    .input-group-text {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-right: none;
        color: #888;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }

    .input-group .custom-input {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-left: none;
    }

    .input-group:focus-within .input-group-text {
        background: #fff;
        border-color: #e50f10;
        color: #e50f10;
    }

    .input-group:focus-within .custom-input {
        box-shadow: none;
    }


    /* =========================================================
       AUTH OPTIONS
    ========================================================= */

    .auth-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        font-size: 14px;
    }

    .custom-checkbox label {
        color: #666;
        font-weight: 600;
        cursor: pointer;
    }

    .forgot-link {
        color: #e50f10;
        font-weight: 700;
        text-decoration: none;
        transition: color 0.3s;
    }

    .forgot-link:hover {
        color: #151b26;
        text-decoration: underline;
    }


    /* =========================================================
       OTP INFO
    ========================================================= */

    .otp-info {
        font-size: 12px;
        color: #777;
        margin-top: 7px;
    }


    /* =========================================================
       SUBMIT BUTTON
    ========================================================= */

    .auth-submit-btn {
        background: #e50f10;
        color: #fff;
        width: 100%;
        padding: 15px;
        border: none;
        border-radius: 12px;
        font-weight: 800;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(229, 15, 16, 0.2);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .auth-submit-btn:hover {
        background: #151b26;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(21, 27, 38, 0.2);
    }


    /* =========================================================
       MOBILE
    ========================================================= */

    @media (max-width: 576px) {

        .auth-body {
            padding: 30px 20px;
        }

        .auth-header {
            padding: 25px 20px;
        }

    }
