body{
    font-family: "Segoe UI", sans-serif;
    color:#333;
    line-height:1.7;
}

.sw-navbar{
    background:#071426;
    box-shadow:0 2px 15px rgba(0,0,0,0.2);
}

.hero-section{
    position:relative;
    background:
            linear-gradient(
                    rgba(5,15,35,.85),
                    rgba(5,15,35,.85)
            ),
            url('https://images.unsplash.com/photo-1498050108023-c5249f4df085');
    background-size:cover;
    background-position:center;
    color:white;
}

.hero-title{
    font-size:4rem;
    font-weight:700;
    margin-bottom:25px;
}

.hero-subtitle{
    font-size:1.25rem;
    margin-bottom:35px;
    color:#d8d8d8;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.section-padding{
    padding:100px 0;
}

.section-title{
    font-size:2.5rem;
    font-weight:700;
    margin-bottom:10px;
}

.section-subtitle{
    color:#666;
}

.about-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.stat-card{
    background:#f7f9fc;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.service-card{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

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

.solution-card{
    background:#071426;
    color:white;
    padding:25px;
    text-align:center;
    border-radius:12px;
    font-weight:600;
}

.staffing-section{
    background:linear-gradient(
            135deg,
            #071426,
            #0d3b66
    );
    padding:100px 0;
}

.why-box{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.contact-section{
    padding:100px 0;
    background:#071426;
    color:white;
}

.footer{
    background:#020913;
    color:white;
    padding:40px 0;
}

.btn-primary{
    background:#0066ff;
    border:none;
}

.btn-primary:hover{
    background:#0050d4;
}

@media(max-width:768px){

    .hero-title{
        font-size:2.5rem;
    }

    .section-title{
        font-size:2rem;
    }

    .about-box{
        grid-template-columns:1fr;
        margin-top:30px;
    }
}

.company-logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.logo-title{
    font-size:24px;
    font-weight:800;
    color:white;
    letter-spacing:1px;
}

.logo-subtitle{
    font-size:11px;
    letter-spacing:3px;
    color:#cbd5e1;
}