#services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

#services .span-badge {
    margin-bottom: 20px;
}

#services .section-header h2 {
    margin-bottom: 20px;
}

#services .section-header h2 span {
    background: linear-gradient(to right, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#services .section-header p {
    max-width: 750px;
    margin: auto;
    color: var(--para);
}

#services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

#services .service-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px;
    transition: .3s;
}

#services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

#services .icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
}

#services .icon img {
    width: 30px;
    height: 30px;
    object-fit: scale-down;

}

#services .blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

#services .teal {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

#services .sky {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

#services .indigo {
    background: linear-gradient(135deg, #6366f1, #4338ca);
}

#services .cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

#services .green {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

#services .blue2 {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
}

#services .gray {
    background: linear-gradient(135deg, #64748b, #334155);
}

#services .service-card h3 {
    margin-bottom: 12px;
}

#services .service-card p {
    color: var(--para);
    margin-bottom: 20px;
}

#services .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

#services .tags span {
    background: #f3f4f6;
    color: var(--para);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
}

#services .service-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

#services .btn-wrap {
    text-align: center;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================
   Responsive CSS
========================= */

@media (max-width: 1024px) {

    #services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}



@media (max-width: 767px) {


    #services .section-header {
        margin-bottom: 40px;
    }

    #services .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #services .service-card {
        padding: 24px;
    }

    #services .icon {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

}


@media (max-width: 567px) {
    #services .service-card {
        padding: 20px;
        border-radius: 16px;
    }

    #services .tags span {
        font-size: 11px;
        padding: 5px 10px;
    }

}