/* استایل دکمه بازگشت به خانه */
.back-to-home {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    padding: 15px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-to-home:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .back-to-home {
        bottom: 15px;
        right: 15px;
    }
}
