* {
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family: 'Lora', serif;
}

.text-brand-red {
    color: #E43D12;
    font-family: 'Lora', serif;
}

h3 span {
    color: blue;
    font-family: "Lora", serif !important;
}

@media (max-width: 786px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 23px;
    }
}

@media (max-width: 767px) {
    .why-card-body {
        padding: 1rem;
        height: auto !important;
    }

    .why-card-img-top {
        width: 100%;
        height: auto;
    }

    /* Scrollbar Track */
    .overlay::-webkit-scrollbar {
        width: 8px;
        /* Width of the scrollbar */
    }

    /* Scrollbar Thumb */
    .overlay::-webkit-scrollbar-thumb {
        background: #e9621f;
        /* Scrollbar color */
        border-radius: 4px;
        /* Rounded edges */
    }

    /* Scrollbar Thumb on Hover */
    .overlay::-webkit-scrollbar-thumb:hover {
        background: #f59d9d;
        /* Hover color */
    }

    /* Scrollbar Track Background */
    .overlay::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        /* Track background */
        border-radius: 4px;
        /* Rounded edges */
    }

    /* Custom Scrollbar Styles */
    .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 10px 20px;
        text-align: center;
        transition: all 0.5s ease-in-out;
        max-height: 116px;
        /* Adjust as needed */
        overflow-y: auto;
    }
}

/* Overlay setup */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    text-align: center;
    transition: all 0.5s ease-in-out;
    height: auto;
}

/* Title always visible */
.text-title {
    font-family: 'Lora';
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #EFB11D;
}

/* Hidden text initially */
.text-content {
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FDFDFC;

}

/* Reveal text on hover */
.image-container:hover .text-content {
    max-height: 300px;
    /* Adjust as needed */
}

/* Fix for the last image's height */
.col-lg-4 .image-container {
    min-height: 100%;
    min-width: 100%;
}

.row.g-4 .col-lg-8 .image-container {
    min-height: 100%;
    /* Ensure matching height for the large sections */
    min-width: 100%;
}

.faq-title {
    text-align: center;
    color: #212121;
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 600;
}

@media (max-width: 1024px) and (min-width: 768px) {
    #signageCarousel .carousel-indicators {
        bottom: 0px;
    }

    .why-carousel-controls,
    .testimonial-carousel-controls {
        top: -30px;
    }
}

.why-card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.why-card-body {
    flex: 1;
    padding: 1rem;
}

.carousel-inner {
    overflow: hidden;
}

@media (max-width: 767px) {
    .why-card-body {
        text-align: center;
    }

    .hero-title {
        margin-bottom: 1.5rem !important;
    }

    .faq-title {
        margin-bottom: 0px !important;
    }
}

@media (max-width: 991px) {
    br {
        display: none;
    }
}




.custom-header {
    background-color: #FCECE7;
    position: sticky;
    top: 0;
    z-index: 2000;
    /* Increased to ensure contents stay above mobile overlay */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.dropdown-menu {
    display: none;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    font-size: 1.25rem;
    color: #E43D12;
    border-bottom: 1px solid #b1b4b6;
    margin-bottom: 0.5rem;
}

.dropdown-item {
    transition: background-color 0.2s, color 0.2s;
    padding: 0.25rem 1rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #E43D12;
}

/* Arrow styling */
.dropdown-toggle::after {
    content: none !important;
}

.dropdown__arrow {
    transition: transform 0.3s ease;
    display: inline-block;
    transform: rotate(0deg);
    /* Default state: points down */
}

/* Hover rotation (Desktop) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown__arrow {
        transform: rotate(180deg);
    }
}

/* Open state rotation (Mobile/JS-triggered) */
.dropdown-toggle.show .dropdown__arrow {
    transform: rotate(180deg);
}

/* Desktop styles */
@media (min-width: 992px) {
    .dropdown-menu {
        position: absolute;
        left: 0;
        right: 0;
        width: max-content;
        transform: none;
    }

    .position-static {
        position: static !important;
    }

    .position-relative {
        position: relative !important;
    }
}

/* Mobile styles */
@media (max-width: 991px) {
    .dropdown-menu {
        position: relative;
        max-height: 300px;
        overflow-y: auto;
    }

    .dropdown-header {
        margin-top: 1rem;
    }

    .dropdown-item {
        padding-left: 1.5rem;
    }
}

/* Custom scrollbar styles for dropdown menus only */
@media (max-width: 991px) {
    .dropdown-menu {
        position: relative;
        max-height: 300px;
        overflow-y: auto;
        /* For Firefox */
        scrollbar-width: thin;
        scrollbar-color: #E43D12 #f1f1f1;
    }

    /* For Chrome, Safari, and Opera */
    .dropdown-menu::-webkit-scrollbar {
        width: 6px;
    }

    .dropdown-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .dropdown-menu::-webkit-scrollbar-thumb {
        background: #E43D12;
        border-radius: 10px;
    }

    .dropdown-menu::-webkit-scrollbar-thumb:hover {
        background: #d13910;
    }
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* home page */
.hero-banner {
    /* background: url("/frontend/Images/home/brandsignages-banner.webp") no-repeat center center; */
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1.hero-banner_title {
    font-family: 'Lora';
    font-weight: 700;
    font-size: 47px;
    letter-spacing: 0%;
    color: #fff;
}

.hero-banner p {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0%;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .hero-banner {
        height: auto;
        padding: 80px 20px 60px;
        text-align: center;
    }

    h1.hero-banner_title {
        font-size: 28px;
        line-height: 1.4;
    }

    .hero-banner p {
        font-size: 16px;
        line-height: 1.6;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .contact-btn {
        padding: 10px 25px;
        font-size: 16px;
    }
}


/* achievements-section  */

.showcase-image img {
    height: 385px;
}

.achievement-box {

    border-radius: 16px;
    overflow: hidden;
}

.achievement-box.years {
    background: #E43D12;
    color: #fff;
}

.achievement-box.height-270 {
    height: 270px;
}

.achievement-box.height-582 {
    height: 582px;
}

.achievement-box.Deliveries {
    background: #FDF7E8;
    height: 296px;
}

.achievement-box.client-base {
    background: #FCECE7;
    height: 296px;
}

.achievement-box h3 {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 64px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
}

.achievement-box p {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
}

.pointing {
    background: url('/frontend/Images/home/point.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.achievements-section h2 {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 576px) {
    .achievement-box.height-270 {
        height: 160px;
    }

    .achievement-box.Deliveries {
        height: 160px;
        margin-bottom: 18px;
    }

    .achievement-box.client-base {
        height: 160px;
    }

    .achievement-box.height-582 {
        height: 450px;
    }

    .achievements-section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}


/* point  */
.point {
    height: 704px;
}


.pulse-point {
    position: relative;
    width: 60px;
    height: 60px;
    background-size: contain;
    /* overflow: hidden; */

}


.pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
    z-index: 0;
    animation: pulseRing 1.5s ease-out infinite;
}

.pulse-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: #E63910;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 1;
    animation: pulseDot 1.5s ease-in-out infinite;
}

.pulse-hover-img {
    position: absolute;
    height: 134px;
    -o-object-fit: contain;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    z-index: 2;
}

.pulse-point:hover .pulse-hover-img {
    opacity: 1;
}

.ledx {
    margin-left: 30%;
    top: 14%;
}

.ledx-img {
    left: 32%;
    bottom: 25%;
    width: 224px;
}

.outdoorx {
    margin-left: 57.5%;
    top: 9%;
    ;
}

.outdoorx-img {
    left: -261px;
    bottom: -63px;
    width: 280px;
}

.digitalx {
    margin-left: 64%;
    top: 28%;
}

.digitalx-img {
    left: -261px;
    bottom: -63px;
    width: 280px;
}

.metalx {
    margin-left: 82%;
    top: 31%;
}

.metalx-img {
    left: -187px;
    bottom: -108px;
    width: 290px;
}

.acrylicx {
    margin-left: 94%;
    top: 21%;
}

.acrylicx-img {
    left: -198px;
    bottom: 39px;
    width: 280px;
}

/* Pulse ring animation: expands and fades */
@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0.4;
    }
}

/* Red dot animation: subtle bounce */
@keyframes pulseDot {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@media (max-width: 576px) {
    .pointing {
        background: url('/frontend/Images/home/point.webp');
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
    }

    .point {
        height: 500px;
    }

    .ledx-img {
        left: 32%;
        bottom: 17%;
        width: 180px;
    }

    .outdoorx-img {
        left: -200px;
        bottom: -64px;
        width: 215px;
    }

    .digitalx {
        margin-left: 57%;
        top: 22%;
    }

    .digitalx-img {
        left: -186px;
        bottom: -60px;
        width: 200px;

    }

    .metalx {
        margin-left: 69%;
        top: 35%;

    }

    .metalx-img {
        left: -152px;
        bottom: -111px;
        width: 200px;
    }

    .acrylicx {
        margin-left: 88%;
        top: 12%;
    }

    .acrylicx-img {
        left: -146px;
        bottom: 18px;
        width: 180px;
    }

    .pulse-point {
        width: 50px;
        height: 50px;
        background-size: contain;
    }
}

/* we deliver section */



.we-deliver {
    background: url('/frontend/Images/home/we-delivar-bg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
    color: #fff;
    padding: 40px 0px;

}

.we-deliver h2 {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    margin-top: 10px;
}

.deliver-box {
    backdrop-filter: blur(45px);
    background: #FFFFFF33;
    border-radius: 16px;
    padding: 20px;
    margin: 12px 0px;
    min-height: 308px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: center;
}

.deliver-box img {
    width: 84px;
    height: 84px;
    margin-bottom: 12px;
}

.deliver-box h3 {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #E43D12;
}

.deliver-box p {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
}

.we-deliver .deliver-box .button {
    gap: 10px;
    border-radius: 8px;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
    background: #E43D12;
    text-decoration: unset;
    color: #fff;
    font-family: Roboto;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
}

@media (max-width: 576px) {
    .deliver-box.align-items-center {
        align-items: center !important;
    }

    .we-deliver h2 {
        text-align: center;
        font-size: 28px;
        margin: 0px 0px 20px;
    }

    .we-deliver {
        margin: 40px 0;
    }

}

/* business growth section */

.bgrowth-slider-section {
    padding: 60px 20px 0px;
    text-align: center;
    background: #fff;
    position: relative;
}

.bgrowth-header h2 {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;

    margin-bottom: 10px;
}

.bgrowth-header p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;

}

.bgrowth-swiper,
.bgrowth-swiper-2 {
    margin: 0 auto;
    position: relative;
    padding-top: 40px !important;
    /* Space for top-right pagination */
}

.swiper-pagination {
    top: -4px !important;
    left: 48% !important;
    padding: 0 10px;
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
}

.bgrowth-swiper .swiper-wrapper,
.bgrowth-swiper-2 .swiper-wrapper {
    height: auto;
    /* remove fixed height to allow content to flow */
    padding-bottom: 30px;
}

.bgrowth-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.bgrowth-img {
    width: 100%;
    height: 318px;
    object-fit: cover;
    display: block;
}

.bgrowth-img-2 {
    width: 100%;
    height: 447px;
    object-fit: cover;
    display: block;
}



.bgrowth-content {
    padding: 20px;
    border-radius: 20px;
    position: relative;
    background: #fff;
    top: -14px;
}

.bgrowth-content h3 {
    color: #E43D12;
    margin-bottom: 10px;
    font-family: 'Lora';
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
}

.bgrowth-content p {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #212121;
}

@media (max-width: 576px) {
    .bgrowth-slider-section {
        padding: 20px 15px 20px;
    }

    .bgrowth-header h2 {
        font-size: 28px;
        line-height: 130%;
        margin-bottom: 15px;
    }

    .bgrowth-header p {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .bgrowth-swiper,
    .bgrowth-swiper-2 {
        padding-top: 30px !important;
    }

    .swiper-pagination {
        top: -8px !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto;
        text-align: center;
        font-size: 16px;
        padding: 10px;
    }

    .bgrowth-card {
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .bgrowth-img {
        height: 200px;
    }



    .bgrowth-content {
        padding: 16px;
        top: -10px;
    }

    .bgrowth-content h3 {
        font-size: 18px;
        line-height: 130%;
        margin-bottom: 8px;
    }

    .bgrowth-content p {
        font-size: 14px;
        line-height: 140%;
    }
}

/* new contus section  */
.new-contacts-section {
    background: url('/frontend/Images/home/contact-us-bg.webp') no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    padding: 40px 20px;
    margin: 0px auto 0px;
    position: relative;
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
}

.new-contacts-section-overlay {

    padding: 40px 140px;

}

.new-contacts-section-text {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 20px;
}

.new-contacts-section-button {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;

    background-color: #E43D12;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.new-contacts-section-button:hover {
    background-color: #d32f2f;
}

@media only screen and (max-width: 767px) {
    .new-contacts-section {
        border-radius: 12px;
        padding: 30px 15px;
        margin: 50px 0px 10px;
    }

    .new-contacts-section-overlay {
        padding: 20px 15px;
    }

    .new-contacts-section-text {
        font-size: 18px;
        line-height: 140%;
        margin-bottom: 20px;
    }

    .new-contacts-section-button {
        font-size: 16px;
        padding: 10px 20px;
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
        display: block;
    }
}

/* instant price section */
.scroll-loop-section {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
}

.scroll-loop-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.scroll-loop-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    color: #333;
}

.scroll-loop-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    border-radius: 20px;
    margin: 0 auto 60px;
}

.scroll-loop-track {
    display: flex;
    animation: scrollLoopLeft 60s linear infinite;
    gap: 20px;
    width: max-content;
}


.scroll-card {
    border-radius: 20px;
    height: 480px;
    overflow: hidden;
    flex-shrink: 0;
    text-align: center;
}

.scroll-card img {
    height: 480px;
    width: 397px;
    object-fit: cover;
}

.instant-pricing .scroll-card p {
    font-family: 'Lora';
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    background: linear-gradient(177.82deg, rgba(217, 217, 217, 0) 13.85%, #E43D12 76.15%);
    position: relative;
    padding: 13px;
    top: -92px;
    color: #FFFFFF;
}

.instant-pricing h2 {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    padding: 0 80px;

}

.instant-pricing p {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    margin: 40px 0;

}

@keyframes scrollLoopLeft {
    100% {
        transform: translateX(0%);
    }

    0% {
        transform: translateX(-33.33%);
    }
}

.scroll-loop-wrapper:hover .scroll-loop-track {
    animation-play-state: paused;
}

@media (max-width: 576px) {
    .instant-pricing {
        padding: 0 0px;
    }

    .instant-pricing h2 {
        font-size: 28px;
        line-height: 130%;
        padding: 0 10px;
    }

    .instant-pricing p {
        font-size: 20px;
        line-height: 130%;
        margin: 20px 0 30px;
        padding: 0 10px;
    }

    .scroll-loop-wrapper {
        margin: 0 auto 30px;
        border-radius: 12px;
    }

    .scroll-loop-track {
        gap: 12px;
        animation: scrollLoopLeft 40s linear infinite;
    }

    .scroll-card {
        width: 160px !important;
        height: 240px !important;
    }

    .scroll-card img {
        width: 100% !important;
        height: 100% !important;
        border-radius: 12px;
    }

    .instant-pricing .scroll-card p {
        font-size: 14px !important;
        top: -48px !important;
        padding: 6px 8px !important;
        line-height: 1.2;
    }
}


/* whychoose  */
.why-choose-signage {
    padding: 60px 20px;
    background: #fff;
    font-family: sans-serif;
}

.why-choose-container {
    margin: 0 auto;
    text-align: center;
}

.why-title {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 15px;
}

.why-subtitle {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 25px;
}

.why-box {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 20px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
    text-align: left;
    box-shadow: 0px 0px 45px 0px #00000017;

}

.why-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.why-box h3 {
    color: #E43D12;
    font-family: Lora;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    margin-bottom: 10px;
}

.why-box p {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;

    color: #212121;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/frontend/Images/home/portfolio-bg.webp') no-repeat center/cover;
    border-radius: 12px;
}

.cta-btn {
    background: #fff;
    color: #E43D12;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

@media (max-width: 576px) {
    .why-choose-signage {
        padding: 40px 0px;
    }

    .why-title {
        font-size: 28px;
        line-height: 130%;
        margin-bottom: 15px;
    }

    .why-subtitle {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-box {
        padding: 20px;
    }

    .why-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }

    .why-box h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .why-box p {
        font-size: 14px;
        line-height: 140%;
    }

    .cta-box {
        height: 180px;
    }

    .cta-btn {
        font-size: 13px;
        padding: 10px 22px;
    }
}

/* client section  */

.new_client_section {
    margin: 0px auto 60px;
    background: #fff;
}

.new_client_section-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
    gap: 3rem;
}


.new_client_section-image img {
    width: 100%;
    height: 435px;
    border-radius: 20px;
    object-fit: cover;
}

.new_client_section-scrolling {
    overflow: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.new_client_section-title {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    margin: 40px 0px
}

.new_client_section-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.new_client_section-row {
    display: flex;
    white-space: nowrap;
}

.new_client_section-client {
    flex: 0 0 auto;
    background: #f8f8f8;
    margin: 0 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.new_client_section-client img {
    width: 166.5px;
    height: 94.80000305175781px;
    object-fit: contain;
}

/* Animations */
.new_client_section-row-1 {
    animation: new_client_section-scrollLeft 40s linear infinite;
}

.new_client_section-row-2 {
    animation: new_client_section-scrollRight 35s linear infinite;
}

.new_client_section-row-3 {
    animation: new_client_section-scrollLeft 30s linear infinite;
}

@keyframes new_client_section-scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes new_client_section-scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .new_client_section-content {
        flex-direction: column;
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .new_client_section-image,
    .new_client_section-scrolling {
        width: 100%;
        padding: 10px;
    }

    .new_client_section-title {
        text-align: center;
    }

    .new_client_section-client {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin: 0 0.5rem;
    }


    .new_client_section-wrapper {
        gap: 1rem;
    }

    .new_client_section-row-1 {
        animation: new_client_section-scrollLeft 25s linear infinite;
    }

    .new_client_section-row-2 {
        animation: new_client_section-scrollRight 20s linear infinite;
    }

    .new_client_section-row-3 {
        animation: new_client_section-scrollLeft 15s linear infinite;
    }
}

@media (max-width: 576px) {
    .new_client_section {
        margin: 0 auto 40px;
        padding: 0 15px;
    }

    .new_client_section-title {
        font-size: 26px;
        line-height: 130%;
        margin: 30px 0 20px;
        padding: 0 10px;
    }

    .new_client_section-image img {
        height: 240px;
        border-radius: 12px;
    }

    .new_client_section-wrapper {
        gap: 12px;
    }

    .new_client_section-row {
        gap: 8px;
    }

    .new_client_section-client {
        margin: 0 6px;
        padding: 6px;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
        background: #fafafa;
    }

    .new_client_section-client img {
        width: 120px;
        height: 65px;
        object-fit: contain;
    }

    .new_client_section-scrolling {
        padding-top: 15px;
    }

    .new_client_section-row-1 {
        animation: new_client_section-scrollLeft 20s linear infinite;
    }

    .new_client_section-row-2 {
        animation: new_client_section-scrollRight 18s linear infinite;
    }

    .new_client_section-row-3 {
        animation: new_client_section-scrollLeft 16s linear infinite;
    }
}

/* testimonial section  */
.new_testimonial-swiper-section {
    margin: 0px auto;
    background: #FDF7E8;
    padding: 60px 20px;
}

.new_testimonial-swiper-section h2 {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 40px;
}

.new_testimonial-swiper .description {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
}

.new_testimonial-swiper img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
}

.new_testimonial-swiper .name {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;
    color: #E43D12;
}

.new_testimonial-swiper .degignation {
    font-family: Roboto;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: #2121218C;
}

.new_testimonial-swiper {
    width: 950px;
}

.new_testimonial-swiper-section .position-relative {
    position: relative;
}

.new_testimonial-button-prev,
.new_testimonial-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.new_testimonial-button-prev {
    left: 0px;
}

.new_testimonial-button-next {
    right: 0px;
}

.new_testimonial-button-prev img,
.new_testimonial-button-next img {
    transition: transform 0.3s ease;
}

.new_testimonial-button-prev:hover img,
.new_testimonial-button-next:hover img {
    transform: scale(1.1);
}

@media (max-width: 576px) {
    .new_testimonial-swiper-section {
        padding: 40px 10px 70px;
    }

    .new_testimonial-swiper-section h2 {
        font-size: 28px;
        line-height: 130%;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .new_testimonial-swiper {
        width: 100%;
    }

    .new_testimonial-swiper .description {
        font-size: 16px;
        line-height: 140%;
    }

    .new_testimonial-swiper .name {
        font-size: 18px;
    }

    .new_testimonial-swiper .degignation {
        font-size: 14px;
    }

    .new_testimonial-swiper img {
        width: 48px;
        height: 48px;
    }

    .swiper-slide>div {
        padding: 20px !important;
    }

    .new_testimonial-button-prev,
    .new_testimonial-button-next {
        top: unset;
        bottom: -45px;
        transform: none;
    }

    .new_testimonial-button-prev {
        left: 35%;
    }

    .new_testimonial-button-next {
        right: 35%;
    }

    .new_testimonial-button-prev img,
    .new_testimonial-button-next img {
        width: 32px;
        height: 32px;
    }
}


/* custom enquery  */
.custom-enquery-img {
    width: 608px;
    height: 490px;
    border-radius: 20px;
    object-fit: cover;
}

.order-custom-signage-form h2 {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;

}

.order-custom-signage-form p {
    font-family: Roboto;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    margin: 25px 0px
}

.order-custom-signage-form .fromfiled {
    padding: 20px 15px;
    background: #FFFFFF;
    box-shadow: 0px 0px 35px 0px #00000014;
    /* color: #00000080; */
}

.inquery-from-section {
    margin: 60px auto;
}

@media (max-width: 576px) {
    .inquery-from-section {
        margin: 40px auto;
    }

    .order-custom-signage-form h2 {
        font-size: 28px;
        text-align: center;
        margin: 20px 0;
    }

    .order-custom-signage-form p {
        text-align: center;
    }

    .mobile.align-items-start {
        align-items: center !important;
        flex-direction: column;
        margin: 25px auto 0;
    }
}



/* Sign Boards section */

.Sign_Boards {
    background: url('/frontend/Images/home/signages-borad-bg.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0 60px;
    color: #fff;
    padding: 40px 0px;
}

.Sign_Boards h2 {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    margin-top: 10px;
}

.Sign_Boards p {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    margin: 40px 0px;

}

.Sign_Boards .right-col {
    padding-left: 60px;
    padding-top: 60px;
}

.Sign_Boards-box {
    backdrop-filter: blur(45px);
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    margin: 12px 0px;
    min-height: 248px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: center;
}

.Sign_Boards-box img {
    width: 65px;
    height: 65px;
    margin-bottom: 12px;
}

.Sign_Boards-box h3 {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #E43D12;
}

.Sign_Boards-box p {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    margin: 0;
    color: #212121;
    text-align: left;
}

.Sign_Boards .Sign_Boards-box .button {
    gap: 10px;
    border-radius: 8px;
    padding: 10px 15px;
    background: #E43D12;
    text-decoration: unset;
    color: #fff;
    font-family: Roboto;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
}


@media (max-width: 576px) {
    .Sign_Boards-box.align-items-center {
        align-items: center !important;
    }

    .Sign_Boards h2 {
        text-align: center;
        font-size: 28px;
        margin: 0px 0px 20px;
    }

    .Sign_Boards {
        margin: 0px 0 40px;
    }

    .Sign_Boards .right-col {
        padding: 10px;
    }

    .Sign_Boards-box {
        margin: 6px 0px;
    }

    .Sign_Boards p {
        font-family: 'Roboto';
        font-weight: 400;
        font-size: 16px;
        line-height: 130%;
        letter-spacing: 0%;
        margin: 20px auto;
        text-align: center;
    }

    .Sign_Boards-box p {
        text-align: center;
    }
}


/* led signs manufacturing section */
.led-signs-manufacturing {
    margin: 0px auto 60px;
}

ul.brand-list {
    font-family: Roboto;
    font-weight: 400;
    font-size: 20px;
    line-height: 151%;
    letter-spacing: 0%;
    color: #212121;
}

.led-signs-manufacturing .brand-description {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #212121;
    margin-bottom: 40px;
}

.led-signs-manufacturing .custom-btn {
    padding: 10px 28px;

}

/* new statsh section */
.new_custom-stats-section {
    background-color: #e63912;
    padding: 100px;
}

.new_custom-stats-number {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 64px;
    line-height: 120%;

    margin-bottom: 10px;
}

.new_custom-stats-label {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;

}

.new_custom-divider-left,
.new_custom-divider-right {
    position: absolute;
    top: 50%;
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%);
}

.new_custom-divider-left {
    left: 0;
}

.new_custom-divider-right {
    right: 0;
}

@media (max-width: 576px) {
    .new_custom-stats-section {
        padding: 60px 20px;
    }

    .new_custom-stats-number {
        font-size: 60px;
        line-height: 130%;
        margin-bottom: 8px;
    }

    .new_custom-stats-label {
        font-size: 20px;
        line-height: 140%;
    }

    .new_custom-divider-left,
    .new_custom-divider-right {
        height: 60px;
    }
}


/* new custom why choose section */
.new_custom-why-choose {
    color: #000;
    margin: 60px auto;
}

.new_custom-heading {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;

}

.new_custom-box {
    border-radius: 20px;
    overflow: hidden;
}

.new_custom-light-box {
    background-color: #FCECE7;
    padding: 30px;
}

.new_custom-light-box-3 {
    background-color: #FDF7E8;
    padding: 30px;
}

.new_custom-box p {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;

}

.new_custom-box h4 {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0%;

}

.new_custom-image-box {
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.new_custom-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    width: 100%;
}

.new_custom-title {
    font-weight: 700;
    font-size: 20px;
    margin-top: 20px;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .new_custom-title {
        margin-top: 10px;
        font-size: 18px;
    }

    .new_custom-light-box,
    .new_custom-overlay {
        padding: 20px;
    }

    .new_custom-heading {
        font-size: 30px;
    }
}


/* Maximum Impact Section */
.Maximum-Impact-section {
    background: url('/frontend/Images/home/maximum-impact-bg.png') no-repeat center center/cover;
    padding: 60px 0px;
    margin: 60px auto 60px;
}

.Maximum-Impact-section h2 {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}

.Maximum-Impact-section p {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
    margin: 40px 0px 90px;

}

.Maximum-Impact-swiper-slide {
    background-position: center;
    background-size: cover;
    width: 250px;
}

.Maximum-Impact-swiper-slide img {
    display: block;
    width: 100%;
    /* -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #0002, #0004); */
}

.swiper-slide.Maximum-Impact-swiper-slide.swiper-slide-visible.swiper-slide-active {
    margin-top: -3%;
}

@media (max-width: 576px) {
    .Maximum-Impact-section {
        padding: 40px 15px;
        margin: 40px auto 40px;
    }

    .Maximum-Impact-section h2 {
        font-size: 28px;
        line-height: 130%;
        margin-bottom: 20px;
    }

    .Maximum-Impact-section p {
        font-size: 16px;
        line-height: 140%;
        margin: 20px 0 80px;
    }

    .Maximum-Impact-swiper-slide {
        width: 200px;
    }
}

/* We Elevate Brands Section */
.We-Elevate-Brands-section {
    background-color: #fff;
    padding: 60px 20px;
}

.We-Elevate-Brands-heading {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;

}

.We-Elevate-Brands-subheading {
    font-size: 1.25rem;
    color: #000;
}

.We-Elevate-Brands-swiper {
    width: 100%;
    padding: 60px 0 20px
}

.We-Elevate-Brands-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.We-Elevate-Brands-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    box-shadow: 2px 2px 26px 4px #f38e791f !important;
    border-color: #f38e793b;
}


.We-Elevate-Brands-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.We-Elevate-Brands-card img {
    width: 100%;
    height: 261px;
    object-fit: cover;
    border-radius: 25px;
    padding: 16px;
}

.We-Elevate-Brands-title,
.We-Elevate-Brands-title a {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #E43D12;
    text-decoration: unset;

}

.We-Elevate-Brands-text {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #212121;

}

/* Align navigation buttons to top-right of the slider */
/* --- Navigation Wrapper --- */
.We-Elevate-Brands-nav {
    position: absolute;
    top: -9px;
    right: 0;
    margin: 10px 10px 0 0;
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* --- Common Button Styles --- */
.We-Elevate-Brands-button-prev,
.We-Elevate-Brands-button-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 10px rgb(228 61 18 / 35%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* --- Arrow Icons --- */


.We-Elevate-Brands-button-prev::after,
.We-Elevate-Brands-button-next::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(-135deg);
    /* default is left arrow */
    transition: border-color 0.3s ease;
}

/* Make next button a right arrow */
.We-Elevate-Brands-button-next::after {
    transform: rotate(45deg);
}

/* --- Hover Effect --- */
.We-Elevate-Brands-button-prev:hover,
.We-Elevate-Brands-button-next:hover {
    background-color: #e63912;
}

.We-Elevate-Brands-button-prev:hover::after,
.We-Elevate-Brands-button-next:hover::after {
    border-color: #fff;
}

/* --- Disabled State --- */
.swiper-button-disabled {
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
}

/* Disabled button icon color */
.swiper-button-disabled::after {
    border-color: #5d5b5b;
}

.btn-we-elevate {
    background-color: #E43D12;
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
}

@media (max-width: 768px) {
    .We-Elevate-Brands-section {
        background-color: #fff;
        padding: 0px 10px;
    }

    .We-Elevate-Brands-swiper {
        padding: 50px 0 20px;
    }

    .We-Elevate-Brands-heading {
        font-size: 28px;
        line-height: 130%;
        margin-bottom: 20px;
    }

    .We-Elevate-Brands-card img {
        height: 200px;
    }

    .We-Elevate-Brands-title {
        font-size: 20px;
    }

    .We-Elevate-Brands-text {
        font-size: 16px;
    }

    .We-Elevate-Brands-button-prev,
    .We-Elevate-Brands-button-next {
        width: 36px;
        height: 36px;
        background-color: #fff;
        color: #333;
        border-radius: 50%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        font-size: 14px;
    }

    .We-Elevate-Brands-button-prev:hover,
    .We-Elevate-Brands-button-next:hover {
        background-color: #d03801;
        color: #fff;
    }

    .We-Elevate-Brands-button-prev::after,
    .We-Elevate-Brands-button-next::after {
        font-size: 16px;
    }

    .We-Elevate-Brands-nav {
        position: absolute;
        top: -9px;
        right: 0;
        margin: 10px 10px 0 0;
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .We-Elevate-Brands-button-prev::after,
    .We-Elevate-Brands-button-next::after {
        content: '';
        display: inline-block;
        width: 8px;
        height: 8px;
        border-top: 2px solid #333;
        border-right: 2px solid #333;
        transform: rotate(-135deg);
        /* default is left arrow */
        transition: border-color 0.3s ease;
    }

    /* Make next button a right arrow */
    .We-Elevate-Brands-button-next::after {
        transform: rotate(45deg);
    }

    /* --- Hover Effect --- */
    .We-Elevate-Brands-button-prev:hover,
    .We-Elevate-Brands-button-next:hover {
        background-color: #e63912;
    }

    .We-Elevate-Brands-button-prev:hover::after,
    .We-Elevate-Brands-button-next:hover::after {
        border-color: #fff;
    }

    /* --- Disabled State --- */
    .swiper-button-disabled {
        opacity: 0.7;
        cursor: default;
        pointer-events: none;
    }

    /* Disabled button icon color */
    .swiper-button-disabled::after {
        border-color: #5d5b5b;
    }
}


.BuiltToLast-section {
    color: white;
    padding: 60px 20px;
    text-align: center;
    background-size: cover !important;

}

.BuiltToLast-container {
    max-width: 1200px;
    margin: 0 auto;
}

.BuiltToLast-heading {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.BuiltToLast-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: #fff;
}

.BuiltToLast-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.BuiltToLast-img {
    max-width: 100%;
    width: 381px;
    /* border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); */
    height: 381px;
}

/* Responsive */
@media (max-width: 768px) {
    .BuiltToLast-images {
        width: 100%;
    }

    .BuiltToLast-heading {
        font-size: 22px;
    }

    .BuiltToLast-description {
        font-size: 14px;
    }

    .BuiltToLast-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
}

.other-cities-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.other-cities-card {
    flex: 1 1 30%;
    max-width: 32%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.other-cities-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.other-cities-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.other-cities-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(201, 65, 0, 0.6), rgba(255, 255, 255, 0));
}

.other-cities-title {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    z-index: 2;
    text-align: center;
    font-family: 'Lora';
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;

}

.other-cities-section h2 {
    font-family: 'Lora';
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;

}

@media (max-width: 767px) {
    .other-cities-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


.fs-20 {
    font-size: 20px;
}

@media (max-width: 767px) {
    .fs-20 {
        font-size: 18px;
    }
}

.pt-60 {
    padding-top: 60px !important;
}

.new-lighbox {
    a {
        text-decoration: none;
        color: #000;
        align-items: center;
        text-align: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 15px;
        background: #fff;
        box-shadow: 0 8px 35px -5px rgb(228 61 18 / 11%);
        border-radius: 10px;
        padding: 0 0 20px;
        overflow: hidden;
    }

}

.new-recent-works {
    .box {
        padding: 0px 0px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 35px 0 rgb(228 61 18 / 12%);
        margin-bottom: 30px;
    }

    h4 {
        font-size: 20px;
        font-weight: 600;
        margin-top: 10px;
    }

    a {
        color: #E43D12;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 20px;

    }

    a:hover {
        color: #ff5a2c;
        text-shadow: 0 0 8px rgba(228, 61, 18, 0.1),
            0 0 8px rgba(228, 61, 18, 0.2);
    }

}

.BuiltToLast-images {
    .add-text {
        display: flex;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 20px 35px 0 rgb(228 61 18 / 12%);
        border-radius: 20px;
        overflow: hidden;

        a {
            text-decoration: none;
            color: #E43D12;
            font-size: 20px;
            margin: 20px auto;
            font-weight: 700;
        }
    }
}

@media (max-width: 767px) {
    .new-recent-works {
        h4 {
            font-size: 18px;
        }

        a {
            font-size: 18px;
        }
    }
}


.banner-for-casestuides {
    position: relative;
    width: 100%;
    height: 70vh;
    /* adjust height as needed */
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* for any text inside */
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .banner-for-casestuides {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .banner-for-casestuides {
        height: 50vh;
        background-position: top center;
    }
}

@media (max-width: 480px) {
    .banner-for-casestuides {
        height: 40vh;
    }
}

.scroll-loop-wrap {
    border-radius: 0px;

    .gridbox {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .scroll-card-1 {
        height: auto;
        border-radius: 6px;

        img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
    }
}

@media (max-width: 767px) {
    .gridbox {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .scroll-card {
        width: 100%;

        img {
            height: auto;
        }
    }
}


.newly-bannersection {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 600px;
    margin-bottom: 50px;

    .bar {
        background: #e43d12;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
        padding: 11px;
    }

    .slider-wrapper {
        flex: 1;
        max-width: 42%;
        position: relative;
    }

    .main-slider {
        position: relative;
        width: 100%;
        height: 82%;
    }

    .slide {
        display: none;
        width: 100%;
        height: 100%;
    }

    .slide.active {
        display: block;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px 20px 0 0;
    }

    .nav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s;
        border: 1px solid #e43d12;
    }

    .nav-arrow:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    .prev {
        left: 0px;
    }

    .next {
        right: 0px;
    }

    .thumbnails {
        display: flex;
        gap: 10px;
        padding: 20px;
        overflow-x: auto;
        background: #111;
    }

    .thumb {
        width: 90px;
        height: 70px;
        object-fit: cover;
        border-radius: 6px;
        cursor: pointer;
        opacity: 0.6;
        border: 3px solid transparent;
        transition: all 0.3s;
    }

    .thumb.active,
    .thumb:hover {
        opacity: 1;
        border: 3px solid #e74c3c;
    }

    .content {
        flex: 1;
        min-width: 300px;
        padding: 0px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .content h1 {
        color: #1a1a1a;
    }

    .subtitle {
        font-size: 19px;
        color: #555;
        margin-bottom: 0px;
        line-height: 1.6;
    }

    .divider {
        height: 1px;
        background: #eee;
        margin: 20px 0;
    }

    .features {
        list-style: none;
        margin-bottom: 20px;
    }

    .features li {
        font-size: 17.5px;
        padding-left: 32px;
        position: relative;
        margin-bottom: 13px;
        line-height: 1.6;
    }

    .features li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #e74c3c;
        font-size: 24px;
        font-weight: bold;
    }

    .buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .btn {
        background: #e74c3c;
        color: #fff;
        padding: 10px 30px;
        font-size: 17px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 8px;
        box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
        transition: all 0.3s;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(231, 76, 60, 0.5);
    }
}

@media (max-width: 768px) {
    .newly-bannersection {
        margin-bottom: 20px;

        .content {
            padding: 55px 30px 10px;
        }

        .slider-wrapper {
            max-width: 100%;
            padding: 0 10px;
        }

        .content h1 {
            font-size: 32px;
        }

        .nav-arrow {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }

        .btn {
            padding: 10px 24px;
        }
    }
}


.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.image-item {
    flex: 1 1 45%;
    text-align: center;
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.image-item p {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .image-item {
        flex: 1 1 100%;
    }
}

.material-img img {
    width: 75%;
    height: auto;
}

@media (max-width: 768px) {
    .material-img img {
        width: 100%;
    }
}


.slide.active {
    display: block;
}

.shop-image {
    width: 55%;
    display: block;
    margin: 20px auto;
}

@media (max-width: 768px) {
    .shop-image {
        width: 100%;
    }
}

/* 📱 Signage LED Box */

.signage-box {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 35px;
    margin: 50px 0;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
}

.signage-box h3,
.signage-box h4 {
    margin-bottom: 20px;
    color: #111;
}

.signage-box p,
.signage-box ul li {
    font-size: 18px;
    line-height: 1.65;
    color: #444;
}

.signage-box ul {
    padding-left: 20px;
}

.signage-box a {
    color: #E43D12;
    text-decoration: none;
    font-weight: 600;
}

.signage-box a:hover {
    text-decoration: underline;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 576px) {
    .signage-box {
        padding: 18px;
        margin: 20px 0;
        border-radius: 8px;
    }

    .signage-box p,
    .signage-box ul li {
        font-size: 18px;
        line-height: 1.55;
    }

    .signage-box h3,
    .signage-box h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }
}



/* NEW LAYOUT FOR TWO-COLUMN DESIGN */
.signage-product-layout {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

/* LEFT COLUMN WIDTH */
.signage-product-layout .content-column {
    width: 55%;
}

/* RIGHT GALLERY STYLES */
.signage-product-layout .product-gallery {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-gallery .main-preview img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.product-gallery .main-preview img:hover {
    transform: scale(1.02);
}

.thumbnail-row {
    display: flex;
    gap: 12px;
}

.thumbnail-row img {
    width: 31%;
    height: 105px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    opacity: .75;
    transition: 0.3s;
}

.thumbnail-row img:hover {
    opacity: 1;
    transform: scale(1.05);
}


/* --------------------- */
/* RESPONSIVE UPDATE     */
/* --------------------- */

@media (max-width: 992px) {
    .signage-product-layout {
        flex-direction: column;
    }

    .signage-product-layout .content-column,
    .signage-product-layout .product-gallery {
        width: 100%;
    }

    /* FIX: Ensure full image visible on mobile */
    .product-gallery .main-preview img {
        height: auto !important;
        object-fit: contain !important;
        max-height: 400px;
    }

    .thumbnail-row img {
        height: 95px;
        object-fit: cover;
    }
}

/* On mobile: Gallery first, Text second */
@media (max-width: 992px) {
    .signage-product-layout {
        flex-direction: column-reverse !important;
    }
}

/* Youtube Video Embed Responsive */

.video-image-container {
    position: relative;
    display: inline-block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.55);
    /* lighter base */
    color: #fff;
    font-size: 40px;
    /* slightly smaller */
    padding: 18px 28px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    /* subtle depth */
    transition: all 0.25s ease;
    animation: pulse 2s infinite;
    /* subtle pulse */
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Pulse animation */
@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Popup */
.yt-popup {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    /* darker overlay for better focus */
    z-index: 9999;
}

.yt-wrapper {
    width: 85%;
    max-width: 850px;
    position: relative;
}

.close-btn {
    position: absolute;
    right: -10px;
    top: -40px;
    font-size: 36px;
    /* slightly smaller */
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

.yt-wrapper iframe {
    width: 100%;
    height: 470px;
    border-radius: 8px;
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
    .play-overlay {
        font-size: 32px;
        padding: 14px 22px;
    }

    .yt-wrapper {
        width: 92%;
    }

    .yt-wrapper iframe {
        height: 260px;
    }

    .close-btn {
        top: -30px;
        right: -5px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .play-overlay {
        font-size: 28px;
        padding: 12px 18px;
    }

    .yt-wrapper iframe {
        height: 200px;
    }

    .close-btn {
        font-size: 26px;
        top: -25px;
    }
}




.thumbnails-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.thumbnails-left img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
}

/* Mobile only – sweet spot size */
@media (max-width: 768px) {
    .slide-wrapper {
        flex-direction: column;
    }

    .main-slider-wrapper {
        order: 1;
    }

    .thumbnails-left {
        order: 2;
        flex-direction: row !important;
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
        flex-wrap: wrap;
    }

    .thumbnails-left img {
        width: 105px !important;
        /* perfect size – looks premium but never too big */
        height: 105px !important;
        border: 2px solid #ddd;
        border-radius: 6px;
    }
}


.price-big {
    margin: 0px 0 8px;
    font-size: 22px;
    font-weight: 400;
    color: #e74c3c;
}

.price-big small {
    font-size: 22px;
    color: #555;
    font-weight: 400;
}

.features-list {
    list-style: none;
    padding-left: 0;
    margin: 8px 0 25px 0 !important;
}

.features-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    /* ← reduced from 14px */
    font-size: 20px;
    line-height: 1.5;
    /* ← tighter line height */
    color: #222;
    font-weight: 500;
}

.features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
    font-size: 20px;

}

.visible-thin-divider {
    border: none;
    border-top: 1px solid #cccccc;
    /* slightly darker = perfectly visible */
    margin: 35px 0;
}

.product-tabs-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.tab-buttons {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    flex: 1;
    padding: 16px 10px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: white;
    color: #007bff;
    border-bottom: 3px solid #007bff;
}

.review-count {
    color: #007bff;
    font-weight: bold;
}

.tab-content {
    padding: 28px 25px;
    min-height: 180px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s;
}

.tab-pane.active {
    display: block;
}

.info-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    font-size: 15.5px;
}


.product-tabs-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.tab-buttons {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background: none;
    font-size: 20px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.tab-btn.active {
    background: white;
    color: #e74c3c;
    border-bottom: 3px solid #e74c3c;
}

.tab-content {
    padding: 30px 28px;
    min-height: 20px;
    /* just a small minimum so it never collapses */
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.4s;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    padding: 28px 25px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.btn {
    padding: 15px 36px;
    /* increased padding for bigger text */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-blue {
    background: #e74c3c;
    color: white;
}

.btn-blue:hover {
    background: #f45a49ff;
}

.btn-red {
    background: #e74c3c;
    color: white;
}

.btn-red:hover {
    background: #c0392b;
}


/* FIXES HEADING + LIST PADDING IN PRODUCT INFORMATION TAB */
#information,
#information .price-big,
#information ul.info-list,
#review {
    padding-left: 28px !important;
    padding-right: 28px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        align-items: center;
        padding: 25px 20px;
    }

    .btn {
        width: 100%;
        max-width: 340px;
        padding: 16px 20px;
    }
}

.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 22px;
    padding: 8px 0;
}

.highlight-tag {
    display: inline-block;
    padding: 11px 24px;
    background: #e74c3c;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #e74c3c;
    transition: all 0.3s ease;
}

/* Hover effect – looks alive even though not clickable */
.highlight-tag:hover {
    background: white;
    color: #e74c3c;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .highlight-tags {
        gap: 12px;
    }

    .highlight-tag {
        padding: 10px 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        text-align: left;
        padding: 16px 22px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* Mobile – even tighter */
@media (max-width: 768px) {
    .features-list li {
        font-size: 18px;
        padding-left: 20px;
        margin-bottom: 7px;
        /* ← smaller gap on mobile */
        line-height: 1.45;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .price-big {
        font-size: 22px;
    }

    .price-big small {
        font-size: 20px;
    }
}






.bread-cum-menu {
    font-size: 16px;
    margin-bottom: 25px;

    a {
        color: #E43D12;
    }
}

.card-img-topx {
    height: 260px;
    width: auto;
    object-fit: cover;
    border-radius: 8px;
    overflow: hidden;
    margin: 15px 15px 0;
}

.wide-fullscreen-banner {
    width: 100%;
}

.wide-fullscreen-banner img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 420px;
    /* reduce height on desktop */
    object-fit: contain;
    /* shows full image without cropping */
}

@media (max-width: 768px) {
    .wide-fullscreen-banner img {
        max-height: 260px;
        /* reduce size on mobile */
    }
}

/* Global Contact Popup Styles */
#globalContactPopup .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

#globalContactPopup .modal-header {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
    padding: 15px;
}

#globalContactPopup .form-control {
    border: 1px solid #ddd;
    padding: 10px;
}

#globalContactPopup .form-control:focus {
    border-color: #E43D12;
    box-shadow: 0 0 0 0.2rem rgba(228, 61, 18, 0.25);
}

#globalContactPopup .btn {
    padding: 5px 14px;
    height: max-content;
}

@media (min-width: 992px) {

    .modal-lg,
    .modal-xl {
        --bs-modal-width: 600px !important;
    }
}

@media (max-width: 991px) {
    #globalContactPopup .align-items-center {
        align-items: center !important;
    }
}


.signage-journey {
    padding: 80px 40px;
    background: radial-gradient(circle at top right, #0f4c5c, #020024 70%);
    color: #fff;
    margin-bottom: 60px;

    /* CARDS WRAPPER */
    .journey-steps {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }

    /* CARD BASE */
    .step-card {
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(10px);
        border-radius: 18px;
        padding: 35px 25px;
        text-align: center;
        transition: all 0.4s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        min-height: 260px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        .icon {
            font-size: 42px;
            margin-bottom: 20px;
            display: block;
        }

        /* TITLE */
        h3 {
            font-size: 22px;
            margin-bottom: 15px;
            margin-top: 0;
        }

        /* TEXT */
        p {
            font-size: 15px;
            opacity: 0.9;
            margin-bottom: 0;
        }

        .step-1 {
            transition: all 0.4s ease;
            width: 100%;
        }

        .step-2 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 35px 25px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.4s ease;
            pointer-events: none;
        }
    }

    /* HOVER STYLE */
    .step-card:hover {
        background: #e43d12;
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .step-card:hover .step-1 {
        opacity: 0;
        transform: translateY(-30px);
    }

    .step-card:hover .step-2 {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* FIRST CARD ACTIVE BY DEFAULT */
    .active {
        background: #d80000;
    }

}

/* MOBILE RESPONSIVE */
@media (max-width: 1200px) {
    .journey-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .journey-steps {
        grid-template-columns: 1fr !important;
    }

    .signage-journey h2 {
        font-size: 30px;
    }
}




.commercial-display {

    /* Hero Banner Styles */
    .hero-banner {
        background-size: cover;
        background-position: center;
        padding: 160px 0 100px;
        color: white;
        position: relative;
        min-height: 600px;
        display: flex;
        align-items: center;
        min-height: 600px;
    }

    .hero-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
        z-index: 1;
    }

    .hero-banner .container {
        position: relative;
        z-index: 2;
    }

    .hero-banner_title {
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 25px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .hero-banner p {
        color: #ffffff !important;
        font-size: 1.2rem;
        line-height: 1.8;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
        margin-bottom: 30px;
    }

    /* Utility Spacing */
    .py-80 {
        padding: 80px 0;
    }

    .py-120 {
        padding: 100px 0;
    }

    /* Buttons */


    /* Product Grid - Image Containers */
    .image-container {
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        height: 380px;
        position: relative;
        transition: all 0.4s ease;
    }

    .col-lg-5 .image-container,
    .col-lg-3 .image-container {
        height: 450px;
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.5s ease;
    }

    .image-container:hover {
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        transform: translateY(-5px);
    }

    .image-container:hover img {
        transform: scale(1.08);
    }

    /* Overlay Styles */
    .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 25px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7), transparent);
        color: white;
        opacity: 0;
        transition: opacity 0.4s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .image-container:hover .overlay {
        opacity: 1;
    }

    .text-title {
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: #ffffff;
    }

    .text-content {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
        color: #f0f0f0;
    }

    /* Benefit Cards */
    .benefit-card {
        background: #fff;
        padding: 45px 35px;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        height: 100%;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #E43D12, #ff8c00);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-10px);
        border-color: #E43D12;
        box-shadow: 0 15px 40px rgba(255, 94, 20, 0.15);
    }

    .benefit-card:hover::before {
        transform: scaleX(1);
    }

    .benefit-card h4 {
        font-weight: 700;
        margin-bottom: 15px;
        color: #111;
        font-size: 1.4rem;
    }

    .benefit-card p {
        color: #666;
        margin-bottom: 0;
        line-height: 1.7;
    }

    /* Industry Cards */
    .industry-card {
        background: white;
        padding: 40px 30px;
        border-radius: 14px;
        text-align: center;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        height: 100%;
        border-bottom: 4px solid transparent;
        transition: all 0.3s ease;
    }

    .industry-card:hover {
        border-bottom-color: #E43D12;
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .industry-card h5 {
        margin-bottom: 15px;
    }

    .industry-icon {
        width: 60px;
        height: 60px;
        background: #fdf2f0;
        color: #E43D12;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin: 0 auto 20px;
        transition: all 0.3s ease;
    }

    .industry-card:hover .industry-icon {
        background: #E43D12;
        color: white;
        transform: scale(1.1);
    }




    /* Headings */
    .why-text-heading {
        font-weight: 800;
        color: #111;
    }

    /* CTA Section */
    .bg-primary-custom {
        background: linear-gradient(135deg, #E43D12 0%, #ff8c00 100%);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .bg-primary-custom::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 80%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: pulse 15s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.8;
        }
    }

    /* Other Cities Section */
    .other-cities-section {
        padding: 80px 0;
    }

    .other-cities-overlay {
        background: linear-gradient(to top, rgba(201, 65, 0, 0.3), transparent) !important;
    }

    /* Section background */
    .product-highlights-section {
        background: #000;
        padding: 60px 0;
    }

    /* Card wrapper */
    .product-highlight-card {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
    }

    /* Image */
    .product-highlight-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 20px;
        transition: transform 0.4s ease;
        display: block;
    }

    /* Hover zoom effect */
    .product-highlight-card:hover .product-highlight-img {
        transform: scale(1.08);
    }

    /* Content overlay */
    .product-highlight-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 25px;
        color: #fff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        pointer-events: none;
    }


    /* Smooth performance */
    .product-highlight-card,
    .product-highlight-img {
        will-change: transform;
    }

    .solutions-tailored-section {
        background: #f8f9fa;
        padding: 80px 0 0;
        position: relative;
        transition: all 0.3s ease;
    }


    .solutions-heading {
        font-family: 'Lora', serif;
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        color: #212121;
        margin-bottom: 40px;
    }

    /* Tab Navigation */
    .solutions-tabs {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .solution-tab {
        background: transparent;
        border: none;
        padding: 12px 30px;
        border-radius: 25px;
        font-family: 'Roboto', sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: #666;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .solution-tab::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1a1a2e, #2d3748);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        z-index: -1;
        border-radius: 25px;
    }

    .solution-tab.active,
    .solution-tab:hover {
        color: #e43d12;
    }

    .solution-tab.active::before,
    .solution-tab:hover::before {
        transform: scaleX(1);
    }

    .solution-tab.active {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* Content Area */
    .solutions-content {
        position: relative;
        min-height: 400px;
    }

    .solution-panel {
        display: none;
        opacity: 0;
        animation: fadeOut 0.3s ease;
    }

    .solution-panel.active {
        display: block;
        animation: fadeIn 0.5s ease forwards;
    }


    /* Solution Card */
    .solution-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        max-width: 900px;
        height: 400px;
        margin: auto;
        object-fit: cover;
    }

    .solution-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .solution-img {
        width: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .solution-card:hover .solution-img {
        transform: scale(1.05);
    }

    /* Overlay */
    .solution-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
        padding: 40px;
        color: #ffffff;
    }

    .solution-description {
        font-family: 'Roboto', sans-serif;
        font-size: 18px;
        line-height: 1.6;
        margin: 0;
        color: #ffffff;
        max-width: 800px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .solutions-tailored-section {
            padding: 50px 0;
            min-height: 50vh;
        }

        .solutions-heading {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }

        .solutions-tabs {
            gap: 10px;
        }

        .solution-tab {
            padding: 10px 20px;
            font-size: 14px;
        }

        .solution-img {
            height: 300px;
        }

        .solution-overlay {
            padding: 25px 20px;
        }

        .solution-description {
            font-size: 14px;
        }

        .solutions-content {
            min-height: 270px;
        }
    }

    @media (max-width: 576px) {
        .solutions-heading {
            font-size: 1.5rem;
        }

        .solution-tab {
            padding: 8px 16px;
            font-size: 13px;
        }

        .solution-img {
            height: 250px;
        }

        .solution-description {
            font-size: 13px;
        }
    }


}

/* Mobile optimization */
@media (max-width: 768px) {
    .product-highlights-section {
        padding: 40px 0;
    }

    .product-highlight-content {
        padding: 20px;
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .commercial-display {
        .py-80 {
            padding: 50px 0;
        }

        .py-120 {
            padding: 60px 0;
        }

        .hero-banner {
            padding: 100px 0 60px;
            min-height: 500px;
        }


        .hero-banner p {
            font-size: 1rem;
        }

        .image-container,
        .col-lg-5 .image-container,
        .col-lg-3 .image-container {
            height: 300px;
        }

        .new_custom-stats-number {
            font-size: 2.5rem;
        }

        .faq-title {
            font-size: 2rem;
        }

        .benefit-card,
        .industry-card {
            margin-bottom: 20px;
        }

        .bg-primary-custom {
            padding: 60px 0;
        }
    }
}

@media (max-width: 576px) {
    .commercial-display {

        .image-container,
        .col-lg-5 .image-container,
        .col-lg-3 .image-container {
            height: 250px;
        }

        .contact-btn {
            padding: 12px 30px;
            font-size: 0.9rem;
        }
    }



}


.why-carousel-controls,
.testimonial-carousel-controls {
    position: absolute;
    top: -34px;
    right: 15px;
    transform: translateY(0);
}

/* Ensure contact buttons are clickable */

.bgrowth-content a {
    position: relative;
    z-index: 1000 !important;
    pointer-events: auto !important;
    display: block;
}

.bgrowth-card {
    position: relative;
}

/* Reduce swiper pagination z-index */
.bgrowth-swiper-2 .swiper-pagination {
    z-index: 1 !important;
}


.seo-marquee {
    background: #E43D12;
    overflow: hidden;
    padding: 22px 0;
}

.seo-marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.seo-marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-scroll 18s linear infinite;
}

/* Text */
.seo-marquee-item {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    padding: 0 22px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

/* Separator */
.seo-marquee-sep {
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    padding: 0 10px;
    line-height: 1;
    position: relative;
    top: 6px;
}

/* Hover pause */
.seo-marquee:hover .seo-marquee-track {
    animation-play-state: paused;
}

/* Hover color */
.seo-marquee-item:hover {
    color: #000000;
}

/* Correct animation */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .seo-marquee-track {
        animation-duration: 24s;
    }

    .seo-marquee-item {
        font-size: 24px;
        padding: 0 16px;
    }

    .seo-marquee-sep {
        font-size: 50px;
    }
}


.doctor-swiper,
.ca-advocate-swiper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.doctor-swiper .swiper-slide img,
.ca-advocate-swiper .swiper-slide img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.doctor-swiper .swiper-button-next,
.doctor-swiper .swiper-button-prev,
.ca-advocate-swiper .swiper-button-next,
.ca-advocate-swiper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.doctor-swiper .swiper-button-next::after,
.doctor-swiper .swiper-button-prev::after,
.ca-advocate-swiper .swiper-button-next::after,
.ca-advocate-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
    color: #E43D12;
}

.doctor-swiper .swiper-button-next:hover,
.doctor-swiper .swiper-button-prev:hover,
.ca-advocate-swiper .swiper-button-next:hover,
.ca-advocate-swiper .swiper-button-prev:hover {
    background: #E43D12;
    transform: scale(1.1);
}

.doctor-swiper .swiper-button-next:hover::after,
.doctor-swiper .swiper-button-prev:hover::after,
.ca-advocate-swiper .swiper-button-next:hover::after,
.ca-advocate-swiper .swiper-button-prev:hover::after {
    color: white;
}

@media (max-width: 768px) {

    .doctor-swiper .swiper-slide img,
    .ca-advocate-swiper .swiper-slide img {
        height: 280px;
    }
}

/* Artistic Canvas Styles - NEW SECTION */
.artistic-canvas {
    background: #FCECE7;
    color: #333;
    padding: 80px 0;
}

.canvas-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
}

.canvas-item {
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    padding: 30px;
    transition: transform 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.canvas-item:hover {
    transform: translateY(-10px);
    background: #fdfdfd;
}

.item-large {
    grid-column: 1 / 9;
    grid-row: 1 / 3;
}

.item-side {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}

.item-bottom-left {
    grid-column: 1 / 5;
    grid-row: 3 / 4;
}

.item-bottom-mid {
    grid-column: 5 / 9;
    grid-row: 3 / 4;
}

.item-bottom-right {
    grid-column: 9 / 13;
    grid-row: 2 / 4;
}

.canvas-img-box {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.canvas-img-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-large .canvas-img-box img {
    height: 400px;
}

.item-bottom-right .canvas-img-box img {
    height: 350px;
}

.tag-accent-new {
    color: #E43D12;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

/* Customization & Multilingual */
.custom-card {
    border: none;
    border-top: 5px solid #E43D12;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.custom-card:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .canvas-grid {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .item-large,
    .item-side,
    .item-bottom-left,
    .item-bottom-mid,
    .item-bottom-right {
        grid-column: span 12 !important;
        grid-row: auto !important;
    }

    .item-large .canvas-img-box img,
    .item-bottom-right .canvas-img-box img,
    .canvas-img-box img {
        height: 250px !important;
    }

    .artistic-canvas {
        padding: 60px 0;
    }
}

.script-symphony {
    position: relative;
    padding: 10px 0 90px;
    background: #ffffff;
    overflow: hidden;
}

.glyph-bg {
    position: absolute;
    font-size: 300px;
    font-weight: 900;
    color: rgba(228, 61, 18, 0.03);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.glyph-kannada {
    top: -50px;
    left: -50px;
}

.glyph-hindi {
    bottom: -50px;
    right: -50px;
}

.symphony-composition {
    position: relative;
    z-index: 1;
}

.featured-script-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: 0.5s;
}

.featured-script-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.script-badge-float {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    bottom: -30px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid #E43D12;
}

.sym-content {
    padding-left: 40px;
}

@media (max-width: 991px) {
    .glyph-bg {
        font-size: 120px;
        opacity: 0.05;
    }

    .glyph-kannada {
        top: 10px;
        left: 10px;
    }

    .glyph-hindi {
        bottom: 10px;
        right: 10px;
    }

    .sym-content {
        padding-left: 10px;
        margin-top: 30px;
        text-align: center;
    }

    .sym-content h2 {
        text-align: center !important;
        font-size: 28px !important;
    }

    .featured-script-img {
        transform: none !important;
        border-radius: 20px;
    }

    .script-badge-float {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin: 20px 0 0;
        left: auto;
        padding: 15px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-left: 5px solid #E43D12;
    }

    .script-symphony {
        padding: 0 0 50px;
    }

    .sym-content .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px !important;
    }
}

.safety-hero h1 {
    line-height: 1.15;
}


.script-symphony {
    position: relative;
    padding: 10px 0 90px;
    background: #ffffff;
    overflow: hidden;
}

.glyph-bg {
    position: absolute;
    font-size: 300px;
    font-weight: 900;
    color: rgba(228, 61, 18, 0.03);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.glyph-kannada {
    top: -50px;
    left: -50px;
}

.glyph-hindi {
    bottom: -50px;
    right: -50px;
}

.symphony-composition {
    position: relative;
    z-index: 1;
}

.featured-script-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: 0.5s;
}

.featured-script-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.script-badge-float {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    bottom: -30px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid #E43D12;
}

.sym-content {
    padding-left: 40px;
}

@media (max-width: 991px) {
    .glyph-bg {
        font-size: 120px;
        opacity: 0.05;
    }

    .glyph-kannada {
        top: 10px;
        left: 10px;
    }

    .glyph-hindi {
        bottom: 10px;
        right: 10px;
    }

    .sym-content {
        padding-left: 10px;
        margin-top: 30px;
        text-align: center;
    }

    .sym-content h2 {
        text-align: center !important;
        font-size: 28px !important;
    }

    .featured-script-img {
        transform: none !important;
        border-radius: 20px;
    }

    .script-badge-float {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin: 20px 0 0;
        left: auto;
        padding: 15px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-left: 5px solid #E43D12;
    }

    .script-symphony {
        padding: 0 0 50px;
    }

    .sym-content .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px !important;
    }
}



.safety-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
}

.signage-left h2,
.flow-header h2,
.editorial-copy h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
}

.safety-hero {
    background: linear-gradient(135deg, #0f2027, #203a43, #468ead);
    color: #fff;
    padding: 90px 0;
}

.safety-hero p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 520px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    backdrop-filter: blur(6px);
}

.hero-cta .btn {
    padding: 12px 26px;
    font-weight: 600;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-float-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #ffffff;
    color: #111;
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    max-width: 240px;
}

.hero-float-card strong {
    display: block;
    font-size: 0.9rem;
}

.hero-float-card span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.visible-mobile {
    display: none;
}

.hidden-mobile {
    display: block;
}

.signage-editorial {
    background: #ffffff;
    padding: 120px 0;
}

.signage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.signage-left {
    position: sticky;
    top: 120px;
}

.signage-left p {
    line-height: 1.75;
    color: #555;
    max-width: 380px;
}

.signage-right {
    column-count: 2;
    column-gap: 32px;
}

.signage-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    break-inside: avoid;
    margin-bottom: 32px;
}

.signage-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.signage-item .card-label {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    min-width: 90%;
    padding: 10px 18px;
    white-space: normal;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: #111;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.signage-item:hover img {
    transform: scale(1.04);
}

.safety-communication {
    background: #ffffff;
    padding: 120px 0;
}

.safety-communication .layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.safety-communication h3 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #111;
}

.safety-communication p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    max-width: 520px;
    margin-bottom: 28px;
}

.safety-image {
    position: relative;
}

.safety-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.safety-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.25));
    pointer-events: none;
}

.safety-editorial-x {
    background: #ffffff;
    padding: 140px 0;
}

.editorial-copy p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

.case-stack {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-top: 6px;
}

.case-row {
    position: relative;
    display: grid;
    grid-template-columns: 6px 1fr;
    column-gap: 26px;
    text-decoration: none;
    color: #111;
    padding: 18px 0;
    transition: all 0.35s ease;
}

.case-line {
    width: 2px;
    height: 100%;
    background: #ddd;
    transition: background 0.35s ease, transform 0.35s ease;
}

.case-title {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: letter-spacing 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.case-arrow {
    font-size: 1.4rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.case-meta {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
    margin-top: 6px;
    white-space: nowrap;
}

.case-row:hover .case-line {
    background: #E43D12;
    transform: scaleY(1.1);
}

.case-row:hover .case-title {
    letter-spacing: 0.04em;
    transform: translateX(6px);
    color: #E43D12;
}

.case-row:hover .case-arrow {
    opacity: 1;
    transform: translateX(0);
}

.case-row:hover .case-meta {
    color: #111;
}

.safety-flow {
    background: #f8f9fa;
    padding: 140px 0;
}

.flow-wrapper {
    display: flex;
}

.flow-header {
    max-width: 40%;
    margin-bottom: 120px;
}

.flow-header p {
    margin-top: 22px;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
}

.flow-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.flow-list::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(0, 0, 0, 0.15);
}

.flow-item {
    position: relative;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.flow-item.right {
    margin-left: 120px;
}

.flow-no {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    color: #aaa;
    min-width: 40px;
}

.flow-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.flow-content p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #666;
    max-width: 520px;
}

.flow-item:hover h4 {
    color: #E43D12;
}

.btn-brand-red {
    background-color: #E43D12;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid #E43D12;
}

.btn-brand-red:hover {
    border: 2px solid #E43D12;
    background-color: #000;
    color: white;
}

@media (max-width: 991px) {
    .visible-mobile {
        display: block;
        margin-bottom: 24px;
    }

    .hidden-mobile {
        display: none;
    }

    .signage-layout,
    .safety-communication .layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .signage-left {
        position: static;
    }

    .signage-left p {
        max-width: 100%;
    }

    .safety-hero {
        padding: 24px 12px;
    }

    .safety-hero .row {
        flex-direction: column;
    }

    .safety-hero .col-lg-6:last-child {
        order: 1;
    }

    .safety-hero .col-lg-6:first-child {
        order: 2;
    }

    .hero-badges {
        order: 1;
        margin-bottom: 16px;
    }

    .safety-hero h1,
    .safety-hero p {
        order: 2;
    }

    .hero-cta {
        order: 3;
        margin-top: 24px;
    }

    .hero-float-card {
        bottom: 12px;
        left: 12px;
        padding: 12px 14px;
        max-width: 200px;
    }

    .flow-wrapper {
        flex-direction: column;
    }

    .flow-header {
        max-width: 100%;
        margin-bottom: 70px;
        padding: 0 10px 0 10px;
    }

    .flow-item,
    .flow-item.right {
        margin-left: 0;
        gap: 30px;
    }

    .flow-list::before {
        left: 40px;
    }

    .safety-editorial-x {
        padding: 90px 0;
    }

    .case-stack {
        margin-top: 50px;
    }

    .case-title {
        font-size: 1.4rem;
    }

    .safety-communication {
        padding: 80px 0;
    }

    .safety-communication h3 {
        font-size: 1.9rem;
    }

    .signage-editorial,
    .safety-communication,
    .safety-editorial-x,
    .safety-flow {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .safety-hero {
        padding: 24px 12px;
    }
}

@media (max-width: 786px) {
    a {
        margin-top: 10px;
    }
}

/* ====================================================
   OFFICE MAGAZINE SLIDER – New Premium Design
   ==================================================== */

.office-mag-header {
    padding-bottom: 50px;
}

.office-mag-eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, #E43D12, #ff7043);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* Wrapper gives room for nav buttons */
.office-mag-slider-wrap {
    position: relative;
    padding: 0 60px;
}

/* The card: natural image height, no cropping */
.office-mag-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
    cursor: pointer;
    background: #111;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.2, 1), box-shadow 0.4s ease;
}

.office-mag-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.office-mag-bg {
    display: block;
    width: 100%;
    height: 235px;
    /* natural height — no cropping */
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.2, 1);
}

/* Overlay — invisible by default */
.office-mag-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 1;
    pointer-events: none;
    transition: background 0.45s ease, backdrop-filter 0.45s ease;
}

/* Hover: dark blurred overlay fills the whole image */
.office-mag-card:hover::before {
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.office-mag-card:hover .office-mag-bg {
    transform: scale(1.07);
}

/* Category chip – top left */
.office-mag-chip {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    background: rgba(228, 61, 18, 0.9);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.office-mag-card:hover .office-mag-chip {
    background: #E43D12;
}

/* Content: hidden by default, slides up on hover */
.office-mag-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    z-index: 2;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.office-mag-card:hover .office-mag-content {
    opacity: 1;
    transform: translateY(0);
}

.office-mag-title {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 12px;
}

/* CTA button styling */
.office-mag-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 50px;
    pointer-events: none;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.office-mag-card:hover .office-mag-cta {
    background: #E43D12;
    border-color: #E43D12;
}

.office-mag-cta i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.office-mag-card:hover .office-mag-cta i {
    transform: translateX(3px);
}

/* Swiper pagination */
.office-mag-pagination {
    margin-top: 30px;
    position: relative !important;
    bottom: unset !important;
    text-align: center;
}

.office-mag-pagination .swiper-pagination-bullet {
    background: #ccc;
    width: 8px;
    height: 8px;
    opacity: 1;
    transition: all 0.3s ease;
}

.office-mag-pagination .swiper-pagination-bullet-active {
    background: #E43D12;
    width: 28px;
    border-radius: 4px;
}

/* Navigation buttons */
.office-mag-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    /* slightly above center because pagination is below */
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    color: #E43D12;
    font-size: 32px;
    /* Large enough for ‹ › */
    line-height: 1;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.office-mag-btn:hover {
    background: #E43D12;
    color: #fff;
    box-shadow: 0 8px 25px rgba(228, 61, 18, 0.35);
}

.office-mag-prev {
    left: 0;
}

.office-mag-next {
    right: 0;
}

.office-mag-btn.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .office-mag-slider-wrap {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .office-mag-slider-wrap {
        padding: 0 10px;
    }

    .office-mag-card {
        height: auto;
    }

    .office-mag-title {
        font-size: 16px;
    }

    .office-mag-btn {
        display: none;
    }
}

/* Office Portal Section Redesign - Premium Version */

.office-portal-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    overflow: hidden;
}

.office-portal-header {
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.office-portal-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* Fix the view: ensure enough space for shadow/animations */
.office-portal-swiper {
    padding: 40px 20px 80px !important;
    margin: 0 -20px;
}

.office-portal-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    text-decoration: none !important;
    position: relative;
    z-index: 1;
    /* Base layer */
    pointer-events: auto !important;
    cursor: pointer;
}

.office-portal-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(228, 61, 18, 0.15);
    border-color: rgba(228, 61, 18, 0.1);
    z-index: 15 !important;
    /* Higher than nav (5) */
}

.office-portal-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.office-portal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.office-portal-card:hover .office-portal-img img {
    transform: scale(1.15);
}

/* Gradient Overlay on Image */
.office-portal-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.office-portal-card:hover .office-portal-img::after {
    opacity: 1;
}

.office-portal-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.office-portal-badge {
    background: #E43D12;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 15px rgba(228, 61, 18, 0.3);
}

.office-portal-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.office-portal-title {
    font-family: 'Lora';
    font-weight: 700;
    font-size: 22px;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.office-portal-card:hover .office-portal-title {
    color: #E43D12;
}

.office-portal-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.office-portal-meta .exclusive-tag {
    background: #fdf2f0;
    color: #E43D12;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

.office-portal-action {
    margin-top: auto;
    color: #E43D12;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-portal-action i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.office-portal-card:hover .office-portal-action i {
    transform: translateX(8px);
}

/* Swiper Nav UI Fixes - External Version */
.office-portal-swiper .swiper-pagination-bullet {
    background: #E43D12 !important;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.office-portal-swiper .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
}

.office-portal-next,
.office-portal-prev {
    background: #fff !important;
    width: 50px !important;
    /* Slightly smaller to reduce footprint */
    height: 55px !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    color: #E43D12 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: all 0.3s ease !important;
    z-index: 5 !important;
    /* Lower than hovered card (15) */
}

.office-portal-next:hover,
.office-portal-prev:hover {
    background: #E43D12 !important;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(228, 61, 18, 0.4) !important;
    z-index: 20 !important;
    /* Raise when directly interacting with dots */
}

.office-portal-next:after,
.office-portal-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

.office-portal-next {
    right: -40px !important;
    /* Move further out */
}

.office-portal-prev {
    left: -40px !important;
    /* Move further out */
}

@media (max-width: 1300px) {
    .office-portal-next {
        right: -15px !important;
    }

    .office-portal-prev {
        left: -15px !important;
    }
}

@media (max-width: 1200px) {
    .office-portal-next {
        right: 0px !important;
    }

    .office-portal-prev {
        left: 0px !important;
    }
}

@media (max-width: 991px) {
    .office-portal-header h2 {
        font-size: 32px;
    }

    .office-portal-next,
    .office-portal-prev {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 768px) {
    .office-portal-section {
        padding: 60px 0;
    }

    .office-portal-img {
        height: 220px;
    }

    .office-portal-title {
        font-size: 19px;
    }

    .office-portal-swiper {
        margin: 0;
        padding-bottom: 60px !important;
    }

    .office-portal-next,
    .office-portal-prev {
        display: none !important;
    }

    /* Hide arrows on mobile for better UX */
}



/* led acrylic  */
/* Minimalist Dark Hero Theme (Koel Venture Style) */
.simple-impact-hero {
    position: relative;
    background: #000;
    height: 600px;
    /* Precise height like the image */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;


    .hero-slides-wrapper {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .impact-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        z-index: 1;
    }

    .impact-slide.active {
        opacity: 1;
        z-index: 2;
    }

    .impact-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-dark-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
        z-index: 5;
        display: flex;
        align-items: center;
    }

    .container-large {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        padding: 0 5%;
    }

    .hero-content-final {
        max-width: 650px;
        color: #fff;
        animation: slideUpImpact 0.8s ease-out;
    }

    @keyframes slideUpImpact {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-msg-title {
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 25px;
        color: #fff;
    }

    .hero-msg-desc {
        font-size: 20px;
        line-height: 1.5;
        color: #efefef;
        margin-bottom: 40px;
        max-width: 550px;
    }

    .hero-msg-actions {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .btn-impact {
        padding: 14px 28px;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none !important;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
    }

    .btn-impact.primary {
        background: #e43d12;
        /* Refined branding red from image */
        color: #fff;
    }

    .btn-impact.primary:hover {
        background: #e43d12;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(178, 30, 30, 0.3);
    }

    .btn-impact.secondary {
        background: #fff;
        color: #1a1a1a;
    }

    .btn-impact.secondary:hover {
        background: #f0f0f0;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .hero-pagination-dots {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 10;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: 0.3s;
    }

    .dot.active {
        background: #fff;
        transform: scale(1.3);
    }


    @media (max-width: 1024px) {


        .hero-msg-desc {
            font-size: 16px;
        }
    }

    @media (max-width: 768px) {
        .simple-impact-hero {
            height: 500px;
        }

        .hero-dark-overlay {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
            text-align: center;
        }

        .hero-content-final {
            margin: 0 auto;
            padding-top: 50px;
        }

        .hero-msg-actions {
            flex-direction: column;
            width: 100%;
            gap: 15px;
        }

        .btn-impact {
            width: 100%;
            justify-content: center;
        }
    }
}

/* Product Impact Gallery Grid */
.impact-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;


    .impact-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .impact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .impact-card-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .impact-image {
        width: 100%;
        aspect-ratio: 1;
        /* Match the screenshot square look */
        object-fit: cover;
    }

    .impact-title-box {
        padding: 20px 15px;
        text-align: center;
        background: #fff;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .impact-title-box span {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        line-height: 1.2;
    }

    .impact-title-box span.red-title {
        color: #e43d12;
    }
}

@media (max-width: 1200px) {
    .impact-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .impact-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-gallery-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .impact-title-box {
        padding: 15px 10px;
    }

    .impact-title-box span {
        font-size: 15px;
    }
}

/* ── BRAND SIGNAGES INDOOR GRAPHICS ──────────────── */

.bs-sgn-section {
    --bs-sgn-cream: #f5f2ec;
    --bs-sgn-white: #ffffff;
    --bs-sgn-ink: #1a1a1a;
    --bs-sgn-ink-mid: #4a4a4a;
    --bs-sgn-ink-lt: #888;
    --bs-sgn-accent: #c8a96e;
    --bs-sgn-accent2: #3d6b5e;
    --bs-sgn-rule: #e0dbd2;
    background: var(--bs-sgn-cream);
    font-family: 'DM Sans', sans-serif;
    padding: 90px 24px;
    position: relative;
    overflow: hidden;
}

.bs-sgn-section *,
.bs-sgn-section *::before,
.bs-sgn-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.bs-sgn-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 40px,
            rgba(200, 169, 110, .05) 40px,
            rgba(200, 169, 110, .05) 41px);
    pointer-events: none;
}

.bs-sgn-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bs-sgn-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.bs-sgn-eyebrow span {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--bs-sgn-accent);
}

.bs-sgn-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--bs-sgn-accent);
    opacity: .4;
}

.bs-sgn-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 300;
    color: var(--bs-sgn-ink);
    line-height: 1.15;
    margin-bottom: 56px;
    max-width: 520px;
}

.bs-sgn-heading em {
    font-style: italic;
    color: var(--bs-sgn-accent2);
}

.bs-sgn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.bs-sgn-card {
    background: var(--bs-sgn-white);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .06);
    transition: transform .35s ease, box-shadow .35s ease;
}

.bs-sgn-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
}

.bs-sgn-card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.bs-sgn-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.bs-sgn-card:hover .bs-sgn-card__img-wrap img {
    transform: scale(1.04);
}

.bs-sgn-card--retail .bs-sgn-card__strip {
    background: var(--bs-sgn-accent);
}

.bs-sgn-card--corp .bs-sgn-card__strip {
    background: var(--bs-sgn-accent2);
}

.bs-sgn-card__strip {
    height: 3px;
    width: 100%;
}

.bs-sgn-card__body {
    padding: 36px 36px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bs-sgn-card__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bs-sgn-card--retail .bs-sgn-card__label {
    color: var(--bs-sgn-accent);
}

.bs-sgn-card--corp .bs-sgn-card__label {
    color: var(--bs-sgn-accent2);
}

.bs-sgn-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.35rem, 2.4vw, 1.65rem);
    font-weight: 600;
    color: var(--bs-sgn-ink);
    line-height: 1.25;
    margin-bottom: 28px;
}

.bs-sgn-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.bs-sgn-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--bs-sgn-rule);
}

.bs-sgn-features li:first-child {
    border-top: 1px solid var(--bs-sgn-rule);
}

.bs-sgn-feat__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    transition: transform .25s ease;
}

.bs-sgn-card--retail .bs-sgn-feat__icon {
    background: #fdf5e8;
    color: var(--bs-sgn-accent);
}

.bs-sgn-card--corp .bs-sgn-feat__icon {
    background: #eaf2ef;
    color: var(--bs-sgn-accent2);
}

.bs-sgn-features li:hover .bs-sgn-feat__icon {
    transform: scale(1.15) rotate(-5deg);
}

.bs-sgn-feat__text {
    font-size: 14px;
    font-weight: 400;
    color: var(--bs-sgn-ink-mid);
    line-height: 1.45;
}

@media (max-width: 768px) {
    .bs-sgn-section {
        padding: 60px 18px;
    }

    .bs-sgn-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bs-sgn-card__img-wrap {
        height: 200px;
    }

    .bs-sgn-card__body {
        padding: 26px 24px 30px;
    }

    .bs-sgn-heading {
        margin-bottom: 40px;
    }
}

/* ── BRAND SIGNAGES CTA SECTIONS ────────────────── */

@media (max-width: 768px) {
    .bs-sgn-cta-section.position-relative {
        height: auto !important;
        display: flex;
        flex-direction: column;
    }

    .bs-sgn-cta-section img {
        height: 600px !important;
        object-position: center;
    }

    .bs-sgn-cta-section .translate-middle {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        padding: 0 15px;
    }

    .bs-sgn-cta-section h2 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }

    .bs-sgn-cta-section p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }

    .bs-sgn-cta-section .d-flex {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .bs-sgn-cta-section .btn {
        width: 100% !important;
        padding: 12px !important;
        font-size: 0.95rem !important;
    }
}

/* ── New Product Card Section ────────────────── */

        .manufacturer-title {
            font-family: 'Lora', serif;
            font-weight: 700;
            color: #333;
            font-size: 38px;
        }
        .manufacturer-card {
            border: 1px solid #ffccbc;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
            background: #fff;
        }
        .manufacturer-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(228, 61, 18, 0.1);
            border-color: #E43D12;
        }
        .card-img-wrapper {
            height: 220px;
            overflow: hidden;
            padding: 12px;
        }
        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }
        .manufacturer-card .card-body {
            padding: 15px 20px 25px;
        }
        .manufacturer-card h3 {
            font-size: 20px;
            color: #E43D12;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .manufacturer-card p {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 0;
        }
        .contact-cta-box {
            background-color: #fcfcfc;
            border-radius: 12px;
            height: 100%;
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
        }
        .cta-text {
            font-size: 22px;
            font-family: 'Lora', serif;
            color: #333;
            margin-bottom: 30px;
            font-weight: 600;
            line-height: 1.4;
        }
        .contact-btn-red {
            background-color: #E43D12;
            color: #fff !important;
            padding: 14px 35px;
            border-radius: 8px;
            text-transform: capitalize;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .contact-btn-red:hover {
            background-color: #bf3310;
            transform: scale(1.05);
        }

        /* ── New Product Card Section ────────────────── */


        /* ── New Homepage Product Card Section ────────────────── */
        
        .manufacturer-title {
            font-family: 'Lora', serif;
            font-weight: 700;
            color: #333;
            font-size: 38px;
        }

        .manufacturer-card {
            border: 1px solid #ffccbc;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
            background: #fff;
        }

        .manufacturer-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(228, 61, 18, 0.1);
            border-color: #E43D12;
        }

        .card-img-wrapper {
            height: 220px;
            overflow: hidden;
            padding: 12px;
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .manufacturer-card .card-body {
            padding: 15px 20px 25px;
        }

        .manufacturer-card h3 {
            font-size: 20px;
            color: #E43D12;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .manufacturer-card p {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .contact-cta-box {
            background-color: #fcfcfc;
            border-radius: 12px;
            height: 100%;
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
        }

        .cta-text {
            font-size: 24px;
            font-family: 'Lora', serif;
            color: #333;
            margin-bottom: 30px;
            font-weight: 600;
            line-height: 1.4;
        }

        .contact-btn {
            background-color: #E43D12;
            color: #fff !important;
            padding: 10px 25px;
            border-radius: 6px;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .contact-btn:hover {
            background-color: #bf3310;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(228, 61, 18, 0.2);
        }

        /* New Premium Catalog CSS */
        .premium-catalog-section {
            background-color: #fff;
        }

        .signage-product-box {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .signage-product-box:hover {
            box-shadow: 0 10px 25px rgba(228, 61, 18, 0.08);
            border-color: #ffccbc;
        }

        .product-header-bar {
            padding: 15px 25px;
            background: #fff;
            border-bottom: 1px solid #f1f1f1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-header-bar h3 {
            font-size: 22px;
            font-weight: 700;
            margin: 0;
            color: #333;
            font-family: 'Lora', serif;
        }

        .callback-btn {
            border: 2px solid #e43d12;
            color: #e43d12 !important;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .callback-btn:hover {
            background: #1a9a5a;
            color: #fff !important;
        }

        .product-body-content {
            padding: 30px;
        }

        .product-main-img-box {
            border: 1px solid #eee;
            background: #444;
            /* Dark thematic background from reference */
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 10px;
        }

        .product-gallery-thumbs {
            display: flex;
            margin-top: 20px;
            gap: 15px;
        }

        .gallery-thumb-item {
            flex: 1;
            text-align: center;
        }

        .gallery-thumb-item img {
            width: 100%;
            height: 100px;
            object-fit: cover;
            border: 1px solid #eee;
            border-radius: 4px;
        }

        .gallery-thumb-item span {
            font-size: 12px;
            display: block;
            margin-top: 8px;
            text-decoration: underline;
            font-style: italic;
            color: #777;
        }

        .get-quote-btn {
            background: #000000;
            color: #fff !important;
            border: none;
            width: 100%;
            padding: 14px;
            font-weight: 700;
            font-size: 18px;
            border-radius: 6px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .get-quote-btn:hover {
            background: #e43d12;
            transform: translateY(-2px);
        }

        .price-tag-line {
            border-bottom: 1px solid #f1f1f1;
            padding-bottom: 20px;
            margin-bottom: 25px;
        }

        .current-price {
            font-size: 32px;
            font-weight: 700;
            color: #333;
        }

        .current-price small {
            font-size: 18px;
            color: #666;
            font-weight: 400;
        }

        .price-on-request-link {
            color: #1a9a5a !important;
            font-weight: 700;
            text-decoration: underline;
            margin-left: 20px;
            font-size: 15px;
        }

        .moq-info {
            font-size: 14px;
            color: #888;
            margin-top: 10px;
            font-weight: 500;
        }

        .specifications-table {
            width: 100%;
            margin-bottom: 25px;
        }

        .specifications-table tr td {
            padding: 12px 0;
            border-bottom: 1px solid #f9f9f9;
            font-size: 15px;
        }

        .specifications-table tr td:first-child {
            color: #888;
            width: 40%;
        }

        .specifications-table tr td:last-child {
            color: #333;
            font-weight: 600;
        }

        .product-short-description {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
            border-top: 1px solid #f1f1f1;
            padding-top: 20px;
        }

        .interest-cta-btn {
            background: #fff;
            color: #1a9a5a;
            border: 2.5px solid #1a9a5a;
            width: 100%;
            max-width: 350px;
            padding: 14px;
            font-weight: 800;
            font-size: 19px;
            border-radius: 6px;
            margin-top: 25px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .interest-cta-btn:hover {
            background: #1a9a5a;
            color: #fff;
        }

        @media (max-width: 768px) {
            .product-header-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .product-main-img-box {
                height: 250px;
            }

            .interest-cta-btn {
                max-width: 100%;
            }

            .current-price {
                font-size: 26px;
            }

            .get-quote-btn {
                margin-bottom: 10px;

            }

            .price-tag-line {

                padding-bottom: 0px;
            }

            .contact-btn {
                display: none;
            }

            .catalog-list {
                display: flex;
                flex-direction: column;
                gap: 0px;
            }
        }
    