﻿/*.PL_img {
        height: 215px !important;
    }*/
.new_link_color, .new_link_color:visited {
    display: inline !important;
}

body .redesign-2020 .col-two-content.bg-blue .column-wrap .col-two .text-wrapper ul li {
    color: #1c326b;
}

    body .redesign-2020 .col-two-content.bg-blue .column-wrap .col-two .text-wrapper ul li:before {
        background-color: #1c326b;
    }

body .redesign-2020 .col-two-content.col-two-classroom .column-wrap .col-two .text-wrapper.right-text::before {
    border: solid 1px #ff8201;
}

body .redesign-2020 .card-with-img .item-wrap .card .card-body {
    text-align: left;
    padding: 20px 20px 20px 36px;
}

@media(min-width: 1201px) {
    .industryBuilding_parent_box_margin {
        margin-left: 0px !important;
    }
    .banner-display-text {
        max-width: 450px !important;
    }
}

@media(max-width: 340px) {
    .mm-search-by-zip {
        width: 120px !important;
    }
}

@media(max-width: 767px) {
    .mm-search-by-zip {
        margin-right: 0px !important;
        padding: 10px 20px !important;
        color: #1C326B !important;
        border: 2px solid #1C326B !important;
        width: 150px;
        text-align: center;
    }

    .rent-buy-padding {
        padding: 64px 0px;
    }

    .mm-search-by-zip-form {
        justify-content: center !important;
    }

    .float-right-rb {
        float: none;
        margin: auto;
    }
}

@media(min-width: 768px) {
    .rent-buy-padding {
        padding: 96px 64px;
    }

    .mm-search-by-zip {
        margin-right: 0px !important;
        padding: 10px 20px !important;
        color: #1C326B !important;
        border: 2px solid #1C326B !important;
        width: 150px !important;
        text-align: center;
    }

    .float-right-rb {
        float: right;
    }
}

.table-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Desktop Table */
table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background-color: #1C326B;
    color: white;
    padding: 22px 25px;
    text-align: left;
    font-weight: 600;
    font-size: 18px;
}

/* Row headers in tbody should have white background */
tbody th {
    background-color: white;
    color: #1C326B;
    font-weight: 600;
    border-bottom: 1px solid #e0e0e0;
}

td {
    padding: 22px 25px;
    border-bottom: 1px solid #e0e0e0;
    color: #4d4d4d;
    font-size: 18px;
    line-height: 1.5;
}

tbody tr {
    background-color: white;
}

    tbody tr:nth-child(even) {
        background-color: white;
    }

    tbody tr:last-child td {
        border-bottom: none;
    }

/* First column in tbody - white background with navy text */
tbody th {
    font-weight: 600;
    color: #1C326B;
    background-color: white !important;
}

/* Mobile - Stack by building type */
@media (max-width: 767px) {
    .table-container {
        background-color: transparent;
        box-shadow: none;
    }

    table {
        display: block;
    }

    thead {
        display: none;
    }

    tbody {
        display: flex;
        flex-direction: column;
    }

        tbody tr {
            display: contents;
        }

        tbody td, tbody th {
            display: block;
        }
        /* Hide first column (feature labels) on mobile - we use data-label instead */
        tbody th {
            display: none;
        }
        /* Group cells by column into cards */
        tbody td:nth-child(2) {
            order: 1;
        }

        tbody td:nth-child(3) {
            order: 2;
        }

        tbody td:nth-child(4) {
            order: 3;
        }
        /* Card styling */
        tbody td {
            background-color: white;
            padding: 18px 20px;
            border: none;
            color: #4d4d4d;
            font-size: 18px;
            line-height: 1.6;
        }
            /* Add feature labels for ALL rows */
            tbody td::before {
                content: attr(data-label);
                display: block;
                font-weight: 700;
                color: #1C326B;
                font-size: 18px;
                /*margin-bottom: 8px;*/
            }
        /* First row of each column - add building header ABOVE the label */
        tbody tr:first-child td:nth-child(2),
        tbody tr:first-child td:nth-child(3),
        tbody tr:first-child td:nth-child(4) {
            padding-top: 80px;
            position: relative;
        }

            tbody tr:first-child td:nth-child(2)::after {
                content: 'Office Trailer';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                background-color: #1C326B;
                color: white;
                font-weight: 700;
                font-size: 18px;
                text-align: center;
                padding: 20px 20px;
            }

            tbody tr:first-child td:nth-child(3)::after {
                content: 'Modular Office';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                background-color: #1C326B;
                color: white;
                font-weight: 700;
                font-size: 18px;
                text-align: center;
                padding: 20px 20px;
            }

            tbody tr:first-child td:nth-child(4)::after {
                content: 'Multi-Unit Building';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                background-color: #1C326B;
                color: white;
                font-weight: 700;
                font-size: 18px;
                text-align: center;
                padding: 20px 20px;
            }
        /* Last row of each column - add bottom radius and margin */
        tbody tr:last-child td:nth-child(2),
        tbody tr:last-child td:nth-child(3),
        tbody tr:last-child td:nth-child(4) {
            margin-bottom: 25px;
            padding-bottom: 20px;
        }
        /* Middle rows - add shadow on sides */
        tbody tr:not(:first-child):not(:last-child) td:nth-child(2),
        tbody tr:not(:first-child):not(:last-child) td:nth-child(3),
        tbody tr:not(:first-child):not(:last-child) td:nth-child(4) {
            box-shadow: none;
        }
        /* Add feature labels */
        tbody td::before {
            content: attr(data-label);
            display: block;
            font-weight: 700;
            color: #1C326B;
            font-size: 18px;
            padding: 10px 0px;
            /*margin-bottom: 8px;*/
        }
        /* Remove before content from first row cards (already has building name) */
        tbody tr:first-child td:nth-child(2)::before,
        tbody tr:first-child td:nth-child(3)::before,
        tbody tr:first-child td:nth-child(4)::before {
            display: block;
        }
        /* Add separator between features */
        tbody td {
            border-bottom: 1px solid #f0f0f0;
        }

        tbody tr:last-child td {
            border-bottom: none;
        }
}

@media (min-width: 768px) and (max-width: 990px) {
    .rental-tab-content {
        height: 500px !important;
    }
}

@media (max-width: 480px) {
    tbody td:not(:first-child)::before {
        font-size: 18px;
        padding: 10px 0px;
    }

    tbody td::before {
        font-size: 18px;
        /*margin-bottom: 6px;*/
    }

    tbody td {
        font-size: 18px;
        padding: 20px;
    }

    tbody tr:first-child td:nth-child(2),
    tbody tr:first-child td:nth-child(3),
    tbody tr:first-child td:nth-child(4) {
        padding-top: 80px;
    }

    tbody tr:last-child td:nth-child(2),
    tbody tr:last-child td:nth-child(3),
    tbody tr:last-child td:nth-child(4) {
        padding-bottom: 18px;
        margin-bottom: 20px;
    }
}

.rental-tabs-container {
    display: flex;
    background: transparent;
    border-radius: 0;
    /*overflow: hidden;*/
    min-height: 350px;
}

.rental-tab-buttons {
    display: flex;
    flex-direction: column;
    width: 250px;
    background-color: transparent;
}

.rental-tab-button {
    padding: 15px 30px !important;
    background-color: #1C326B;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    position: relative;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
}

    .rental-tab-button:last-child {
        margin-bottom: 0;
    }

    .rental-tab-button:hover {
        background-color: #3d5a8c;
    }

    .rental-tab-button.active {
        background-color: #FDB913;
        color: #1C326B;
        font-weight: 700;
    }

        .rental-tab-button.active::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background-color: #FDB913;
        }

.rental-tab-content-wrapper {
    flex: 1;
    position: relative;
    border-left: 15px solid #FFB63F;
}

.rental-tab-content {
    display: none;
    padding: 50px;
    background-color: #1C326B;
    color: white;
    height: 360px;
    box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.15);
}

    .rental-tab-content.active {
        display: block;
    }

@media (max-width: 767px) {
    .rental-tabs-container {
        flex-direction: column;
        min-height: auto;
    }

    .rental-tab-buttons {
        width: 100%;
        flex-direction: row;
    }

    .rental-tab-button {
        flex: 1;
        text-align: center;
        padding: 20px 15px !important;
        font-size: 13px;
        margin-bottom: 0;
        border-right: 1px solid rgba(255,255,255,0.1);
    }

        .rental-tab-button:last-child {
            border-right: none;
            margin-bottom: 0;
        }

        .rental-tab-button.active::after {
            display: none;
        }

    .rental-tab-content-wrapper {
        border-left: none;
        border-top: 15px solid #FFB63F;
    }

    .rental-tab-content {
        padding: 35px 25px !important;
        min-height: 450px !important;
    }
}

@media (max-width: 480px) {
    .rental-tab-button {
        font-size: 18px;
        padding: 15px !important;
        letter-spacing: 0.5px;
    }

    .rental-tab-content {
        padding: 30px 20px !important;
        min-height: 480px !important;
    }

        .rental-tab-content h3 {
            font-size: 22px;
        }

        .rental-tab-content p {
            font-size: 14px;
        }
}
@media (max-width: 340px) {
    .rental-tab-content {
        padding: 30px 20px !important;
        min-height: 500px !important;
    }
}

/* Testimonial Text Wrapper */
.testimonial-text-wrapper {
    position: relative;
}

.testimonial-card p,
.review-text {
    color: #4d4d4d;
    line-height: 1.5;
    font-size: 16px;
    margin: 0;
    max-height: 96px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

    .testimonial-card p.expanded,
    .review-text.expanded {
        max-height: none;
    }

.read-more-btn {
    display: none;
    background: none;
    border: none;
    color: #1C326B;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 0 0 0 !important;
    text-align: left;
    text-decoration: underline;
    margin-top: 5px;
}

    .read-more-btn:hover {
        color: #FF8201;
    }
.testimonials-slider-wrapper {
    position: relative;
    padding: 10px 60px;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px 0; 
}

.testimonials-slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    padding: 0 10px; 
}

.testimonial-card {
    min-width: calc(33.333% - 14px);
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #1C326B 0%, #FF8201 100%);
        border-radius: 12px 12px 0 0; /* Match card's top border-radius */
        z-index: 1;
    }
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0px 4px rgba(0, 0, 0, 0.15), 0 0 4px rgba(0, 0, 0, 0.1);
    }

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1C326B;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
    min-width: 0;
}

.testimonial-name {
    font-weight: 700;
    color: #1C326B;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-title {
    color: #4d4d4d;
    font-size: 16px;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.star {
    color: #FF8201;
    font-size: 20px;
}

.testimonial-card p {
    color: #4d4d4d;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #FF8201;
    color: #FF8201;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .testimonial-arrow:hover {
        background: white;
        color: #FF8201;
    }

    .testimonial-arrow.left {
        z-index: 1;
        width: 33px;
        height: 33px;
        font-size: 0;
        line-height: 0;
        -webkit-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        position: absolute;
        cursor: pointer;
        margin: 0;
        bottom: -65px;
        left: 83%;
        background-color: white;
        color: #FF8201;
        border-radius: 50%;
        left: 0;
    }
        .testimonial-arrow.left:before {
            content: "";
            position: absolute;
            border: solid #FF8201;
            border-width: 0 4px 4px 0;
            display: inline-block;
            padding: 4px;
            right: 6px;
            top: 9px;
            -webkit-transform: rotate(-224deg);
            -o-transform: rotate(-224deg);
            transform: rotate(-224deg);
            height: 11px;
            width: 11px;
            opacity: 1;
        }

    .testimonial-arrow.right {
        right: 0;
        z-index: 1;
        right: 2%;
        width: 33px;
        height: 33px;
        font-size: 0;
        line-height: 0;
        position: absolute;
        cursor: pointer;
        margin: 0;
        -webkit-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        background-color: white;
        border-radius: 50%;
        bottom: -65px;
    }
        .testimonial-arrow.right:before {
            content: "";
            position: absolute;
            border: solid #FF8201;
            border-width: 0 4px 4px 0;
            display: inline-block;
            height: 11px;
            width: 11px;
            right: 12px;
            top: 9px;
            right: 10px;
            -webkit-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
            opacity: 1;
        }

/* Responsive Design */
@media (max-width: 991px) {
    .testimonial-card {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        min-width: 100%;
    }

    .testimonials-slider-wrapper {
        padding: 10px 50px;
    }

    .testimonial-arrow {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
    .testimonials-slider-container {
        padding: 0 10px;
    }
    .testimonials h2 {
        font-size: 32px;
    }

    .testimonials-subtitle {
        font-size: 16px;
    }
}

    @media (max-width: 1200px) {
        .mob-banner-image {
            width: 100%;
            height: auto;
        }

        .slide {
            min-width: 100%;
        }
    }

    @media (max-width: 1024px) {
        .slide {
            height: auto;
        }

        .slide-image {
            width: 70%;
            top: 0;
            bottom: 0;
        }

        .slide-content {
            width: 58%;
            padding: 35px 30px;
            top: 20px;
            bottom: 20px;
        }

        .testimonial-card {
            flex: 0 0 calc(50% - 15px);
            min-width: 280px;
        }
    }

    @media (max-width: 768px) {
        h1 {
            font-size: 1.5rem;
            margin-bottom: 40px;
            padding-top: 30px;
        }

        .slider-wrapper {
            padding-bottom: 40px;
        }

        .slide {
            flex-direction: column;
            min-width: 100%;
            height: auto;
        }

        .slide-image {
            position: relative;
            width: 100%;
            height: 300px;
            top: 0;
            bottom: auto;
        }

        .slide-content {
            position: relative;
            width: 100%;
            transform: none;
            top: auto;
            padding: 30px 25px;
            max-height: none;
        }

        .slide-title {
            font-size: 1.2rem;
        }

        .callouts {
            gap: 15px;
        }

        .callout-number {
            font-size: 1.6rem;
        }

        .callout-label {
            font-size: 0.7rem;
        }

        .quote {
            font-size: 0.85rem;
        }

        .arrow {
            width: 45px;
            height: 45px;
            font-size: 22px;
        }

            .arrow.left {
                left: 10px;
            }

            .arrow.right {
                right: 10px;
            }

        .testimonial-card {
            flex: 0 0 100%;
            min-width: 100%;
        }
    }

    @media (min-width: 1201px) {
        .mob-banner-image {
            height: 400px;
            width: auto;
        }

        .mob-banner-display-flex {
            display: flex;
            align-items: center;
        }

        .mob-banner-height {
            height: 502px;
        }
    }

    @media (min-width: 768px) and (max-width: 990px) {
        .mob-banner-display-flex {
            display: flex;
            align-items: center;
        }

        .mob-banner-height {
            height: 502px;
        }
    }

    @media (min-width: 991px) and (max-width: 1200px) {
        .mob-banner-display-flex {
            display: flex;
            align-items: center;
        }

        .mob-banner-height {
            height: 502px;
        }
    }

    @media (min-width: 768px) {
        .stars {
            margin-bottom: 10px;
        }


        .star_img {
            width: 24px;
            height: 24px;
            fill: #EE6A1F;
        }

        .mob-banner-bg {
            background-image: url(../../Content/Images/CommercialSolutions/MobileOffices/Banner-mobileoffices-background.webp);
            height: 502px;
            background-position: center center;
            background-repeat: no-repeat;
        }
    }

    @media (max-width: 767px) {
        .stars {
            margin-bottom: 10px;
            text-align: left;
        }
        li.active._mm_product_size_tabbox > a._mm_product_size_tab {
            color: #1C326B;
        }

        .star_img {
            width: 24px;
            height: 24px;
            fill: #EE6A1F;
        }
        .mob-banner-bg {
            background-image: url(../../Content/Images/CommercialSolutions/MobileOffices/Banner-mobileoffices-background.webp);
            height: 600px;
            background-position: center center;
            background-repeat: no-repeat;
        }

        .mob-banner-text-margin {
            margin: 30px 0px;
        }

        .mmb-grid {
            grid-template-columns: repeat(1, 1fr) !important;
        }
    }

    .mmb-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .mmb-card {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

        .mmb-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
        }

    .mmb-card-image {
        height: 240px;
        position: relative;
        overflow: hidden;
        background-color: #ddd;
        background-size: cover;
        background-position: center;
    }

        .mmb-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

    .mmb-card-title {
        background-color: #1C326B;
        color: white;
        padding: 15px 10px;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        border-left: 10px solid #FF8201;
    }

    .mmb-hover-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #1C326B;
        color: white;
        padding: 30px;
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .mmb-card:hover .mmb-hover-overlay {
        opacity: 1;
    }

    .mmb-hover-overlay h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
        color: white;
        text-transform: capitalize;
    }

    .mmb-hover-overlay p {
        font-size: 16px;
        line-height: 1.5;
        color: white;
        margin: 0;
    }

    @media (max-width: 768px) {


        .mmb-card-title {
            font-size: 18px;
            padding: 12px 10px;
        }

        .mmb-hover-overlay {
            padding: 20px;
        }

            .mmb-hover-overlay h3 {
                font-size: 16px;
            }

            .mmb-hover-overlay p {
                font-size: 13px;
            }
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        .mmb-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .mmb-card-image {
            height: 200px;
        }

        .mmb-section {
            padding: 30px 10px;
        }
    }

.image-container-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    width: 100%;
}

    .image-container img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Hotspot Wrapper */
.hotspot-wrapper {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10; 
    transition: z-index 0s;
}
    .hotspot-wrapper.active {
        z-index: 1000; /* Add this - higher than tooltip */
    }
/* Hotspot Button */
.hotspot-button {
    position: relative;
    width: 30px;
    height: 30px;
    background: #ff8533;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 133, 51, 0.5);
    z-index: 10;
    border: none;
    outline: none;
}

/* Tooltip Positioning */
.info-tooltip {
    position: absolute;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 300px;
    max-width: 340px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

    /*.info-tooltip.visible {
        opacity: 1;
        visibility: visible;
    }*/

    /* Position tooltips relative to button */
    .info-tooltip.position-top {
        bottom: calc(100% + 20px);
        left: -75%;
        transform: translateX(-50%);
    }

    .info-tooltip.position-bottom {
        top: calc(100% + 20px);
        left: -75%;
        transform: translateX(-50%);
    }

    .info-tooltip.position-left {
        right: calc(100% + 20px);
        top: -50%;
        transform: translateY(-50%);
    }

    .info-tooltip.position-right {
        left: calc(100% + 20px);
        top: -50%;
        transform: translateY(-50%);
    }
    .hotspot-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #ff8533;
        opacity: 0.6;
        animation: pulse-wave 1.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    }

@keyframes pulse-wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}


/* Plus/X Icon */
.hotspot-icon {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hotspot-icon::before,
    .hotspot-icon::after {
        content: '';
        position: absolute;
        background: white;
        transition: all 0.3s ease;
    }

    .hotspot-icon::before {
        width: 15px;
        height: 2px;
    }

    .hotspot-icon::after {
        width: 2px;
        height: 15px;
    }

.hotspot-button.active .hotspot-icon::before,
.hotspot-button.active .hotspot-icon::after {
    transform: rotate(45deg);
}



    .info-tooltip.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* Tooltip Arrow */
.tooltip-arrow {
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border: 1px solid #e0e0e0;
    transform: rotate(45deg);
    z-index: -1;
}

/* Arrow positioning based on tooltip position */
.info-tooltip.position-top .tooltip-arrow {
    bottom: -8px;
    left: 30px;
    border-top: none;
    border-left: none;
}

.info-tooltip.position-bottom .tooltip-arrow {
    top: -8px;
    left: 30px;
    border-bottom: none;
    border-right: none;
}

.info-tooltip.position-left .tooltip-arrow {
    right: -8px;
    top: 24px;
    border-left: none;
    border-bottom: none;
}

.info-tooltip.position-right .tooltip-arrow {
    left: -8px;
    top: 24px;
    border-right: none;
    border-top: none;
}

/* Tooltip Content */
.info-title {
    font-size: 18px;
    color: white;
    letter-spacing: 0.5px;
    background-color: #1C326B;
    padding: 15px;
    text-align: center;
    margin: 0;
    font-family: "Myriad Pro", sans-serif;
}

.info-text {
    font-size: 16px;
    color: #4d4d4d;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    padding: 18px 20px;
}

/* Arrow color based on section */
.info-tooltip.theme-blue .tooltip-arrow {
    background: #1C326B;
    border-color: #1C326B;
}

.info-tooltip.theme-white .tooltip-arrow {
    background: white;
    border-color: #e0e0e0;
}
/* Mobile Backdrop */
.mobile-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
}

    .mobile-backdrop.active {
        display: block;
    }

/* ===== RESPONSIVE STYLES ===== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 16px;
    }

    .hotspot-button {
        width: 30px;
        height: 30px;
    }

    .info-tooltip {
        min-width: 280px;
        max-width: 320px;
    }
}

/* Small Tablets (481px - 768px) */
@media (max-width: 768px) {
    .mm-hotspot-section {
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 85%, #EDEDED 15%, #EDEDED 100%);
    }
    .hotspot-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .section-description {
        font-size: 15px;
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .hotspot-button {
        width: 30px;
        height: 30px;
    }

    .hotspot-icon::before {
        width: 15px;
        height: 2px;
    }

    .hotspot-icon::after {
        width: 2px;
        height: 15px;
    }

    .info-tooltip {
        min-width: 240px;
        max-width: calc(100vw - 60px);
        padding: 0;
        box-sizing: border-box;
    }

        /* Auto-center on tablets */
        .info-tooltip.position-top,
        .info-tooltip.position-bottom {
            left: 50% !important;
            transform: translateX(-50%);
            max-width: 90vw;
        }

            .info-tooltip.position-top.visible {
                transform: translateX(-50%) translateY(0);
            }

            .info-tooltip.position-bottom.visible {
                transform: translateX(-50%) translateY(0);
            }

            /* Center arrows on tablets */
            .info-tooltip.position-top .tooltip-arrow,
            .info-tooltip.position-bottom .tooltip-arrow {
                left: 50% !important;
                transform: translateX(-50%) rotate(45deg);
            }

    .info-title {
        font-size: 16px;
        padding: 10px;
    }

    .info-text {
        font-size: 16px;
        padding: 10px;
    }
}

/* Tablet-specific - keep absolute positioning */
@media (min-width: 481px) and (max-width: 768px) {
    .info-tooltip {
        position: absolute !important;
    }
}

/* Mobile (max 480px) */
@media (max-width: 480px) {
    .hotspot-section {
        padding: 30px 0;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .section-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hotspot-button {
        width: 30px;
        height: 30px;
    }

    .hotspot-icon::before {
        width: 15px;
        height: 2px;
    }

    .hotspot-icon::after {
        width: 2px;
        height: 15px;
    }

    /* FIXED POSITIONING FOR MOBILE */
    .info-tooltip {
        position: fixed !important;
        left: 50% !important;
        top: auto !important;
        bottom: 20px !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: calc(100vw - 40px) !important;
        max-width: 340px !important;
        min-width: auto !important;
        padding: 0;
        font-size: 14px;
        z-index: 9999 !important;
    }

        .info-tooltip.visible {
            transform: translateX(-50%) translateY(0) !important;
        }

        /* Hide arrow on mobile */
        .info-tooltip .tooltip-arrow {
            display: none;
        }

    .info-title {
        font-size: 16px;
        padding: 10px;
    }

    .info-text {
        font-size: 16px;
        line-height: 1.5;
        padding: 10px;
    }
}

    /* Quick Adds Section */
    .qa-section {
        /*background: linear-gradient(180deg, rgba(230, 230, 230, 0.4) 0%, rgba(245, 245, 245, 0.6) 100%);
    padding: 60px 20px 80px;*/
        position: relative;
    }

    /*.qa-container {
    max-width: 1400px;
    margin: 0 auto;
}*/

    .qa-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .qa-section-title {
        font-size: 36px;
        color: #1C326B;
        font-weight: 400;
        margin-bottom: 16px;
        letter-spacing: 0.5px;
    }

    .qa-section-description {
        font-size: 18px;
        color: #1C326B;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Product Cards Grid */
    .qa-products-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .qa-product-card {
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px;
        text-align: center;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        min-height: 340px;
        width: 208px;
        flex: 0 0 208px;
    }

        .qa-product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

    .qa-product-image {
        width: 100%;
        height: 160px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .qa-product-name {
        font-size: 20px;
        color: #1C326B;
        margin-bottom: 20px;
        text-transform: capitalize;
    }

    .qa-add-to-cart-btn {
        background: white;
        color: #1C326B;
        border: 2px solid #1C326B;
        padding: 12px 32px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        border-radius: 2px;
        text-decoration: none;
        display: inline-block;
    }

        .qa-add-to-cart-btn:hover {
            background: #1C326B;
            color: white;
            transform: scale(1.05);
        }

    /* View All Button */
    .qa-view-all-container {
        text-align: center;
        margin-top: 40px;
    }

    .qa-view-all-btn {
        background: #1C326B;
        color: white;
        border: none;
        padding: 16px 48px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        border-radius: 2px;
        box-shadow: 0 4px 12px rgba(28, 50, 107, 0.3);
        text-decoration: none;
        display: inline-block;
    }

        .qa-view-all-btn:hover {
            background: #152649;
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(28, 50, 107, 0.4);
        }

    /* Responsive Design */



    /* Medium Desktop - 4 cards per row */
    @media (max-width: 1200px) and (min-width: 1001px) {
        .qa-products-grid {
            gap: 20px;
            max-width: 100%;
        }

        .qa-product-card {
            width: 250px;
            flex: 0 0 250px;
        }
    }

    /* Small Desktop/Large Tablet - 3 cards per row */
    @media (max-width: 1000px) and (min-width: 769px) {
        .qa-products-grid {
            gap: 20px;
        }

        .qa-product-card {
            width: 200px;
            flex: 0 0 200px;
        }
    }

    /* Tablet - 2 cards per row, last card centered */
    @media (max-width: 768px) and (min-width: 481px) {
        /*.qa-section {
        padding: 40px 15px 60px;
    }*/

        .qa-section-title {
            font-size: 28px;
        }

        .qa-section-description {
            font-size: 16px;
        }

        .qa-products-grid {
            gap: 20px;
            padding: 0 10px;
        }

        .qa-product-card {
            padding: 20px 15px;
            min-height: 300px;
            width: 200px;
            flex: 0 0 200px;
        }

        .qa-product-image {
            height: 120px;
        }

        .qa-product-name {
            font-size: 18px;
            margin-bottom: 16px;
        }

        .qa-add-to-cart-btn {
            padding: 10px 24px;
            font-size: 13px;
        }

        .qa-view-all-btn {
            padding: 14px 40px;
            font-size: 14px;
        }
    }

    /* Mobile - 1 card per column, all centered */
    @media (max-width: 480px) {
        /*.qa-section {
        padding: 40px 15px 60px;
    }*/

        .qa-products-grid {
            flex-direction: column;
            align-items: center;
            gap: 20px;
            max-width: 100%;
            margin: 0 auto 40px;
        }

        .qa-product-card {
            min-height: auto;
            width: 280px;
            flex: 0 0 auto;
        }

        .qa-product-image {
            height: 120px;
        }

        .qa-product-name {
            font-size: 18px;
        }

        .qa-add-to-cart-btn {
            padding: 10px 24px;
            font-size: 13px;
        }

        .qa-section-title {
            font-size: 24px;
        }

        .qa-section-description {
            font-size: 14px;
        }

        .qa-view-all-btn {
            padding: 14px 40px;
            font-size: 14px;
        }
    }

    .mm-hotspot-section {
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 75%, #EDEDED 25%, #EDEDED 100%);
    }

.mmb-map-section {
    background: white;
    /*box-shadow: 0px 0px 16px rgba(51, 51, 51, .2);*/
    padding: 30px;
    text-align: center;
}
.star_img {
    width: 24px;
    height: 24px;
}

.review_content_star {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
/* Slick Dots Container */
.slick-dots {
    position: absolute;
    bottom: -38px;
    left: 0%;
    display: flex !important;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

    /* Individual Dot */
    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 15px;
        height: 15px;
        margin: 0;
        padding: 0;
        cursor: pointer;
    }

        /* Dot Button */
        .slick-dots li button {
            font-size: 0;
            line-height: 0;
            display: block;
            width: 15px;
            height: 15px;
            padding: 0 !important;
            cursor: pointer;
            color: transparent;
            border: 2px solid white;
            outline: none;
            background: transparent;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

            /* Remove default slick before content */
            .slick-dots li button:before {
                content: '';
                display: none;
            }

        /* Active Dot - Filled Orange */
        .slick-dots li.slick-active button {
            background-color: white;
            border-color: white;
        }

.single-item img {
    height: 400px;
    object-fit: cover;
}

.slider-nav .slick-slide {
    margin: 0 10px;
}

.slick-prev:before {
    content: "";
    position: absolute;
    border: solid #FFFFFF;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 4px;
    right: 9px;
    top: 11px;
    -webkit-transform: rotate(-224deg);
    -o-transform: rotate(-224deg);
    transform: rotate(-224deg);
    height: 11px;
    width: 11px;
    opacity: 1;
}

.slick-prev {
    z-index: 1;
    width: 33px;
    height: 33px;
    font-size: 0;
    line-height: 0;
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    cursor: pointer;
    margin: 0;
    bottom: -65px;
    left: 83%;
    background: #ff8201;
    border-radius: 50%;
}

.slick-next:before {
    content: "";
    position: absolute;
    border: solid #FFFFFF;
    border-width: 0 4px 4px 0;
    display: inline-block;
    height: 11px;
    width: 11px;
    right: 12px;
    top: 11px;
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 1;
}

.slick-next {
    z-index: 1;
    right: 2%;
    width: 33px;
    height: 33px;
    font-size: 0;
    line-height: 0;
    position: absolute;
    cursor: pointer;
    margin: 0;
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: #ff8201;
    border-radius: 50%;
    bottom: -65px;
}

    .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
        background: #ff8201 !important;
    }

.slider-nav {
    margin-bottom: 0px !important;
}

@media (min-width : 992px) and (max-width: 1200px) {
    .slick-prev {
        left: 80%;
    }
}

@media (min-width : 768px) and (max-width: 991px) {
    .single-item {
        margin-bottom: 80px;
    }
    .slick-prev {
        left: 86%;
    }
}

@media (max-width : 767px) {
    .single-item {
        margin-bottom:80px;
    }
    .slick-prev {
        left: 75%;
    }
    .single-item img {
        height: 250px;
        object-fit: cover;
    }
}
.cs-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.cs-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.cs-slider-container {
    display: flex;
    gap: 0;
    transition: transform 0.6s ease-in-out;
    align-items: center;
}

.cs-slide {
    min-width: 100%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
}

.cs-slide-image {
    flex: 0 0 40%;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
    z-index: 1;
}

.cs-slide-content {
    flex: 0 0 65%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: white;
    min-height: 450px;
    position: relative;
    overflow-y: auto;
    margin-left: -5%;
    margin-top: 30px;
    margin-bottom: 30px;
    z-index: 2;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
}

.cs-slide-title {
    color: #1e3a5f;
    font-size: 1.3rem;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.cs-challenge, .cs-solution {
    margin-bottom: 15px;
}

    .cs-challenge p:first-child,
    .cs-solution p:first-child {
        color: #4d4d4d;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .cs-challenge p:last-child,
    .cs-solution p:last-child {
        color: #4d4d4d;
        font-size: 16px;
    }

.cs-callouts {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.cs-callout-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cs-callout-number {
    color: #ff6b35;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.cs-callout-label {
    color: #4d4d4d;
    font-size: 12px;
    margin-top: 5px;
    max-width: 100px;
    line-height: 1.2;
}

.cs-quote {
    color: #1C326B !important;
    font-style: italic;
    font-size: 16px;
    line-height: 1.5;
    margin: 10px 0 0 0;
    padding-left: 15px;
    border-left: 4px solid #ff6b35;
}

.cs-cta-button {
    background-color: #2c4b7f;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

    .cs-cta-button:hover {
        background-color: #1e3a5f;
    }

.cs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FF8201;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}


.cs-left {
    z-index: 1;
    width: 33px;
    height: 33px;
    font-size: 0;
    line-height: 0;
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin: 0;
    bottom: -65px;
    left: 83%;
    background: #ff8201;
    border-radius: 50%;
}

    .cs-left:before {
        content: "";
        position: absolute;
        border: solid #FFFFFF;
        border-width: 0 4px 4px 0;
        display: inline-block;
        padding: 4px;
        right: 9px;
        top: 11px;
        -webkit-transform: rotate(-224deg);
        -o-transform: rotate(-224deg);
        transform: rotate(-224deg);
        height: 11px;
        width: 11px;
        opacity: 1;
    }

.cs-right {
    z-index: 1;
    right: 2%;
    width: 33px;
    height: 33px;
    font-size: 0;
    line-height: 0;
    margin: 0;
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: #ff8201;
    border-radius: 50%;
    bottom: -65px;
}

    .cs-right:before {
        content: "";
        position: absolute;
        border: solid #FFFFFF;
        border-width: 0 4px 4px 0;
        display: inline-block;
        height: 11px;
        width: 11px;
        right: 12px;
        top: 11px;
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 1;
    }
    .cs-arrow:hover {
        background-color: #ff8555;
        transform: translateY(-50%) scale(1.1);
    }

    .cs-arrow.cs-left {
        left: -20px;
    }

    .cs-arrow.cs-right {
        right: -20px;
    }

@media (max-width: 1200px) {
    .cs-slide {
        min-width: 100%;
    }

    .cs-slide-image {
        width: 100%;
        height: 550px;
        min-height: 550px;
    }

    .cs-slide-content {
        min-height: auto;
    }

    /*.cs-slider-wrapper {
        padding: 0 60px;
    }*/

    /*.cs-arrow.cs-left {
        left: 10px;
    }*/

    /*.cs-arrow.cs-right {
        right: 10px;
    }*/
}

@media (max-width: 768px) {
    .cs-slide {
        min-width: 100%;
        flex-direction: column !important;
    }
    .cs-main-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .cs-slider-wrapper {
        padding: 0 50px;
    }

    .cs-slide-image {
        height: 300px;
        min-height: 300px;
    }

    .cs-slide-content {
        padding: 20px;
        min-height: auto;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        margin-left: 0px !important;
    }

    .cs-slide-title {
        font-size: 1.2rem;
    }

    .cs-callouts {
        gap: 15px;
    }

    .cs-callout-number {
        font-size: 1.6rem;
    }

    .cs-callout-label {
        font-size: 0.7rem;
    }

    .cs-quote {
        font-size: 0.85rem;
    }
    .cs-arrow.cs-right {
        right: 10px;
    }
    .cs-arrow.cs-left {
        left: 10px;
    }
    .cs-slider-wrapper {
        padding: 0 30px;
    }
}


/*Single-Wide*/
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s ease;
}

    .loading-overlay.hidden {
        opacity: 0;
        pointer-events: none;
    }

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #FF8201;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Main Swiper - GPU Accelerated */
.main-office-swiper {
    width: 100%;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    will-change: transform;
}

    .main-office-swiper .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        will-change: transform;
    }

    .main-office-swiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.3s ease;
    }

        .main-office-swiper img.loading {
            opacity: 0;
        }

    /* Custom Navigation - Optimized */
    /*.main-office-swiper .swiper-button-next,
    .main-office-swiper .swiper-button-prev {
        width: 50px;
        height: 50px;
        background: #FF8201;
        border-radius: 50%;
        color: white;
        transition: all 0.2s ease;
    }*/


    .main-office-swiper .swiper-button-prev:after {
        content: "";
        position: absolute;
        border: solid #FFFFFF;
        border-width: 0 4px 4px 0;
        display: inline-block;
        padding: 4px;
        right: 9px;
        top: 11px;
        -webkit-transform: rotate(-224deg);
        -o-transform: rotate(-224deg);
        transform: rotate(-224deg);
        height: 11px;
        width: 11px;
        opacity: 1;
    }
    .main-office-swiper .swiper-button-next:after {
        content: "";
        position: absolute;
        border: solid #FFFFFF;
        border-width: 0 4px 4px 0;
        display: inline-block;
        height: 11px;
        width: 11px;
        right: 12px;
        top: 11px;
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 1;
    }

    .main-office-swiper .swiper-button-prev {
        z-index: 1;
        width: 33px;
        height: 33px;
        font-size: 0;
        line-height: 0;
        -webkit-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        margin: 0;
        bottom: -65px;
        left: 83%;
        background: #ff8201;
        border-radius: 50%;
    }

.main-office-swiper .swiper-button-next {
    z-index: 1;
    right: 2%;
    width: 33px;
    height: 33px;
    font-size: 0;
    line-height: 0;
    margin: 0;
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: #ff8201;
    border-radius: 50%;
    bottom: -65px;
}
.main-office-swiper .swiper-button-prev {
    left: 0px !important;
    content:unset !important;
}

.main-office-swiper .swiper-button-next {
    right: 0px !important;
    content: unset !important;
}
/* Thumbnails - GPU Accelerated */
.thumbnails-section {
    margin-top: 50px;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.thumbnail-office-swiper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

    .thumbnail-office-swiper .swiper-slide {
        height: 200px;
        cursor: pointer;
        /*border: 3px solid #e0e0e0;*/
        /*border-radius: 4px;*/
        overflow: hidden;
        transform: scale(0.85);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, opacity;
        text-align:center;
    }

        .thumbnail-office-swiper .swiper-slide:hover {
            border: 3px solid #FF8201;
            opacity: 0.7;
            transform: scale(0.9);
        }

    .thumbnail-office-swiper .swiper-slide-thumb-active {
        border: 3px solid #FF8201 !important;
        /*box-shadow: 0 6px 24px rgba(255, 140, 0, 0.5);*/
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    .thumbnail-office-swiper img {
        width:80%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .thumbnail-office-swiper .swiper-slide:hover img {
        transform: scale(1.05);
    }

/* Pagination Dots */
.swiper-pagination-office {
    margin-top: 25px;
    text-align: center;
    position: relative;
}

    .swiper-pagination-office .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #d0d0d0;
        opacity: 1;
        margin: 0 5px;
        transition: all 0.3s ease;
    }

    .swiper-pagination-office .swiper-pagination-bullet-active {
        background: #FF8201;
        transform: scale(1.3);
    }

/* Responsive */
@media (max-width: 991px) {
    .mob-banner-text-margin {
        padding-right: 15px;
        margin-bottom: 30px;
        text-align: center;
    }

    .main-office-swiper {
        height: 300px;
    }

    .thumbnail-office-swiper .swiper-slide {
        height: 180px;
    }
}

@media (max-width: 768px) {
      .thumbnail-office-swiper .swiper-slide {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .main-office-swiper {
        height: 250px;
    }

    .thumbnail-office-swiper .swiper-slide {
        height: 200px;
    }

    .main-office-swiper .swiper-button-next,
    .main-office-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
}
.single-wide-banner-bg{
    padding:60px 0px 30px;
}


.mo-tabs-section-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

/* Tab Navigation */
.mo-tabs-navigation {
    display: flex;
    justify-content: center;
    padding: 0;
    gap: 0;
    text-align:center;
}

.mo-tabs-button {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px !important;
    background-color: #1C326B;
    color: white;
    border: none;
    font-size: 18px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    margin: 0px 5px 0px !important;
}

    .mo-tabs-button:hover {
        background-color: #2c4a8f;
    }

    .mo-tabs-button.mo-tabs-active {
        background-color: #FFB63F;
        color: #1C326B;
    }

/* Content Area */
.mo-tabs-content-wrapper {
    background-color: #1C326B;
    padding: 96px 0px;
    border-top: 10px solid #FFB63F !important;
}

.mo-tabs-content {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
}

    .mo-tabs-content.mo-tabs-active {
        display: block;
    }

.mo-tabs-content-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

/* Image Carousel */
.mo-tabs-image-section {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.mo-tabs-carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    max-width: 800px;
    display: flex;
    align-items: center;
}

.mo-tabs-carousel-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: none;
    transition: opacity 0.3s ease;
}

    .mo-tabs-carousel-image.mo-tabs-active {
        display: block;
        animation: moTabsFadeIn 0.3s ease;
    }

@keyframes moTabsFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Thumbnail Navigation */
.mo-tabs-thumbnail-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.mo-tabs-thumbnail-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

    .mo-tabs-thumbnail-dot:hover {
        background-color: rgba(255, 255, 255, 0.7);
        transform: scale(1.2);
    }

    .mo-tabs-thumbnail-dot.mo-tabs-active {
        background-color: #FFB63F;
        border-color: white;
        transform: scale(1.3);
    }

.mo-tabs-carousel-arrow {
    position: absolute;
    top: 50%;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mo-tabs-carousel-arrow:hover {
        background-color: #ff9d1f;
        transform: translateY(-50%) scale(1.1);
    }

    .mo-tabs-carousel-arrow.mo-tabs-left {
        left: 10px;
        z-index: 1;
        width: 33px;
        height: 33px;
        font-size: 0;
        line-height: 0;
        -webkit-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        margin: 0;
        bottom: -65px;
        background: #ff8201;
    }
        .mo-tabs-carousel-arrow.mo-tabs-left:before {
            content: "";
            position: absolute;
            border: solid #FFFFFF;
            border-width: 0 4px 4px 0;
            display: inline-block;
            padding: 4px;
            /*right: 9px;*/
            top: 11px;
            -webkit-transform: rotate(-224deg);
            -o-transform: rotate(-224deg);
            transform: rotate(-224deg);
            height: 11px;
            width: 11px;
            opacity: 1;
        }
    .mo-tabs-carousel-arrow.mo-tabs-right {
        right: 10px;
        z-index: 1;
        right: 2%;
        width: 33px;
        height: 33px;
        font-size: 0;
        line-height: 0;
        margin: 0;
        -webkit-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        background: #ff8201;
        bottom: -65px;
    }
    .mo-tabs-carousel-arrow.mo-tabs-right:before {
        content: "";
        position: absolute;
        border: solid #FFFFFF;
        border-width: 0 4px 4px 0;
        display: inline-block;
        height: 11px;
        width: 11px;
        /*right: 12px;*/
        top: 11px;
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 1;
    }

/* Text Content */
.mo-tabs-text-section {
    color: white;
    width: 100%;
}

.mo-tabs-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mo-tabs-text-section h3 {
    margin-bottom: 0px !important;
    text-align: left;
}

.mo-tabs-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 0;
}

.mo-tabs-info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}

.mo-tabs-icon-circle {
    width: 75px;
    height: 75px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .mo-tabs-icon-circle img {
        width: 40px;
        height: auto;
        fill: #1C326B;
    }

.mo-tabs-info-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
    text-transform: capitalize;
    font-weight: unset !important;
}

.mo-tabs-info-content p {
    font-size: 18px;
    line-height: 1.5;
    color: white;
}

.mo-tabs-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #1C326B;
    border: 2px solid white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
}

    .mo-tabs-cta-button:hover {
        background-color: #1C326B;
        color: white;
        transform: scale(1.05);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .mo-tabs-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .mo-tabs-navigation {
        flex-wrap: wrap;
    }

    .mo-tabs-button {
        flex: 1 1 45%;
        font-size: 14px;
        padding: 15px 20px;
    }

    .mo-tabs-header-row {
        flex-direction: column;
        gap: 20px;
        /*align-items: flex-start;*/
    }

    .mo-tabs-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mo-tabs-text-section h2 {
        font-size: 28px;
    }

    .mo-tabs-carousel-container {
        height: 350px;
    }

    .mo-tabs-carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .mo-tabs-content-wrapper {
        padding: 40px 20px;
    }

    .mo-tabs-thumbnail-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .mo-tabs-button {
        flex: 1 1 100%;
        font-size: 16px;
    }

    .mo-tabs-text-section h2 {
        font-size: 24px;
    }

    .mo-tabs-carousel-container {
        height: 250px;
    }

    .mo-tabs-info-content h3 {
        font-size: 18px;
    }

    .mo-tabs-info-content p {
        font-size: 18px;
    }
}
/* Grey Version - Rental Tabs */
.rental-tabs-container-grey {
    display: flex;
    background: transparent;
    border-radius: 0;
    /*overflow: hidden;*/
    min-height: 350px;
}

.rental-tab-buttons-grey {
    display: flex;
    flex-direction: column;
    width: 250px;
    background-color: transparent;
}

.rental-tab-button-grey {
    padding: 15px 30px !important;
    background-color: #EDEDED;
    color: #1C326B;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    position: relative;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
}

    .rental-tab-button-grey:last-child {
        margin-bottom: 0;
    }

    .rental-tab-button-grey:hover {
        background-color: #EDEDED;
    }

    .rental-tab-button-grey.active {
        background-color: #FFB63F;
        color: #1C326B;
        font-weight: 700;
    }

        .rental-tab-button-grey.active::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background-color: #FFB63F;
        }

.rental-tab-content-wrapper-grey {
    flex: 1;
    position: relative;
    border-left: 15px solid #FFB63F;
}

.rental-tab-content-grey {
    display: none;
    padding: 50px;
    background-color: #EDEDED;
    color: white;
    height: 360px;
    box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.15);
}

    .rental-tab-content-grey.active {
        display: block;
    }

@media (max-width: 767px) {
    .rental-tabs-container-grey {
        flex-direction: column;
        min-height: auto;
    }

    .rental-tab-buttons-grey {
        width: 100%;
        flex-direction: row;
    }

    .rental-tab-button-grey {
        flex: 1;
        text-align: center;
        padding: 20px 15px !important;
        font-size: 13px;
        margin-bottom: 0;
        border-right: 1px solid rgba(255,255,255,0.1);
    }

        .rental-tab-button-grey:last-child {
            border-right: none;
            margin-bottom: 0;
        }

        .rental-tab-button-grey.active::after {
            display: none;
        }

    .rental-tab-content-wrapper-grey {
        border-left: none;
        border-top: 15px solid #FFB63F;
    }

    .rental-tab-content-grey {
        padding: 35px 25px !important;
        min-height: 450px !important;
    }
}

@media (max-width: 480px) {
    .rental-tab-button-grey {
        font-size: 18px;
        padding: 15px !important;
        letter-spacing: 0.5px;
    }

    .rental-tab-content-grey {
        padding: 30px 20px !important;
        min-height: 480px !important;
    }

        .rental-tab-content-grey h3 {
            font-size: 22px;
        }

        .rental-tab-content-grey p {
            font-size: 14px;
        }
}

@media (max-width: 340px) {
    .rental-tab-content-grey {
        padding: 30px 20px !important;
        min-height: 500px !important;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    .rental-tab-content-grey {
        height: 500px !important;
    }
}

.redesign-2020 section ul.list-bullets.mm-bullet-points-white li:before {
    background-color: white;
}

.redesign-2020 section ul.list-bullets.mm-bullet-points li {
    font-family: "Myriad Pro", sans-serif !important;
    -moz-font-smoothing: antialiased !important;
    -webkit-font-smoothing: antialiased !important;
}

.redesign-2020 section ul.list-bullets.mm-bullet-points-blue li:before {
    background-color: #1c326b !important;
}

.img_shadow {
    webkit-box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
}
.accessories_parent_box {
    background-color: #ffffff;
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    -webkit-box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
    text-align: center;
    position: relative;
    height: 340px;
}

.accessories_img {
    height: 200px;
    width: auto;
    max-width: 100%;
}

/* Main Section Container */
.visualizer-section {
    background-color: #1C326B !important;
}

.visualizer-top {
    max-width: 900px;
    margin: 0 auto;
    text-align:center;
    margin-bottom:40px;
}

.visualizer-row {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Video Column */
.visualizer-video-col {
    flex: 1;
    min-width: 0;
}

.video-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

    .video-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    }

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

/* Features Column */
.visualizer-features-col {
    flex: 1;
    min-width: 0;
    padding: 40px 0;
}

.features-title {
    color: white;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

    .features-list li {
        padding-left: 30px;
        position: relative;
        font-family: "Myriad Pro", sans-serif;
        font-size: 20px;
        line-height: 1.5;
        color:white;
    }

        .features-list li::before {
            content: '';
            position: absolute;
            height: 8px;
            width: 8px;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 50%;
            background-color: white;
        }

.features-text {
    color: white;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
    margin-top: 15px;
    text-align: left;
    letter-spacing: 0px;
}

/* ZIP Code Form */
.zip-form-wrapper {
    display: flex;
    align-items: center;
    max-width: 300px;
}

.zip-form {
    display: flex;
    width: 100%;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    align-items: center;
}

.zip-input {
    flex: 1;
    font-size: 16px;
    text-transform: uppercase;
    height: 47px !important;
    padding: 10px 35px !important;
    width: 190px !important;
    font-family: 'Myriad Pro' !important;
    border: none !important;
    outline: none !important;
}

    .zip-input::placeholder {
        color: #999;
        text-transform: uppercase;
    }

.zip-submit {
    background-color: #FF8201 !important;
    color: white !important;
    height: 48px !important;
    width: 108px !important;
    margin-left: -4px !important;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .zip-submit:hover {
        background-color: #E55A2B;
    }
@media (min-width: 768px) and (max-width: 990px) {
    .visualizer-row {
        gap: 20px;
    }
    .visualizer-features-col {
        padding: 20px 0;
    }
}
/* Mobile Responsive */
@media (max-width: 767px) {
    .visualizer-row {
        flex-direction: column;
        gap: 30px;
    }

    

    .features-title {
        font-size: 20px;
    }

    .features-list li {
        font-size: 16px;
    }

    .features-text {
        font-size: 16px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-icon {
        border-left-width: 20px;
        border-top-width: 15px;
        border-bottom-width: 15px;
    }

    .zip-form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .zip-input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .zip-submit {
        padding: 12px 20px;
        font-size: 14px;
    }
}
/* Video Popup Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

    .video-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    animation: slideIn 0.3s ease;
    border-radius: unset !important;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 36px;
    font-weight: normal;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 0 10px;
}

    .modal-close:hover {
        color: #FF6B35;
    }

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile adjustments for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }

    .modal-close {
        top: -35px;
        font-size: 30px;
    }
}


.portable-office-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.portable-office-search-wrapper {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
}

.portable-office-image-frame {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.portable-office-main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portable-office-grid-layout {
        grid-template-columns: 1fr;
    }

    .portable-office-search-wrapper {
        flex-direction: column;
    }
}
/* Top Hero Section */
.cmb-hero-section {
    display: flex;
    align-items: center;
    min-height: 400px;
    position: relative;
    background: linear-gradient(to right, #f5f5f5 50%, transparent 50%);
}

.cmb-hero-content {
    flex: 1;
    padding: 60px 80px;
    background-color: #f5f5f5;
    z-index: 2;
}

    .cmb-hero-content h1 {
        font-size: 32px;
        color: #2c3e7d;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .cmb-hero-content p {
        color: #555;
        line-height: 1.6;
        margin-bottom: 30px;
        font-size: 14px;
    }

.cmb-contact-btn {
    background-color: #2c3e7d;
    color: white;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

    .cmb-contact-btn:hover {
        background-color: #1f2d5c;
    }

.cmb-hero-image {
    flex: 1;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="400"><rect fill="%23c4945c" width="800" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Blue Section */
.cmb-blue-section {
    background-color: #1C326B !important;
}

.cmb-section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .cmb-section-header p {
        color: white;
        line-height: 1.5;
        max-width: 900px;
        margin: 0 auto;
        font-size: 20px;
    }

.cmb-content-wrapper {
    display: flex;
    gap: 80px;
    /*align-items: flex-start;*/
    margin-top: 40px;
}

/* Left Navigation Menu */
.cmb-nav-menu {
    /*flex: 0 0 300px;*/
    flex: 0 0 30%;
    position: relative;
    padding: 30px 0px;
}

    .cmb-nav-menu::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background-color: white;
    }

    .cmb-nav-menu ul {
        list-style: none;
    }

.cmb-nav-item {
    padding: 12px 15px;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    color: white;
    border: 2px solid transparent;
}

    .cmb-nav-item::before {
        content: '';
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 100%;
        background-color: #f5a623;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index:1;
    }

    .cmb-nav-item.cmb-active {
        /*background-color: rgba(255, 255, 255, 0.1);*/
        border: 2px solid #FFB63F;
        color: #FFB63F;
    }

        .cmb-nav-item.cmb-active::before {
            opacity: 1;
        }

    .cmb-nav-item:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }

/* Right Content Area */
.cmb-content-area {
    flex: 1;
}

.cmb-content-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center center;
    margin-bottom: 40px;
    background-repeat: no-repeat;
}

.cmb-content-area p {
    color: white;
    line-height: 1.5;
    font-size: 20px;
    margin-bottom:40px;
}

/* Tab Content */
.cmb-tab-content {
    display: none;
    animation: cmbFadeIn 0.5s;
}

    .cmb-tab-content.cmb-active {
        display: block;
    }

@keyframes cmbFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */

/* Tablet and below */
@media (max-width: 968px) {
    .cmb-hero-section {
        flex-direction: column;
    }

    .cmb-hero-content, .cmb-hero-image {
        flex: none;
        width: 100%;
    }

    .cmb-hero-content {
        padding: 40px 50px;
    }

    .cmb-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .cmb-nav-menu {
        flex: none;
        width: 100%;
    }

        .cmb-nav-menu::after {
            display: none;
        }

    .cmb-nav-item::before {
        display: none;
    }

    .cmb-nav-item.cmb-active {
        border-left: 4px solid #f5a623;
        padding-left: 16px;
    }
}

/* Mobile devices */
@media (max-width: 640px) {
    .cmb-hero-content {
        padding: 30px 20px;
    }

    .cmb-hero-image {
        height: 250px;
    }

    .cmb-content-wrapper {
        gap: 30px;
    }

    .cmb-nav-item {
        padding: 12px 15px;
        font-size: 16px;
    }

    .cmb-content-image {
        height: 200px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .cmb-nav-item {
        font-size: 16px;
        padding: 10px 15px;
        text-align:center;
    }
}

.banner-display {
    position: relative;
    height: 500px;
    width: auto;
    background-image: url('../../Content/Images/CommercialSolutions/commerical/commerical-banner.webp');
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    padding: 50px 0px;
    overflow: hidden;
    background-size: 55%;
}

    .banner-display::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('../../Content/Images/CommercialSolutions/commerical/Commercial-Banner 1.webp');
        z-index: 1;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        height: 500px;
    }
.edu-banner-display {
    position: relative;
    height: 500px;
    width: auto;
    background-image: url('../../Content/Images/EducationSolutions/education/Edu-Banner.webp');
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    padding: 50px 0px;
    overflow: hidden;
    background-size: 55%;
}

    .edu-banner-display::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('../../Content/Images/CommercialSolutions/commerical/Commercial-Banner 1.webp');
        z-index: 1;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        height: 500px;
    }
.primary-wrapper {
z-index:1;
}

.grid-layout {
    /*display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 600px;*/
}

.info-panel {
    max-width: 500px;
}

    /*.info-panel h1 {
        color: #1a3a5c;
        font-size: 2.5rem;
        margin-bottom: 25px;
        font-weight: 600;
        line-height: 1.2;
    }

    .info-panel p {
        color: #1a3a5c;
        font-size: 1.05rem;
        margin-bottom: 30px;
        line-height: 1.8;
    }*/


/* Responsive Design */
@media (min-width: 968px) and (max-width: 1200px) {
    .banner-display {
        background-size: cover !important;
    }
    .edu-banner-display {
        background-size: cover !important;
    }
    .banner-display-text {
        max-width: 450px !important;
    }
    .info-panel {
        max-width:400px;
    }
}
@media (max-width: 968px) {
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .info-panel {
        /*padding: 40px 30px;*/
        max-width: unset;
        text-align: center;
    }

    .info-panel-center {
        text-align: center;
    }

    .banner-display, .edu-banner-display {
        min-height: 500px;
        padding: 30px 0px;
        background-size: 0px;
        height: auto;
    }
    .banner-display-text{
        margin:0px auto;
    }

    .banner-display::before, .edu-banner-display::before {
        right: 0;
        height: auto;
    }
}

@media (max-width: 576px) {

    .banner-display::before, .edu-banner-display::before {
        right: 0;
        height: auto;
    }
}
.mm-max-width-600 {
    max-width: 600px;
}