﻿        .carousel-indicators button {
            overflow: hidden;
            width: 16px !important;
            height: 16px !important;
            border-radius: 100% !important;
        }

        .txt_move {
            font-size: 18pt;
            color: #0099FF;
        }

            .txt_move::before {
                content: "";
            }

            .txt_move:hover::before {
                content: ">>";
            }


        .card {
            border: 1px solid #E6E6E6;
            border-radius: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

            .card.h-100 {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: 280px;
            }

        .card-body {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding:10px;
        }

        .card-title {
            flex-grow: 1;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: center;
            font-size: 1.3rem;
            line-height: 1.2;
            min-height: 1em;
            max-height: 4em;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
           -webkit-line-clamp: unset;
            -webkit-box-orient: vertical;
            font-family: 'Marcellus', sans-serif;
            font-weight:bold;
        }

        .picture {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0px;
            background: #fff;
            overflow: hidden;
            aspect-ratio: 4 / 3; 
            width: 100%;
        }

            .picture img {
                width: 100% !important;
                max-width: 100% !important;
                max-height: 100% !important;
                object-fit: contain !important;
                display: block;
            }

        .col-lg-2, col-md-2{
            padding:5px!important;        
        }

        @media (max-width: 991.98px) {
            .card.h-100 {
                height: 220px;
            }
        }

        @media (max-width: 575.98px) {
            .card.h-100 {
                height: 200px;
            }
        }
                /*Back to top button*/
        #button {
            display: inline-block;
            background-color: #0099FF;
            width: 50px;
            height: 50px;
            text-align: center;
            border-radius: 4px;
            position: fixed;
            bottom: 150px;
            right: 30px;
            transition: background-color .3s, opacity .5s, visibility .5s;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

            #button::after {
                content: "\f077";
                font-family: FontAwesome;
                font-weight: normal;
                font-style: normal;
                font-size: 2em;
                line-height: 50px;
                color: #fff;
            }

            #button:hover {
                cursor: pointer;
                background-color: #333;
            }

            #button:active {
                background-color: #555;
            }

            #button.show {
                opacity: 1;
                visibility: visible;
            }
        /*Back to top button*/

/* Featured Section Styles */
.default-featured-section {
    background-color: #EAEAEE;
    padding: 80px 60px;
}

.default-featured-title {
    font-family: 'Marcellus', sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: #000;
    margin-bottom: 60px;
}

/* Featured Product Card */
.default-featured-card {
    background: transparent;
    border: none;
    padding: 20px;
    text-align: center;
}

/* Responsive Circular Image Container */
.default-featured-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 Aspect Ratio */
    margin: 0 auto;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    .default-featured-image-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    }

    .default-featured-image-wrapper a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10%;
    }

.default-featured-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.default-featured-image-wrapper:hover .default-featured-image {
    transform: scale(1.05);
}

/* Product Details */
.default-featured-details {
    margin-top: 25px;
    padding: 0 10px;
}

.default-featured-product-name {
    margin-bottom: 10px;
}

    .default-featured-product-name a {
        font-family: 'PT Serif', sans-serif;
        font-size: 20px;
        font-weight: 500;
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
        display: block;
        min-height: 24px;
    }

        .default-featured-product-name a:hover {
            color: #000;
        }

.default-featured-price {
    font-family: 'PT Serif', sans-serif;
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Shop All Button */
.default-featured-section .btn-shop-all {
    background-color: #000;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 50px;
    font-size: 16px;
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    margin-top: 40px;
    text-transform: none;
    display: inline-block;
}

    .default-featured-section .btn-shop-all:hover {
        background-color: #333;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }


@media (min-width: 1200px) {
    .default-featured-card {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .default-featured-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .default-featured-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .default-featured-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .default-featured-section {
        padding: 40px 0;
    }

        .default-featured-section .btn-shop-all {
            padding: 12px 40px;
            font-size: 14px;
        }

    .default-featured-card {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .default-featured-title {
        font-size: 28px;
    }

    .default-featured-product-name a {
        font-size: 14px;
    }

    .default-featured-price {
        font-size: 13px;
    }

    .default-featured-card {
        padding: 10px;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .default-featured-card {
        padding: 10px;
        max-width: 240px;
        margin: 0 auto;
    }
}
/* Featured Section Styles End */
/* Info Section Styles */
.default-info-section {
    background-color: #EAEAEE;
    padding: 80px 20px;
    width: 100%;
}

.default-info-container {
    padding: 0 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.default-info-content {
    flex: 1;
    padding-right: 40px;
}

.default-info-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #000;
    font-weight: 300;
    font-family: 'Marcellus', sans-serif;
}

.default-info-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    text-align: justify;
    font-family: 'PT Serif', sans-serif;
}

.default-learn-more-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

    .default-learn-more-btn:hover {
        background-color: #333;
        transform: translateY(-2px);
    }

.default-info-media {
    flex: 0 0 720px;
    position: relative;
}

.default-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

    .default-video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        object-fit: cover;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .default-info-container {
        gap: 40px;
    }

    .default-info-title {
        font-size: 3rem;
    }

    .default-info-media {
        flex: 0 0 500px;
    }
}

@media (max-width: 992px) {
    .default-info-container {
        flex-direction: column;
        text-align: center;
    }

    .default-info-content {
        padding-right: 0;
        max-width: 700px;
    }

    .default-info-title {
        font-size: 2.5rem;
    }

    .default-info-media {
        flex: none;
        width: 100%;
        max-width: 700px;
    }

    .default-info-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .default-info-section {
        padding: 60px 20px;
    }

    .default-info-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .default-info-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .default-learn-more-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .default-info-section {
        padding: 40px 15px;
    }

    .default-info-title {
        font-size: 1.75rem;
    }

    .default-info-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .default-learn-more-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}
/* Info Section Styles */
.product-header-title {
    font-family: 'Marcellus', sans-serif;
    font-size: 48px;
    font-weight: 300 !important;
    color: #000 !important;
}

.product-header-subtitle {
    font-size: 1.6rem;
    font-family: 'Marcellus', sans-serif;
    color: #000!important;
}

@media (max-width: 1024px) {
    .topic-block-title h2 {
        font-size: 2.5rem !important;
    }

    .product-header-title {
        font-size: 1.8rem;
    }

    .product-header-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .topic-block-title h2 {
        font-size: 2rem !important; 
    }

    .product-header-title {
        font-size: 1.5rem;
    }

    .product-header-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .topic-block-title h2 {
        font-size: 1.5rem !important;
    }

    .product-header-title {
        font-size: 1rem;
    }

    .product-header-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .topic-block-title h2 {
        font-size: 1.25rem !important;
    }

    .product-header-title {
        font-size: 1rem;
    }


    .product-header-subtitle {
        font-size: 0.9rem;
    }
}

        .header {
        width: 100% !important;
        }

        .master-wrapper-content {
        width: 100% !important;
        }

.picture {
    background: white;
    padding: 0px;
    position: relative;
    clip-path: url(#productImageMask);
    -webkit-clip-path: url(#productImageMask);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shadow-wrapper {
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
    transition: filter 0.3s ease;
}

.card:hover .shadow-wrapper {
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.18));
}

.picture img {
    width: 100% !important;
    height: 100%;
    object-fit: contain;
}

.picture a {
    display: block;
    width: 100%;
    height: 100%;
}

.card {
    background: transparent !important;
}

.card-body {
    background: transparent;
    padding-bottom:0;
}

.card-title {
    margin-top: 15px;
    text-align: center;
    font-family: 'Marcellus', sans-serif;
}

    .card-title a {
        color: #000;
        text-decoration: underline;
        text-decoration-style: double;
        text-decoration-color: #1470AF;
        text-decoration-thickness: 2px;
    }


/* Subscribe Section Styles */
.default-subscribe-section {
    background-color: #EAEAEE;
    padding: 60px 20px;
    width: 100%;
    text-align: center;
}

.default-subscribe-container {
    max-width: 800px;
    margin: 0 auto;
}

.default-subscribe-title {
    font-family: 'Marcellus', sans-serif;
    font-size: 48px;
    font-weight: 300 !important;
    color: #000 !important;
    margin-bottom: 15px;
}

.default-subscribe-subtitle {
    font-size: 1rem;
    color: #000 !important;
    margin-bottom: 30px;
}

.default-subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.default-name-fields {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    justify-content: center;
}

.default-email-field {
    width: 100%;
    max-width: 500px;
}

.default-input-field {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.default-first-name,
.default-last-name {
    flex: 1;
}

.default-email-input {
    width: 100%;
}

.default-input-field::placeholder {
    color: #999;
    font-size: 0.95rem;
}

.default-button-wrapper {
    margin-top: 10px;
}

.default-signup-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 16px 35px;
    border-radius: 25px!important;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

    .default-signup-button:hover {
        background-color: #333;
    }

.default-privacy-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
}

/* Marquee Styles Start */
.default-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #1470AF;
    padding: 15px 15px;
    font-family: 'PT Serif', sans-serif;
}

.default-marquee-track {
    display: flex;
    width: fit-content;
    animation: default-scroll 20s linear infinite;
}

.default-marquee-content {
    display: flex;
    white-space: nowrap;
    padding-right: 50px;
}

    .default-marquee-content span {
        color: white;
        font-size: 1.5rem;
        padding: 0 15px;
        font-weight: 500;
    }

@keyframes default-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.default-marquee-wrapper:hover .default-marquee-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .default-marquee-content span {
        font-size: 1rem;
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .default-marquee-content span {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .default-marquee-wrapper {
        padding: 12px 0;
    }
}
/* Marquee Styles End */
/* Subscribe Section Styles */
@media (max-width: 768px) {
    .default-subscribe-title {
        font-size: 2rem;
    }

    .default-name-fields {
        flex-direction: column;
        max-width: 350px;
    }

    .default-email-field {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .default-subscribe-section {
        padding: 40px 15px;
    }

    .default-subscribe-title {
        font-size: 1.75rem;
    }

    .default-subscribe-subtitle {
        font-size: 0.9rem;
    }

    .default-name-fields,
    .default-email-field {
        max-width: 100%;
    }

    .default-signup-button {
        padding: 10px 30px;
        font-size: 0.95rem;
    }
}

.default-name-fields input[type="text"] {
    height: 50px;
}

.default-email-field input[type="email"] {
    height: 50px;
}
/* Footer Section Styles*/
.default-footer-section {
    background-color: #EAEAEE;
    padding: 40px 0;
    width: 100%;
}

    .default-footer-section .default-company-name {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: #333;
        font-family: 'Marcellus', sans-serif;
    }

.default-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

    .default-footer-links .default-footer-link {
        color: #1470AF;
        text-decoration: underline;
        font-size: 1rem;
    }

.default-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

    .default-contact-info .default-contact-email,
    .default-contact-info .default-contact-phone {
        color: #666;
        font-size: 0.95rem;
        margin: 0;
    }

.default-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

    .default-social-icons .default-social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        width: 50px;
        height: 50px;
    }

    .default-social-icons .default-svg-icon {
        width: 50px;
        height: 50px;
        fill: #333333;
    }

@media (max-width: 768px) {
    .default-footer-section .default-company-name {
        font-size: 1.5rem;
    }

    .default-footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .default-social-icons {
        gap: 15px;
    }

        .default-social-icons .default-social-link,
        .default-social-icons .default-svg-icon {
            width: 35px;
            height: 35px;
        }
}

@media (max-width: 480px) {
    .default-footer-section {
        padding: 30px 0;
    }

        .default-footer-section .default-company-name {
            font-size: 1.3rem;
        }

    .default-contact-info .default-contact-email,
    .default-contact-info .default-contact-phone {
        font-size: 0.9rem;
    }

    .default-social-icons {
        gap: 12px;
    }

        .default-social-icons .default-social-link,
        .default-social-icons .default-svg-icon {
            width: 30px;
            height: 30px;
        }
}

@media (max-width: 375px) {
    .default-footer-section .default-company-name {
        font-size: 1.2rem;
    }

    .default-social-icons {
        gap: 10px;
    }

        .default-social-icons .default-social-link,
        .default-social-icons .default-svg-icon {
            width: 25px;
            height: 25px;
        }
}
/* Footer Section Styles*/

/* Welcome Marquee Styles */
.default-welcome-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #000;
    padding: 12px 0;
    font-family: 'Marcellus', sans-serif;
    position: relative;
}

.default-welcome-marquee-track {
    display: flex;
    width: fit-content;
    animation: default-welcome-scroll 30s linear infinite;
}

.default-welcome-marquee-content {
    display: flex;
    white-space: nowrap;
    padding-right: 50px;
}

    .default-welcome-marquee-content span {
        color: black;
        font-size: 1rem;
        font-weight: 300;
        letter-spacing: 0.5px;
    }

@keyframes default-welcome-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.default-welcome-marquee-wrapper:hover .default-welcome-marquee-track {
    animation-play-state: paused;
}

/* Welcome Section Styles */

.default-welcome-section {
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .default-welcome-marquee-wrapper {
        position: relative;
        z-index: 3;
    }

    .default-welcome-container {
        position: relative;
        z-index: 2;
    }

    .default-welcome-marquee-wrapper {
        position: absolute;
        top: 30px;
        left: 0;
        width: 100%;
        overflow: hidden;
        background-color: transparent;
        padding: 12px 0;
        font-family: 'Marcellus', sans-serif;
        z-index: 3;
        margin: 0 20px;
        width: calc(100% - 40px);
    }

    .default-welcome-marquee-track {
        display: flex;
        width: fit-content;
        animation: default-welcome-scroll 30s linear infinite;
    }

    .default-welcome-marquee-content {
        display: flex;
        white-space: nowrap;
        padding-right: 50px;
    }

        .default-welcome-marquee-content span {
            color: black;
            font-size: 2rem;
            font-weight: 400;
            padding: 0 5px;
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

    @keyframes default-welcome-scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .default-welcome-marquee-wrapper:hover .default-welcome-marquee-track {
        animation-play-state: paused;
    }


    .default-welcome-container {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        margin-top: 50px;
    }


    .default-welcome-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }



    .default-welcome-button {
        background-color: #000;
        color: #fff;
        border: none;
        padding: 16px 35px;
        border-radius: 25px !important;
        font-size: 1rem;
        cursor: pointer;
        font-family: 'Marcellus', sans-serif;
        font-weight: 500;
        transition: background-color 0.3s ease;
        text-transform: none;
        letter-spacing: normal;
        box-shadow: none;
        display: inline-block;
        margin: 0 auto;
    }

        .default-welcome-button:hover {
            background-color: #333;
            transform: none;
            box-shadow: none;
        }

        .default-welcome-button:active {
            transform: none;
            background-color: #222;
        }


    @media (max-width: 768px) {
        .default-welcome-marquee-wrapper {
            top: 20px;
            margin: 0 15px;
            width: calc(100% - 30px);
            padding: 10px 0;
        }

        .default-welcome-marquee-content span {
            font-size: 1.5rem;
            padding: 0 10px;
        }

        .default-welcome-container {
            margin-top: 40px;
        }

        .default-welcome-button {
            padding: 14px 30px;
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .default-welcome-marquee-wrapper {
            top: 15px;
            margin: 0 10px;
            width: calc(100% - 20px);
            padding: 8px 0;
            background-color: rgba(0, 0, 0, 0.2);
        }

        .default-welcome-marquee-content span {
            font-size: 1.2rem;
            padding: 0 8px;
        }

        .default-welcome-container {
            margin-top: 35px;
        }

        .default-welcome-button {
            padding: 10px 25px;
            font-size: 0.9rem;
        }
    }


    .default-welcome-marquee-wrapper.transparent {
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    /* Welcome Section Styles */

    .default-button {
        background-color: black;
        color: white;
        border: none;
        border-radius: 50px !important;
        padding: 15px 50px;
        font-size: 16px;
        font-family: 'Marcellus', sans-serif;
        font-weight: 400;
        transition: all 0.3s ease;
        margin-top: 40px;
        text-transform: none;
        display: inline-block;
    }

        .default-button:hover {
            background-color: #333;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .default-button:hover {
            color: white !important;
            text-decoration: none !important;
        }

    .search_control {
        padding-right: 15px !important;
    }

    a:hover {
        text-decoration: none !important;
    }


/* ========================================
   Industry Icons Marquee Section
   ======================================== */

/* Industry Icons Marquee Section */
.industry-marquee-section {
    width: 100%;
    background-color: #EAEAEE;
    padding: 30px 0;
    overflow: hidden;
}

.industry-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.industry-marquee-track {
    display: flex;
    width: fit-content;
    animation: industry-scroll 30s linear infinite;
}

.industry-marquee-content {
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    text-align: center;
    transition: transform 0.3s ease;
}

    .industry-item:hover {
        transform: scale(1.05);
    }

    .industry-item img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 10px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

    .industry-item span {
        font-family: 'Marcellus', sans-serif;
        font-size: 0.9rem;
        color: #333;
        font-weight: 400;
        white-space: nowrap;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

@keyframes industry-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.industry-marquee-wrapper:hover .industry-marquee-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .industry-marquee-section {
        padding: 20px 0;
    }

    .industry-item {
        min-width: 100px;
    }

        .industry-item img {
            width: 60px;
            height: 60px;
        }

        .industry-item span {
            font-size: 0.8rem;
            max-width: 100px;
        }

    .industry-marquee-content {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .industry-marquee-section {
        padding: 15px 0;
    }

    .industry-item {
        min-width: 80px;
    }

        .industry-item img {
            width: 50px;
            height: 50px;
        }

        .industry-item span {
            font-size: 0.7rem;
            max-width: 80px;
        }

    .industry-marquee-content {
        gap: 20px;
    }
}