﻿

:root {
    --navy: #0a2a4a;
    --blue: #063b67;
    --teal: #1a7a8a;
    --orange: #e8760a;
    --text: #4b5563;
    --text-light: #6b7280;
    --border: #e0e7ef;
}

/* Hero */
.hero {
    background: linear-gradient(135deg,var(--navy) 0%,#0d3d6b 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.hero-title {
    font-family: 'Inter',serif;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Industry Section */
.industry-section {
    padding: 0;
    border-bottom: 1px solid var(--border);
}

    .industry-section:nth-child(odd) {
        background: #fff;
    }

    .industry-section:nth-child(even) {
        background: #f9fafb;
    }

.industry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
    padding: 50px;
}

/* Image Left, Text Right */
.industry-section:nth-child(odd) .industry-content {
    grid-template-columns: 1fr 1fr;
}

/* Text Left, Image Right */
.industry-section:nth-child(even) .industry-content {
    grid-template-columns: 1fr 1fr;
}

.industry-section:nth-child(even) .industry-image {
    order: 2;
}

.industry-section:nth-child(even) .industry-text {
    order: 1;
}

.industry-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .industry-image::after {
        content: '';
        position: absolute;
        inset: 0;
      /*  background: linear-gradient(135deg,rgba(6,59,103,0.7),rgba(10,42,74,0.5));*/
    }

.industry-text {
    padding: 60px 80px;
}

.industry-title {
    font-family: 'Inter',serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 20px;
}

.industry-description {
    font-size: 15px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 24px;
}

.industry-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--teal);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Placeholder images using gradients and icons */
.img-aerospace {
    background: linear-gradient(135deg,#1e3a8a,#3b82f6),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">✈️</text></svg>');
    background-blend-mode: overlay;
}

.img-agriculture {
    background: linear-gradient(135deg,#166534,#22c55e),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">🌾</text></svg>');
    background-blend-mode: overlay;
}

.img-automotive {
    background: linear-gradient(135deg,#7c2d12,#dc2626),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">🚗</text></svg>');
    background-blend-mode: overlay;
}

.img-chemicals {
    background: linear-gradient(135deg,#581c87,#a855f7),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">⚗️</text></svg>');
    background-blend-mode: overlay;
}

.img-consumer {
    background: linear-gradient(135deg,#be123c,#f43f5e),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">🛒</text></svg>');
    background-blend-mode: overlay;
}

.img-energy {
    background: linear-gradient(135deg,#ca8a04,#facc15),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">⚡</text></svg>');
    background-blend-mode: overlay;
}

.img-financial {
    background: linear-gradient(135deg,#0c4a6e,#0284c7),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">💰</text></svg>');
    background-blend-mode: overlay;
}

.img-food {
    background: linear-gradient(135deg,#ea580c,#fb923c),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">🍽️</text></svg>');
    background-blend-mode: overlay;
}

.img-healthcare {
    background: linear-gradient(135deg,#991b1b,#ef4444),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">🏥</text></svg>');
    background-blend-mode: overlay;
}

.img-industrial {
    background: linear-gradient(135deg,#44403c,#78716c),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">🏭</text></svg>');
    background-blend-mode: overlay;
}

.img-materials {
    background: linear-gradient(135deg,#44403c,#a8a29e),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">🔩</text></svg>');
    background-blend-mode: overlay;
}

.img-pharma {
    background: linear-gradient(135deg,#3730a3,#6366f1),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">💊</text></svg>');
    background-blend-mode: overlay;
}

.img-retail {
    background: linear-gradient(135deg,#9f1239,#e11d48),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">🏬</text></svg>');
    background-blend-mode: overlay;
}

.img-sustainability {
    background: linear-gradient(135deg,#14532d,#16a34a),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">♻️</text></svg>');
    background-blend-mode: overlay;
}

.img-technology {
    background: linear-gradient(135deg,#1e1b4b,#6366f1),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">💻</text></svg>');
    background-blend-mode: overlay;
}

.img-telecom {
    background: linear-gradient(135deg,#0c4a6e,#06b6d4),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">📡</text></svg>');
    background-blend-mode: overlay;
}

.img-transportation {
    background: linear-gradient(135deg,#7c2d12,#ea580c),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="55" x="50" text-anchor="middle" font-size="40" fill="white" opacity="0.3">🚚</text></svg>');
    background-blend-mode: overlay;
}

/* Responsive */
@media(max-width:1024px) {
    .industry-content {
        grid-template-columns: 1fr !important;
    }

    .industry-section:nth-child(even) .industry-image {
        order: 1 !important;
    }

    .industry-section:nth-child(even) .industry-text {
        order: 2 !important;
    }

    .industry-text {
        padding: 40px 32px;
    }

    .industry-image {
        min-height: 400px;
    }
}

@media(max-width:768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .industry-title {
        font-size: 1.8rem;
    }

    .industry-text {
        padding: 32px 24px;
    }

    .industry-image {
        min-height: 300px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
