/* General Animation Settings */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button Hover Animation */
button {
    background: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

button:hover {
    background: #0056b3;
}

/* Service Card Animation */
.service-card {
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
}
