/* footer.css */
.footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
}

.footer-social a img {
    width: 30px;
    transition: transform 0.3s ease;
}

.footer-social a img:hover {
    transform: scale(1.2);
}

.footer-logo img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-copy {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 10px;
}

.scroll-top {
    position: absolute;
    right: 30px;
    top: 30px;
    background-color: #d77f45;
    padding: 10px 2px;
    border-radius: 20%;
    text-decoration: none;
    color: white;
    font-size: 15px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.scroll-top:hover {
    background-color: #f0a500;
}
