/* =========================================
   SERVICES PREVIEW
   ========================================= */

.services-preview{
    padding:120px 30px; /* section spacing */
}

.services-container{
    max-width:1100px; /* center width */
    margin:auto;
}

.section-title{
    text-align:center;
    font-size:2.2rem;
    margin-bottom:70px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.service-card{
    padding:35px;
    border-radius:20px;

    background:rgba(255,255,255,0.04);
    backdrop-filter:blur(6px);

    border:1px solid rgba(255,255,255,0.08);

    transition:all .35s ease;
}

.service-card h3{
    margin-bottom:12px;
}

.service-card p{
    color:#cccccc;
    font-size:.95rem;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 40px rgba(138,43,226,.25);
}

