/* ── Services: Software Development Section ── */

.services-software-section {
    background-color: var(--color-dark, #001D24);
}

.services-software-section-img {
    top: -80px;
    right: -120px;
    width: 520px;
    pointer-events: none;
}

.services-software-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.services-software-card:hover {
    border-color: var(--color-accent, #00c9a7);
}

.services-software-card-image-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.services-software-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.services-software-card:hover .services-software-card-img {
    transform: scale(1.03);
}

.services-software-card-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}
