/* --- Additional Capabilities Section --- */
.capabilities-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.capabilities-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05), rgba(112, 0, 255, 0.05));
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Left Column */
.cap-left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cap-left-col h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cap-left-col>p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 90%;
}

.cap-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.cap-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.cap-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.cap-text h4 {
    margin-bottom: 5px;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.cap-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Right Column */
.cap-right-col {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Background blob for style matching the image */
.cap-right-col::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.2), transparent 70%);
    pointer-events: none;
}

.business-size-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.business-size-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.business-size-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.business-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.business-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

/* --- Why Choose Us (Deck Effect) --- */
.why-choose-section {
    padding: 100px 0;
}

.deck-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.deck-left {
    flex: 0.4;
    position: sticky;
    top: 150px;
}

.deck-left h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.deck-right {
    flex: 0.6;
    padding-bottom: 50px;
}

.deck-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    /* Space between starts of cards */
    position: sticky;
    top: 120px;
    /* This makes them stack */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    /* Shadow on top to distinguish overlap */
    transition: transform 0.3s ease, background 0.3s ease;
    /* Determine min height for content */
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Make each card slightly distinct or just standard stacking */
.deck-card:nth-child(1) {
    top: 120px;
    background: #0a0a09;
}

.deck-card:nth-child(2) {
    top: 130px;
    background: #0c0c0b;
}

.deck-card:nth-child(3) {
    top: 140px;
    background: #0e0e0d;
}

.deck-card:nth-child(4) {
    top: 150px;
    background: #10100f;
}

.deck-card:nth-child(5) {
    top: 160px;
    background: #121211;
}

.deck-card:nth-child(6) {
    top: 170px;
    background: #141413;
}

.deck-card:nth-child(7) {
    top: 180px;
    background: #161615;
}

.deck-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.deck-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.deck-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(20, 20, 20, 1), rgba(30, 30, 30, 1));
    z-index: 10;
    /* Bring hovered card above next sticky ones if possible, though sticky z-index is tricky */
}

/* Responsive */
@media (max-width: 900px) {
    .capabilities-wrapper {
        grid-template-columns: 1fr;
    }

    .deck-container {
        flex-direction: column;
    }

    .deck-left {
        position: static;
        margin-bottom: 40px;
    }

    .deck-card {
        position: static;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {

    .capabilities-section,
    .why-choose-section {
        padding: 50px 0;
    }

    .capabilities-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .cap-left-col h2,
    .deck-left h2 {
        font-size: 2rem;
    }

    .cap-feature-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cap-text h4 {
        margin-top: 10px;
    }

    .deck-card {
        padding: 25px;
    }

    .deck-card h3 {
        font-size: 1.5rem;
    }
}