 /* Split Section Layout */
        .split-section {
            padding: 80px 0;
            background-color: #fff;
        }
        .split-section:nth-child(even) {
            background-color: #F8F9FA;
        }
        .split-row {
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }
        .split-row.reverse {
            flex-direction: row-reverse;
        }
        .split-content {
            flex: 1;
            min-width: 300px;
        }
        .split-image {
            flex: 1;
            min-width: 300px;
        }
        .split-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .split-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        .split-content p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.7;
        }
        .feature-list {
            list-style: none;
            padding: 0;
        }
        .feature-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
            font-weight: 500;
            color: #333;
        }
        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Why Choose Us Grid */
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .why-card {
            background: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            border-top: 4px solid transparent;
        }
        .why-card:hover {
            transform: translateY(-5px);
            border-top-color: var(--primary);
        }
        .why-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .why-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--secondary);
        }
        .why-card p {
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .split-row, .split-row.reverse {
                flex-direction: column;
            }
        }:root {
    --primary: #004e92; /* Deep Industrial Blue */
    --secondary: #000000; /* Rich Black */
    --accent: #0197D8; /* Industrial Orange */
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --border-radius: 8px;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 5%;
}

.logo img {
    height: 50px;
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

header.scrolled nav a {
    color: var(--text-dark);
}

nav a:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,78,146,0.4));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.4);
}

/* STATS BAR */
.stats-bar {
    background: var(--primary);
    padding: 50px 5%;
    color: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ABOUT SECTION */
.about-section {
    padding: 100px 5%;
    background: white;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-img-container {
    position: relative;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}


/* CAPABILITIES SECTION */
.capabilities-section {
    background: var(--light-bg);
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cap-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
}

.cap-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-top-color: var(--accent);
}

.cap-number {
    font-family: 'Oswald';
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.cap-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* SERVICES GRID */
.services-section {
    padding: 100px 5%;
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--secondary);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.service-card:hover {
    background: var(--primary);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CLIENTS & TESTIMONIALS */
.trust-section {
    background: var(--light-bg);
    padding: 80px 5%;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.client-logos img {
    height: 90px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.client-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.quote {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #444;
}

.author-info h4 {
    color: var(--primary);
    font-size: 1rem;
}

.author-info span {
    font-size: 0.8rem;
    color: #888;
}

/* FOOTER */
footer {
    background: var(--secondary);
    color: white;
    padding: 60px 5% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about p {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-title {
    font-family: 'Oswald';
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    nav ul { display: none; } /* Would toggle with JS */
    
    .hero-content h1 { font-size: 2.5rem; }
    
    .about-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}