/* ===============================
   BIOLINK SOLUTIONS
   MAIN STYLESHEET
================================ */

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

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#1d2c48;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ===============================
   HEADER
================================ */

header{

    background:#07234d;

    position:sticky;

    top:0;

    z-index:1000;

    box-shadow:0 4px 15px rgba(0,0,0,.08);

}

.navbar{

    max-width:1200px;

    margin:auto;

    padding:18px 40px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    height:70px;

}

.nav-menu{

    display:flex;

    gap:35px;

}

.nav-menu a{

    color:white;

    font-weight:500;

    transition:.3s;

}

.nav-menu a:hover{

    color:#d6a23d;

}

.btn-primary{

    background:#d6a23d;

    color:white;

    padding:12px 24px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    background:#b88624;

}

/* ===============================
   HERO
================================ */

.hero{

    max-width:1200px;

    margin:auto;

    padding:80px 40px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.badge{

    display:inline-block;

    background:#eef4ff;

    color:#07234d;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:64px;

    line-height:1.05;

    color:#07234d;

    margin-bottom:25px;

}

.hero h1 span{

    display:block;

    color:#d6a23d;

}

.hero p{

    font-size:19px;

    color:#555;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-secondary{

    padding:12px 24px;

    border:2px solid #07234d;

    color:#07234d;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.btn-secondary:hover{

    background:#07234d;

    color:white;

}

.hero-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image img{
    width:420px;
    max-width:100%;
}
