/*=========================
WHY CHOOSE US
=========================*/

.why-us{
    padding:100px 0;
    background:#f5f8ff;
}

.section-title{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.section-title .badge{
    display:inline-block;
    background:#ffd34d;
    color:#111827;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.section-title h2{
    font-size:58px;
    font-weight:800;
    line-height:1.15;
    color:#111827;
    margin-bottom:20px;
}

.section-title h2 span{
    color:#4a5cff;
}

.section-title p{
    font-size:21px;
    line-height:1.9;
    color:#667085;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    border:1px solid #e8edf7;
    border-radius:20px;
    padding:40px;
    transition:.35s;
    box-shadow:0 8px 25px rgba(15,23,42,.06);
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(74,92,255,.15);
    border-color:#4a5cff;
}

.why-card .icon{
    width:70px;
    height:70px;
    background:#eef2ff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.why-card .icon i{
    font-size:34px;
    color:#4a5cff;
}

.why-card h3{
    font-size:28px;
    font-weight:700;
    color:#111827;
    line-height:1.3;
    margin-bottom:18px;
}

.why-card p{
    color:#667085;
    font-size:18px;
    line-height:1.9;
}

/*=========================
Responsive
=========================*/

@media(max-width:1200px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:48px;
    }

}

@media(max-width:768px){

    .why-us{
        padding:70px 0;
    }

    .section-title{
        margin-bottom:45px;
    }

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:16px;
        line-height:1.8;
    }

    .why-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .why-card{
        padding:28px;
        border-radius:16px;
    }

    .why-card .icon{
        width:60px;
        height:60px;
        margin-bottom:18px;
    }

    .why-card .icon i{
        font-size:28px;
    }

    .why-card h3{
        font-size:22px;
    }

    .why-card p{
        font-size:16px;
    }

}

/*=========================
Why Local SEO Section
=========================*/

.seo-benefits{
    padding:100px 0;
    background:#fff;
}

.seo-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:flex-start;
}

.section-badge{
    display:inline-block;
    background:#eef2ff;
    color:#4f5dff;
    padding:10px 22px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:22px;
}

.seo-content h2{
    font-size:56px;
    line-height:1.15;
    font-weight:800;
    color:#111827;
    margin-bottom:28px;
}

.seo-content h2 span{
    color:#4f5dff;
}

.seo-content p{
    font-size:19px;
    color:#667085;
    line-height:1.9;
    margin-bottom:22px;
}

.seo-stats{
    display:flex;
    align-items:center;
    gap:30px;
    margin-top:35px;
}

.stat small{
    display:block;
    color:#98A2B3;
    font-size:13px;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:8px;
    letter-spacing:.5px;
}

.stat h4{
    font-size:30px;
    font-weight:800;
}

.stat:first-child h4{
    color:#ef4444;
}

.stat:last-child h4{
    color:#4f5dff;
}

.divider{
    width:1px;
    height:65px;
    background:#e4e7ec;
}

/*=========================
Right List
=========================*/

.seo-list{
    background:#fff;
    border:1px solid #e9edf7;
    border-radius:22px;
    padding:45px;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.seo-list h3{
    font-size:34px;
    font-weight:800;
    margin-bottom:30px;
    color:#111827;
}

.seo-list ul{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.seo-list li{
    display:flex;
    align-items:flex-start;
    gap:15px;
    color:#344054;
    font-size:18px;
    line-height:1.7;
}

.seo-list li i{
    color:#22c55e;
    font-size:20px;
    margin-top:4px;
    flex-shrink:0;
}

/*=========================
Hover
=========================*/

.seo-list:hover{
    transform:translateY(-5px);
    transition:.35s;
    box-shadow:0 20px 45px rgba(79,93,255,.12);
}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

    .seo-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .seo-content h2{
        font-size:42px;
    }

}

@media(max-width:768px){

    .seo-benefits{
        padding:70px 0;
    }

    .section-badge{
        font-size:12px;
        padding:8px 18px;
    }

    .seo-content h2{
        font-size:32px;
    }

    .seo-content p{
        font-size:16px;
        line-height:1.8;
    }

    .seo-list{
        padding:28px;
    }

    .seo-list h3{
        font-size:24px;
        margin-bottom:20px;
    }

    .seo-list li{
        font-size:16px;
    }

    .seo-stats{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .divider{
        display:none;
    }

    .stat h4{
        font-size:24px;
    }

}

/*=========================
Google Search Behaviour
=========================*/

.search-behaviour{
    padding:100px 0;
    background:#eef5ff;
}

.search-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.search-content h2{
    font-size:54px;
    font-weight:800;
    color:#111827;
    margin:20px 0;
    line-height:1.15;
}

.search-content h2 span{
    color:#4f5dff;
}

.search-content p{
    font-size:19px;
    line-height:1.9;
    color:#667085;
    margin-bottom:25px;
}

.search-stats{
    margin-top:55px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.search-box{
    background:#fff;
    padding:35px;
    border-radius:18px;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.35s;
}

.search-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(79,93,255,.15);
}

.search-box h3{
    font-size:42px;
    color:#4f5dff;
    font-weight:800;
    margin-bottom:12px;
}

.search-box span{
    display:block;
    color:#667085;
    font-size:18px;
    line-height:1.6;
}

/* Responsive */

@media(max-width:768px){

    .search-behaviour{
        padding:70px 0;
    }

    .search-content h2{
        font-size:34px;
    }

    .search-content p{
        font-size:16px;
    }

    .search-stats{
        grid-template-columns:1fr;
        gap:20px;
    }

    .search-box{
        padding:28px;
    }

    .search-box h3{
        font-size:34px;
    }

}

/*=========================
Industries
=========================*/

.industries{
    padding:100px 0;
    background:#fff;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;
}

.industry-card{
    background:#fff;
    border:1px solid #e8edf7;
    border-radius:18px;
    padding:28px 30px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.35s;
    cursor:pointer;
}

.industry-card:hover{
    transform:translateY(-8px);
    border-color:#4f5dff;
    box-shadow:0 20px 40px rgba(79,93,255,.12);
}

.industry-card i{
    width:55px;
    height:55px;
    border-radius:14px;
    background:#eef2ff;
    color:#4f5dff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    flex-shrink:0;
}

.industry-card span{
    font-size:20px;
    font-weight:700;
    color:#111827;
}

/* Responsive */

@media(max-width:992px){

    .industry-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .industries{
        padding:70px 0;
    }

    .industry-grid{
        grid-template-columns:1fr;
        gap:18px;
        margin-top:40px;
    }

    .industry-card{
        padding:22px;
    }

    .industry-card span{
        font-size:17px;
    }

    .industry-card i{
        width:48px;
        height:48px;
        font-size:20px;
    }

}


/* ===========================
Common Local SEO Mistakes
=========================== */

.mistakes-section{
    padding:100px 0;
    background:#fff;
}

.section-tag{
    display:inline-block;
    background:#fff1f2;
    color:#ef4444;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    padding:10px 22px;
    border-radius:50px;
    margin-bottom:20px;
}

.section-title{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    color:#111827;
    margin-bottom:18px;
}

.section-desc{
    max-width:760px;
    margin:0 auto 60px;
    font-size:20px;
    line-height:1.8;
    color:#667085;
}

.mistakes-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.mistake-card{
    background:#fff5f5;
    border:1px solid #ffd6d6;
    border-radius:20px;
    padding:35px;
    transition:.35s;
}

.mistake-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.mistake-card h3{
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:28px;
    line-height:1.35;
    color:#dc2626;
    font-weight:800;
    margin-bottom:18px;
}

.mistake-card h3 i{
    color:#ef4444;
    font-size:24px;
    margin-top:4px;
}

.mistake-card p{
    font-size:18px;
    color:#667085;
    line-height:1.9;
}

/* ===========================
How We Work
=========================== */

.process-section{
    padding:110px 0;
    background:#f7f9fc;
}

.process-title{
    text-align:center;
    font-size:54px;
    font-weight:800;
    color:#111827;
    margin-bottom:70px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-number{
    font-size:72px;
    font-weight:800;
    color:#dbe7ff;
    line-height:1;
    margin-bottom:25px;
}

.process-card h3{
    font-size:28px;
    color:#111827;
    margin-bottom:18px;
    line-height:1.35;
    font-weight:800;
}

.process-card p{
    font-size:18px;
    line-height:1.9;
    color:#667085;
}

/* ===========================
Responsive
=========================== */

@media(max-width:992px){

    .mistakes-grid,
    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title,
    .process-title{
        font-size:40px;
    }

}

@media(max-width:768px){

    .mistakes-section,
    .process-section{
        padding:70px 0;
    }

    .mistakes-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .section-title,
    .process-title{
        font-size:32px;
    }

    .section-desc{
        font-size:17px;
        margin-bottom:40px;
    }

    .mistake-card,
    .process-card{
        padding:28px;
    }

    .mistake-card h3,
    .process-card h3{
        font-size:24px;
    }

    .mistake-card p,
    .process-card p{
        font-size:16px;
    }

    .process-number{
        font-size:60px;
    }

}


/*==============================
Case Study Section
==============================*/

.case-study{
    padding:100px 0;
    background:linear-gradient(180deg,#4158F5 0%,#3746CC 100%);
}

.case-heading{
    text-align:center;
    margin-bottom:60px;
}

.case-badge{
    display:inline-block;
    padding:10px 24px;
    background:rgba(255,255,255,.18);
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    border-radius:50px;
    margin-bottom:22px;
}

.case-heading h2{
    font-size:58px;
    color:#fff;
    line-height:1.15;
    font-weight:800;
    max-width:980px;
    margin:auto;
}

.case-heading h2 span{
    display:block;
}

.case-box{
    background:rgba(255,255,255,.08);
    border-radius:28px;
    padding:35px;
    backdrop-filter:blur(10px);
}

.case-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-bottom:35px;
}

.case-card{
    background:rgba(255,255,255,.10);
    border-radius:20px;
    padding:35px;
}

.case-card span{
    display:block;
    color:#d6dbff;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.case-card p{
    color:#fff;
    font-size:22px;
    line-height:1.8;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-box{
    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:28px 15px;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.stat-box small{
    display:block;
    color:#7c859d;
    font-size:14px;
    letter-spacing:1px;
    font-weight:700;
    margin-bottom:12px;
}

.stat-box h3{
    font-size:42px;
    color:#4158F5;
    font-weight:800;
}


/*==============================
CTA Section
==============================*/

.cta-section{
    padding:90px 0;
    background:#4158F5;
    text-align:center;
}

.cta-section h2{
    font-size:60px;
    color:#fff;
    font-weight:800;
    margin-bottom:20px;
}

.cta-section p{
    color:#eef2ff;
    font-size:22px;
    line-height:1.8;
    max-width:760px;
    margin:0 auto 45px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.whatsapp-btn,
.pricing-btn{
    padding:20px 40px;
    border-radius:14px;
    font-size:20px;
    font-weight:700;
    transition:.35s;
}

.whatsapp-btn{
    background:#fff;
    color:#4158F5;
}

.whatsapp-btn i{
    margin-right:10px;
    color:#25D366;
}

.pricing-btn{
    background:#3242d7;
    color:#fff;
}

.whatsapp-btn:hover,
.pricing-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}


/*==============================
Responsive
==============================*/

@media(max-width:992px){

    .case-grid,
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .case-heading h2,
    .cta-section h2{
        font-size:42px;
    }

    .case-card p{
        font-size:18px;
    }

    .stat-box h3{
        font-size:32px;
    }

}

@media(max-width:768px){

    .case-study,
    .cta-section{
        padding:70px 0;
    }

    .case-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .case-box{
        padding:20px;
    }

    .case-card{
        padding:25px;
    }

    .case-heading h2,
    .cta-section h2{
        font-size:32px;
    }

    .cta-section p{
        font-size:17px;
    }

    .case-card p{
        font-size:17px;
    }

    .whatsapp-btn,
    .pricing-btn{
        width:100%;
        text-align:center;
        font-size:18px;
    }

} 



/*==============================
Cities Section
==============================*/

.cities-section{
    padding:100px 0;
    background:#f8fbff;
}

.cities-heading{
    margin-bottom:40px;
}

.cities-heading h2{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:10px;
}

.cities-heading p{
    font-size:18px;
    color:#667085;
}

.tier2{
    margin-top:90px;
}

/*==============================
Grid
==============================*/

.cities-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/*==============================
Card
==============================*/

.city-card{
    background:#fff;
    border:1px solid #e7edf7;
    border-radius:18px;
    padding:24px;
    transition:.35s;
    box-shadow:0 8px 20px rgba(15,23,42,.05);
}

.city-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(59,91,255,.15);
}

/*==============================
Top
==============================*/

.city-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:18px;
}

.city-top h3{
    font-size:28px;
    font-weight:700;
    color:#111827;
    margin-bottom:5px;
}

.city-top span{
    font-size:15px;
    color:#98a2b3;
}

/*==============================
Description
==============================*/

.city-card p{
    font-size:18px;
    color:#475467;
    line-height:1.7;
    min-height:65px;
    margin-bottom:30px;
}

/*==============================
Bottom
==============================*/

.city-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.city-bottom span{
    color:#98a2b3;
    font-size:15px;
}

.city-bottom i{
    margin-right:5px;
}

.city-bottom a{
    color:#3b5bff;
    font-weight:700;
    transition:.3s;
}

.city-bottom a:hover{
    color:#1d4ed8;
}

.city-bottom a i{
    margin-left:5px;
    transition:.3s;
}

.city-bottom a:hover i{
    transform:translateX(5px);
}

/*==============================
Badges
==============================*/

.badge{
    font-size:13px;
    padding:7px 14px;
    border-radius:30px;
    font-weight:700;
    border:1px solid;
    white-space:nowrap;
}

/* Very High */

.badge.danger{
    background:#fff1f2;
    color:#dc2626;
    border-color:#fecaca;
}

/* High */

.badge.orange{
    background:#fff7ed;
    color:#ea580c;
    border-color:#fdba74;
}

/* Medium High */

.badge.yellow{
    background:#fffbeb;
    color:#b45309;
    border-color:#fcd34d;
}

/* Medium */

.badge.green{
    background:#ecfdf3;
    color:#16a34a;
    border-color:#86efac;
}

/*==============================
Responsive
==============================*/

@media(max-width:1200px){

.cities-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:992px){

.cities-grid{
grid-template-columns:repeat(2,1fr);
}

.cities-heading h2{
font-size:36px;
}

}

@media(max-width:768px){

.cities-section{
padding:70px 0;
}

.cities-heading{
text-align:center;
}

.cities-heading h2{
font-size:30px;
}

.cities-heading p{
font-size:16px;
}

.cities-grid{
grid-template-columns:1fr;
gap:20px;
}

.city-card{
padding:22px;
}

.city-top h3{
font-size:24px;
}

.city-card p{
font-size:16px;
min-height:auto;
margin-bottom:22px;
}

.city-bottom{
flex-direction:column;
align-items:flex-start;
gap:12px;
}

.tier2{
margin-top:70px;
}

}





/*==========================
Testimonials
==========================*/

.testimonial-section{
    padding:100px 0;
    background:#f8fbff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    border:1px solid #e6edf7;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s;
    position:relative;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(59,91,255,.15);
}

.testimonial-card::before{
    content:"❝";
    position:absolute;
    top:18px;
    right:25px;
    font-size:70px;
    color:#eef3ff;
    font-weight:700;
}

.stars{
    color:#fbbf24;
    font-size:22px;
    letter-spacing:2px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#667085;
    font-size:17px;
    line-height:1.9;
    margin-bottom:30px;
    min-height:150px;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

.client img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #3B5BFF;
}

.client h4{
    font-size:19px;
    color:#111827;
    margin-bottom:5px;
    font-weight:700;
}

.client span{
    font-size:15px;
    color:#6b7280;
}

/* Responsive */

@media(max-width:992px){

.testimonial-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.testimonial-section{
padding:70px 0;
}

.testimonial-grid{
grid-template-columns:1fr;
gap:20px;
}

.testimonial-card{
padding:25px;
}

.testimonial-card p{
min-height:auto;
font-size:16px;
}

.client img{
width:55px;
height:55px;
}

}


