/* section */

.services {
    padding: 160px 8% 0px 8%;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

/* left side sticky */

.services-left {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.section-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 20px;
    display: block;
}

.services-left h2 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 600;
}

/* gradient text stays same but slightly deeper */
.services-left h2 span {
    background: linear-gradient(90deg, #5a6cff, #2cc7e6);
    -webkit-background-clip: text;
    color: transparent;
}

.services-left p {
    color: #555;
    max-width: 420px;
    margin-bottom: 40px;
}

.services-note {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #888;
}

.divider {
    height: 1px;
    width: 80px;
    background: #888;
}

/* right side */

.services-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* service card */

.service-item {
    position: relative;
    padding: 40px;

    border-radius: 16px;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.08);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    transition: .3s ease;
}

.service-box {
    display: flex;
    align-items: center;
    justify-content: start;
}

/* small label */

.service-item span {
    font-size: 12px;
    color: #999;
    letter-spacing: 2px;
}

/* title */

.service-item h3 {
    font-size: 28px;
    margin: 10px 0;
    font-weight: 600;
    color: #111;
}

/* description */

.service-item p {
    color: #666;
    max-width: 420px;
}

/* hover effect (clean instead of dark glow) */

.service-item:hover {

    border-color: #5a6cff;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 2px rgba(90, 108, 255, 0.1);

    transform: translateY(-6px);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 1023px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-left {
        position: relative;
        top: 0;
    }
    
    .services {
        padding-top: 80px;
    }
}