/* TOPBAR */

.topbar{
background:#0f172a;
padding:10px 0;
}

.topbar .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.topbar-left,
.topbar-right{
display:flex;
align-items:center;
gap:15px;
}

.topbar-left a{
color:#fff;
font-size:14px;
display:flex;
align-items:center;
gap:8px;
transition:.3s;
}

.topbar-left a:hover

.topbar-left i{
width:34px;
height:34px;
border-radius:50%;
background:rgba(255,255,255,.12);
display:flex;
align-items:center;
justify-content:center;
}

.topbar-right a{
width:38px;
height:38px;
border-radius:50%;
background:rgba(255,255,255,.12);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
transition:.3s;
}

.topbar-right a:hover{
background:#0ea5e9;
transform:translateY(-3px);
}

/* HEADER */

.site-header{
position:sticky;
top:0;
z-index:9999;
}

.custom-navbar{
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,.08);
padding:18px 0;
}

.site-logo{
height:75px;
width:auto;
}

/* MENU */

.navbar-nav{
gap:10px;
}

.nav-link{
color:#0f172a !important;
font-size:16px;
font-weight:600;
position:relative;
}

.nav-link:hover,
.nav-link.active{
color:#0ea5e9 !important;
}

.nav-link::after{
content:"";
position:absolute;
left:10px;
bottom:5px;
width:0;
height:2px;
background:#0ea5e9;
transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
width:50%;
}

/* DROPDOWN */

.dropdown{
position:relative;
}

.dropdown-menu{
border:none;
min-width:260px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.12);
padding:10px;
}

.dropdown-item{
padding:12px 15px;
border-radius:8px;
transition:.3s;
}


@media(min-width:992px){
.dropdown-menu{
    display:block;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.35s ease;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

}

/* BUTTON */

.appointment-btn{
background:linear-gradient(135deg,#0ea5e9,#0284c7);
color:#fff !important;
padding:14px 28px;
border-radius:50px;
font-weight:600;
margin-left:20px;
display:inline-flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 25px rgba(14,165,233,.25);
transition:.3s;
}

.appointment-btn:hover{
color:#fff !important;
transform:translateY(-3px);
}
