/* General Page Styling */
body { 
    font-family: 'Segoe UI', Arial, sans-serif; 
    background: #0b1523; 
    color: #fff; 
    margin: 0; 
    line-height: 1.6; 
}

/* Nav Layout: Sticky, links on the right */
nav { 
    display: flex; 
    justify-content: flex-end; 
    align-items: center;
    padding: 20px 5%; 
    background: #050a12; 
    border-bottom: 2px solid #d4af37; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
}

nav ul { 
    display: flex; 
    list-style: none; 
    margin-right: 5%; 
}

nav ul li { margin-left: 20px; }
nav ul li a { color: #fff; text-decoration: none; font-weight: bold; }

/* Large Overlapping Logo - Positioned LEFT */
.hero-logo {
    position: absolute !important;
    top: 1px !important;
    left: 5%;
    z-index: 200 !important; 
    pointer-events: none; 
}

.hero-logo img {
    width: 190px !important; 
    height: auto !important;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
    display: block;
}

/* Hamburger Menu Elements */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; }

/* Mobile Responsive Adjustments */
/* Mobile Responsive Adjustments */
@media screen and (max-width: 768px) {
    /* Ensure the hamburger button is on the top right and sits above the logo */
    .nav-toggle-label {
        display: block;
        padding: 10px;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 10000; /* Higher than the logo's z-index (200) */
        background: #050a12; /* Optional: adds a background so it's not transparent */
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block; background: white; height: 3px; width: 25px; position: relative;
    }
    .nav-toggle-label span::before, .nav-toggle-label span::after {
        content: ''; position: absolute;
    }
    .nav-toggle-label span::before { bottom: 8px; }
    .nav-toggle-label span::after { top: 8px; }

    nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #050a12;
        position: absolute;
        top: 70px;
        left: 0;
        margin: 0;
        padding: 20px 0;
        text-align: center;
        z-index: 9999; /* Ensures the dropdown menu is also above the logo */
    }
    .nav-toggle:checked ~ ul {
        display: flex;
    }
}

/* Hero Section */
.hero { 
    height: 80vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('industry-bg.jpg') no-repeat center/cover; 
}

.btn { 
    padding: 15px 30px; 
    background: #d4af37; 
    color: #000; 
    text-decoration: none; 
    font-weight: bold; 
    margin-top: 20px; 
    border-radius: 4px;
}

/* Sections and Grid */
section { padding: 80px 10%; }
h2 { color: #d4af37; border-bottom: 2px solid #d4af37; display: inline-block; }

.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px; 
    margin-top: 30px; 
}

.card { 
    background: #16263d; 
    padding: 20px; 
    border-radius: 8px; 
    border-top: 4px solid #d4af37; 
}

footer { 
    text-align: center; 
    padding: 20px; 
    background: #050a12; 
    border-top: 1px solid #333; 
}