   :root {
            --saas-red: #cb4154; /* Brand Red */
            --saas-dark: #1a1a1a;
            --white: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; }

        /* --- Industries Hero Section --- */
        .hero-industries {
            position: relative;
            width: 100%;
            height: 60vh; /* 60% Vertical Height for Authority */
            min-height: 450px;
            /* Industrial Collage Background */
            background: linear-gradient(rgba(26, 26, 26, 0.59), rgba(26, 26, 26, 0.583)), 
                        url('../images/instries-hero.png') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .hero-container {
            max-width: 1000px; /* Matching your preferred narrow container */
            margin: 0 auto;
        }

        .hero-industries h1 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-industries .subheading {
            font-size: clamp(16px, 2vw, 20px);
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        .hero-industries .support-line {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--saas-red);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            display: inline-block;
        }

        /* Responsive Tweaks */
        @media (max-width: 768px) {
            .hero-industries { height: 50vh; }
            .hero-industries h1 { font-size: 32px; }
            .hero-industries .subheading { font-size: 15px; }
        }


        /* Section Container */
    .industries-grid-section {
        background-color: #ffffff;
        padding: 80px 0;
        font-family: 'Inter', sans-serif;
        color: #1a1a1a;
    }

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

    .section-intro {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-intro h2 {
        font-size: 32px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.02em;
        margin-bottom: 10px;
    }

    /* 5-Column Responsive Grid */
    .industry-overview-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    /* Industry Card Styling */
    .industry-overview-card {
        background: #f9f9f9;
        padding: 40px 20px;
        border-radius: 12px;
        border: 1px solid #eee;
        text-align: center;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-decoration: none;
        height: 100%;
    }

    .industry-overview-card:hover {
        background: #ffffff;
        border-color: #cb4154; /* Brand Red */
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    }

    .industry-overview-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .industry-overview-icon img {
        width: 100%;
        height: auto;
    }

    .industry-overview-card h3 {
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 15px;
        color: #1a1a1a;
        line-height: 1.3;
        min-height: 40px;
    }

    .industry-overview-card p {
        font-size: 13px;
        color: #666;
        margin-bottom: 30px;
        line-height: 1.5;
        flex-grow: 1;
    }

    .btn-view-details {
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        color: #cb4154;
        letter-spacing: 1px;
        border-top: 1px solid #eee;
        padding-top: 15px;
        transition: 0.3s;
        margin-top: auto;
    }

    .industry-overview-card:hover .btn-view-details {
        color: #1a1a1a;
    }

    /* Responsive Grid Logic */
    @media (max-width: 1100px) {
        .industry-overview-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 768px) {
        .industry-overview-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 480px) {
        .industry-overview-grid { grid-template-columns: 1fr; }
    }


     /* --- Base Section Styling --- */
    .industry-detail-section {
        padding: 100px 0;
        font-family: 'Inter', sans-serif;
        background-color: #ffffff;
    }

    .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .detail-block {
        display: flex;
        align-items: center;
        gap: 60px;
        margin-bottom: 120px;
    }

    .detail-block:nth-child(even) { flex-direction: row-reverse; }

    /* --- Visual Side --- */
    .detail-visual {
        flex: 1;
        position: relative;
    }

    .detail-visual img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    /* --- Content Side --- */
    .detail-content { flex: 1; }

    .detail-content h2 {
        font-size: 32px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 20px;
        color: #1a1a1a;
        line-height: 1.2;
    }

    .detail-content p {
        font-size: 16px;
        line-height: 1.7;
        color: #555;
        margin-bottom: 30px;
    }

    /* --- Key Solutions Grid --- */
    .solutions-mini-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .sol-item {
        background: #f9f9f9;
        padding: 15px;
        border-left: 4px solid #cb4154; /* Brand Red */
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        color: #1a1a1a;
    }

    /* --- Why It Matters / EEAT Box --- */
    .eeat-box {
        background: rgba(203, 65, 84, 0.05);
        padding: 20px;
        border-radius: 8px;
        border: 1px solid rgba(203, 65, 84, 0.1);
    }

    .eeat-box h4 {
        font-size: 13px;
        text-transform: uppercase;
        color: #cb4154;
        margin-bottom: 8px;
        letter-spacing: 1px;
    }

    .eeat-box p {
        font-size: 14px;
        margin-bottom: 0;
        font-style: italic;
    }

    /* --- Responsive --- */
    @media (max-width: 992px) {
        .detail-block, .detail-block:nth-child(even) { 
            flex-direction: column; 
            gap: 40px; 
            margin-bottom: 80px;
        }
        .detail-visual img { height: 300px; }
    }


      /* Section Container */
    .visual-proof-section {
        background-color: #f9f9f9; /* Subtle background contrast */
        padding: 100px 0;
        font-family: 'Inter', sans-serif;
        color: #1a1a1a;
    }

    .container {
        max-width: 1100px; /* Matching your preferred narrow container */
        margin: 0 auto;
        padding: 0 20px;
    }

    .visual-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .visual-header h2 {
        font-size: 36px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.02em;
    }

    /* 3-Column Image Grid */
    .industry-projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* Project Item Styling */
    .industry-project-item {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        aspect-ratio: 1 / 1; /* Forces square aspect ratio for symmetry */
    }

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

    /* Dark Overlay for Text */
    .industry-project-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(26, 26, 26, 0.9));
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Aligns text to bottom */
        padding: 30px;
        color: #ffffff;
        z-index: 2;
    }

    .industry-project-overlay span {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #cb4154; /* Brand Red */
        margin-bottom: 8px;
        display: block;
    }

    .industry-project-overlay h3 {
        font-size: 20px;
        font-weight: 800;
        text-transform: uppercase;
        line-height: 1.2;
        margin: 0;
    }

    /* Hover Effects */
    .industry-project-item:hover img {
        transform: scale(1.1);
    }

    /* Responsive Grid */
    @media (max-width: 992px) {
        .industry-projects-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 600px) {
        .industry-projects-grid { grid-template-columns: 1fr; }
        .visual-header h2 { font-size: 28px; }
    }

      /* Section Container */
    .industry-cta-section {
        background-color: #141e30; /* Dark Navy Industrial */
        padding: 90px 0;
        font-family: 'Inter', sans-serif;
        color: #ffffff;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* Subtle Technical Overlay Background */
    .industry-cta-section::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
        opacity: 0.1;
        pointer-events: none;
    }

    .container {
        max-width: 1000px; /* Matching your narrow container preference */
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    .industry-cta-section h2 {
        font-size: clamp(28px, 4vw, 38px);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .industry-cta-section p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 45px;
        font-weight: 500;
    }

    /* Button Layout */
    .cta-button-wrapper {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .btn-main-cta {
        display: inline-block;
        background-color: #cb4154; /* Brand Red */
        color: #ffffff;
        padding: 18px 45px;
        text-decoration: none;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1px;
        border-radius: 4px;
        transition: all 0.3s ease;
        border: 2px solid #cb4154;
    }

    .btn-main-cta:hover {
        background-color: transparent;
        color: #ffffff;
        transform: translateY(-3px);
    }

    .btn-whatsapp-cta {
        display: inline-block;
        background-color: #25d366; /* WhatsApp Green */
        color: #ffffff;
        padding: 18px 45px;
        text-decoration: none;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .btn-whatsapp-cta:hover {
        background-color: #1da851;
        transform: translateY(-3px);
    }

    /* Trust indicators below button */
    .cta-trust-badges {
        margin-top: 40px;
        display: flex;
        justify-content: center;
        gap: 30px;
        opacity: 0.6;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    @media (max-width: 600px) {
        .cta-button-wrapper { flex-direction: column; gap: 15px; }
        .btn-main-cta, .btn-whatsapp-cta { width: 100%; padding: 18px 20px; }
        .cta-trust-badges { flex-direction: column; gap: 10px; }
    }