/* ===============================
   SERVICES SECTION
================================ */

.services-section {
    padding: 100px 20px;
    background: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.services-header p {
    color: #64748b;
    line-height: 1.6;
}


/* Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}


/* Cards */

.service-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    transition: 0.3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--blue);
    opacity: 0;
    transition: 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.service-card img {
    height: 42px;
    margin-bottom: 15px;
}

.service-card h4 {
    margin-bottom: 10px;
    color: #0f172a;
}

.service-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card a {
    font-size: 14px;
    color: var(--blue);
    font-weight: 500;
}