*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5f7fb;
color:#333;
}

/* ================= NAVBAR ================= */
.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 20px;
    width:100%;
    margin:0 auto;
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
}


.logo img{height:48px;}

.header-icons{
    display:flex;
    align-items:center;
    gap:14px;
}

.header-icons a{
    display:inline-block;
    transition:transform 0.3s ease;
}

.header-icons img{
    width:32px;
    height:32px;
    object-fit:cover;
    border-radius:50%;
    box-shadow:0 5px 12px rgba(0,0,0,0.25);
}

/* Hover Effect */
.header-icons a:hover{
    transform:translateY(-4px) scale(1.1);
}

nav{
    display:flex;
    align-items:center;
    gap:14px;
}

nav a{
    text-decoration:none;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:500;
    color:#1c1f26;
    transition:all 0.3s ease;
}

nav a:hover{
    background:#f2f5f9;
    transform:translateY(-2px);
}

nav a.active{
    background:#0f4c81;
    color:#ffffff;
}

nav a.contact{
    background:#28a745;     /* Green */
    color:#ffffff;          /* White text */
    font-weight:600;
    transition:0.3s ease;
}

nav a.contact:hover{
    background:#ffffff;     /* White background */
    color:#28a745;          /* Green text */
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
}
/* ================= HAMBURGER ================= */
.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.hamburger span{
    height:3px;
    width:26px;
    background:#1c1f26;   /* Dark charcoal */
    margin:4px 0;
    border-radius:2px;
}
/* ================= HERO ================= */
.page-hero{
background: linear-gradient(135deg, #faf9f6, #f1ece6);
color: #222222;
padding:80px 10%;
text-align:center;
}

.page-hero h1{
font-size:40px;
margin-bottom:15px;
}

.page-hero p{
font-size:18px;
max-width:700px;
margin:auto;
}

/* ================= SERVICES GRID ================= */
section{
padding:70px 10%;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card{
background:#ffffff;
padding:30px;
border-radius:16px;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
color:#0f4c81;
margin-bottom:12px;
}

.card p{
font-size:15px;
line-height:1.7;
}

/* CTA */
.cta{
    background: linear-gradient(135deg, #faf9f6, #f1ece6);
    color:#0000FF;
    text-align:center;
    padding:70px 10%;
}

.cta h2{
    font-size:34px;
    margin-bottom:15px;
}

.cta p{
    font-size:18px;
}

/* ================= FOOTER ================= */
footer{
    background:#ffffff;
    color:#222222;
    text-align:center;
    padding:25px;
    font-size:14px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .hamburger{ display:flex; }

    nav{
        position:absolute;
        top:70px;
        right:10%;
        background:#ffffff;
        box-shadow:0 15px 30px rgba(0,0,0,0.1);
        flex-direction:column;
        width:220px;
        padding:20px;
        border-radius:14px;
        display:none;
        /*box-shadow:0 15px 30px rgba(0,0,0,0.3);*/
    }

    nav.show{ display:flex; }

    nav a{
        width:100%;
        color:#1c1f26;
        text-align:center;
    }