.home-container {
    display: flex;
    justify-content: center; /* horizontally center */
    align-items: center;     /* vertically center if needed */
    margin: 15px 0;
}

.btn-home {
    padding: 10px 20px;
    background-color: #ff9800;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 600;
}

.btn-home:hover {
    background-color: #0056b3;
    transform: scale(1.05); /* slight zoom on hover */
}
