/* Banner Section */
.banner-section {
    padding: 0;
    overflow: hidden;
}

/* Splide Slider */
#banner-slider {
    border-radius: 0;
    overflow: hidden;
}

/* Banner Slide */
.banner-slide {
    position: relative;
    height: 580px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Banner Overlay — left-heavy diagonal fade */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(100deg,
        rgba(8, 12, 35, 0.95) 0%,
        rgba(8, 12, 35, 0.80) 45%,
        rgba(8, 12, 35, 0.30) 75%,
        rgba(8, 12, 35, 0.10) 100%);
    z-index: 1;
}

/* Accent bottom bar */
.banner-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c5a 50%, transparent 100%);
    z-index: 3;
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Banner Text (Left Side) */
.banner-text {
    width: 55%;
    color: #fff;
}

/* Label — tag style with left-side accent bar */
.banner-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ff6b35;
    border-left: 3px solid #ff6b35;
    padding: 4px 0 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.banner-heading {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-heading span {
    color: #ff6b35;
}

.banner-details {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    max-width: 85%;
    border-left: 2px solid rgba(255,107,53,0.4);
    padding-left: 14px;
}

/* Legacy .banner-btn (unused but kept safe) */
.banner-btn {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background: #e8551f;
    color: #fff;
}

/* Banner Card (Right Side) */
.banner-card {
    width: 38%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner-card::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255,107,53,0.35);
    border-radius: 4px;
    pointer-events: none;
}

.banner-card img {
    max-width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.banner-card img:hover {
    transform: scale(1.03);
}

/* Splide Arrows — square sharp style */
.splide__arrow {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 0;
    width: 48px;
    height: 48px;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

#banner-slider:hover .splide__arrow {
    opacity: 1;
}

.splide__arrow:hover {
    background: #ff6b35;
    border-color: #ff6b35;
}

.splide__arrow svg {
    fill: #fff;
    width: 16px;
    height: 16px;
}

.splide__arrow--prev {
    left: 24px;
}

.splide__arrow--next {
    right: 24px;
}

/* Splide Pagination — line style */
.splide__pagination {
    bottom: 22px;
    gap: 6px;
}

.splide__pagination__page {
    background: rgba(255, 255, 255, 0.35);
    width: 28px;
    height: 3px;
    border-radius: 2px;
    margin: 0 3px;
    transition: all 0.3s ease;
}

.splide__pagination__page.is-active {
    background: #ff6b35;
    width: 48px;
    transform: none;
}

/* Responsive */
@media (max-width: 991px) {
    .banner-slide {
        height: 480px;
    }

    .banner-content {
        padding: 40px 50px;
    }

    .banner-heading {
        font-size: 38px;
    }

    .banner-details {
        font-size: 14px;
    }

    .banner-card img {
        max-height: 280px;
    }
}

@media (max-width: 767px) {
    .banner-slide {
        height: auto;
        min-height: 420px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .banner-text {
        width: 100%;
        margin-bottom: 28px;
    }

    .banner-label {
        border-left: none;
        border-bottom: 2px solid #ff6b35;
        padding: 0 0 6px 0;
        justify-content: center;
    }

    .banner-details {
        border-left: none;
        border-top: 2px solid rgba(255,107,53,0.4);
        padding: 12px 0 0 0;
        max-width: 100%;
    }

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

    .banner-card {
        width: 85%;
    }

    .banner-card::before {
        display: none;
    }

    .banner-card img {
        max-height: 260px;
    }

    .splide__arrow {
        width: 38px;
        height: 38px;
    }

    .splide__arrow--prev { left: 10px; }
    .splide__arrow--next { right: 10px; }
}

@media (max-width: 480px) {
    .banner-heading {
        font-size: 24px;
    }

    .banner-label {
        font-size: 10px;
        letter-spacing: 2px;
    }
}

/* ========================================
   Contact Info Section
======================================== */
#contact-info {
    padding: 25px 0;
    background: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.phone-icon {
    background: linear-gradient(135deg, #233364 0%, #1a2a5c 100%);
}

.contact-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #1a9e72 100%);
}

.contact-icon i {
    font-size: 22px;
    color: #fff;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    font-weight: 500;
}

.contact-info-item .contact-value {
    font-size: 20px;
    font-weight: 700;
    color: #233364;
    text-decoration: none;
}

/* Contact Us Column */
.contact-info-item:last-child {
    justify-content: center;
}

.contact-info-item:last-child .contact-text {
    align-items: center;
    gap: 10px;
}

.contact-email {
    font-size: 16px;
    color: #233364;
    font-weight: 600;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.contact-btn i {
    font-size: 16px;
}

/* Contact Info Responsive */
@media (max-width: 900px) {
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .contact-info-item:last-child {
        grid-column: span 2;
    }

    .contact-info-item .contact-value {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    #contact-info {
        padding: 20px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-info-item {
        padding: 0 10px;
    }

    .contact-info-item:last-child {
        grid-column: span 1;
        justify-content: center;
        padding-top: 5px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-icon i {
        font-size: 20px;
    }

    .contact-info-item .contact-value {
        font-size: 17px;
    }

    .contact-email {
        font-size: 15px;
    }

    .contact-btn {
        padding: 11px 24px;
        font-size: 14px;
    }
}

/* ========================================
   Custom Signage Section
======================================== */
.custom-signage-section {
    padding: 70px 0;
    
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ff6b35;
    border: 1.5px solid #ff6b35;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
    position: relative;
}
.section-label::before,
.section-label::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 1.5px;
    background: #ff6b35;
    vertical-align: middle;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    color: #1a1f3c;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.15;
    position: relative;
    display: block;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a);
    border-radius: 2px;
    margin: 14px auto 0;
}

.section-subtitle {
    font-size: 16px;
    color: #6b7a8d;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 400;
}

/* Cards Grid - 6 columns for desktop */
.signage-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Individual Card */
.signage-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}


/* Card Image */
.card-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

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

.signage-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(35, 51, 100, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.signage-card:hover .card-overlay {
    opacity: 1;
}

/* Card Content */
.card-content {
    padding: 18px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #233364;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.card-description {
    font-size: 12px;
    color: #6b7c8d;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.card-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.signage-card:hover .card-btn {
    color: #233364;
}

.signage-card:hover .card-btn i {
    transform: translateX(5px);
}

/* Responsive Styles for Signage Cards */
@media (max-width: 1200px) {
    .signage-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1000px) {
    .signage-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 800px) {
    .signage-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .custom-signage-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 650px) {
    .signage-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .section-label {
        font-size: 11px;
        padding: 6px 16px;
    }

    .card-image {
        height: 120px;
    }

    .card-content {
        padding: 15px 12px;
    }

    .card-title {
        font-size: 13px;
    }

    .card-description {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    /* .signage-cards-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    } */

    .custom-signage-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .card-image {
        height: 160px;
    }
}

/* ========================================
   Before & After Section
======================================== */
.before-after-section {
    padding: 70px 0;
    background: #233364;
}

.before-after-section .section-header {
    margin-bottom: 40px;
}

.before-after-section .section-label {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
}

.before-after-section .section-title {
    color: #fff;
}

.before-after-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Gallery Grid */
.before-after-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 340px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 5px;
}

/* old gallery-item img replaced by .ba-side img below */

.overlay-text {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* See More Button */
.see-more-wrapper {
    text-align: center;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.see-more-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.see-more-btn:hover i {
    transform: translateX(5px);
}


@media (max-width: 600px) {
    .before-after-section {
        padding: 50px 0;
    }

    .before-after-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    

    .gallery-item {
        border-radius: 12px;
        height: 180px;
    }

    .overlay-text {
        font-size: 13px;
    }

    .see-more-btn {
        padding: 14px 30px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .overlay-text {
        font-size: 11px;
    }
}

/* ========================================
   Portfolio Sections (Images & Videos)
======================================== */
.portfolio-section {
    padding: 70px 0;
}

.portfolio-images {
    background: #fff;
}

.portfolio-videos {
    background: #233364;
}

.portfolio-videos .section-title {
    color: #fff;
}

.portfolio-videos .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.portfolio-image-grid{
    grid-template-columns: repeat(4, 1fr);
}

/* Portfolio Image Items */
.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(35, 51, 100, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Video Items */
.video-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Video.js Player Grid */
.custom-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

.custom-video-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Video.js overrides */
.custom-video-item .video-js {
    border-radius: 16px;
    font-family: inherit;
}

.custom-video-item .vjs-big-play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    top: 50%;
    left: 50%;
    line-height: 70px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.2s ease, background 0.2s ease;
}

.custom-video-item .vjs-big-play-button .vjs-icon-placeholder::before {
    color: #233364;
    font-size: 28px;
    line-height: 70px;
}


.custom-video-item .vjs-control-bar {
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    height: 42px;
    align-items: center;
    padding: 0 8px;
}

.custom-video-item .vjs-progress-control {
    flex: 1;
}

.custom-video-item .vjs-play-progress {
    background: #fff;
}

.custom-video-item .vjs-load-progress {
    background: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .custom-video-grid {
        grid-template-columns: 1fr;
    }
}

/* See More Dark Variant */
.see-more-btn.see-more-dark {
    border-color: #233364;
    color: #233364;
}

.see-more-btn.see-more-dark:hover {
    background: #233364;
    color: #fff;
    box-shadow: 0 10px 30px rgba(35, 51, 100, 0.3);
}

/* Responsive */
@media (max-width: 1000px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .portfolio-section {
        padding: 50px 0;
    }

    .portfolio-grid {
        gap: 15px;
    }

    .portfolio-item,
    .video-item {
        border-radius: 12px;
    }

    .portfolio-overlay {
        padding: 15px;
    }

    .portfolio-overlay h4 {
        font-size: 15px;
    }

    .portfolio-overlay p {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .portfolio-grid {
        gap: 10px;
    }

    .portfolio-overlay h4 {
        font-size: 13px;
    }

    .portfolio-overlay p {
        font-size: 11px;
    }
}

/* ========================================
   Combined Info Section (Company Profile + Services)
======================================== */
.combined-info-section {
    padding: 60px 0;
    background: #e8f4fc;
}

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

.info-card {
    background: linear-gradient(180deg, #233364 0%, #1a2a5c 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

/* Services Card */
.info-card.services-card {
    padding: 30px;
}

.card-header-custom h2 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.card-header-custom p {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 20px;
}

.services-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.services-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.services-list h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
}

.services-list li i {
    color: #ffffff;
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 14px;
}

/* Company Card */
.info-card.company-card {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.company-images-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.company-images-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.company-images-grid img:hover {
    transform: scale(1.03);
}


.owner-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.owner-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #233364;
    flex-shrink: 0;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-info span {
    font-size: 14px;
    color: #666;
}

.owner-info h5 {
    font-size: 22px;
    font-weight: 700;
    color: #233364;
    margin: 0;
}

.company-logo-section {
    text-align: center;
    margin-top: auto;
}

.company-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.company-address p {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.7;
}

.company-contact {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.company-contact p {
    font-size: 15px;
    color: #233364;
    margin: 5px 0;
}

.company-contact p strong {
    color: #233364;
    font-size: 16px;
}

/* Signage Card */
.info-card.signage-card {
    padding: 25px;
    background: linear-gradient(180deg, #233364 0%, #1a2a5c 100%);
    color: #fff;
}

.signage-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-logo img {
    max-width: 120px;
    filter: brightness(0) invert(1);
    margin-bottom: 5px;
}

.header-logo span {
    display: block;
    font-size: 12px;
    color: #ff6b35;
}

.header-address p {
    font-size: 13px;
    margin: 0;
    text-align: right;
    opacity: 0.9;
}

.signage-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.signage-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.signage-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}


.signage-contact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.contact-phones p {
    font-size: 18px;
    margin: 5px 0;
}

.contact-phones p strong {
    color: #fff;
}

.contact-details {
    margin: 15px 0;
}

.contact-details p {
    font-size: 15px;
    margin: 5px 0;
    opacity: 0.9;
}

.social-handles {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-handles span {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-handles i {
    font-size: 16px;
}

/* Combined Info Section Responsive */
@media (max-width: 991px) {
    .combined-info-section {
        padding: 40px 0;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .signage-title {
        font-size: 26px;
    }

    .card-header-custom h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .card-header-custom h2 {
        font-size: 22px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .card-header-custom p {
        font-size: 15px;
    }

    .services-list li {
        font-size: 14px;
    }

    .services-list h4 {
        font-size: 18px;
    }

    .signage-header {
        flex-direction: column;
        gap: 10px;
    }

    .header-address {
        text-align: left;
    }

    .header-address p {
        text-align: left;
    }

    .social-handles {
        flex-direction: column;
        gap: 10px;
    }

    .signage-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .combined-info-section {
        padding: 30px 0;
    }

    .info-card {
        padding: 20px;
    }

    .signage-title {
        font-size: 20px;
    }

    .signage-gallery img {
        height: 200px;
    }

    .company-images-grid img {
        height: 200px;
    }

    .orange-title {
        font-size: 18px;
    }

    .key-points-image img,
    .working-image img,
    .overview-image img {
        height: 240px;
    }

    .working-gallery img,
    .overview-gallery img {
        height: 240px;
    }
}

/* Orange Card Styles */
.info-card.key-points-card,
.info-card.working-card,
.info-card.overview-card {
    background: #fff;
    padding: 30px;
}

.orange-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
}

.orange-subtitle {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 25px 0 15px;
    text-transform: uppercase;
    line-height: 1.3;
}

.orange-text {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Key Points Card (Left) */
.key-points-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.key-points-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.key-points-list li i {
    color: #ff6b35;
    font-size: 14px;
}

.key-points-image {
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.key-points-image img {
    border-radius: 10px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Working Card (Middle) */
.working-image {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.working-gallery {
    margin-top: 20px;
}

.working-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Overview Card (Right) */
.overview-image {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.overview-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.overview-gallery {
    margin-top: 20px;
}

.overview-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for specific card types */
@media (max-width: 991px) {
    .orange-title {
        font-size: 22px;
    }

    .orange-subtitle {
        font-size: 18px;
    }
}

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

    .orange-subtitle {
        font-size: 16px;
    }

    .key-points-list li {
        font-size: 13px;
    }

    .orange-text {
        font-size: 14px;
    }

    .working-gallery img,
    .overview-gallery img {
        height: 220px;
    }
}

/* ========================================
   Banner Action Buttons
======================================== */
.banner-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.banner-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ff6b35;
    color: #fff;
    border: 2px solid #ff6b35;
    padding: 13px 28px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.banner-btn-primary:hover {
    background: transparent;
    color: #ff6b35;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.banner-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    padding: 6px 2px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.banner-btn-secondary::after {
    content: '→';
    transition: transform 0.3s ease;
}

.banner-btn-secondary:hover {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.banner-btn-secondary:hover::after {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .banner-actions {
        justify-content: center;
    }
    .banner-btn-primary,
    .banner-btn-secondary {
        font-size: 12px;
    }
    .banner-btn-primary {
        padding: 11px 20px;
    }
}

/* ========================================
   Stats Section
======================================== */
.stats-section {
    background: #233364;
    padding: 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .stat-number { font-size: 34px; }
    .stat-item { padding: 22px 15px; }
}

@media (max-width: 550px) {
    .stats-grid { flex-wrap: wrap; }
    .stat-item { flex: 1 1 50%; padding: 18px 10px; }
    .stat-divider { display: none; }
    .stat-number { font-size: 30px; }
}

/* ========================================
   Contact Strip (redesigned)
======================================== */
.contact-strip {
    background: linear-gradient(135deg, #1a2550 0%, #233364 100%);
    padding: 36px 0;
}

.contact-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.strip-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.strip-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.strip-contacts {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.strip-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s ease;
}

.strip-contact-item:hover {
    opacity: 0.85;
    color: #fff;
}

.strip-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.strip-icon.phone-s {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.strip-icon.whatsapp-s {
    background: #25D366;
    color: #fff;
}

.strip-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.55);
}

.strip-contact-item strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.strip-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
}

.strip-cta-btn:hover {
    background: #e8551f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.45);
}

@media (max-width: 960px) {
    .contact-strip-inner {
        flex-direction: column;
        text-align: center;
    }
    .strip-contacts { justify-content: center; }
    .strip-info h3 { font-size: 20px; }
}

@media (max-width: 500px) {
    .strip-contacts { flex-direction: column; gap: 15px; align-items: center; }
    .strip-contact-item { flex-direction: column; text-align: center; gap: 8px; }
    .strip-contact-item strong { font-size: 15px; }
}

/* ========================================
   Portfolio Overlay Icon
======================================== */
.portfolio-overlay-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    font-size: 20px;
    color: #233364;
    transform: scale(0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item:hover .portfolio-overlay-icon {
    transform: scale(1);
}

/* ========================================
   Before & After Redesign
======================================== */
.gallery-item {
    display: flex;
    gap: 3px;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ba-side {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.ba-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .ba-side img {
    transform: scale(1.06);
}

.ba-label {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.before-label {
    background: rgba(190, 30, 30, 0.88);
    color: #fff;
}

.after-label {
    background: rgba(20, 150, 80, 0.88);
    color: #fff;
}

.ba-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    flex-shrink: 0;
    background: #233364;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

@media (max-width: 600px) {
    .gallery-item { height: 200px; }
    .ba-label { font-size: 10px; padding: 4px 10px; }
    .ba-divider { width: 26px; font-size: 11px; }
}

/* ========================================
   Combined Info Section Header override
======================================== */
.combined-info-section .section-header {
    margin-bottom: 40px;
}

.combined-title {
    color: #233364 !important;
}

.combined-subtitle {
    color: #5a6c7d !important;
}
