body {
    font-family: 'Poppins', sans-serif
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px
}

.gradient-bg {
    background: linear-gradient(135deg, #ff6b6b, #f9844a, #ff8c42, #ff6b6b)
}

.btn-gradient {
    background: linear-gradient(135deg, #ff6b6b, #f9844a)
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15)
}

.gallery-img {
    overflow: hidden;
    border-radius: .5rem
}

nav {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    padding: 12px 0
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #cf3e3e, #ec601a);
    border: 2px solid white;
    border-radius: 4px
}