/* ==================================
   WP SERVICE HUB SERVICES CSS
================================== */

.services-main{
    background:#f8fafc;
    padding:90px 0;
}

.services-title{
    font-size:40px;
    font-weight:800;
    color:#111827;
    max-width:1050px;
    margin:auto;
    line-height:1.15;
    letter-spacing:-0.5px;
}

.services-subtitle{
    font-size:20px;
    color:#64748b;
    margin-top:16px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.7;
}

.title-line{
    width:110px;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#1d4ed8);
    border-radius:30px;
    margin:22px auto 0;
}

/* CARD */
.service-card{
    background:#ffffff;
    border-radius:24px;
    padding:30px 24px;
    height:100%;
    text-align:center;
    border:1px solid #e8eef6;
    box-shadow:0 12px 30px rgba(15,23,42,.05);
    transition:all .35s ease;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    position:relative;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 55px rgba(37,99,235,.10);
    border-color:#dbeafe;
}

.service-card img{
    width:95px;
    height:95px;
    object-fit:cover;
    border-radius:50%;
    margin:0 auto 22px;
    display:block;
    background:#f8fafc;
    padding:6px;
}

.service-card h4{
    font-size:28px;
    font-weight:800;
    line-height:1.25;
    margin-bottom:16px;
    min-height:72px;
}

.service-card h4 a,
a.service-title{
    color:#111827;
    text-decoration:none !important;
}

.service-card h4 a:hover,
a.service-title:hover{
    color:#2563eb;
}

.service-card p{
    font-size:16px;
    color:#64748b;
    line-height:1.85;
    margin-bottom:0;
    flex-grow:1;
}

/* BUTTON AREA */
.wpsh-card-btns{
    display:flex;
    gap:12px;
    margin-top:auto;
    padding-top:22px;
    border-top:1px solid #eef2f7;
}

.wpsh-details-btn,
.wpsh-chat-btn{
    flex:1;
    text-align:center;
    padding:12px 14px;
    border-radius:12px;
    font-size:14px;
    font-weight:700;
    text-decoration:none !important;
    transition:all .3s ease;
    white-space:nowrap;
}

/* More Details */
.wpsh-details-btn{
    border:1px solid #dbe2ea;
    color:#111827;
    background:#ffffff;
}

.wpsh-details-btn:hover{
    border-color:#2563eb;
    color:#2563eb;
    background:#f8fbff;
    transform:translateY(-2px);
}

/* Chat Button */
.wpsh-chat-btn{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#ffffff;
    border:1px solid #2563eb;
    box-shadow:0 8px 18px rgba(37,99,235,.18);
}

.wpsh-chat-btn:hover{
    background:linear-gradient(135deg,#1d4ed8,#1e40af);
    color:#ffffff;
    transform:translateY(-2px);
    box-shadow:0 14px 26px rgba(37,99,235,.24);
}

/* TABLET */
@media(max-width:991px){

.services-main{
    padding:70px 0;
}

.services-title{
    font-size:38px;
}

.services-subtitle{
    font-size:18px;
}

.service-card h4{
    font-size:24px;
    min-height:auto;
}

}

/* MOBILE */
@media(max-width:767px){

.services-main{
    padding:60px 0;
}

.services-title{
    font-size:30px;
    line-height:1.25;
}

.services-subtitle{
    font-size:16px;
}

.service-card{
    padding:24px 18px;
    border-radius:20px;
}

.service-card img{
    width:82px;
    height:82px;
}

.service-card h4{
    font-size:22px;
}

.service-card p{
    font-size:15px;
    line-height:1.75;
}

.wpsh-card-btns{
    flex-direction:column;
    gap:10px;
}

.wpsh-details-btn,
.wpsh-chat-btn{
    width:100%;
}

}