/* =====================================================
   SERVICES OVERVIEW — Unified Grid Layout (Clean Version)
   Consolidated single-section grid presentation
   ===================================================== */

/* ---------- Section Base ---------- */
.svo-section {
    padding: 8rem 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.svo-section::before,
.svo-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.4;
}

.svo-section::before {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(108, 59, 255, 0.05) 0%, transparent 70%);
}

.svo-section::after {
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(218, 53, 245, 0.05) 0%, transparent 70%);
}

.container {
    position: relative;
    z-index: 10;
}

.svo-intro-text {
    margin-bottom: 5rem;
}

/* ---------- Grid Layout (2-Column Horizontal) ---------- */
.svo-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.svo-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center; /* V-center icons with text area as requested */
    gap: 2.5rem;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.svo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(108, 59, 255, 0.1);
    border-color: rgba(108, 59, 255, 0.2);
}

.svo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: linear-gradient(to bottom, #4f39fa, #da35f5);
    transition: height 0.4s ease;
}

.svo-card:hover::after {
    height: 100%;
}

/* ---------- Icon Styles (Embedded Version) ---------- */
.svo-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(108, 59, 255, 0.05); /* Soft embedded color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6C3BFF; /* Theme color icon */
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(108, 59, 255, 0.1);
}

.svo-card:hover .svo-card-icon {
    background: #6C3BFF;
    color: #fff;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 10px 20px rgba(108, 59, 255, 0.2);
}

/* ---------- Content Area ---------- */
.svo-card-content {
    flex-grow: 1;
}

.svo-card-title {
    font-family: 'Tomorrow', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e1e2e;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.svo-card-desc {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0; /* Align perfectly since no button below anymore */
}

/* ---------- Managed Services CTA Card ---------- */
.svo-card-cta {
    background: linear-gradient(135deg, rgba(103, 48, 227, 0.03) 0%, rgba(218, 53, 245, 0.03) 100%);
    border-color: rgba(103, 48, 227, 0.12);
}

.svo-card-icon-cta {
    background: rgba(103, 48, 227, 0.08);
    border-color: rgba(103, 48, 227, 0.18);
}

.svo-card-cta-label {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6730e3;
    letter-spacing: 0.03em;
    font-family: 'Open Sans', sans-serif;
}

.svo-card-cta:hover .svo-card-cta-label {
    color: #4f39fa;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .svo-grid-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .svo-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 2rem;
    }
}