
        /* Theme variables are centralized in theme.css. */

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

        body {
            background-color: var(--bg-color);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .industry-page .container {
            margin-top: 60px;
        }

        .btn {
            background: var(--primary);
            color: white;
            padding: 10px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: #8a3ec4;
        }

        /* --- Hero Section --- */
        .hero {
            display: flex;
            align-items: center;
            padding: 80px 0;
            gap: 60px;
        }

        .hero-content {
            flex: 1;
        }

        .subtitle {
            color: var(--primary);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .text-gradient {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 500px;
            margin-bottom: 40px;
        }

        .stats {
            display: flex;
            gap: 40px;
        }

        .stat-item h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-item p {
            font-size: 0.8rem;
            margin: 0;
            color: var(--text-muted);
        }

        .hero-visual {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: auto;
        }

        .hero-visual img {
            height: auto;
        }

        /* Mocking the glowing globe */
        .globe-mock {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 1px dashed rgba(157, 78, 221, 0.4);
            box-shadow: 0 0 60px var(--primary-glow);
            position: relative;
            background: radial-gradient(circle, rgba(157, 78, 221, 0.1) 0%, transparent 70%);
        }

        .globe-icon {
            position: absolute;
            width: 50px;
            height: 50px;
            border: 1px solid var(--primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--surface);
            color: var(--primary);
            font-size: 1.2rem;
            box-shadow: 0 0 15px var(--primary-glow);
        }

        .globe-icon.i-1 {
            top: 10%;
            left: -10%;
        }

        .globe-icon.i-2 {
            top: 10%;
            right: -10%;
        }

        .globe-icon.i-3 {
            bottom: 10%;
            left: -10%;
        }

        .globe-icon.i-4 {
            bottom: 10%;
            right: -10%;
        }

        /* --- Section Titles --- */
        .section-header {
            text-align: center;
            margin: 80px 0 40px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            margin: 15px 0;
        }

        .section-header p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- Industry Cards --- */
        .industry-card {
            display: flex;
            background: var(--surface);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            margin-bottom: 24px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .industry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .card-image-mock {
            width: 300px;
            height: 240px;
            background: linear-gradient(135deg, #1c0a38 0%, #0a0316 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            color: rgba(255, 255, 255, 0.1);
            font-size: 4rem;
            border-right: 1px solid var(--border-color);
        }

        .card-image-mock img {
            height: 200px;
        }

        .card-content {
            padding: 30px;
            flex: 1;
            display: flex;
            gap: 20px;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: rgba(157, 78, 221, 0.1);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .card-info {
            flex: 1;
        }

        .card-info h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .card-info .highlight-text {
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .card-info p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .card-features {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 12px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .feature-item i {
            color: var(--primary);
            font-size: 1rem;
        }

        /* --- Difference Section --- */
        .timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 60px;
            padding-bottom: 60px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 50px;
            right: 50px;
            height: 1px;
            border-top: 2px dashed var(--border-color);
            z-index: 0;
        }

        .timeline-item {
            position: relative;
            z-index: 1;
            text-align: center;
            flex: 1;
            padding: 0 15px;
        }

        .timeline-icon {
            width: 80px;
            height: 80px;
            background: var(--bg-color);
            border: 2px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 1.8rem;
            transition: border-color 0.3s;
        }

        .timeline-item:hover .timeline-icon {
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(157, 78, 221, 0.2);
        }

        .timeline-item h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .timeline-item p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* --- Outcomes Grid --- */
        .outcomes-header {
            text-align: center;
            font-size: 1.8rem;
            margin: 80px 0 40px;
        }

        .outcomes-grid {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 80px;
        }

        .outcome-item {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
        }

        .outcome-icon {
            color: var(--primary);
            font-size: 1.5rem;
        }

        .outcome-item span {
            font-size: 0.9rem;
            font-weight: 500;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--border-color);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                text-align: center;
            }

            .hero p {
                margin: 0 auto 40px;
            }

            .stats {
                justify-content: center;
            }

            .card-content {
                flex-direction: column;
            }

            .timeline {
                flex-wrap: wrap;
                gap: 40px;
            }

            .timeline::before {
                display: none;
            }

            .timeline-item {
                min-width: 200px;
            }

            .outcomes-grid {
                flex-wrap: wrap;
            }

            .outcome-item {
                min-width: 200px;
            }

        }
    
/* ====================================
   RESPONSIVE FIXES & GLOBAL LAYOUT
==================================== */
.hero {
    max-width: var(--site-max-width, 1400px);
    margin: auto;
}

.hero-image-wrapper img,
.meet-image img,
.image-placeholder {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {

    /* Hero */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
        gap: 40px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 16px;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        min-width: 200px;
    }

    .image-placeholder {
        height: 200px;
    }

    /* Middle Sections */
    .workflow-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .step-card {
        min-width: 300px;
        flex: 1;
    }

    .workflow-arrow {
        display: none;
    }

    .meet-section {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .assess-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */
    .industry-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 900px) {

    /* Landscape Section */
    .cards-container {
        flex-direction: column;
        gap: 16px;
    }

    .card {
        width: 100%;
        max-width: 400px;
        min-height: auto;
        padding: 32px 24px;
    }

    .landscape-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }

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

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .industry-page .container {
        padding: 50px 16px;
    }

    .hero {
        padding: 110px 16px 40px;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: none;
    }

    /* Meet Zynetra & Work */
    .meet-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .divider {
        margin: 0 auto 24px auto;
    }

    .meet-image {
        width: 100%;
        min-height: auto;
    }

    .workflow-container {
        flex-direction: column;
    }

    .step-card {
        width: 100%;
        min-width: 100%;
    }

    .cards-container {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        width: 100%;
        max-width: 100%;
        padding: 32px 24px;
    }

    .workflow-arrow {
        display: block;
        transform: rotate(90deg);
        margin: 8px 0;
    }

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

    /* Assess & Industries & CTA & Footer */
    .assess-grid {
        grid-template-columns: 1fr;
    }

    .industry-arrow {
        display: none;
    }

    .industries-flex {
        justify-content: center;
        flex-direction: column;
    }

    .industry-card {
        width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .meet-content h2 {
        font-size: 28px;
    }

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

    .hero {
        padding: 110px 24px 32px;
    }

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

    .industry-card {
        width: 100%;
    }
    
    .card,
    .service-card,
    .step-card {
        padding: 20px;
    }
}
.industry-page .container{
    margin-top: 60px;
}
@media (max-width: 600px){
    .industry-page .container{
        margin-top: -20px;
    }
}
