.pricing-wrapper{
    max-width:1200px;
    margin:auto;
    overflow-x:auto;
}
.pricing-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}
.pricing-table th,
.pricing-table td{
    padding:14px 12px;
    border:1px solid #e1e5eb;
    text-align:center;
    font-size:14px;
}
.pricing-table th{
    background:#f8fafc;
    font-size:15px;
}
.pricing-table th:first-child,
.pricing-table td:first-child{
    
    font-weight:600;
}
.plan-popular{
    background:linear-gradient(135deg,#1f77d0,#0bb3d9);
    color:#fff;
}
.plan-popular th,
.plan-popular td{
    border-color:rgba(255,255,255,0.25);
}
.plan-title {
    font-size: 18px;
    font-weight: 700;
    color: #11a0d6;
}
.plan-badge{
    display:inline-block;
    background:#fff;
    color:#0b7cc5;
    font-size:12px;
    padding:0px 10px;
    border-radius:20px;
    margin-top:6px;
}
.check{color:#16a34a;font-weight:700;}
.cross{color:#dc2626;font-weight:700;}

/* ===== Mobile Design ===== */
@media(max-width:768px){
    /*.pricing-table,*/
    /*.pricing-table thead{*/
    /*    display:none;*/
    /*}*/
    .mobile-plan{
        background:#fff;
        margin-bottom:20px;
        border-radius:12px;
        overflow:hidden;
        box-shadow:0 8px 20px rgba(0,0,0,0.08);
    }
    .mobile-header{
        padding:18px;
        font-size:18px;
        font-weight:700;
        background:#f1f5f9;
        text-align:center;
    }
    .mobile-header.popular{
        background:linear-gradient(135deg,#1f77d0,#0bb3d9);
        color:#fff;
    }
    .mobile-body{
        padding:15px;
    }
    .mobile-row{
        display:flex;
        justify-content:space-between;
        padding:8px 0;
        border-bottom:1px solid #e5e7eb;
        font-size:14px;
    }
    .mobile-row:last-child{border:none;}
}





.service-overlay p {
    font-size: 13px;
    line-height: 18px;
}

.service-card{
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}
.service-card img{
    width:100%;
    height:100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.service-card:hover img{
    transform: scale(1.05);
}
.service-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
    color:#fff;
    display:grid;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    opacity:0;
    transition:opacity .4s ease;
}
.service-card:hover .service-overlay{
    opacity:1;
}
.service-overlay h5{
    font-size:18px;
    font-weight:700;
    color:#fff;
}