   .logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 15px 0;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: logoScroll 25s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    width: 180px;
    height: 120px;
    margin-right: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes logoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}







/* =========================================================
   JB MICROSCOPE - PRODUCT SECTION
   COMPLETE CSS
========================================================= */

/* SECTION */
.jbm-products-section {
    width: 100%;
    padding: 5px 50px;
    background: #ffffff;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* CONTAINER */
.jbm-products-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.jbm-section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.jbm-section-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #1c65c4;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.jbm-section-heading h2 {
    margin: 0 0 12px;
    color: #17267d;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.jbm-section-heading p {
    margin: 0;
    color: #747b8a;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   PRODUCT GRID - DESKTOP 4 + 4
========================================================= */

.jbm-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.jbm-product-card {
    min-width: 0;
    background: #ffffff;
    border: 1px solid #dfe6ee;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(24, 47, 100, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.jbm-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(24, 47, 100, 0.14);
}


/* =========================================================
   PRODUCT IMAGE AREA
========================================================= */

.jbm-product-image {
    position: relative;
    width: 100%;
    height: 270px;

    padding: 0;
    margin: 0;

    background: #eaf6ff;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}


/* =========================================================
   PRODUCT IMAGE
   IMAGE SIZE: 776 x 698
========================================================= */

.jbm-product-image img {

     position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;

    padding: 0;
    margin: 0;

    object-fit: contain;
    object-position: center center;

    transition: transform 0.45s ease;
}
    /*
    Image ke andar jo extra upper blank space hai,
    usko reduce karne ke liye image ko upar shift kiya hai.
    */
    transform: translateY(-35px);

    transition: transform 0.4s ease;
}

.jbm-product-card:hover .jbm-product-image img {
    transform: translateY(-35px) scale(1.03);
}


/* =========================================================
   PRODUCT BADGE
========================================================= */

.jbm-product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 18px;

    background: #173ca5;
    color: #ffffff;

    border-radius: 30px;

    font-size: 13px;
    line-height: 1;
    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   WISHLIST BUTTON
========================================================= */

.jbm-wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;

    width: 52px;
    height: 52px;

    padding: 0;
    margin: 0;

    border: none;
    border-radius: 50%;

    background: #ffffff;
    color: #263545;

    font-size: 30px;
    line-height: 52px;
    text-align: center;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;
}

.jbm-wishlist:hover {
    background: #173ca5;
    color: #ffffff;
    transform: scale(1.05);
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.jbm-product-content {
    padding: 27px 26px 25px;
    background: #ffffff;
}


/* =========================================================
   CATEGORY
========================================================= */

.jbm-category {
    min-height: 20px;
    margin-bottom: 11px;

    color: #1c65c4;

    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   PRODUCT TITLE
========================================================= */

.jbm-product-content h3 {
    min-height: 54px;
    margin: 0 0 13px;

    color: #17267d;

    font-size: 19px;
    line-height: 1.42;
    font-weight: 700;
}



/* =========================================================
   DESCRIPTION
========================================================= */

.jbm-product-content p {
    min-height: 78px;
    margin: 0;

    color: #727987;

    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}


/* =========================================================
   PRODUCT FOOTER
========================================================= */

.jbm-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: 20px;
    padding-top: 18px;

    border-top: 1px solid #e3e7ed;
}


/* =========================================================
   VIEW DETAILS BUTTON
========================================================= */

.jbm-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #183da6;

    text-decoration: none;

    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;

    white-space: nowrap;

    transition: color 0.3s ease;
}

.jbm-view-btn b {
    display: inline-block;
    font-size: 23px;
    line-height: 1;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.jbm-view-btn:hover {
    color: #0d2b80;
}

.jbm-view-btn:hover b {
    transform: translateX(5px);
}


/* =========================================================
   ENQUIRY NOW BUTTON
========================================================= */

.jbm-enquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 135px;
    padding: 14px 18px;

    background: #1d3eae;
    color: #ffffff;

    border-radius: 30px;

    text-decoration: none;

    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;

    white-space: nowrap;

    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.jbm-enquiry-btn:hover {
    background: #122d88;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(29, 62, 174, 0.25);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .jbm-products-container {
        max-width: 1100px;
    }

    .jbm-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .jbm-product-image {
        height: 340px;
    }

}


/* =========================================================
   TABLET - 2 PRODUCTS
========================================================= */

@media (max-width: 900px) {

    .jbm-products-section {
        padding: 60px 20px;
    }

    .jbm-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .jbm-product-image {
        height: 350px;
    }

    .jbm-section-heading h2 {
        font-size: 34px;
    }

}


/* =========================================================
   MOBILE - 1 PRODUCT
========================================================= */

@media (max-width: 600px) {

    .jbm-products-section {
        padding: 50px 15px;
    }

    .jbm-section-heading {
        margin-bottom: 30px;
    }

    .jbm-section-heading span {
        font-size: 12px;
    }

    .jbm-section-heading h2 {
        font-size: 28px;
    }

    .jbm-section-heading p {
        font-size: 14px;
        line-height: 1.6;
    }

    .jbm-product-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .jbm-product-image {
        height: 340px;
    }

    .jbm-product-image img {
        width: 110%;
        height: 110%;
        transform: translateY(-30px);
    }

    .jbm-product-card:hover .jbm-product-image img {
        transform: translateY(-30px) scale(1.03);
    }

    .jbm-product-content {
        padding: 24px 20px 22px;
    }

    .jbm-product-content h3 {
        min-height: auto;
        font-size: 18px;
    }

    .jbm-product-content p {
        min-height: auto;
        font-size: 14px;
    }

    .jbm-product-footer {
        flex-wrap: wrap;
    }

    .jbm-enquiry-btn {
        min-width: 125px;
        padding: 13px 17px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .jbm-product-image {
        height: 300px;
    }

    .jbm-product-badge {
        top: 14px;
        left: 14px;
        padding: 8px 14px;
        font-size: 12px;
    }

    .jbm-wishlist {
        top: 12px;
        right: 12px;
        width: 46px;
        height: 46px;
        font-size: 27px;
        line-height: 46px;
    }

    .jbm-product-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .jbm-view-btn {
        justify-content: center;
    }

    .jbm-enquiry-btn {
        width: 100%;
    }

}




/* =========================
   SECTION
========================= */

.jb-why-section {
    width: 100%;
    padding: 90px 20px;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 102, 204, 0.07), transparent 30%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #f5f9fd 100%);
    position: relative;
    overflow: hidden;
}


/* Decorative background */

.jb-why-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(0, 95, 180, 0.08);
    top: -150px;
    left: -150px;
}

.jb-why-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(0, 95, 180, 0.06);
    bottom: -250px;
    right: -200px;
}


/* =========================
   CONTAINER
========================= */

.jb-why-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.85fr 1.35fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}


/* =========================
   LEFT CONTENT
========================= */

.jb-why-intro {
    position: relative;
}

.jb-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 30px;
    background: #eaf4ff;
    color: #0067b9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.jb-section-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0067b9;
}


.jb-why-intro h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    color: #10253d;
}

.jb-why-intro h2 span {
    color: #006bc7;
}


.jb-title-line {
    width: 65px;
    height: 4px;
    border-radius: 10px;
    background: #006bc7;
    margin: 22px 0;
}


.jb-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5b6b7c;
    margin: 0 0 15px;
}

.jb-intro-text.small-text {
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   BUTTON
========================= */

.jb-why-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 22px;
    background: #006bc7;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 107, 199, 0.20);
    transition: all 0.3s ease;
}

.jb-why-btn span {
    font-size: 20px;
    line-height: 0;
    transition: transform 0.3s ease;
}

.jb-why-btn:hover {
    background: #004f96;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 107, 199, 0.28);
}

.jb-why-btn:hover span {
    transform: translateX(5px);
}


/* =========================
   BENEFITS GRID
========================= */

.jb-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


/* =========================
   BENEFIT CARD
========================= */

.jb-benefit-card {
    display: flex;
    gap: 16px;
    padding: 23px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e7edf4;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(20, 52, 84, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}


.jb-benefit-card::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 0;
    left: 0;
    top: 0;
    background: #006bc7;
    transition: height 0.35s ease;
}


.jb-benefit-card:hover {
    transform: translateY(-6px);
    border-color: #cfe4f8;
    box-shadow: 0 15px 35px rgba(20, 52, 84, 0.12);
}


.jb-benefit-card:hover::before {
    height: 100%;
}


/* =========================
   ICON
========================= */

.jb-icon {
    min-width: 45px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #006bc7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.jb-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.jb-benefit-card:hover .jb-icon {
    transform: rotate(8deg) scale(1.08);
    background: #004f96;
}


/* =========================
   CARD CONTENT
========================= */

.jb-benefit-card h3 {
    margin: 1px 0 8px;
    font-size: 16px;
    line-height: 1.35;
    color: #172f48;
    font-weight: 700;
}


.jb-benefit-card p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.65;
    color: #718092;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .jb-why-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .jb-why-intro {
        max-width: 750px;
        margin: auto;
        text-align: center;
    }

    .jb-title-line {
        margin: 20px auto;
    }

    .jb-benefits-grid {
        max-width: 850px;
        width: 100%;
        margin: auto;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .jb-why-section {
        padding: 60px 15px;
    }

    .jb-why-intro h2 {
        font-size: 30px;
    }

    .jb-intro-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .jb-benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .jb-benefit-card {
        padding: 19px 17px;
    }

    .jb-benefit-card h3 {
        font-size: 15px;
    }

    .jb-benefit-card p {
        font-size: 12px;
    }

    .jb-icon {
        min-width: 42px;
        width: 42px;
        height: 42px;
    }

    .jb-icon svg {
        width: 20px;
        height: 20px;
    }

    .jb-why-btn {
        padding: 13px 19px;
    }

}




        .cookie-consent{
    position:fixed;
    left:0;
    right:0;
    bottom:25px;
    display:none;
    justify-content:center;
    z-index:999999;
    padding:0 15px;
    font-family:Arial,sans-serif;
}

.cookie-box{
    width:850px;
    max-width:100%;
    background:#fff;
    border-radius:50px;
    display:flex;
    align-items:center;
    padding:18px 22px;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
    position:relative;
}

.cookie-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:#ffe7b3;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-right:18px;
}

.cookie-content{
    flex:1;
}

.cookie-content h4{
    margin:0 0 5px;
    font-size:18px;
    font-weight:700;
}

.cookie-content p{
    margin:0;
    color:#555;
    font-size:14px;
    line-height:22px;
}

.cookie-content a{
    color:#000;
    font-weight:600;
    text-decoration:none;
}

.cookie-buttons{
    display:flex;
    gap:12px;
    margin-left:20px;
}

.cookie-buttons button{
    border:none;
    cursor:pointer;
    padding:14px 38px;
    border-radius:40px;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.decline-btn{
    background:#dedede;
    color:#444;
}

.accept-btn{
    background:#2f5bea;
    color:#fff;
}

.accept-btn:hover{
    background:#1d47d2;
}

.decline-btn:hover{
    background:#cfcfcf;
}

.cookie-close{
    position:absolute;
    right:-8px;
    top:-8px;
    width:34px;
    height:34px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 3px 12px rgba(0,0,0,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:22px;
}

@media(max-width:768px){

.cookie-box{
    flex-direction:column;
    border-radius:20px;
    text-align:center;
}

.cookie-icon{
    margin:0 0 15px;
}

.cookie-buttons{
    margin:20px 0 0;
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
}

.cookie-buttons button{
    width:150px;
}

}
 
