/* ==========================================
   HEADER
========================================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:rgba(255,255,255,.98);

    backdrop-filter:blur(10px);

    box-shadow:0 4px 20px rgba(0,0,0,.08);

    z-index:1000;

    transition:.4s;

}

/* ==========================================
   NAVIGATION
========================================== */

.navbar{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* ==========================================
   LOGO
========================================== */

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:75px;

    height:75px;

    object-fit:contain;

}
.logo img:hover{

    transform:rotate(5deg) scale(1.08);

}

.logo-text h2{

    color:#0D47A1;

    font-size:28px;

    margin:0;

    font-weight:700;

}

.logo-text span{

    color:#666;

    font-size:13px;

    letter-spacing:1px;

}

/* ==========================================
   MENU
========================================== */

.nav-links{

    display:flex;

    align-items:center;

    gap:35px;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    position:relative;

    color:#333;

    font-weight:600;

    transition:.3s;

}

/* Animated underline */

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#00A651;

    transition:.35s;

}

.nav-links a:hover::after{

    width:100%;

}

.nav-links a:hover{

    color:#0D47A1;

}

.nav-links .active{

    color:#0D47A1;

}

.nav-links .active::after{

    width:100%;

}

/* ==========================================
   BUTTON
========================================== */

.btn{

    background:#00A651;

    color:white;

    padding:14px 30px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    background:#0D47A1;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(0,0,0,.15);

}