*{
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;}
/* ================= IMAGE SOCIAL ICONS ================= */

.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:42px;
margin-bottom:15px;
}

.page-hero p{
font-size:18px;
max-width:750px;
margin:auto;
}

/* SECTION */
section{
padding:70px 10%;
}

/* FORM BOX */
.form-box{
background:#ffffff;
padding:40px;
border-radius:16px;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
max-width:1100px;
margin:auto;
}

.form-box h2{
color:#0f4c81;
margin-bottom:30px;
}

/* GRID LAYOUT */
.form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.form-grid-full{
grid-column:span 2;
}

/* INPUTS */
input,textarea{
width:100%;
padding:12px;
border-radius:8px;
border:1px solid #ccc;
font-size:14px;
}

textarea{
min-height:100px;
resize:vertical;
}

/* BUTTON */
button{
background:linear-gradient(135deg,#1e90ff,#0f4c81);
color:white;
padding:14px;
border:none;
border-radius:30px;
cursor:pointer;
font-weight:600;
grid-column:span 2;
}

button:hover{
opacity:0.9;
}

.success{color:green;margin-bottom:20px;}
.error{color:red;margin-bottom:20px;}

/* ================= 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;
    }

/* EXISTING RESPONSIVE SETTINGS */
.page-hero{
padding:60px 5%;
}

section{
padding:50px 5%;
}

.page-hero h1{
font-size:28px;
}

.page-hero p{
font-size:15px;
}
}