:root {
    --primary-color: #ff9a3c;
    --secondary-color: #ffd6a5;
    --text-color: #333;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.margin-top{
    margin-top: 10%;
}

.service-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 2rem;
    margin-bottom: 2rem;
}
.service-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.service-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.service-description {
    text-align: justify;
}

.service-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-contact {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transition: background-color 0.3s, transform 0.3s;
}
.btn-contact:hover {
    background-color: #e68a35;
    border-color: #e68a35;
    color: white;
    transform: translateY(-2px);
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
