html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
}

.text-justify {
    text-align: justify;
}

.hero {
    background: url('img/hero.webp') center/cover no-repeat;
    color: #1a1a1a;
    padding: 100px 20px;
    text-align: center;
}

.services .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

footer {
    background: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 9999;
}

.category-icon svg {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.featured-item {
    transition: 0.5s;
}

.featured-item:hover {
    filter: drop-shadow(0 0 5px #0000004f);
    transition: 0.5s;
}

.accordion-button:not(.collapsed) {
    background-color: #c9a35238;
}

.img-thumbnail {
    transition: 0.5s;
}

.img-thumbnail:hover {
    transform: scale(1.25);
    transition: 0.5s;
}