/* ===== What Do You Want / Services Section ===== */

.dsp-services-section {
    padding: 70px 0 60px;
    background: #f0f4f8;
}

.dsp-services-header {
    text-align: center;
    margin-bottom: 45px;
}

.dsp-services-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0a1f3d;
    margin: 0 0 18px;
    line-height: 1.2;
}

.dsp-services-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.dsp-services-divider .line {
    width: 80px;
    height: 2px;
    border-radius: 2px;
}

.dsp-services-divider .line-blue {
    background: #0a1f3d;
}

.dsp-services-divider .line-gold {
    background: #d4a017;
}

.dsp-services-divider .icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef4fa;
    color: #0a1f3d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Service cards */
.dsp-services-grid {
    margin-bottom: 0;
}

.dsp-service-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    padding: 42px 26px 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(10, 31, 61, 0.08);
    border: 1px solid rgba(10, 31, 61, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dsp-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(10, 31, 61, 0.12);
}

.dsp-service-num {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0a1f3d;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.dsp-service-icon-wrap {
    position: relative;
    width: 120px;
    height: 78px;
    margin: 8px auto 22px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.dsp-service-icon-wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 55px;
    background: #dce8f4;
    border-radius: 110px 110px 0 0;
}

.dsp-service-icon-wrap i {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 46px;
    line-height: 1;
    color: #b8860b;
    margin-bottom: 6px;
    -webkit-font-smoothing: antialiased;
}

.dsp-service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0a1f3d;
    margin: 0 0 14px;
    line-height: 1.4;
    max-width: 260px;
}

.dsp-service-line {
    display: block;
    width: 42px;
    height: 3px;
    background: #d4a017;
    border-radius: 2px;
    margin: 0 auto 16px;
}

.dsp-service-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #1e293b;
    margin: 0;
    padding: 0;
    flex: 1;
}

@media (max-width: 991px) {
    .dsp-services-section {
        padding: 55px 0 45px;
    }

    .dsp-services-title {
        font-size: 28px;
    }

    .dsp-service-card {
        padding: 38px 22px 26px;
    }
}

@media (max-width: 767px) {
    .dsp-services-title {
        font-size: 24px;
    }

    .dsp-services-divider .line {
        width: 50px;
    }

    .dsp-service-title {
        font-size: 14px;
    }

    .dsp-service-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .dsp-services-grid > [class*="col-"] {
        width: 100%;
    }
}
