.top-cart-row .dropdown-cart .lnk-cart .items-cart-inner .total-price-basket .value {
    font-size: 14px;
    font-weight: 600;
    display: block;
}

/* Scrollbar ko puri tarah se gayab karne ke liye strict CSS */
#cart-items-container {
    max-height: 350px !important; /* Box ki lambaai */
    overflow-y: scroll !important; /* Scroll chalu rahega */
    -ms-overflow-style: none !important;  /* IE/Edge */
    scrollbar-width: none !important;     /* Firefox */
}

/* Chrome, Safari, Opera ke liye */
#cart-items-container::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.toastify {
    animation: slide-in 0.4s ease-out;
}

@keyframes slide-in {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/*// =====================shop by categery brand laptop=================*/

/* --- BRAND SCROLLER EXTERNAL CSS --- */
.brand-final-section {
    background: #ffffff !important;
    padding: 3px 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    border-top: 1px solid #eeeeee !important;
    display: block !important;
    clear: both !important; /* Marazzo template ke float ko reset karne ke liye */
}

.brand-final-title {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    color: #212121 !important;
    padding-left: 15px !important;
    border-left: 4px solid #2874f0 !important;
    margin-bottom: 20px !important;
    text-align: left !important;
}

.brand-final-mask {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
}

/* Side shadows like Flipkart */
.brand-final-mask::before, .brand-final-mask::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    width: 80px !important;
    height: 100% !important;
    z-index: 10 !important;
    pointer-events: none !important;
}
.brand-final-mask::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.brand-final-mask::after { right: 0; background: linear-gradient(to left, #fff, transparent); }

.brand-final-track {
    display: flex !important;
    flex-direction: row !important; /* Force Horizontal */
    width: max-content !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 10px 0 !important;
}

.brand-final-card {
    background: #fff !important;
    width: 150px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important;
}

.brand-final-card img {
    max-width: 100px !important;
    max-height: 40px !important;
    filter: grayscale(100%);
    opacity: 0.6;
}

.brand-final-card:hover { border-color: #2874f0 !important; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.brand-final-card:hover img { filter: grayscale(0%); opacity: 1; }

/*// =====================shop by categery brand laptop=================*/

    /* CSS: Responsive Layout */
    .mz-search-container {
        width: 100%;
        max-width: 800px;
        margin: 10px auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .mz-search-outer {
        display: flex;
        align-items: center;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 4px; /* Aap 50px bhi kar sakte hain pill shape ke liye */
        height: 45px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    /* Category Dropdown Styling */
    .mz-cat-dropdown {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        background: #f8f9fa;
        border-right: 1px solid #eee;
    }

    .mz-cat-btn {
        padding: 0 15px;
        font-size: 13px;
        font-weight: 600;
        color: #555;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
        height: 100%;
        white-space: nowrap;
    }

    .mz-dropdown-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        background: #fff;
        border: 1px solid #ddd;
        list-style: none;
        padding: 5px 0;
        min-width: 160px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .mz-dropdown-list.active { display: block; }

    .mz-dropdown-list li a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #333;
        font-size: 13px;
    }

    .mz-dropdown-list li a:hover { background: #2874f0; color: #fff; }

    /* Input Box */
    .mz-input-box {
        flex: 1;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .mz-search-field {
        width: 100%;
        height: 100%;
        border: none !important;
        outline: none !important;
        padding: 0 15px;
        font-size: 14px;
        color: #333;
    }

    /* Mic Button */
    .mz-mic-btn {
        background: transparent;
        border: none;
        cursor: pointer;
        font-size: 18px;
        color: #666;
        padding: 0 12px;
        transition: 0.3s;
    }

    .mz-mic-btn.listening {
        color: #d93025;
        animation: mz-pulse 1.2s infinite;
    }

    @keyframes mz-pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }

    /* Submit Button */
    .mz-submit-btn {
        background: #2874f0;
        color: white;
        border: none;
        width: 55px;
        height: 100%;
        cursor: pointer;
        font-size: 16px;
    }

    /* Mobile Fixes */
    @media (max-width: 600px) {
        .mz-search-outer { height: 40px; }
        .mz-cat-btn { font-size: 11px; padding: 0 8px; }
        .mz-search-field { font-size: 13px; padding: 0 8px; }
        .mz-submit-btn { width: 45px; }
    }


    /*==============popup signin=*/

    .fk-group { position: relative; width: 100%; }
    .fk-in { width: 100%; border: none; border-bottom: 1px solid #e0e0e0; padding: 8px 0; font-size: 14px; outline: none; background: none; }
    .fk-group label { position: absolute; top: 8px; left: 0; color: #878787; pointer-events: none; transition: 0.2s ease all; font-size: 14px; }
    .fk-in:focus ~ label, .fk-in:valid ~ label { top: -12px; font-size: 11px; color: #2874f0; font-weight: 500; }
    .fk-in:focus { border-bottom: 2px solid #2874f0; }
    .btn-org { background: #fb641b; color: #fff; width: 100%; border: none; padding: 10px; font-weight: 500; border-radius: 2px; cursor: pointer; }
    .btn-wht { background: #fff; color: #2874f0; width: 100%; border: none; padding: 10px; font-weight: 500; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); cursor: pointer; }
    .fk-link { color: #2874f0; font-weight: 500; text-decoration: none; font-size: 13px; }
    /* Modal scroll block */
    .modal-open { overflow: hidden !important; }
    @media (max-width: 767px) { .col-md-5 { display: none; } .modal-dialog { max-width: 90% !important; } }


     /* CSS Base & UI Fixes */
    .em-modal-overlay { background: rgba(0,0,0,0.7) !important; z-index: 99999 !important; }
    .em-modal-content { border-radius: 8px; overflow: hidden; border: none; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
    .em-sidebar { background: #2874f0; padding: 40px; color: #fff; position: relative; min-height: 540px; }
    .em-form-side { background: #fff; padding: 40px 30px; position: relative; }
    
    .em-group { position: relative; border-bottom: 1px solid #e0e0e0; margin-bottom: 25px; }
    .em-input { width: 100%; border: none; outline: none; padding: 10px 0; font-size: 16px; background: transparent; }
    .em-label { position: absolute; top: 10px; left: 0; color: #878787; transition: 0.2s; pointer-events: none; }
    .em-input:focus ~ .em-label, .em-input:not(:placeholder-shown) ~ .em-label { top: -15px; font-size: 12px; color: #2874f0; }
    
    .em-btn-org { background: #fb641b; color: #fff; border: none; width: 100%; padding: 14px; font-weight: 600; cursor: pointer; text-transform: uppercase; border-radius: 2px; transition: 0.3s; }
    .em-btn-org:hover { background: #e65100; }
    .em-btn-wht { background: #fff; color: #2874f0; border: 1px solid #e0e0e0; width: 100%; padding: 12px; margin-top: 15px; cursor: pointer; font-weight: 500; }
    .em-link { color: #2874f0; font-weight: 500; cursor: pointer; font-size: 14px; text-decoration: none; }
    .em-eye { position: absolute; right: 5px; top: 12px; cursor: pointer; color: #878787; z-index: 100; }
    .em-close { position: absolute; right: 15px; top: 10px; font-size: 30px; border: none; background: none; cursor: pointer; z-index: 101; color: #333; }
    
    .em-alert { padding: 12px; border-radius: 3px; margin-bottom: 20px; display: none; text-align: center; font-size: 14px; font-weight: 500; }
    .em-alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
    .em-alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

        /* --- Auth Modal Styling (Keep as is) --- */
    .em-modal-overlay { background: rgba(0,0,0,0.7) !important; z-index: 99999 !important; }
    .em-modal-content { border-radius: 4px; overflow: hidden; border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
    .em-sidebar { background: #2874f0; padding: 40px; color: #fff; position: relative; min-height: 500px; }
    .em-form-side { background: #fff; padding: 40px 30px; position: relative; }
    .em-group { position: relative; border-bottom: 1px solid #e0e0e0; margin-bottom: 25px; }
    .em-input { width: 100%; border: none; outline: none; padding: 10px 0; font-size: 16px; background: transparent; }
    .em-label { position: absolute; top: 10px; left: 0; color: #878787; transition: 0.2s; pointer-events: none; }
    .em-input:focus ~ .em-label, .em-input:valid ~ .em-label { top: -15px; font-size: 12px; color: #2874f0; }
    .em-btn-org { background: #fb641b; color: #fff; border: none; width: 100%; padding: 14px; font-weight: 600; cursor: pointer; text-transform: uppercase; width: 100%; }
    .em-btn-wht { background: #fff; color: #2874f0; border: 1px solid #e0e0e0; width: 100%; padding: 12px; margin-top: 15px; cursor: pointer; font-weight: 500; }
    .em-alert { padding: 12px; border-radius: 3px; margin-bottom: 20px; display: none; text-align: center; font-size: 14px; font-weight: 500; }
    .em-alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
    .em-alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

    /* --- DROPDOWN FIXED CSS (Icons Back & Alignment Fix) --- */
    .em-dropdown {
        position: relative;
        display: inline-block;
        list-style: none;
        margin-left: 15px;
    }

    .em-dropbtn {
        color: #ffffff !important;
        padding: 10px 15px;
        text-decoration: none !important;
        display: flex;
        align-items: center;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
    }

    /* Bridge for smooth hover */
    .em-dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 15px;
    }

    .em-dropdown-content {
        display: none; /* Visibility fix */
        position: absolute;
        background-color: #ffffff !important;
        min-width: 220px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        z-index: 999999;
        top: 100%;
        right: 0; /* Align to right so it doesn't cut off */
        border-radius: 4px;
        border: 1px solid #dbdbdb;
        margin-top: 10px;
        overflow: hidden;
    }

    .em-dropdown:hover .em-dropdown-content {
        display: block;
        animation: emFadeIn 0.2s ease;
    }

    @keyframes emFadeIn {
        from { opacity: 0; transform: translateY(5px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Welcome User Blue Bar */
    .em-user-hi {
        padding: 15px;
        font-weight: 700;
        background: #2874f0; /* Back to original blue */
        color: #ffffff;
        font-size: 14px;
    }

    /* Dropdown Links & Icons */
    .em-dropdown-content a {
        color: #212121 !important; /* Dark text for visibility */
        padding: 12px 18px;
        text-decoration: none !important;
        display: flex;
        align-items: center;
        font-size: 14px;
        font-weight: 500;
        border-bottom: 1px solid #f0f0f0;
    }

    .em-dropdown-content a i {
        margin-right: 12px;
        color: #2874f0; /* Blue Icons are back */
        font-size: 16px;
        width: 20px;
        text-align: center;
    }

    .em-dropdown-content a:hover {
        background-color: #f1f3f6;
    }

    .em-dropdown-content a.logout-link {
        color: #fb641b !important; /* Orange for logout */
        border-bottom: none;
    }

    /* --- AUTH SYSTEM EXTERNAL STYLES --- */

/* Modal Overlays & Content */
.em-modal-overlay .modal-dialog {
    max-width: 750px !important;
    margin: 50px auto !important;
}

.em-modal-content {
    border-radius: 2px !important;
    border: none !important;
    overflow: hidden !important;
}

.em-row-flex {
    display: flex;
    margin: 0;
}

/* Left Sidebar (Blue Section) */
.em-sidebar {
    background: #2874f0;
    padding: 40px 33px;
    color: #ffffff;
    position: relative;
    min-height: 550px; /* Sabhi forms ke liye fix height */
}

.em-sidebar h2 {
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    font-size: 28px;
}

.em-sidebar p {
    font-size: 18px;
    margin-top: 20px;
    color: #dbdbdb;
    line-height: 1.4;
}

.em-sidebar img {
    width: 80%;
    position: absolute;
    bottom: 40px;
    left: 10%;
}

/* Right Side (Form Section) */
.em-form-side {
    background: #ffffff;
    padding: 45px 35px;
    position: relative;
}

.em-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    border: none;
    background: none;
    outline: none;
    opacity: 0.5;
    cursor: pointer;
    z-index: 10;
}

/* Input Group & Floating Labels */
.em-group {
    position: relative;
    margin-bottom: 30px;
}

.em-input {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    outline: none;
    font-size: 16px;
    background: transparent;
}

.em-label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #878787;
    pointer-events: none;
    transition: 0.2s ease all;
}

/* Input Focus & Label Animation */
.em-input:focus ~ .em-label, 
.em-input:not(:placeholder-shown) ~ .em-label {
    top: -15px;
    font-size: 12px;
    color: #2874f0;
}

.em-input:focus {
    border-bottom: 2px solid #2874f0;
}

/* Password Eye Icon */
.em-eye {
    position: absolute;
    right: 5px;
    top: 12px;
    color: #878787;
    cursor: pointer;
}

/* Buttons */
.em-btn-org {
    background: #fb641b;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 2px;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    text-transform: uppercase;
}

.em-btn-wht {
    background: #ffffff;
    color: #2874f0;
    border: none;
    padding: 14px;
    font-weight: 600;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 15px;
    cursor: pointer;
    border-radius: 2px;
}

/* Links */
.em-link {
    color: #2874f0;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
}

.em-link:hover {
    text-decoration: underline;
}

.em-text-center {
    text-align: center;
}

.em-mt-20 { margin-top: 20px; }
.em-mt-80 { margin-top: 80px; }
.em-mt-15 { margin-top: 15px; }

.em-alert {
    min-height: 20px;
    margin-bottom: 15px;
}

/*================laptop navbar css============*/

/* Unique Laptop Banner CSS - Professional Look */
.laptop-banner-card {
    background: linear-gradient(135deg, #2874f0 0%, #00d2ff 100%); /* Flipkart Blue to Cyan Gradient */
    padding: 40px 25px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 12px 25px rgba(40, 116, 240, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Glassy Circle Decoration */
.banner-circle {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.laptop-banner-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.banner-content-wrapper {
    position: relative;
    z-index: 2;
}

.laptop-icon-container i {
    font-size: 65px;
    color: #ffffff;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
    display: block;
}

.banner-main-title {
    color: #ffffff !important;
    font-weight: 900;
    font-size: 24px;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.banner-promo-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 500;
}

.banner-action-btn {
    background: #fb641b; /* Flipkart Orange */
    color: #ffffff !important;
    padding: 12px 35px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(251, 100, 27, 0.4);
    transition: 0.3s;
}

.banner-action-btn:hover {
    background: #e65100;
    box-shadow: 0 6px 20px rgba(251, 100, 27, 0.6);
    transform: scale(1.1);
}

/*================laptop navbar css============*/


/*===============laptop repair section css ================*/

  :root {
            --xjko03-m-blue: #0081d5;
            --xjko03-m-yellow: #ffcc00;
            --xjko03-text-main: #253d4e;
            --xjko03-bg-light: #f4f9ff;
            --xjko03-bg-card: #f8fafc;
            --xjko03-icon-green: #3bb77e;
            --xjko03-text-p: #7e7e7e;
            --xjko03-border: #e2e8f0;
        }

        /* --- Scroller Styles --- */
        .xjko03-trust-scroller {
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
            background: #fff;
            position: relative;
            white-space: nowrap;
        }

        .xjko03-trust-scroller::before, .xjko03-trust-scroller::after {
            content: "";
            position: absolute;
            top: 0; width: 80px; height: 100%;
            z-index: 2;
        }
        .xjko03-trust-scroller::before { left: 0; background: linear-gradient(to right, white, transparent); }
        .xjko03-trust-scroller::after { right: 0; background: linear-gradient(to left, white, transparent); }

        .xjko03-scroller-inner {
            display: inline-flex;
            animation: xjko03-scroll-anim 25s linear infinite;
        }

        .xjko03-trust-scroller:hover .xjko03-scroller-inner {
            animation-play-state: paused;
        }

        .xjko03-t-card {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--xjko03-bg-light);
            margin: 0 10px;
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid #e1e9f1;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .xjko03-t-card:hover {
            background: #fff;
            border-color: var(--xjko03-m-blue);
            box-shadow: 0 5px 15px rgba(0, 129, 213, 0.1);
            transform: translateY(-2px);
        }

        .xjko03-t-card i {
            font-size: 18px;
            color: var(--xjko03-m-blue);
            transition: 0.3s;
        }

        .xjko03-t-card:hover i {
            color: var(--xjko03-m-yellow);
        }

        .xjko03-t-info {
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .xjko03-t-info h6 {
            margin: 0;
            font-size: 12px;
            color: var(--xjko03-text-main);
            font-weight: 800;
            letter-spacing: -0.2px;
        }

        .xjko03-t-info p {
            margin: 0;
            font-size: 10px;
            color: var(--xjko03-text-p);
            font-weight: 500;
        }

        @keyframes xjko03-scroll-anim {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- Grid Container Styles --- */
        .xjko03-service-container {
            max-width: 1400px;
            margin: 20px auto;
            display: grid;
            grid-template-columns: repeat(8, 1fr); 
            gap: 10px;
            font-family: 'Segoe UI', system-ui, sans-serif;
            padding: 0 10px;
        }

        .xjko03-s-box {
            background: var(--xjko03-bg-card);
            padding: 9px 5px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border: 1px solid var(--xjko03-border);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .xjko03-s-box:hover {
            background: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-color: var(--xjko03-icon-green);
            transform: translateY(-3px);
        }

        .xjko03-s-box i {
            font-size: 15px;
            color: var(--xjko03-icon-green);
            margin-bottom: 8px;
        }

        .xjko03-s-box h6 {
            margin: 0;
            font-size: 10px;
            color: var(--xjko03-text-main);
            font-weight: 700;
            line-height: 1.2;
        }

        .xjko03-s-box p {
            margin: 3px 0 0;
            font-size: 8px;
            color: var(--xjko03-text-p);
        }

        /* --- Responsive Design --- */
        @media (max-width: 1200px) {
            .xjko03-service-container { grid-template-columns: repeat(4, 1fr); }
        }

        @media (max-width: 768px) {
            .xjko03-t-card { padding: 8px 15px; }
            .xjko03-t-info h6 { font-size: 11px; }
        }

        @media (max-width: 600px) {
            .xjko03-service-container { grid-template-columns: repeat(2, 1fr); }
        }
.laptopRepairService{
    margin-left: 1%;
}
/*===============laptop repair section css ================*/

.content-container-text-repair{
    width: 100%;
    margin-left: 0%;
}

/* Tooltip ka main container (Parent) */
.xjko03-s-box {
    position: relative; /* Tooltip ko box ke andar set karne ke liye */
}

/* Tooltip ka Design aur Content */
.xjko03-s-box::after {
    content: attr(data-tooltip); /* HTML attribute se text lega */
    position: absolute;
    bottom: 110%; /* Box ke thoda upar dikhega */
    left: 50%;
    transform: translateX(-50%) scale(0); /* Shuruat me chhupa rahega */
    background: #253d4e; /* Dark theme color */
    color: #fff;
    padding: 6px 10px;
    font-size: 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

/* Tooltip ka Chhota Arrow (Triangle) */
.xjko03-s-box::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    border: 6px solid transparent;
    border-top-color: #253d4e; /* Arrow ka color */
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Hover karne par Tooltip Show hoga */
.xjko03-s-box:hover::after,
.xjko03-s-box:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1); /* Scale animation ke saath dikhega */
}

/*// ====================FAQ=============*/

   .oskpo01-main-container {
        width: 100%;
        display: flex;
        gap: 20px;
        margin: 20px 0;
        font-family: 'Segoe UI', sans-serif;
        flex-wrap: wrap;
    }

    /* FAQ Left (70%) */
    .oskpo01-faq-left { flex: 1; min-width: 320px; }

    /* Banner Right (30%) */
    .oskpo01-banner-right { width: 300px; }

    .oskpo01-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
    .oskpo01-title { font-size: 14px; font-weight: 800; color: #333; text-transform: uppercase; letter-spacing: 0.5px; }


    .oskpo01-tabs { display: flex; gap: 5px; }
    .oskpo01-tab-btn {
        padding: 5px 12px;
        font-size: 10px;
        font-weight: 700;
        border: 1px solid #e2e8f0;
        background: #fff;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
    }
    .oskpo01-tab-btn.oskpo01-active { background: #007bff; color: #fff; border-color: #007bff; }

    /* FAQ Row */
    .oskpo01-row { display: flex; border: 1px solid #e2e8f0; background: #fff; margin-bottom: 8px; border-radius: 6px; overflow: hidden; transition: 0.3s; }
    .oskpo01-row:hover { border-color: #007bff; }

    .oskpo01-question { flex: 1; padding: 10px 9px; font-size: 11px; color: #444; cursor: pointer; font-weight: 600; display: flex; align-items: center; }
    .oskpo01-actions { display: flex; background: #f8fafc; border-left: 1px solid #e2e8f0; }
    .oskpo01-icon-btn { width: 40px; display: flex; align-items: center; justify-content: center; color: #64748b; border-left: 1px solid #e2e8f0; cursor: pointer; transition: 0.2s; }
    .oskpo01-icon-btn:first-child { border-left: none; }
    .oskpo01-icon-btn:hover { color: #007bff; background: #fff; }

    .oskpo01-answer { display: none; padding: 15px; font-size: 13px; color: #666; background: #fff; border: 1px solid #e2e8f0; border-top: none; border-radius: 0 0 6px 6px; margin-top: -8px; margin-bottom: 10px; line-height: 1.6; animation: oskpoSlide 0.3s ease-out; }

    @keyframes oskpoSlide { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

    /* --- PREMIUM BANNER DESIGN --- */
    .oskpo01-promo-banner {
        background: linear-gradient(135deg, #0062ff 0%, #003db3 100%);
        border-radius: 15px;
        padding: 24px;
        color: #fff;
        text-align: center;
        position: sticky;
        top: 20px;
        box-shadow: 0 15px 35px rgba(0,98,255,0.2);
        overflow: hidden;
    }

    .oskpo01-promo-banner::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 150px;
        height: 150px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
    }

    .oskpo01-banner-icon { font-size: 40px; margin-bottom: 15px; color: #ffca28; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1)); }
    .oskpo01-banner-h { font-size: 18px; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
    .oskpo01-banner-p { font-size: 12px; opacity: 0.9; margin-bottom: 20px; }

    .oskpo01-banner-btn {
        display: block;
        background: #fff;
        color: #0062ff;
        padding: 12px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 800;
        font-size: 13px;
        transition: 0.3s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .oskpo01-banner-btn:hover { background: #ffca28; color: #333; transform: translateY(-2px); }

    .oskpo01-load-btn {
    width: 100%;
    padding: 9px;
    background: #fff;
    border: 1px dashed #007bff;
    color: #007bff;
    font-size: 9px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
}

    @media (max-width: 768px) {
        .oskpo01-banner-right { width: 100%; order: -1; }
        .oskpo01-promo-banner { position: static; margin-bottom: 20px; }
    }

/*// ====================FAQ=============*/
    

/*// ============= Repair Location Wrapper =============*/

    .repair-location-wrapper {
            max-width: 1100px;
            margin: 3px auto;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            background: #ffffff; /* Pure White Background */
            overflow: hidden;
        }

        /* Blue Header - Excat as Image */
        .repair-header {
            background: #1a73e8;
            color: #ffffff;
            padding: 14px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: background 0.3s;
        }

        .repair-header:hover {
            background: #1557b0;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .repair-header h2 {
            margin: 0;
            font-size: 15px;
            font-weight: 500;
        }

        /* Content Area - Pure White */
        .repair-content {
            display: none; /* Default Hidden */
            background: #ffffff;
            padding: 35px;
            border-top: 1px solid #eee;
            animation: slideIn 0.4s ease;
        }

        /* 4-Column Grid */
        .repair-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .state-box h4 {
            color: #202124;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 15px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 2px solid #f1f3f4;
            padding-bottom: 8px;
        }
.state-box  a{
    color: #000;
}
        .city-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .city-links li {
            margin-bottom: 10px;
        }

        .city-links a {
            text-decoration: none;
            color: #5f6368;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: 0.2s;
        }

        .city-links a:hover {
            color: #1a73e8;
            padding-left: 5px;
        }

        .city-links a i {
            font-size: 11px;
            color: #dadce0;
        }

        /* Smooth Arrow Rotation */
        #chevron {
            transition: transform 0.3s ease;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Tablet & Mobile Responsive */
        @media (max-width: 992px) {
            .repair-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 500px) {
            .repair-grid { grid-template-columns: 1fr; gap: 20px; }
            .repair-content { padding: 20px; }
        }

/*// ============= Repair Location Wrapper =============*/

/*=========footer css==============*/

/* --- Footer Styling --- */
.oppoio91-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0 0 0;
    font-family: 'Roboto', sans-serif;
}

.oppoio91-main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    justify-content: space-between;
}

.oppoio91-col-item {
    flex: 1;
    min-width: 250px; /* Tablet/Desktop par alignment ke liye */
    margin-bottom: 30px;
}

.oppoio91-col-item h4 {
    color: #2874f0; /* Flipkart jaisa blue ya aapka primary color */
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
}

.oppoio91-col-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oppoio91-col-item ul li {
    margin-bottom: 10px;
}

.oppoio91-col-item ul li a {
    color: #bbbbbb;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.oppoio91-col-item ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* --- Bottom Strip --- */
.oppoio91-bottom-strip {
    background-color: #111111;
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid #333;
}

.oppoio91-quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.oppoio91-quick-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.oppoio91-quick-links a i {
    color: #2874f0;
}

.oppoio91-copy-info {
    text-align: center;
    color: #888;
    font-size: 12px;
}

.oppoio91-copy-info a {
    color: #2874f0;
    text-decoration: none;
}

/* --- Responsive Media Queries --- */

/* Tablet View (768px tak) */
@media (max-width: 768px) {
    .oppoio91-col-item {
        flex: 0 0 50%; /* Ek row mein 2 columns */
    }
}

/* Mobile View (Redmi 9C - 360px/480px tak) */
@media (max-width: 480px) {
    .oppoio91-col-item {
        flex: 0 0 100%; /* Ek row mein 1 column */
        text-align: center;
    }
    
    .oppoio91-quick-links {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 10px;
    }
    
    .oppoio91-main-container {
        padding: 0 30px;
    }
}

/*=========footer css==============*/


/* ============= Unique WhatsApp Sidebar CSS ============= */

/* Unique Fixed WhatsApp Sidebar */
.hhopp0992-whatsapp-float {
    position: fixed;
    right: 0;             /* Right side se chipka hua */
    top: 50%;             /* Screen ke beech mein */
    transform: translateY(-50%); 
    z-index: 99999;
    display: block;
    line-height: 0;       /* Extra space hatane ke liye */
}

.hhopp0992-whatsapp-float img {
    width: 35px;          /* Size ko yahan se control karein (chota rakha hai) */
    height: auto;         /* Aspect ratio maintain rahega */
    display: block;
    border-radius: 5px 0 0 5px; /* Left side se round corner */
    
}

/* Hover effect */
.hhopp0992-whatsapp-float:hover {
    filter: brightness(1.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hhopp0992-whatsapp-float img {
        width: 30px;      /* Mobile par thoda aur chota */
    }
}

/* ============= Unique WhatsApp Sidebar CSS ============= */

.bgwhite001{
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

/*// ============= COntent Drowpdown =============*/

/* Content ko chhupane ke liye styling */
    .collapsible-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    .read-more-btn {
        background: none;
        border: none;
        color: #3354a5;
        font-weight: bold;
        cursor: pointer;
        padding: 5px 0;
        text-decoration: underline;
    }

/*// ============= COntent Drowpdown =============*/
    


/*============== Popup Tostify Popup ============== */
/*============== Popup Tostify Popup ============== */

/* Unique Container - Isse baaki CSS kharab nahi hogi */
.uopoppo092-container {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    z-index: 247 !important;
    position: fixed !important;
    right: 20px !important; 
    bottom: 20px !important;
    left: auto !important;
    max-width: 90vw !important;
    pointer-events: auto !important; /* Clickable rahega */
}

/* Modern Card Design */
.uopoppo092-modern-card {
    display: flex !important;
    width: 400px !important; 
    max-width: 100% !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    border: 1px solid #eee !important;
    font-family: 'Inter', sans-serif !important;
    position: relative !important;
    animation: uopoppo-slide-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes uopoppo-slide-in {
    from { transform: translateX(110%); }
    to { transform: translateX(0); }
}

/* Illustration Section */
.uopoppo092-img-wrapper {
    width: 140px !important; 
    background-color: #f4f9ff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
    flex-shrink: 0 !important;
}

.uopoppo092-img-wrapper img {
    width: 100% !important;
    height: auto !important;
}

/* Content Area */
.uopoppo092-details {
    flex: 1 !important;
    padding: 28px 20px !important;
    text-align: left !important;
    min-width: 0 !important;
}

.uopoppo092-h {
    margin: 0 0 5px 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a202c !important;
}

.uopoppo092-p {
    margin: 0 0 15px 0 !important;
    font-size: 12px !important;
    color: #4a5568 !important;
    line-height: 1.4 !important;
}

.uopoppo092-pill-btn {
    background: #e91e63 !important;
    color: white !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 10px !important;
    cursor: pointer;
}

.uopoppo092-close {
    position: absolute !important;
    top: 5px !important;
    right: 10px !important;
    cursor: pointer !important;
    font-size: 20px !important;
    color: #cbd5e0 !important;
}

/* Mobile Responsive */
@media (max-width: 500px) {
    .uopoppo092-container {
        right: 10px !important;
        bottom: 10px !important;
    }
    .uopoppo092-modern-card {
        width: 320px !important;
        max-width: 88vw !important;
    }
    .uopoppo092-img-wrapper { width: 100px !important; }
}

/*============== Popup Tostify Popup ============== */
/*============== Popup Tostify Popup ============== */


/*============== Screen Repair Tabs 4 Css ============== */
/*============== Screen Repair Tabs 4 Css ============== */

   .ulluiikpore8-wrapper {
        max-width: 850px;
        margin: 20px auto;
        display: flex;
        gap: 12px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* 75% Slider Style */
    .ulluiikpore8-slider-part {
        flex: 0 0 75%;
        padding: 15px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }

    /* 25% Support Banner Style */
    .ulluiikpore8-banner-part {
        flex: 1;
        background: #1e293b;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-align: center;
        padding: 15px;
        position: relative;
        overflow: hidden;
    }

    .ulluiikpore8-support-head {
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1px;
        color: #94a3b8;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        margin-bottom: 10px;
    }

    .ulluiikpore8-live-dot {
        width: 6px;
        height: 6px;
        background: #22c55e;
        border-radius: 50%;
        box-shadow: 0 0 8px #22c55e;
        animation: ulluiikpore8-blink 1.5s infinite;
    }

    @keyframes ulluiikpore8-blink {
        0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; }
    }

    .ulluiikpore8-icon-box {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .ulluiikpore8-banner-inner h4 {
        margin: 0;
        font-size: 14px;
        color: #f8fafc;
    }

    .ulluiikpore8-banner-inner p {
        font-size: 10px;
        color: #fff;
        margin: 4px 0 12px;
    }

    .ulluiikpore8-support-tag {
        background: #0369a1;
        font-size: 9px;
        padding: 4px 8px;
        border-radius: 4px;
        font-weight: 700;
        display: inline-block;
    }

    /* Slider Components */
    .ulluiikpore8-mini-nav {
        display: flex;
        gap: 4px;
        margin-bottom: 12px;
        background: #f1f5f9;
        padding: 4px;
        border-radius: 8px;
    }

    .ulluiikpore8-m-btn {
        flex: 1;
        padding: 7px 2px;
        font-size: 11px;
        font-weight: 700;
        border: none;
        background: none;
        cursor: pointer;
        border-radius: 6px;
        color: #64748b;
        transition: 0.2s;
    }

    .ulluiikpore8-m-btn.ulluiikpore8-active {
        background: #fff;
        color: #007bff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    .ulluiikpore8-content-flex {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .ulluiikpore8-img-wrap {
        flex: 0 0 110px;
        height: 90px;
        background: #f8fafc;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #ulluiikpore8-img {
        max-width: 85%;
        max-height: 75px;
        object-fit: contain;
    }

    .ulluiikpore8-info-wrap h3 {
        margin: 0 0 4px 0;
        font-size: 16px;
        color: #0f172a;
    }

    .ulluiikpore8-info-wrap p {
        margin: 0 0 10px 0;
        font-size: 12px;
        color: #475569;
        line-height: 1.4;
    }

    .ulluiikpore8-wa {
        display: inline-block;
        padding: 7px 14px;
        background: #007bff;
        color: #fff;
        text-decoration: none;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 700;
    }

    @media (max-width: 650px) {
        .ulluiikpore8-wrapper { flex-direction: column; }
        .ulluiikpore8-slider-part, .ulluiikpore8-banner-part { flex: 0 0 100%; }
    }

/*============== Screen Repair Tabs 4 Css ============== */
/*============== Screen Repair Tabs 4 Css ============== */

.ulluiikpore8-banner-inner a{
    color: #fff;
}
.headingContenth1{
    font-size: 25px;
}

/*====== Laptop Repair Area Service In Delhi ======*/
/*====== Laptop Repair Area Service In Delhi ======*/

.locationdelhilap948djd_compact_container {
        background: #fff;
        border: 1px solid #e0e0e0;
        max-width: 1200px;
        margin: 15px auto;
        font-family: Roboto, Arial, sans-serif; /* Flipkart Style Font */
        border-radius: 2px;
    }

    .locationdelhilap948djd_heading {
        background: #2874f0; /* Flipkart Blue */
        color: #fff;
        padding: 8px 15px;
        font-size: 11px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
        text-transform: capitalize;
    }

    .locationdelhilap948djd_icon { font-size: 14px; }

    .locationdelhilap948djd_body {
        padding: 15px 20px;
    }

    .locationdelhilap948djd_para {
        font-size: 9px;
        line-height: 2.2;
        color: #555;
        text-align: justify;
        margin: 0;
    }

    .locationdelhilap948djd_bold {
        color: #212121;
        font-weight: 600;
        margin-right: 4px;
    }

    .locationdelhilap948djd_para a {
        color: #555;
        text-decoration: none;
        transition: 0.2s;
    }

    .locationdelhilap948djd_para a:hover {
        color: #2874f0;
        text-decoration: underline;
    }

    .locationdelhilap948djd_dot {
        color: #2874f0;
        margin: 0 3px;
        font-size: 9px;
        opacity: 0.6;
    }

    .locationdelhilap948djd_red {
        color: #ff6161 !important;
        font-weight: 600;
    }

    .locationdelhilap948djd_footer {
        margin-top: 12px;
        padding-top: 8px;
        border-top: 1px solid #f0f0f0;
    }

    .locationdelhilap948djd_wa_link {
        color: #25D366;
        text-decoration: none;
        font-size: 11px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .locationdelhilap948djd_wa_link:hover { text-decoration: underline; }

    @media (max-width: 768px) {
        .locationdelhilap948djd_para { font-size: 10px; line-height: 2.0; }
    }

/*====== Laptop Repair Area Service In Delhi ======*/
/*====== Laptop Repair Area Service In Delhi ======*/


 /*=================== location all india ===================*/
 /*=================== location all india ===================*/

.closevv9{
        cursor:pointer; color:#999; font-size: 12px;
    }
.state-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 10px; }
.state-item { background: #fff; padding: 10px 10px; text-align: center; border: 1px solid #e0e0e0; cursor: pointer; font-weight: 600; font-size: 11px; border-radius: 8px; transition: 0.2s; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.state-item:hover, .state-item.active-state { border-color: #2874f0; background: #f0f5ff; transform: translateY(-2px); color: #2874f0; }

.sub-loc-container { margin-top: 15px; padding: 20px; border: 1px solid #2874f0; background: #fff; border-radius: 8px; animation: fadeIn 0.3s; }
.sub-loc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.loc-item { list-style: none; font-size: 11px; display: none; border:  padding: 8px; border-radius: 5px; }
.loc-item.visible { display: block; }
.loc-item a { text-decoration: none; color: #444; display: block; width: 100%; }
.loc-item a:hover { color: #2874f0; }
.loc-item i { color: #2874f0; font-size: 10px; margin-right: 5px; }

#loadMoreSub { width: 100%; padding: 10px; margin-top: 20px; background: #2874f0; color: #fff; border: none; cursor: pointer; font-weight: bold; border-radius: 5px; font-size: 10px; }

@media (max-width: 768px) { .state-row, .location-grid { grid-template-columns: repeat(2, 1fr); } }

 /*=================== location all india ===================*/
 /*=================== location all india ===================*/


/*============== repair hero sections ============== */
/*============== repair hero sections ============== */

.hero-v7-wrapper {
    max-width: 1100px;
    margin: 0px auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.h-actions a{
    color: #fff;
}
.hero-v7-card {
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    position: relative;
    min-height: 450px;
}

/* Content Styling */
.hero-v7-content {
    flex: 1.2;
    padding: 60px;
    z-index: 5;
}

.h-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f6ff;
    color: #2874f0;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.h-badge .dot {
    width: 6px; height: 6px;
    background: #2874f0;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.hero-v7-content h1 {
    font-size: 30px;
    color: #111;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero-v7-content h1 span { color: #2874f0; }

.hero-v7-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 450px;
}

/* Actions Styling */
.h-actions { display: flex; gap: 12px; margin-bottom: 25px; }

.h-btn {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.h-btn-blue { background: #2874f0; color: #fff; box-shadow: 0 10px 20px rgba(40,116,240,0.2); }
.h-btn-green { background: #25d366; color: #fff; box-shadow: 0 10px 20px rgba(37,211,102,0.2); }
.h-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.h-trust-row { display: flex; gap: 20px; }
.h-trust-row span { font-size: 12px; font-weight: 700; color: #888; display: flex; align-items: center; gap: 6px; }
.h-trust-row i { color: #2ecc71; }

/* Visual/Image Styling */
.hero-v7-visual {
    flex: 1;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.v7-splash {
    position: absolute;
    width: 130%;
    height: 90%;
    background: #2874f0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    right: -15%;
    bottom: -5%;
    z-index: 1;
    opacity: 0.1; /* Light background splash like the reference */
}

.hero-v7-visual img {
    width: 100%;
    max-width: 480px;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero-v7-card { flex-direction: column; text-align: center; }
    .hero-v7-content { padding: 40px 20px; order: 2; }
    .hero-v7-content p { margin: 0 auto 30px; }
    .h-actions { justify-content: center; flex-direction: column; }
    .h-trust-row { justify-content: center; }
    .hero-v7-visual { order: 1; width: 100%; padding-top: 30px; }
    .v7-splash { width: 80%; left: 10%; }
    .hero-v7-content h1 { font-size: 32px; }
}

.repair-v4-09wv {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #fff;
    border-radius: 10px;
    position: relative;
}

/* Compact Header */
.loc-head-09wv { text-align: center; margin-bottom: 30px; }
.loc-tag-09wv { 
    background: #eef4ff; color: #2874f0; font-size: 10px; 
    font-weight: 800; padding: 4px 12px; border-radius: 50px; 
    display: inline-block; margin-bottom: 8px;
}
.loc-head-09wv h2 { font-size: 26px; color: #111; margin: 0; font-weight: 800; }
.loc-head-09wv p { color: #666; font-size: 13px; margin: 5px 0; }

/* Grid & Compact Cards */
.grid-v4-09wv { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }

.card-v4-09wv {
    background: #fff; border: 1px solid #f0f0f0; border-radius: 14px;
    padding: 12px 15px; display: flex; align-items: center; gap: 12px;
    transition: 0.3s;
}
.card-v4-09wv:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: #2874f0; }

.dark-v4-09wv { background: #111; border: none; }
.dark-v4-09wv h3 { color: #fff !important; }

/* Smaller Icons */
.icon-v4-09wv {
    min-width: 42px; height: 42px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.ic-red { background: #fff0f3; color: #ff4d6d; }
.ic-blue { background: #eef2ff; color: #4361ee; }
.ic-dark { background: #222; color: #fff; }
.ic-orange { background: #fff9db; color: #fab005; }

/* Content Layout */
.cont-v4-09wv { flex-grow: 1; }
.cont-v4-09wv h3 { font-size: 15px; margin: 0 0 5px; color: #111; }
.tag-row-09wv { display: flex; justify-content: space-between; align-items: center; }

.mini-tag-09wv { font-size: 9px; font-weight: 700; color: #888; text-transform: uppercase; }
.dark-t { color: #666; }

.btn-v4-09wv { text-decoration: none; color: #2874f0; font-size: 11px; font-weight: 800; }
.white-t { color: #fff; }

/* Minimal Bar */
.bar-v4-09wv {
    margin-top: 25px; display: flex; justify-content: space-around;
    padding: 12px; border-top: 1px solid #f0f0f0;
}
.bar-v4-09wv span { font-size: 12px; font-weight: 600; color: #555; display: flex; align-items: center; gap: 6px; }
.bar-v4-09wv i { color: #2e7d32; font-size: 14px; }



@media (max-width: 600px) {
    .grid-v4-09wv { grid-template-columns: 1fr; }
    .bar-v4-09wv { flex-direction: column; gap: 8px; align-items: center; }
}


/*============== repair hero sections ============== */
/*============== repair hero sections ============== */


/* Container ko compact banane ke liye */
body .be093vv01-bc-area {
    padding: 8px 0; /* Padding kam kar di gayi hai */
    border-bottom: 1px solid #eee; /* Ek patli line niche */
}

/* Horizontal alignment */
body ul.be093vv01-bc-list {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
}

/* Chota aur saaf font */
body li.be093vv01-bc-item {
    font-size: 12px; /* Pehle se chota */
    color: #888;
    text-transform: capitalize;
}

/* Unicode Separator: Simple Slash ( / ) */
body li.be093vv01-bc-item + li.be093vv01-bc-item::before {
    content: "\002F"; /* Unicode for slash / */
    padding: 0 8px;
    color: #ccc;
    font-size: 11px;
    font-weight: normal;
}

/* Links style */
body li.be093vv01-bc-item a {
    color: #555; /* Neutral grey color */
    text-decoration: none;
}

body li.be093vv01-bc-item a:hover {
    color: #007bff; /* Hover par subtle blue */
}

/* Active Page Style (Current Page) */
body li.be093vv01-active {
    font-weight: 500;
    color: #222; /* Darker but not too bold */
}

.be093vv01-active{
    font-weight: bold !important;
}

/*=============================================*/

/* Centered & Smooth Full-Width Layout */
.tempscssvv900vv-wrapper.terms-conditions {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0px auto !important;
    padding: 20px !important;
    background: #ffffff !important;
    font-family: 'Segoe UI', Arial, sans-serif !important;
    color: #333 !important;
    line-height: 1.8 !important;
    box-sizing: border-box !important;
    clear: both !important;
}

.tempscssvv900vv-wrapper h2.heading-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #222 !important;
    margin-bottom: 13px !important;
    border-bottom: 2px solid #eee !important;
    padding-bottom: 12px !important;
}

.tempscssvv900vv-wrapper h3 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin: 35px 0 15px 0 !important;
}

.tempscssvv900vv-wrapper p {
    font-size: 12px !important;
    margin-bottom: 20px !important;
    color: #444 !important;
    text-align: justify !important;
}

.tempscssvv900vv-wrapper ol {
    padding-left: 20px !important;
    margin-bottom: 30px !important;
}

.tempscssvv900vv-wrapper ol li {
    font-size: 12px !important;
    margin-bottom: 15px !important;
    color: #555 !important;
    padding-left: 10px !important;
}

.tempscssvv900vv-wrapper strong {
    color: #000 !important;
    font-weight: 700 !important;
}

/* Link Style */
.tempscssvv900vv-wrapper .contact-link {
    color: #007bff !important;
    text-decoration: underline !important;
}



.innnerPageWith75{
    width: 75%;
}

/*=============tooltip links==========*/
/*=============tooltip links==========*/

/* Seedha Anchor Tag par apply hoga */
a.custom-tooltip {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #0056b3;
    font-weight: 600;
}

/* Tooltip ka design - Content wrap karne ke liye update kiya gaya */
a.custom-tooltip .tooltiptext {
    visibility: hidden;
    /* Box size adjustment */
    width: 250px; 
    background-color: #222;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 100;
    bottom: 140%; 
    left: 50%;
    transform: translateX(-50%);
    
    /* Animation & Text wrapping */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 10px;
    line-height: 1.5;
    white-space: normal; /* Isse content 20 words me wrap ho jayega */
    word-wrap: break-word;
    pointer-events: none;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
}

/* Chhota Arrow */
a.custom-tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: #222 transparent transparent transparent;
}

/* Hover effect */
a.custom-tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}






/* CLS Fix: Images aur Sliders ke liye pehle se jagah reserve karein */
.owl-carousel {
    min-height: 250px; /* Slider load hone se pehle white space rakhega */
    background: #f8f8f8;
}

.product .image img {
    aspect-ratio: 1/1; /* Image ki height/width ratio fix karega */
    width: 100%;
    height: auto;
}

/* Footer columns ka layout fix */
.oppoio91-col-item {
    min-height: 200px;
}







/*=============tooltip links==========*/
/*=============tooltip links==========*/
