/* Talwa HR Solutions - Top Header Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Lato:wght@400;500&family=Open+Sans:wght@400;600&display=swap');

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

body{
    font-family: Arial, sans-serif;
    overflow-x:hidden;
    background:#f5f7fb;
}

/* TOP HEADER */
.top-header{
    width:100%;
    background:#003C82;
    color:white;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:14px 40px;
}

.header-left{
    display:flex;
    align-items:center;
    gap:35px;
    flex-wrap:wrap;
}

.header-item{
    display:flex;
    align-items:center;
    gap:10px;

    font-size:15px;
}

.header-item i{
    color:#00AEEF;
    font-size:16px;
}

.header-right a{
    color:white;
    font-size:20px;

    transition:0.3s ease;
}

.header-right a:hover{
    color:#00AEEF;
}

/* NAVBAR */
.navbar{
    width:100%;
    background:white;

    padding:18px 40px;

    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo{
    text-decoration:none;
    font-size:28px;
    font-weight:bold;
    color:#001F45;
}

/* HERO */
.hero{
    padding:80px 40px;
}

.hero h1{
    font-size:56px;
    color:#001F45;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    color:#555;
    max-width:700px;
    line-height:1.7;
}

/* MOBILE */
@media(max-width:768px){
    .top-header{
        display:none;
    }
}

   