/* ---------- Google Font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f5f8fc;
    color:#1e293b;
    line-height:1.6;
}

/* ---------- Header ---------- */

.site-header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    background:rgba(5,25,55,.92);
    backdrop-filter:blur(10px);
}

.navbar{
    max-width:1300px;
    margin:auto;
    padding:18px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.brand{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:white;
}

.brand-mark{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#0b63ce;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.4rem;
    font-weight:700;
    margin-right:14px;
}

.brand-text{
    display:flex;
    flex-direction:column;
}

.brand-name{
    font-size:1.1rem;
    font-weight:700;
}

.brand-subtitle{
    font-size:.8rem;
    opacity:.8;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.nav-links a:hover{
    color:#79b8ff;
}

.nav-button{
    text-decoration:none;
    background:#0b63ce;
    color:white;
    padding:12px 24px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.nav-button:hover{
    background:#0953aa;
}

/* ---------- Hero ---------- */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(rgba(4,22,48,.72),rgba(4,22,48,.82)),
        url("BaltimoreCityNight.jpeg") center/cover;
}

.hero-content{
    max-width:900px;
    text-align:center;
    color:white;
    padding:40px;
}

.eyebrow{
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:.9rem;
    color:#8ec5ff;
    margin-bottom:20px;
}

.hero h1{
    font-size:4rem;
    line-height:1.15;
    font-weight:700;
}

.hero span{
    color:#7cc3ff;
}

.title-rule{
    width:110px;
    height:4px;
    background:#0b63ce;
    margin:35px auto;
}

.hero-description{
    max-width:720px;
    margin:auto;
    font-size:1.15rem;
    color:#d9e7f6;
}

.primary-button{
    display:inline-block;
    margin-top:45px;
    text-decoration:none;
    background:#0b63ce;
    color:white;
    padding:16px 36px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.primary-button:hover{
    background:#0953aa;
}
/* ---------- About Section ---------- */

.about-section{
    padding:110px 40px;
    background:#ffffff;
}

.section-container{
    max-width:1200px;
    margin:0 auto;
}

.section-heading{
    max-width:850px;
    margin:0 auto 65px;
    text-align:center;
}

.section-label{
    color:#0b63ce;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:.82rem;
    font-weight:700;
    margin-bottom:18px;
}

.section-heading h2{
    color:#071f3d;
    font-size:2.7rem;
    line-height:1.25;
    margin-bottom:25px;
}

.section-description{
    color:#526276;
    font-size:1.08rem;
    line-height:1.85;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

.value-card{
    background:#f5f8fc;
    border:1px solid #e3eaf3;
    border-radius:10px;
    padding:38px 30px;
    text-align:left;
    transition:transform .3s ease, box-shadow .3s ease;
}

.value-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 35px rgba(7,31,61,.10);
}

.value-card i{
    color:#0b63ce;
    font-size:2rem;
    margin-bottom:24px;
}

.value-card h3{
    color:#071f3d;
    font-size:1.25rem;
    margin-bottom:14px;
}

.value-card p{
    color:#5d6b7c;
    line-height:1.75;
}
/* ---------- Companies ---------- */

.companies-section{
    padding:110px 40px;
    background:#edf3fa;
}

.company-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
}

.company-card{
    background:white;
    padding:45px 35px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
}

.company-card:hover{
    transform:translateY(-8px);
}

.company-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#0b63ce;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.6rem;
    margin-bottom:25px;
}

.company-card h3{
    color:#071f3d;
    margin-bottom:18px;
    font-size:1.35rem;
}

.company-card p{
    color:#5d6b7c;
    line-height:1.8;
}
/* ---------- Philosophy ---------- */

.philosophy-section{
    padding:110px 40px;
    background:#ffffff;
}

.philosophy-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.philosophy-item{
    border-left:5px solid #0b63ce;
    padding:20px 0 20px 28px;
}

.philosophy-item h3{
    color:#071f3d;
    font-size:1.45rem;
    margin-bottom:14px;
}

.philosophy-item p{
    color:#5d6b7c;
    line-height:1.8;
}
/* ---------- Vision ---------- */

.vision-section{
    padding:110px 40px;
    background:#edf3fa;
}

.vision-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.vision-card{
    background:#fff;
    padding:40px 30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:all .3s ease;
}

.vision-card:hover{
    transform:translateY(-8px);
}

.vision-card i{
    font-size:2.2rem;
    color:#0b63ce;
    margin-bottom:22px;
}

.vision-card h3{
    color:#071f3d;
    margin-bottom:14px;
    font-size:1.25rem;
}

.vision-card p{
    color:#5d6b7c;
    line-height:1.8;
}
/* ---------- Contact ---------- */

.contact-section{
    padding:110px 40px;
    background:#ffffff;
}

.contact-container{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:70px;
    align-items:center;
}

.contact-copy h2{
    color:#071f3d;
    font-size:2.8rem;
    line-height:1.2;
    margin-bottom:24px;
}

.contact-copy p:not(.section-label){
    color:#5d6b7c;
    font-size:1.08rem;
    line-height:1.85;
}

.contact-card{
    background:#071f3d;
    color:white;
    padding:48px 40px;
    border-radius:12px;
    box-shadow:0 18px 40px rgba(7,31,61,.18);
}

.contact-card i{
    color:#7cc3ff;
    font-size:2.2rem;
    margin-bottom:22px;
}

.contact-card h3{
    font-size:1.5rem;
    margin-bottom:16px;
}

.contact-card p{
    color:#d9e7f6;
    line-height:1.75;
    margin-bottom:5px;
}

.contact-card .primary-button{
    margin-top:28px;
    margin-bottom:22px;
}

.contact-card span{
    display:block;
    color:#b9d8f5;
    font-size:.92rem;
}


/*/* ---------- Footer ---------- */

.site-footer{
    background:#041630;
    color:white;
    text-align:center;
    padding:90px 20px 30px;
}

.footer-content{
    max-width:700px;
    margin:0 auto;
}

.footer-content h2{
    font-size:2rem;
    margin-bottom:20px;
    letter-spacing:1px;
}

.footer-divider{
    width:90px;
    height:3px;
    background:#0b63ce;
    margin:0 auto 35px;
}

.footer-tagline{
    font-size:1.15rem;
    line-height:2;
    color:#d5e4f3;
    margin-bottom:35px;
}

.footer-location{
    color:#9fb7d2;
    margin-bottom:18px;
    font-size:1rem;
}

.footer-email{
    color:#7cc3ff;
    text-decoration:none;
    font-size:1.05rem;
    transition:.3s;
}

.footer-email:hover{
    color:white;
}

.footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.12);
    color:#8fa3ba;
    font-size:.9rem;
}