/* Services section styles */
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1).animate-in { transition-delay: 0.1s; }
.service-card:nth-child(2).animate-in { transition-delay: 0.2s; }
.service-card:nth-child(3).animate-in { transition-delay: 0.3s; }
.service-card:nth-child(4).animate-in { transition-delay: 0.4s; }
.service-card:nth-child(5).animate-in { transition-delay: 0.5s; }
.service-card:nth-child(6).animate-in { transition-delay: 0.6s; }
.service-card:nth-child(7).animate-in { transition-delay: 0.7s; }
.service-card:nth-child(8).animate-in { transition-delay: 0.8s; }
.service-card:nth-child(9).animate-in { transition-delay: 0.9s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #3B82F6;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card.gradient-card {
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    color: white;
    border: none;
}

.service-card.gradient-card::before {
    background: rgba(255, 255, 255, 0.3);
}

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

.service-card.gradient-card .service-btn {
    color: white;
    border-color: white;
}

.service-card.gradient-card .service-btn:hover {
    background: white;
    color: #3B82F6;
}

.service-icon {
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 3.5rem;
    color: #3B82F6;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1E293B;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card.gradient-card h3 {
    color: white;
}

.service-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-card.gradient-card p {
    color: rgba(255, 255, 255, 0.9);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid transparent;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.service-btn:hover {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
}

.services-footer {
    text-align: center;
    margin-top: 60px;
}

.services-footer p {
    color: #64748B;
    font-size: 1rem;
}

.services-footer a {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
}

.services-footer a:hover {
    text-decoration: underline;
}