/* Services Page Styles */
.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -2px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}

.service-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    background: #eff6ff;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper i {
    font-size: 2.25rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.service-description {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    color: #475569;
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.service-features li i {
    color: #10b981; /* Success green */
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.service-card .btn {
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.service-card .btn:hover {
    transform: scale(1.02);
}
