/* ─────────────────────────────────────────────
   digital-marketing.css
   BNSPIRE Technologies – Digital Marketing Page
   ───────────────────────────────────────────── */

/* Banner */

.dm-highlight {
    color: #ea580c;
}

/* Service cards */
.dm-service-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dm-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.dm-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Results section */
.dm-results-section {
    background: #fff7ed;
}

.dm-result-card {
    padding: 24px 16px;
}

.dm-result-icon {
    font-size: 1.6rem;
    color: #ea580c;
    display: block;
    margin-bottom: 10px;
}

.dm-result-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 4px;
}

/* Process step cards */
.dm-step-card {
    text-align: left;
}

.dm-step-icon {
    color: var(--bs-primary, #0d6efd);
}

/* Funnel */
.dm-funnel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.dm-funnel-step {
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: width 0.3s ease;
}

/* CTA */
.dm-cta-section {
    background: linear-gradient(135deg, #fed7aa 0%, #fff7ed 100%);
    border-top: 1px solid #fdba74;
}