.nav-button img {
    width: 28px;
    height: 28px;
    filter: invert(0);
    display: block;
    pointer-events: none;
    transition: filter 0.2s;
}
.nav-button:hover {
    background: #800000 !important;
    border-color: #800000 !important;
}
.nav-button:hover img {
    filter: invert(1);
}
/* Blur out testimonial cards that are not active */
.testimonial-card {
    /* ...existing styles... */
}
.testimonial-card.blurred {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0.96) !important;
    filter: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.testimonial-card:not(.blurred) {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, -50%) scale(1) !important;
    filter: none !important;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.service-modal-content {
    background: #fff;
        /*
        .credibility-bar {
            background: #1a2332;
            color: white;
            padding: 18px 10px;
            min-height: 120px;
            height: 200px;
            display: flex;
            align-items: center;
        }

        .credibility-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            text-align: center;
            height: 100%;
        }

        .credibility-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .credibility-icon {
            background: #fff;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            margin: 0 auto 4px auto;
            overflow: hidden;
        }
        .credibility-icon img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            display: block;
        }

        .credibility-text {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.3;
        }
        */
    padding: 32px 24px;
    max-width: 420px;
    width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* --- Services Section Enhancements --- */
.services-intro {
    max-width: 800px;
    margin: 0 auto 32px auto;
    color: #333;
    font-size: 1.1rem;
    text-align: center;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}


.product-card.service-card {
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    width: 270px;
    height: 220px;
    cursor: pointer;
    transition: box-shadow 0.2s;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.product-card.service-card {
    /* ...existing code... */
    transition: box-shadow 0.2s, background-size 0.35s cubic-bezier(.4,1.6,.6,1);
}
.product-card.service-card:hover {
    box-shadow: 0 6px 32px rgba(128,0,0,0.18);
    background-size: 120%;
}

.product-overlay {
    width: 100%;
    /* keep gradient very low so most of the image is visible */
    background: linear-gradient(0deg, rgba(0,0,0,0.64) 96%, rgba(0,0,0,0.12) 100%);
    padding: 0; /* remove extra padding so text sits flush at bottom */
    min-height: 0;
    display: flex;
    align-items: flex-end; /* ensure content anchors to bottom */
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 6px; /* small offset so text isn't clipped */
    z-index: 2;
}

.product-title {
    font-size: 0.85rem; /* reduce size for all cards */
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 0 12px 2px 12px; /* keep tiny gap from bottom */
    text-shadow: 0 1px 6px rgba(0,0,0,0.22);
    line-height: 1.05;
}

@media (max-width: 600px) {
    .product-title { font-size: 0.78rem; }
}

/* --- Modal Styles --- */
.service-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.45);
    align-items: center;
    justify-content: center;
}
.service-modal.active {
    display: flex;
}

.service-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #800000;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.18s;
    z-index: 10;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes modalIn {
    from { transform: translateY(40px) scale(0.97); opacity: 0; }
    to { transform: none; opacity: 1; }
}


.service-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #800000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.18s;
    z-index: 10;
    padding: 0;
    font-size: 2rem;
    color: #fff; 
}
.service-modal-close:hover {
    background: #a00000;
}
.service-modal-close svg {
    width: 28px;
    height: 28px;
    display: block;
}

#serviceModalBody {
    color: #222;
    font-size: 1.05rem;
    line-height: 1.6;
}
#serviceModalBody ul {
    list-style: none;
    padding-left: 0;
    margin: 12px 0 16px;
}
#serviceModalBody ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
}
#serviceModalBody ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #800000;
    font-weight: 700;
}
/* Testimonials section removed */
/* Portfolio Slideshow Enhanced Animations */
.portfolio-slide.anim-morph.incoming {
    animation: morphIn 1s cubic-bezier(.22,.9,.3,1) both;
    z-index: 2;
}
.portfolio-slide.anim-morph.outgoing {
    animation: morphOut 1s cubic-bezier(.22,.9,.3,1) both;
    z-index: 1;
}
@keyframes morphIn {
    0% { transform: scale(0.7) rotateY(30deg) skewY(8deg); opacity: 0; border-radius: 50%; }
    60% { border-radius: 30%; }
    100% { transform: scale(1) rotateY(0) skewY(0); opacity: 1; border-radius: 0; }
}
@keyframes morphOut {
    0% { transform: scale(1) rotateY(0) skewY(0); opacity: 1; border-radius: 0; }
    100% { transform: scale(0.7) rotateY(-30deg) skewY(-8deg); opacity: 0; border-radius: 50%; }
}

.portfolio-slide.anim-flip3d.incoming {
    animation: flipIn 1s cubic-bezier(.22,.9,.3,1) both;
    z-index: 2;
}
.portfolio-slide.anim-flip3d.outgoing {
    animation: flipOut 1s cubic-bezier(.22,.9,.3,1) both;
    z-index: 1;
}
@keyframes flipIn {
    0% { transform: rotateY(180deg) scale(0.7); opacity: 0; }
    100% { transform: rotateY(0) scale(1); opacity: 1; }
}
@keyframes flipOut {
    0% { transform: rotateY(0) scale(1); opacity: 1; }
    100% { transform: rotateY(-180deg) scale(0.7); opacity: 0; }
}

.portfolio-slide.anim-crop.incoming {
    animation: cropIn 1s cubic-bezier(.22,.9,.3,1) both;
    z-index: 2;
    clip-path: circle(0% at 50% 50%);
}
.portfolio-slide.anim-crop.outgoing {
    animation: cropOut 1s cubic-bezier(.22,.9,.3,1) both;
    z-index: 1;
    clip-path: circle(100% at 50% 50%);
}
@keyframes cropIn {
    0% { clip-path: circle(0% at 50% 50%); opacity: 0; }
    100% { clip-path: circle(75% at 50% 50%); opacity: 1; }
}
@keyframes cropOut {
    0% { clip-path: circle(75% at 50% 50%); opacity: 1; }
    100% { clip-path: circle(0% at 50% 50%); opacity: 0; }
}
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Top Bar removed - keep rules inert in case other pages reference them */
        .top-bar { display: none !important; }
        .top-bar-content { display: none !important; }
        .top-bar-actions { display: none !important; }

        .search-btn:hover, .utility-btn:hover {
            background: rgba(255,255,255,0.1);
        }

        .cta-btn-top {
            background: #d32f2f;
            color: white;
            border: none;
            padding: 8px 20px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .cta-btn-top:hover {
            background: #b71c1c;
        }

        /* Navigation (transparent overlay on hero) */
       .navbar {
        background: transparent;
        box-shadow: none;
        position: absolute;          /* changed from absolute → sits over hero AND page */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        padding: 12px 0;
    }
        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 160px; /* increased to fit larger logo */
        }

        .hero {
            position: relative;
            height: 95vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 90px; /* space for navbar overlay */
        }

        .logo {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px; /* leaves inner area ~90px for the image */
            box-shadow: 0 8px 26px rgba(0,0,0,0.12);
            flex: 0 0 auto;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* ensure full logo fits inside */
            display: block;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 12px;
            align-items: center;
        }

        /* white-filled nav items */
        .nav-menu li a {
            text-decoration: none;
            background: #ffffff;
            color: #1a2332;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            transition: transform 0.16s ease, background 0.18s;
            padding: 8px 14px;
            border-radius: 8px;
            display: inline-block;
            box-shadow: 0 4px 12px rgba(26,35,50,0.08);
        }

        .nav-menu li a:hover {
            transform: translateY(-2px);
            background: #fff;
            color: #b71c1c;
        }

        /* Special styling for the last nav item (Contact) */
        .nav-menu li:last-child a {
            min-width: 160px; /* make the container longer */
            padding: 10px 20px; /* a bit larger for emphasis */
            background: #800000; /* maroon background */
            color: #fff; /* white text */
            font-weight: 700; /* bold */
            border-radius: 10px;
            text-align: center;
            transition: background 0.18s, color 0.18s, transform 0.16s;
            box-shadow: 0 6px 18px rgba(128,0,0,0.12);
        }

        .nav-menu li:last-child a:hover {
            background: #ffffff; /* invert background on hover for clear contrast */
            color: #000000; /* black bold text on hover */
            font-weight: 700;
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #1a2332;
            transition: all 0.3s;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: calc(95vh + 50px); /* increased by 50px */
            min-height: 650px; /* +50px from 600px */
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 180px; /* increase space so hero text sits lower under navbar */
        }
/* Hero Stats/Mission/Vision Section */
.hero-stats-section {
    width: 100%;
    /* make slightly transparent so hero video is visible behind it */
    background: linear-gradient(90deg, rgba(26,35,50,0.65) 0%, rgba(67,85,102,0.65) 100%);
    background-color: rgba(26,35,50,0.6);
    color: #fff;
    padding: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
}
.hero-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 0 20px;
}
.hero-stat {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 24px; /* reduced padding to lower overall height */
    text-align: center;
}
.hero-stat-icon {
    font-size: 28px; /* slightly smaller icon */
    margin-bottom: 12px;
    color: #fff;
}
.hero-stat-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.hero-stat-content p {
    font-size: 15px;
    color: #e0e0e0;
    margin: 0;
}
.hero-divider {
    width: 2px;
    background: #fff;
    opacity: 0.7;
    margin: 16px 0; /* reduced divider spacing */
    align-self: stretch;
    border-radius: 2px;
    box-shadow: 0 0 6px #fff, 0 0 1px #fff;
}
@media (max-width: 900px) {
    .hero-stats-container {
        flex-direction: column;
        gap: 0;
    }
    .hero-divider {
        width: 80%;
        height: 2px;
        margin: 0 auto 24px auto;
        background: #fff;
        align-self: center;
    }
}
@media (max-width: 600px) {
    .hero-stat {
        padding: 24px 10px 20px 10px;
    }
    .hero-stat-content h3 {
        font-size: 18px;
    }
    .hero-stat-content p {
        font-size: 13px;
    }
}

        .hero-bg {
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            overflow: hidden;
            z-index: 1;
        }

        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 0.7;
        }
        
        .hero-bg::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
            z-index: 2;
        }

        @keyframes heroZoom {
            0%, 100% {
                transform: scale(1) translate(0, 0);
            }
            25% {
                transform: scale(1.1) translate(-2%, -2%);
            }
            50% {
                transform: scale(1.05) translate(2%, 1%);
            }
            75% {
                transform: scale(1.12) translate(-1%, 2%);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 1000px;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 58px;
            font-weight: 300;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-title .highlight {
            color: #d32f2f;
            font-weight: 700;
            font-style: italic;
        }

        .hero-subtitle {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .btn-primary {
            background: #d32f2f;
            color: white;
            padding: 16px 40px;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary:hover {
            background: #b71c1c;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 16px 40px;
            border: 2px solid white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-secondary:hover {
            background: white;
            color: #1a2332;
        }

        /* Stats Section */
        .stats-section {
            background: #1a2332;
            color: white;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stats-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 5px;
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            text-align: left;
            flex: 1;
            min-width: 120px;
            padding: 0 15px;
            border-right: 1px solid rgba(255, 255, 255, 0.3);
            gap: 10px;
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-icon {
            font-size: 24px;
            margin-bottom: 0;
            flex-shrink: 0;
        }

        .stat-item h3 {
            font-size: 13px;
            font-weight: 600;
            margin: 0;
            line-height: 1.2;
        }

        .stat-item p {
            font-size: 11px;
            margin: 0;
            opacity: 0.95;
        }

        /* Section Styles */
        .section {
            padding: 80px 20px;
        }

        .about-section {
            min-height: 100vh;
            background: #f5f5f5;
            padding: 80px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-container {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* Left Side - Image with Cards */
        .image-section {
            position: relative;
            animation: fadeInLeft 1s ease;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .building-image-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            width: calc(100% - 5px); /* reduced width by 5px */
        }

        .building-image {
            width: 100%;
            height: 595px; /* reduced by 5px */
            object-fit: cover;
            display: block;
        }

        /* Certification Cards */
        .certifications-stack {
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cert-card {
            background: #fff;
            padding: 18px 25px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 15px;
            min-width: 220px;
            position: relative;
            overflow: hidden;
        }

        .cert-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            transition: width 0.3s ease;
        }

        .cert-card.red::before {
            background: #dc143c;
        }

        .cert-card.black::before {
            background: #1a1a1a;
        }

        .cert-card:hover {
            transform: translateX(-10px) scale(1.05);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
        }

        .cert-card:hover::before {
            width: 100%;
        }

        .cert-card.active {
            transform: translateX(-10px) scale(1.08);
            box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
        }

        .cert-card.active::before {
            width: 100%;
        }

        .cert-icon {
            width: 45px;
            height: 45px;
            background: #f5f5f5;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .cert-icon img {
            width: 30px;
            height: 30px;
            object-fit: contain;
        }

        .cert-info {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .cert-name {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 2px;
            transition: color 0.3s ease;
        }

        .cert-card:hover .cert-name,
        .cert-card.active .cert-name {
            color: #fff;
        }

        .cert-details {
            font-size: 13px;
            color: #666;
            transition: color 0.3s ease;
        }

        .cert-card:hover .cert-details,
        .cert-card.active .cert-details {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Right Side - Content */
        .content-section {
            padding: 40px 0;
            animation: fadeInRight 1s ease;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .company-name {
            font-size: 60px;
            font-weight: 900;
            color: #1a1a1a;
            letter-spacing: -2px;
            margin-bottom: 10px;
            line-height: 1;
        }

        .tagline {
            font-size: 32px;
            font-weight: 600;
            color: #4a4a4a;
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .content-wrapper {
            position: relative;
            overflow: hidden;
            min-height: 300px;
        }

        .content-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateX(100px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .content-item.active {
            position: relative;
            opacity: 1;
            transform: translateX(0);
        }

        .content-item.sliding-out {
            opacity: 0;
            transform: translateX(-100px);
        }

        .content-title {
            font-size: 24px;
            font-weight: 700;
            color: #dc143c;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .content-title i {
            font-size: 28px;
        }

        .content-text {
            font-size: 17px;
            line-height: 1.8;
            color: #4a4a4a;
            margin-bottom: 15px;
            text-align: justify;
        }

        .content-list {
            list-style: none;
            margin: 20px 0;
        }

        .content-list li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
            font-size: 16px;
            color: #4a4a4a;
        }

        .content-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #dc143c;
            font-weight: bold;
            font-size: 18px;
        }

        /* Progress Indicator */
        .progress-indicator {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }

        .progress-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .progress-dot.active {
            background: #dc143c;
            transform: scale(1.3);
        }

        .progress-dot:hover {
            background: #a00f2e;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .about-container {
                gap: 60px;
            }

            .certifications-stack {
                right: -30px;
            }

            .cert-card {
                min-width: 200px;
                padding: 15px 20px;
            }
        }

        @media (max-width: 1024px) {
            .about-container {
                gap: 50px;
            }

            .company-name {
                font-size: 60px;
            }

            .tagline {
                font-size: 26px;
            }

            .building-image {
                height: 495px;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 60px 20px;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .image-section {
                order: 2;
            }

            .content-section {
                order: 1;
                text-align: center;
            }

            .company-name {
                font-size: 50px;
            }

            .tagline {
                font-size: 22px;
            }

            .building-image {
                height: 395px;
            }

            .certifications-stack {
                position: relative;
                right: 0;
                top: 0;
                transform: none;
                margin-top: 30px;
                align-items: center;
            }

            .cert-card {
                min-width: 280px;
            }

            .cert-card:hover {
                transform: scale(1.05);
            }

            .content-text {
                text-align: left;
            }

            .progress-indicator {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 40px 15px;
            }

            .company-name {
                font-size: 40px;
            }

            .tagline {
                font-size: 20px;
                margin-bottom: 30px;
            }

            .building-image {
                height: 345px;
            }

            .building-image-wrapper {
                border-radius: 20px;
            }

            .cert-card {
                min-width: 100%;
                padding: 15px 18px;
            }

            .cert-name {
                font-size: 15px;
            }

            .cert-details {
                font-size: 12px;
            }

            .content-title {
                font-size: 20px;
            }

            .content-text {
                font-size: 15px;
            }

            .content-list li {
                font-size: 14px;
            }
        }

        /* Contact Section */
        .contact-section {
            background: #ffffff;
            color: #1a2332;
            position: relative;
            overflow: hidden;
            border-top: none;
        }

        /* Index-specific contact section (keeps changes page-scoped) */
        .index-contact-section {
            background: linear-gradient(135deg, rgb(38, 50, 56) 0%, rgb(55, 71, 79) 100%);;
            color: #fff;
            padding: 48px 20px;
        }

        .index-contact-header {
            max-width: 1200px;
            margin: 0 auto 18px auto;
            text-align: center;
        }

        .index-contact-title { font-size: 28px; margin-bottom: 6px; color: #1a2332; }
        .index-contact-subtitle { color: #555; margin-bottom: 12px; }

        .index-branches-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            align-items: stretch;
            padding: 8px 10px 0 10px;
        }

        .index-branch-item {
            background: white;
            border-radius: 10px;
            padding: 14px 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
            text-align: center;
        }

        .index-branch-name { font-weight: 700; color: #1a2332; margin-bottom: 6px; }
        .index-branch-phone { color: #555; }

        @media (max-width: 900px) {
            .index-branches-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 520px) {
            .index-branches-grid { grid-template-columns: 1fr; }
        }

        /* Two triangles pointing inward so their apexes meet at the section center
           Each pseudo-element's base is along the left/right edge of the section. */
        .contact-section::before,
        .contact-section::after {
            content: '';
            position: absolute;
            top: 0;
            height: 100%;
            width: 100vw; /* span entire viewport so base sits at screen edges */
            left: calc(50% - 50vw); /* align full-viewport pseudo-element with viewport */
            background: #f7f7f7;
            z-index: 0;
            pointer-events: none;
        }

        /* Left pseudo-element: base at left edge, apex at the element's right center (section center) */
        .contact-section::before {
            /* left base at viewport's left edge, apex at section center */
            clip-path: polygon(0 0, 0 100%, 100% 50%);
        }

        /* Right pseudo-element: base at right edge, apex at the element's left center (section center) */
        .contact-section::after {
            /* right base at viewport's right edge, apex at section center */
            clip-path: polygon(100% 0, 100% 100%, 0 50%);
        }

        /* Ensure inner content sits above the triangles */
        .contact-container { z-index: 1; position: relative; }

        @media (max-width: 900px) {
            .contact-section::before,
            .contact-section::after { width: 100vw; left: calc(50% - 50vw); }
            .contact-section::before { clip-path: polygon(0 0, 0 100%, 100% 50%); }
            .contact-section::after { clip-path: polygon(100% 0, 100% 100%, 0 50%); }
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
            padding: 40px 20px;
        }

        .contact-left {
            padding: 10px 20px;
        }

        .contact-heading {
            font-size: 32px;
            margin-bottom: 8px;
            color: var(--accent, #DC143C);
        }

        .contact-lead {
            color: #555;
            margin-bottom: 20px;
        }

        .contact-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .contact-card {
            background: white;
            padding: 16px;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        }

        /* Physical address card: span full width and contain a miniature map */
        .contact-card.physical-card {
            grid-column: 1 / -1;
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 16px;
        }

        .physical-map-wrapper {
            width: 100%;
            display: block;
        }

        .physical-map {
            width: 100%;
            height: 220px;
            border: 0;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .contact-card h4 {
            margin-bottom: 8px;
            font-size: 16px;
            color: #1a2332;
        }

        .contact-item {
            font-size: 14px;
            color: #444;
            margin: 4px 0;
        }

        .map-link {
            color: var(--accent, #DC143C);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-right {
            padding: 10px 20px;
        }

        .contact-form {
            background: white;
            padding: 22px;
            border-radius: 10px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            display: grid;
            gap: 12px;
        }

        .contact-form .form-row {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .contact-form label {
            font-size: 13px;
            color: #333;
        }

        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            border: 1px solid #e6e6e6;
            padding: 12px 14px;
            border-radius: 6px;
            font-size: 14px;
            outline: none;
            transition: box-shadow 0.15s, border-color 0.15s;
            background: #fff;
        }

        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            border-color: rgba(220,20,60,0.25);
            box-shadow: 0 6px 18px rgba(220,20,60,0.06);
        }

        .form-actions {
            display: flex;
            justify-content: flex-end;
            margin-top: 6px;
        }

        .contact-submit {
            background: var(--accent, #DC143C);
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }

        .contact-submit:hover {
            background: #b0122b;
            transform: translateY(-2px);
        }

        @media (max-width: 900px) {
            .contact-container {
                grid-template-columns: 1fr;
                padding: 20px 16px;
            }

            .contact-cards {
                grid-template-columns: 1fr;
            }

            .form-actions {
                justify-content: stretch;
            }

            .contact-submit {
                width: 100%;
            }

            .contact-card.physical-card {
                padding: 14px;
            }

            .physical-map {
                height: 180px;
            }
        }

        /* Map styles - full width row below contact grid */
        .contact-map-container {
            grid-column: 1 / -1;
            width: 100%;
            margin-top: 24px;
            display: block;
            padding: 0 20px 20px 20px;
            box-sizing: border-box;
            text-align: center;
        }

        .contact-map {
            width: 100%;
            height: 420px;
            border: 0;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (max-width: 900px) {
            .contact-map {
                height: 300px;
            }
        }

        /* ── Contact form — inline validation styles ── */
        .cf-invalid {
            border-color: #e53935 !important;
            background-color: #fff5f5 !important;
            outline: none;
        }

        .cf-error-msg {
            display: block;
            color: #e53935;
            font-size: 12px;
            margin-top: 4px;
            margin-bottom: 2px;
            font-weight: 500;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 60px;
            color: #1a2332;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* News Section */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .news-card {
            background: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .news-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .news-content {
            padding: 25px;
        }

        .news-meta {
            display: flex;
            gap: 15px;
            color: #666;
            font-size: 13px;
            margin-bottom: 12px;
        }

        .news-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a2332;
            line-height: 1.4;
        }

        .news-excerpt {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        /* News Carousel Section */
        .news-carousel-section {
            margin-top: 60px;
        }

        .carousel-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
        }

        .carousel-btn {
            background: #d32f2f;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            font-size: 24px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 50%;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .carousel-btn:hover {
            background: #b71c1c;
            transform: scale(1.1);
        }

        .carousel-btn:active {
            transform: scale(0.95);
        }

        .carousel-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .news-carousel {
            overflow: hidden;
            flex: 1;
            position: relative;
            width: 100%;
        }

        .news-carousel-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease-out;
            width: 100%;
        }

        .carousel-card {
            flex: 0 0 calc(25% - 22.5px);
            min-width: 280px;
        }

        @media (max-width: 1024px) {
            .carousel-card {
                flex: 0 0 calc(50% - 15px);
            }
        }

        @media (max-width: 768px) {
            .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .carousel-card {
                flex: 0 0 100%;
            }

            .carousel-wrapper {
                gap: 15px;
            }
        }

        /* Projects Portfolio */
        .portfolio-section {
            background: #f5f5f5;
        }

        /* Projects-related styles moved to css/projects.css */

        .portfolio-slider {
            position: relative;
            position: relative;
            height: 600px;
            background: #263238;
            overflow: hidden;
        }

        .portfolio-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #1a2332 0%, #37474f 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        /* Portfolio slideshow styles */
        .portfolio-slider { --anim-duration: 600ms; }

        .portfolio-track {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .portfolio-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: translateX(0) translateZ(0);
        }

        .portfolio-slide.active {
            opacity: 1;
            z-index: 2;
        }

        .portfolio-slide::before {
            content: attr(data-title);
            position: absolute;
            left: 50%;
            top: 18px;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.45);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-weight: 700;
            z-index: 5;
            font-size: 16px;
            text-align: center;
            white-space: nowrap;
        }

        .portfolio-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: none;
            background: rgba(0,0,0,0.5);
            color: #fff;
            cursor: pointer;
            z-index: 10;
            font-size: 20px;
        }

        .portfolio-btn.prev { left: 14px; }
        .portfolio-btn.next { right: 14px; }

        .portfolio-indicators {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 14px;
            display: flex;
            gap: 8px;
            z-index: 12;
        }

        .portfolio-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.45);
            border: none;
            cursor: pointer;
        }

        .portfolio-dot.active { background: var(--accent, #DC143C); transform: scale(1.2); }

        /* Animations: cut, wipe, push, reveal */
        .portfolio-slide.incoming.anim-cut { animation: cutIn var(--anim-duration) ease both; }
        .portfolio-slide.outgoing.anim-cut { animation: cutOut var(--anim-duration) ease both; }

        @keyframes cutIn { 0% { opacity: 0; transform: scale(1.04); } 100% { opacity:1; transform: scale(1); } }
        @keyframes cutOut { 0% { opacity:1; transform: scale(1); } 100% { opacity:0; transform: scale(0.98); } }

        .portfolio-slide.incoming.anim-wipe { animation: wipeIn var(--anim-duration) cubic-bezier(.2,.9,.3,1) both; }
        .portfolio-slide.outgoing.anim-wipe { animation: wipeOut var(--anim-duration) cubic-bezier(.2,.9,.3,1) both; }
        @keyframes wipeIn { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
        @keyframes wipeOut { from { clip-path: inset(0 0 0 0); } to { clip-path: inset(0 0 0 100%); } }

        .portfolio-slide.incoming.anim-push { animation: pushIn var(--anim-duration) cubic-bezier(.22,.9,.3,1) both; }
        .portfolio-slide.outgoing.anim-push { animation: pushOut var(--anim-duration) cubic-bezier(.22,.9,.3,1) both; }
        @keyframes pushIn { from { transform: translateX(100%); } to { transform: translateX(0%); } }
        @keyframes pushOut { from { transform: translateX(0%); } to { transform: translateX(-30%); opacity:0; } }

        .portfolio-slide.incoming.anim-reveal { animation: revealIn var(--anim-duration) ease both; }
        .portfolio-slide.outgoing.anim-reveal { animation: revealOut var(--anim-duration) ease both; }
        @keyframes revealIn { 0% { transform: translateY(8%); opacity:0; } 100% { transform: translateY(0); opacity:1; } }
        @keyframes revealOut { 0% { transform: translateY(0); opacity:1; } 100% { transform: translateY(-8%); opacity:0; } }

        @media (max-width: 900px) {
            .portfolio-slider { height: 420px; }
        }


        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: white;
            width: 40px;
            border-radius: 6px;
        }

        /* ── View More Button ───────────────────────────────── */
        .view-more-container {
            display: flex;
            justify-content: center;
            margin-top: 48px;
        }

        .btn-view-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 36px;
            background: transparent;
            color: #1a2332;               /* match your brand dark */
            border: 2px solid #1a2332;
            border-radius: 4px;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
        }

        .btn-view-more:hover {
            background: #1a2332;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .btn-view-more .btn-arrow {
            transition: transform 0.2s ease;
        }

        .btn-view-more:hover .btn-arrow {
            transform: translateX(5px);
        }

        /* Product Range */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .product-card {
            position: relative;
            height: 300px;
            overflow: hidden;
            cursor: pointer;
        }

        .product-bg {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a2332 0%, #546e7a 100%);
            transition: transform 0.5s;
        }

        .product-card:hover .product-bg {
            transform: scale(1.1);
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
            display: flex;
            align-items: flex-end; /* anchor overlay content to the bottom */
            justify-content: center;
            padding-bottom: 12px; /* small gap so text doesn't touch edge */
        }

        .product-title {
            color: white;
            font-size: 14px; /* slightly smaller */
            font-weight: 700;
            text-align: center;
            text-transform: uppercase;
            margin: 0; /* remove bottom margin so bottom padding controls spacing */
            padding: 0 20px 8px 20px; /* bottom padding to nudge text upward slightly while overall anchored to bottom */
            letter-spacing: 1px;
            line-height: 1.1;
        }

        /* Credibility Bar */
        .credibility-bar {
            background: #1a2332;
            color: white;
            padding: 18px 10px;
            min-height: 120px;
            height: 120px;
            display: flex;
            align-items: center;
        }

        .credibility-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            text-align: center;
            height: 100%;
        }

        .credibility-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .credibility-icon {
            background: #fff;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            margin: 0 auto 4px auto;
            overflow: hidden;
        }
        .credibility-icon img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            display: block;
        }

        .credibility-text {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.3;
        }

       /* SECTION */
        .company-overview {
            padding: 90px 5%;
            background: #ffffff;
        }

        /* GRID LAYOUT */
        .overview-container {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 70px;
            align-items: center;
        }

        /* LEFT VISUAL */
        .overview-visual {
            position: relative;
            width: 1005;
            max-width: 480px;
            height: 480px;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
        }

        /* BACKGROUND IMAGE */
        .overview-bg {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
                url("images/building.jpg") center/cover no-repeat;
        }

        /* CERTIFICATIONS */
        .certifications {
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 14px;
            z-index: 2;
        }

        /* CERT CARD */
        .cert-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            min-width: 230px;
            border-radius: 14px;
            color: #fff;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        }

        .cert-card img {
            width: 36px;
            height: 36px;
            background: #fff;
            border-radius: 8px;
            padding: 4px;
        }

        .cert-card strong {
            font-size: 14px;
            display: block;
        }

        .cert-card span {
            font-size: 12px;
            opacity: 0.9;
        }

        /* COLOR VARIANTS */
        .cert-card.red {
            background: #e53935;
        }

        .cert-card.dark {
            background: #111;
        }

        /* TEXT */
        .overview-text {
            max-width: 650px;
            text-align: center;
        }

        .overview-text h2 {
            font-size: 48px;
            margin-bottom: 10px;
        }

        .overview-text h3 {
            font-size: 26px;
            margin-bottom: 25px;
            color: #333;
        }

        .overview-text p {
            font-size: 16px;
            line-height: 1.7;
            color: #555;
            margin-bottom: 18px;
        }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            .overview-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .overview-visual {
                height: 500px;
                margin: 0 auto;
            }

            .certifications {
                right: 10px;
            }

            .overview-text {
                text-align: center;
                max-width: 100%;
            }
        }


        .brand-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .brand-logo {
            font-size: 48px;
            font-weight: 700;
            color: #1a2332;
            letter-spacing: 2px;
        }

        .company-headline {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a2332;
        }

        .company-subheadline {
            font-size: 20px;
            color: #666;
            margin-bottom: 30px;
        }

        .company-description {
            max-width: 900px;
            margin: 0 auto;
            color: #555;
            font-size: 16px;
            line-height: 1.8;
        }


        /* Memberships */
        .memberships {
            background: #f5f5f5;
        }

        .membership-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .membership-logo {
            width: 100px;
            height: 60px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            opacity: 0;
            transform: translateY(30px);
        }

        /* Fade in animation for membership logos */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .membership-logo.animate {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .membership-logo.animate:nth-child(1) { animation-delay: 0.1s; }
        .membership-logo.animate:nth-child(2) { animation-delay: 0.2s; }
        .membership-logo.animate:nth-child(3) { animation-delay: 0.3s; }
        .membership-logo.animate:nth-child(4) { animation-delay: 0.4s; }
        .membership-logo.animate:nth-child(5) { animation-delay: 0.5s; }
        .membership-logo.animate:nth-child(6) { animation-delay: 0.6s; }
        .membership-logo.animate:nth-child(7) { animation-delay: 0.7s; }
        .membership-logo.animate:nth-child(8) { animation-delay: 0.8s; }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #263238 0%, #37474f 100%);
            color: white;
            padding: 60px 20px;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-title {
            font-size: 42px;
            font-weight: 700;
            color: #d32f2f;
            margin-bottom: 15px;
        }

        .contact-subtitle {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .branches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .branch-item {
            text-align: center;
        }

        .branch-name {
            font-weight: 700;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .branch-phone {
            color: rgba(255,255,255,0.8);
            font-size: 14px;
        }

        /* Footer */
        .footer {
            background: #1a2332;
            color: white;
            padding: 60px 20px 30px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .footer-contact p {
            margin-bottom: 8px;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
            align-items: center;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 50%;
            overflow: hidden;
        }

        .social-icon img {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }

        .social-icon:hover {
            background: #d32f2f;
            transform: scale(1.1);
        }

        .footer-links h4 {
            margin-bottom: 20px;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 9999;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cookie-text {
            flex: 1;
            min-width: 250px;
            font-size: 14px;
        }

        .cookie-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 10px 20px;
            border: 1px solid #ddd;
            background: white;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }

        .cookie-btn:hover {
            background: #f5f5f5;
        }

        .cookie-btn.accept {
            background: #1a2332;
            color: white;
            border-color: #1a2332;
        }

        .cookie-btn.accept:hover {
            background: #263238;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                padding: 30px;
                transition: left 0.3s;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 28px;
            }

            .section-title {
                font-size: 28px;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-slider {
                height: 400px;
            }

            .contact-title {
                font-size: 32px;
            }

            .top-bar-content {
                flex-direction: column;
                align-items: flex-start;
                color: #fff;
            }

            .brand-logos {
                gap: 30px;
            }

            .brand-logo {
                font-size: 32px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 22px;
            }

            .btn-primary, .btn-secondary {
                padding: 12px 30px;
                font-size: 14px;
            }

            .section {
                padding: 50px 15px;
            }

            .cookie-banner {
                flex-direction: column;
                align-items: stretch;
            }

            .cookie-actions {
                flex-direction: column;
            }
        }

     /* Featured Partners Section - Minimized */
    .featured-partners-section {
        padding: 20px 40px !important;
        background: #ffffff;
    }

    .featured-partners-carousel {
        overflow: hidden;
        width: 100%;
    }

    .partners-track {
        display: flex;
        animation: scroll-left 30s linear infinite;
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    .featured-partner-logo {
        height: 80px !important;
        width: 130px !important;
        opacity: 0.6;
        transition: opacity 0.3s, transform 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .featured-partner-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .featured-partner-logo:hover {
        opacity: 1;
        transform: scale(1.08);
    }

    .featured-partners-section .partners-track {
        gap: 50px;
    }

    /* Floating WhatsApp Button */
    .whatsapp-button {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25d366, #20ba5a);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
        opacity: 0;
        visibility: hidden;
        transform: scale(0.8) translateY(20px);
        transition: all 0.3s ease-in-out;
        z-index: 999;
        cursor: pointer;
    }

    .whatsapp-button.visible {
        opacity: 1;
        visibility: visible;
        transform: scale(1) translateY(0);
    }

    .whatsapp-button:hover {
        background: linear-gradient(135deg, #20ba5a, #1da851);
        box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
        transform: scale(1.1);
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
        fill: white;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .whatsapp-button {
            width: 55px;
            height: 55px;
            bottom: 20px;
            right: 20px;
        }

        .whatsapp-icon {
            width: 28px;
            height: 28px;
        }
    }

    @media (max-width: 480px) {
        .whatsapp-button {
            width: 50px;
            height: 50px;
            bottom: 15px;
            right: 15px;
        }

        .whatsapp-icon {
            width: 24px;
            height: 24px;
        }
    }



