/* Global */
body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background: #0D1117;
    color: #C8D1E0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.header {
    background: rgba(13, 17, 23, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    width: 140px;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #C8D1E0;
    font-weight: 500;
}

.nav a:hover {
    color: #2EEBEB;
}
/* HERO WITH CRANES BACKGROUND */
.hero-with-image {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background image (cranes) */
.hero-with-image .hero-bg {
    position: absolute;
    inset: 0;
    background: url("images/cranes-hero.jpg") center center / cover no-repeat;
    filter: brightness(0.55) contrast(1.1);
    transform: scale(1.06);
}

/* Gradient overlay for brand style + readability */
.hero-with-image .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(46, 235, 235, 0.28),
        rgba(90, 107, 255, 0.30)
    );
    mix-blend-mode: screen;
}

/* Text on top */
.hero-with-image .hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 750px;
    padding: 0 20px;
    z-index: 5;
}

.hero-with-image h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-with-image p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}


/* Gradient Button */
.btn-gradient {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    border-radius: 8px;
    background: linear-gradient(135deg, #2EEBEB, #5A6BFF);
    transition: 0.2s;
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 80px 0;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2EEBEB, #5A6BFF);

    /* Standard property (VS Code wants this) */
    background-clip: text;

    /* WebKit prefix for Chrome, Safari, Edge */
    -webkit-background-clip: text;

    /* Make text transparent so gradient shows */
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section p {
    max-width: 800px;
    margin: auto;
}

/* Services */
.services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.card {
    width: 300px;
    padding: 25px;
    background: #161B22;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: 0.25s;
}

.card:hover {
    border-color: #2EEBEB;
    transform: translateY(-4px);
}

/* Contact */
.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #2EEBEB;
    border-radius: 8px;
    color: #2EEBEB;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline:hover {
    background: #2EEBEB;
    color: #0D1117;
}

/* Footer */
.footer {
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}





/* ================================
   F-35 CINEMATIC SECTION DIVIDER
   ================================ */

.f35-divider {
    position: relative;
    width: 100%;
    height: 55vh;

    /* PERFECT CENTER FOR YOUR IMAGE */
    background: url("images/f35-divider.jpg") center 25% / cover no-repeat;

    overflow: hidden;

    box-shadow: inset 0px -120px 140px rgba(0, 0, 0, 0.55),
                inset 0px 120px 140px rgba(0, 0, 0, 0.55);

    animation: fadeInF35 1.2s ease-out;
}


/* Brand-color gradient overlay */
.f35-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(46, 235, 235, 0.15),
        rgba(90, 107, 255, 0.18)
    );
    pointer-events: none;
}

/* Smooth fade-in */
@keyframes fadeInF35 {
    from { opacity: 0; transform: scale(1.05); }
    to   { opacity: 1; transform: scale(1); }
}

/* Mobile crop adjustments */
@media (max-width: 768px) {
    .f35-divider {
        height: 40vh;
        background-position: center 10%;
    }

    .f35-overlay {
        background: linear-gradient(
            135deg,
            rgba(46, 235, 235, 0.20),
            rgba(90, 107, 255, 0.25)
        );
    }
}



/* ============================
   EXPERIENCE & EXPERTISE
   ============================ */

.experience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.exp-card {
    width: 300px;
    background: #161B22;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: 0.25s;
}

.exp-card:hover {
    border-color: #2EEBEB;
    transform: translateY(-4px);
}

.exp-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    color: #2EEBEB;
}

.exp-card p {
    color: #C8D1E0;
    font-size: 15px;
    line-height: 1.5;
}
