body{
    cursor:url('https://cdn-icons-png.flaticon.com/32/2785/2785482.png'),auto;
    scroll-behavior:smooth;
    font-family:Arial,sans-serif;
}

.gradient-bg{
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
}

.doctor-card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:0.5s;
}

.doctor-card img{
    object-fit:cover;
    transition:0.5s;
}

.doctor-card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

.doctor-card:hover img{
    transform:scale(1.08);
}

.glass{
    background:rgba(255,255,255,.2);
    backdrop-filter:blur(10px);
    border-radius:20px;
}

.service-card:hover{
    transform:scale(1.05);
    transition:.4s;
}

#topBtn{
    position:fixed;
    bottom:20px;
    right:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#0d6efd;
    color:white;
    display:none;
}
