/* SECTION */

.section{
padding:90px 0;
}

/* GRID LAYOUT */

.grid{
display:grid;
grid-template-columns:minmax(0,3fr) minmax(0,1.1fr);
gap:60px;
}

/* MAIN CONTENT */

.service-content{
max-width:850px;
}

/* IMAGE */

.feature-image img{
width:100%;
border-radius:20px;
box-shadow:0 30px 60px rgba(0,0,0,0.18);
}

/* TITLE */

.section-header{
    max-width:700px;
    margin:0 auto;
    text-align:center;
}

.service-title{
font-size:36px;
font-weight:700;
line-height:1.25;
margin-bottom:22px;
}

.lead{
font-size:21px;
font-weight:500;
}

/* BUTTON */

.btn{
border-radius:50px;
padding:14px 30px;
font-weight:600;
}

/* SERVICES GRID */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
}

/* SERVICE CARD */

.service-box{
background:#fff;
padding:30px;
border-radius:18px;
border:1px solid #eef2f7;
box-shadow:0 10px 35px rgba(0,0,0,0.07);
transition:all .35s ease;
position:relative;
overflow:hidden;
text-align: center; /* 👈 centers content */
}

.service-box::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:linear-gradient(90deg,#6a2bd9,#8b5cf6,#06b6d4);
}

.service-box:hover{
transform:translateY(-10px);
box-shadow:0 25px 70px rgba(0,0,0,0.15);
}

.service-box .icon{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
background:linear-gradient(135deg,#6a2bd9,#8b5cf6);
color:white;
font-size:22px;
margin:0 auto 18px;
}

/* EXPECT GRID */

.expect-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:24px;
margin-top:30px;
}

.expect-item{
background:white;
border-radius:14px;
padding:18px;
display:flex;
gap:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:.3s;
}

.expect-item:hover{
transform:translateY(-5px);
box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.expect-item i{
font-size:20px;
color:#6a2bd9;
margin-top:4px;
}

/* SIDEBAR */

.sidebar{
position:sticky;
top:40px;
}

.sidebar-box{
background:white;
border-radius:16px;
padding:26px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
margin-bottom:28px;
border:1px solid #eef2f7;
}

.sidebar-box h3{
font-size:20px;
margin-bottom:18px;
font-weight:600;
}

/* SERVICE LIST */

.service-list{
list-style:none;
padding:0;
margin:0;
}

.service-list li{
margin-bottom:14px;
}

.service-list a{
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
color:#374151;
font-size:15px;
font-weight:500;
padding:10px;
border-radius:8px;
transition:.25s;
}

.service-list a:hover{
background:#f5f3ff;
color:#6a2bd9;
}

/* SECTION TITLES */

/* GLOBAL HEADING CENTER */
.section-title{
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
    text-align:center;          /* ✅ center */
}

.section-subtitle{
    font-size:18px;
    color:#6b7280;
    max-width:700px;
    margin:0 auto 28px;         /* ✅ center block */
    text-align:center;          /* ✅ center text */
}

/* FAQ */

.faq-item{
background:white;
padding:24px;
border-radius:14px;
border-left:4px solid #e5e7eb;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
margin-bottom:18px;
transition:.3s;
}

.faq-item:hover{
border-left-color:#6a2bd9;
box-shadow:0 18px 40px rgba(0,0,0,0.1);
}

/* MOBILE */

@media(max-width:992px){

.grid{
grid-template-columns:1fr;
gap:40px;
}

.section{
padding:60px 0;
}

.service-title{
font-size:28px;
}

}

.counter{
font-size:48px;
font-weight:700;
color:#6a2bd9;
}


/* =========================
   PAID SEARCH SECTION IMPROVE
========================= */

/* better spacing */
.section .services-grid{
    margin-top:40px;
}

/* card text styling */
.why-box h4{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
    color:#111827;
}

.why-box p{
    font-size:14px;
    color:#6b7280;
    line-height:1.6;
}

/* icon circle background (premium look) */
.why-box .icon{
    width:65px;
    height:65px;
    margin:0 auto 15px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(106,43,217,0.08);
    transition:0.3s;
}

/* hover effect upgrade */
.why-box:hover .icon{
    background:#6a2bd9;
    color:#fff;
}

/* smooth hover lift */
.why-box{
    transition: all 0.3s ease;
}

.why-box:hover{
    transform:translateY(-6px);
}

/* optional: slightly different bg for this section */
.section[style*="#f8fafc"] .why-box{
    background:#ffffff;
}
