/* Services Section Styles */

/* Card flex layout */
#services .card {
    display: flex;
    flex-direction: column;
}

#services .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#services .card-body .btn {
    margin-top: auto;
}

/* Card hover effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Image object-fit */
.object-fit-cover {
    object-fit: cover;
}

/* Button styles */
.btn-primary {
    background-color: #3b82f6;
    border-color: #3b82f6;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
}

/* Card styling */
.card {
    transition: all 0.3s ease;
}