.ser{
padding:60px 0px;
}


.services-section{
    max-width:1280px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* Card */

.service-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    display:flex;
    min-height:260px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/* Image */

.service-image{
    flex:0 0 38%;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:12px 0px 0px 12px;
    transition:.6s ease;
}

.service-card:hover img{
    transform:scale(1.08);
}

/* Content */

.service-content{
    flex:1;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.service-content h3{
    font-size:1.4rem;
    color:#0f172a;
    margin-bottom:10px;
}

.service-content ul{
    list-style:none;
    margin-bottom:25px;
}

.service-content ul li{
    position:relative;
    padding-left:24px;
    margin-bottom:10px;
    color:#64748b;
    line-height:1.6;
}

.service-content ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#00b894;
    font-weight:bold;
}

.btn{
    width:max-content;
    text-decoration:none;
    background:linear-gradient(135deg,#0057ff,#00bfff);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateX(5px);
}

/* Tablet */

@media(max-width:1024px){

    .services-section{
        grid-template-columns:1fr;
    }
}

/* Mobile */

@media(max-width:768px){

    .service-card{
        flex-direction:column;
    }

    .service-image{
        height:220px;
    }

    .service-content{
        padding:25px;
    }

    .service-content h3{
        font-size:1.4rem;
    }
}

.section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .services .section-desc{color:white;}

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 16px;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--text-light), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
        }

