/* assets/css/services-section.css */

.services-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.6s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.service-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border: 2px solid #7cb342;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background-color: #7cb342;
    border-color: #7cb342;
}

.service-card .icon-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.service-card .icon-wrapper i {
    font-size: 32px;
    color: #7cb342;
    transition: color 0.3s ease;
}

.service-card:hover .icon-wrapper i {
    color: white;
}

.service-card h1 {
    font-size: 24px;
    font-weight: 600;
    color: #7cb342;
    margin-bottom: 20px;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-card .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #7cb342;
    text-decoration: none;
    border: 2px solid #7cb342;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card .btn:hover {
    background-color: #7cb342;
    color: white;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-section {
        padding: 40px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card h1 {
        font-size: 22px;
    }
}
