.iqb-services-section {
    position: relative;
    background: #f4f3f8;
    overflow: hidden;
}

.iqb-services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(244, 243, 248, 0.96), rgba(244, 243, 248, 0.88)),
        url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    z-index: 0;
}

.iqb-services-container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.iqb-services-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    margin-bottom: 50px;
}

.iqb-small-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.iqb-small-title {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
}

.iqb-small-line {
    width: 55px;
    height: 2px;
    display: inline-block;
    background: #6620a1;
}

.iqb-services-heading {
    margin: 0;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #111827;
}

.iqb-top-line {
    display: block;
    width: 100%;
    height: 5px;
    background: #6620a1;
    margin-bottom: 24px;
}

.iqb-services-description {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #222222;
    max-width: 560px;
}

.iqb-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.iqb-service-card {
    background: #ffffff;
    min-height: 206px;
    padding: 26px 18px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.04);
}

.iqb-service-title {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
}

.iqb-service-icon {
    font-size: 48px;
    line-height: 1;
    color: #6620a1;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.iqb-service-icon svg {
    width: 52px;
    height: 52px;
    fill: currentColor;
}

.iqb-service-link {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    transition: all 0.3s ease;
}

.iqb-service-card:hover {
    background: #6620a1;
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(102, 32, 161, 0.25);
}

.iqb-service-card:hover .iqb-service-title,
.iqb-service-card:hover .iqb-service-icon,
.iqb-service-card:hover .iqb-service-link {
    color: #ffffff !important;
}

@media (max-width: 1024px) {
    .iqb-services-top {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .iqb-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .iqb-services-heading {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .iqb-services-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .iqb-services-heading {
        font-size: 30px;
    }

    .iqb-services-description {
        font-size: 16px;
    }

    .iqb-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .iqb-service-card {
        min-height: auto;
        padding: 28px 20px;
    }
}

.iqb-service-icon {
    color: #6620a1;
}

.iqb-service-icon svg {
    width: 58px;
    height: 58px;
    display: block;
    margin: 0 auto;
    fill: currentColor;
}

.iqb-service-card:hover .iqb-service-icon,
.iqb-service-card:hover .iqb-service-icon svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}