/* ======================================================
   SERVICES SECTION
====================================================== */

.services-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:linear-gradient(
        180deg,
        #FFFFFF 0%,
        #F8FAFC 100%
    );

}

/* ======================================================
   BACKGROUND
====================================================== */

.services-section::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:#10B981;

    filter:blur(120px);

    opacity:.08;

    top:-180px;

    right:-180px;

}

.services-section::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:#0EA5E9;

    filter:blur(120px);

    opacity:.08;

    bottom:-150px;

    left:-150px;

}

/* ======================================================
   HEADER
====================================================== */

.services-header{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:auto;

    text-align:center;

}

.services-header .section-title{

    margin-top:22px;

}

.services-header .section-description{

    margin-top:22px;

    font-size:17px;

    color:#64748B;

    line-height:1.9;

}

/* ======================================================
   GRID
====================================================== */

.services-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:80px;

}

/* ======================================================
   CARD LAYOUT
====================================================== */

.service-card{

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    height:100%;

    padding:38px;

    border-radius:30px;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(20px);

    border:1px solid rgba(226,232,240,.95);

    transition:

        transform .35s,

        box-shadow .35s,

        border-color .35s,

        background .35s;

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        180deg,

        rgba(16,185,129,.06),

        transparent

    );

    opacity:0;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-12px);

    background:#FFFFFF;

    border-color:#10B981;

    box-shadow:

        0 30px 80px rgba(15,23,42,.10),

        0 0 0 1px rgba(16,185,129,.08);

}

/* ======================================================
   TAG
====================================================== */

.service-tag{

    display:inline-flex;

    align-items:center;

    align-self:flex-start;

    margin-top:22px;

    padding:8px 14px;

    border-radius:999px;

    background:#ECFDF5;

    color:#10B981;

    font-size:12px;

    font-weight:700;

    letter-spacing:.5px;

}

.service-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:26px;

    color:#10B981;

    font-size:15px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.service-link svg{

    width:18px;

    height:18px;

}

.service-card:hover .service-link{

    gap:18px;

}

.service-link:hover{

    gap:16px;

}

.service-card:hover::before{

    opacity:1;

}

.service-card::after{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:4px;

    border-radius:30px;

    background:linear-gradient(

        90deg,

        #10B981,

        #0EA5E9

    );

    transition:.45s ease;

}

.service-card:hover::after{

    width:100%;

}

.service-icon{

    width:74px;

    height:74px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    background:linear-gradient(

        135deg,

        #10B981,

        #0EA5E9

    );

    color:white;

    box-shadow:

        0 18px 40px rgba(16,185,129,.25);

    transition:

        transform .35s,

        box-shadow .35s;

}

.service-icon svg{

    width:34px;

    height:34px;

}

.service-card:hover .service-icon{

    transform:

        rotate(-8deg)

        scale(1.08);

    box-shadow:

        0 28px 50px rgba(16,185,129,.35);

}

/* ======================================================
   NUMBER
====================================================== */

.service-number{

    position:absolute;

    top:24px;

    right:24px;

    font-size:72px;

    font-weight:900;

    line-height:1;

    color:rgba(15,23,42,.04);

    user-select:none;

    pointer-events:none;

}

/* ======================================================
   TITLE
====================================================== */

.service-card h3{

    margin-top:24px;

    font-size:25px;

    line-height:1.35;

    color:#0F172A;

    font-weight:800;

}

.service-card p{

    margin-top:18px;

    color:#64748B;

    line-height:1.9;

    font-size:15px;

}

/* ======================================================
   LIST
====================================================== */

.service-card ul{

    flex:1;

    margin-top:28px;

    padding:0;

    list-style:none;

}

.service-card ul li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:14px;

    color:#475569;

    font-size:15px;

    transition:

        transform .3s,

        color .3s;

}

.service-card ul li::before{

    content:"";

    width:10px;

    height:10px;

    border-radius:50%;

    background:linear-gradient(

        135deg,

        #10B981,

        #0EA5E9

    );

    flex-shrink:0;

}

/* ======================================================
   HOVER
====================================================== */

.service-card:hover ul li{

    transform:translateX(8px);

    color:#0F172A;

}

.service-card ul li:nth-child(1){

    transition-delay:.05s;

}

.service-card ul li:nth-child(2){

    transition-delay:.10s;

}

.service-card ul li:nth-child(3){

    transition-delay:.15s;

}

.service-card ul li:nth-child(4){

    transition-delay:.20s;

}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:1200px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .services-section{

        padding:90px 0;

    }

    .services-grid{

        gap:22px;

    }

    .service-card{

        padding:32px;

    }

}

@media(max-width:576px){

    .services-grid{

        grid-template-columns:1fr;

    }

    .service-card{

        padding:28px;

    }

    .service-card h3{

        font-size:22px;

    }

}