/* Services Section Wrapper */
.services-wrapper {
    background: #0a0a12;
    color: #e0e6f0;
}

/* Grid Layout */
.services-grid {
    border-radius: 12px;
}

/* Card Base Style */
.service-card {
    background: #1a1d2e;
    border-radius: 14px;
    padding: 1.8rem;
    box-shadow:
        0 0 12px #3f3fff33,
        inset 0 0 10px #3f3fff44;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 40px #3f3fff88,
        inset 0 0 20px #3f3fff55;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #72aaff;
    text-shadow: 0 0 10px #72aaffcc;
}

.service-card p {
    font-size: 1rem;
    color: #b0b9d4;
    margin-bottom: 0.5rem;
}

.service-card ul {
    list-style: disc;
    padding-left: 1.25rem;
    color: #a8b3cc;
}

.service-card ul li {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

/* Recommended Styling */
.service-card.recommended {
    background: linear-gradient(135deg, #1f2a78, #4e60ff);
    box-shadow:
        0 0 40px #4e60ff99,
        inset 0 0 20px #7a95ffcc;
}

.service-card.recommended h3 {
    color: #d0e3ff;
    text-shadow: 0 0 15px #b3cfff;
}

.service-card.recommended:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow:
        0 0 60px #7a95ffee,
        inset 0 0 30px #a0b4ffee;
}

/* Recommended Badge */
.recommended-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff427d;
    color: white;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 0 10px #ff427d99;
    z-index: 10;
}