/* ─────────────────────────────────────────────
   software-development.css
   BNSPIRE Technologies – Software Development Page
   ───────────────────────────────────────────── */

/* Banner */


.highlight-text {
    color: var(--bs-primary, #0d6efd);
    position: relative;
}

/* Check list */
.sd-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sd-check-list li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: #374151;
}

/* Code window visual block */
.sd-visual-block {
    background: #0f172a;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.sd-code-window {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.88rem;
    line-height: 1.9;
}

.sd-code-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.sd-code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
}

.sd-code-dots span:nth-child(2) { background: #f59e0b; }
.sd-code-dots span:nth-child(3) { background: #22c55e; }

.sd-code-body {
    color: #e2e8f0;
}

.sd-code-body p {
    margin: 0;
}

.code-keyword { color: #818cf8; }
.code-var     { color: #67e8f9; }
.code-fn      { color: #fbbf24; }
.code-str     { color: #86efac; }
.code-num     { color: #fb923c; }
.code-comment { color: #94a3b8; }

/* Tech section */
.sd-tech-section {
    background: #f8faff;
}

.sd-tech-card {
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sd-tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.1);
}

.sd-tech-icon {
    width: 56px;
    height: 56px;
    background: #eef2ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bs-primary, #0d6efd);
    margin: 0 auto;
}

/* Process cards */
.sd-process-card {
    position: relative;
    overflow: hidden;
}

.sd-step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1;
    display: block;
}

.sd-process-icon {
    color: var(--bs-primary, #0d6efd);
}

/* CTA */
.sd-cta-section {
    background: linear-gradient(135deg, #eef2ff 0%, #f0fdf4 100%);
    border-top: 1px solid #e2e8f0;
}