:root {
    --navy: #002D62;
    --blue: #0047AB;
    --slate: #1e293b;
    --light-grey: #f1f5f9;
    --text: #334155;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; padding-top: 90px;}
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-padding { padding: 120px 0; }
.bg-dark { background: var(--navy); color: var(--white); }

header { background: var(--white); padding: 20px 0; border-bottom: 1px solid #edf2f7; position: sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo img {
    height: 45px;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links a { text-decoration: none; color: var(--slate); font-weight: 600; font-size: 0.95rem; margin-left: 10px; }
.nav-btn {
    background: var(--blue);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--navy);
    box-shadow: 0 8px 20px rgba(0, 71, 171, 0.3);
    transform: translateY(-2px);
}

.hero-executive { padding: 150px 0; text-align: center; background: radial-gradient(circle at top right, #f8fafc, #ffffff); }
.badge { display: inline-block; background: var(--light-grey); padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.hero-executive h1 { font-size: 3.5rem; color: var(--navy); line-height: 1.2; max-width: 900px; margin: 0 auto 24px; font-weight: 800; }
.hero-sub { font-size: 1.25rem; color: var(--text); max-width: 700px; margin: 0 auto 40px; }
.hero-actions { display: flex; justify-content: center; gap: 20px; }

.btn-primary { background: var(--blue); color: var(--white); padding: 16px 32px; text-decoration: none; border-radius: 4px; font-weight: 700; transition: 0.3s; }
.btn-secondary { border: 2px solid var(--blue); color: var(--blue); padding: 14px 30px; text-decoration: none; border-radius: 4px; font-weight: 700; transition: 0.3s; }
.btn-primary:hover { background: var(--navy); }
.btn-secondary:hover { background: var(--light-grey); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.label { color: var(--blue); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; font-weight: 700; }
.about-text h3 { font-size: 2.2rem; color: var(--navy); margin-bottom: 20px; line-height: 1.3; }

.mv-item { margin-bottom: 30px; padding-left: 20px; border-left: 3px solid var(--blue); }
.mv-item h4 { font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }

.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 60px; }
.section-title.white { color: var(--white); }
.services-list-bold { display: grid; grid-template-columns: 1fr; gap: 15px; max-width: 800px; margin: 0 auto; }
.s-item { background: rgba(255,255,255,0.05); padding: 20px 30px; border-radius: 8px; font-size: 1.2rem; font-weight: 600; display: flex; align-items: center; transition: 0.3s; border: 1px solid rgba(255,255,255,0.1); }
.s-item span { color: var(--blue); margin-right: 20px; font-size: 0.9rem; font-family: monospace; }
.s-item:hover { background: rgba(255,255,255,0.1); transform: translateX(10px); }

footer { background: var(--white); padding: 40px 0; border-top: 1px solid #edf2f7; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }
.footer-links a { margin-left: 20px; text-decoration: none; color: var(--text); }

@media (max-width: 768px) {
    .hero-executive h1 { font-size: 2.2rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .hero-actions { flex-direction: column; }
    .footer-flex { flex-direction: column; text-align: center; gap: 20px; }
}
.contact-header h3 { font-size: 2.8rem; color: var(--navy); margin-bottom: 24px; line-height: 1.2; }
.contact-direct { margin-top: 40px; }

.form-wrapper { background: var(--light-grey); padding: 40px; border-radius: 12px; }
.exec-form { display: flex; flex-direction: column; gap: 20px; }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label { font-size: 0.85rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; }
.input-group input, .input-group textarea { padding: 14px; border: 1px solid #cbd5e1; border-radius: 4px; font-family: inherit; font-size: 1rem; }
.input-group input:focus, .input-group textarea:focus { outline: none; border-color: var(--blue); }

.full-width { width: 100%; border: none; cursor: pointer; }

@media (max-width: 768px) {
    .contact-header h3 { font-size: 2rem; }
    .form-wrapper { padding: 25px; }
}
.nav-social-item {
    margin-left: 20px;
}

.nav-social-item a {
    color: var(--slate) !important;
    font-size: 1.1rem;
    transition: 0.3s;
    margin-left: 0 !important;
}

.nav-social-item a:hover {
    color: var(--blue) !important;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
    border-right: 1px solid #edf2f7;
    padding-right: 25px;
}

.footer-social a {
    color: var(--text);
    font-size: 1.1rem;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--blue);
}

@media (max-width: 768px) {
    .nav-social-item {
        display: none;
    }
    .footer-right {
        flex-direction: column;
        gap: 15px;
    }
    .footer-social {
        border-right: none;
        padding-right: 0;
    }
}
/* Services Section Specific Styles */
.services-intro {
    color: #ffffff;
    opacity: 0.8;
    max-width: 800px;
    margin-bottom: 50px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05); /* Subtle dark card look */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.service-no {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff; /* Or your primary brand color */
    margin-bottom: 15px;
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 0;
    background: #ffffff; /* solid white */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    z-index: 1000;
}

nav.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Nav links desktop */
.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
}

/* When scrolled */
/* header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
} */

/* ========================= */
/* PREMIUM HAMBURGER NAV */
/* ========================= */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1100;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--navy);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Animate to X */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Overlay background */
/* .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1000;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
} */

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social-mobile {
    display: none;
}

.header-social a {
    font-size: 1.1rem;
    color: var(--slate);
    transition: 0.3s;
}

.header-social a:hover {
    color: var(--blue);
}

/* Mobile */
@media (max-width: 768px) {

    nav {
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .nav-links .header-social {
        display: none;  /* hide icons inside menu */
    }

    .header-social-mobile {
        display: flex;
        gap: 12px;
        margin-right: 0px;
    }

    .nav-right {
        display: flex;
        align-items: center;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    }

    .nav-links.active {
        max-height: 300px;
        padding: 25px 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }

}
