/* Main stylesheet */
/*==========================
Google Font
===========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================
Reset
===========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#1f2937;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*==========================
Variables
===========================*/

:root{

    --primary:#355CFF;
    --secondary:#22c55e;
    --dark:#101828;
    --text:#667085;
    --white:#fff;
    --yellow:#FFC928;

    --shadow:0 20px 60px rgba(0,0,0,.08);

    --radius:20px;

}

/*==========================
Container
===========================*/

.container{

    width:90%;
    max-width:1240px;
    margin:auto;

}

/*==========================
Topbar
===========================*/

.topbar{

    background:linear-gradient(90deg,#3b5bff,#5f5cff);
    color:#fff;
    padding:10px 0;

}

.topbar .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.topbar-left,
.topbar-right{

    display:flex;
    align-items:center;
    gap:18px;

}

.topbar a{

    color:#fff;
    font-size:14px;
    transition:.35s;

}

.instagram-btn{

    background:#8b5cf6;
    padding:8px 18px;
    border-radius:50px;

}

.whatsapp-btn{

    background:#22c55e;
    padding:8px 18px;
    border-radius:50px;

}

.topbar a:hover{

    opacity:.8;

}


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

@media (max-width:991px){

.topbar .container{
    flex-direction:column;
    gap:12px;
    text-align:center;
}

.topbar-left,
.topbar-right{
    justify-content:center;
    flex-wrap:wrap;
}

}

@media (max-width:768px){

.topbar{
    padding:12px 0;
}

.topbar .container{
    gap:10px;
}

.topbar-left,
.topbar-right{
    width:100%;
    justify-content:center;
    gap:10px;
}

.topbar a{
    font-size:13px;
}

.instagram-btn,
.whatsapp-btn{
    padding:8px 14px;
    font-size:13px;
}

}

@media (max-width:576px){

.topbar{
    display:none;
}

}


/*==========================
Header
===========================*/

header{

    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

nav{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 0;

}

.logo img{

    width:190px;

}

.logo a{
    display:flex;
    align-items:center;
    gap:2px;
    text-decoration:none;
    font-size:34px;
    font-weight:800;
    letter-spacing:-1px;
    white-space:nowrap;
    font-family:'Poppins',sans-serif;
}

.logo .g{
    color:#4285F4; /* Blue */
}

.logo .m{
    color:#EA4335; /* Red */
}

.logo .b{
    color:#FBBC05; /* Yellow */
}

.logo .expert{
    color:#34A853; /* Green */
    margin-left:8px;
}

.logo a:hover{
    transform:scale(1.05);
    transition:.3s ease;
}

.menu{

    display:flex;
    gap:35px;

}

.menu li a{

    color:#111827;
    font-weight:500;
    transition:.3s;

}

.menu li a:hover{

    color:var(--primary);

}

.header-btn{

    background:var(--secondary);
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;

}

.header-btn:hover{

    transform:translateY(-3px);
    box-shadow:var(--shadow);

}

.menu-toggle{

    display:none;
    font-size:28px;
    cursor:pointer;

}








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

@media (max-width:991px){

    nav{
        padding:18px 0;
        position:relative;
    }

    .menu-toggle{
        display:block;
        font-size:30px;
        color:#111;
        cursor:pointer;
    }

    .header-btn{
        display:none;
    }

    .menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        box-shadow:0 15px 30px rgba(0,0,0,.08);
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:0;
        max-height:0;
        overflow:hidden;
        transition:.4s ease;
        border-radius:0 0 15px 15px;
    }

    .menu.active{
        max-height:500px;
        padding:15px 0;
    }

    .menu li{
        width:100%;
    }

    .menu li a{
        display:block;
        width:100%;
        padding:16px;
        text-align:center;
    }

    .logo a{
        font-size:30px;
    }

}

@media (max-width:768px){

    .logo a{
        font-size:26px;
    }

    .menu-toggle{
        font-size:28px;
    }

}

@media (max-width:480px){

    .logo a{
        font-size:22px;
    }

    .logo .expert{
        margin-left:4px;
    }

}


/*==========================
Hero
===========================*/

.hero{

    padding:90px 0;

}

.hero-grid{

    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:70px;
    align-items:center;

}

.badge{

    display:inline-block;
    background:var(--yellow);
    padding:12px 22px;
    border-radius:10px;
    font-weight:700;
    margin-bottom:25px;

}

.hero h1{

    font-size:64px;
    line-height:1.1;
    font-weight:800;
    color:var(--dark);

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    margin:30px 0;
    color:var(--text);
    line-height:1.9;
    font-size:18px;

}

.hero ul{

    display:flex;
    flex-direction:column;
    gap:22px;
    margin-bottom:40px;

}

.hero ul li{

    display:flex;
    align-items:center;
    gap:15px;
    font-size:18px;
    font-weight:600;

}

.hero ul i{

    color:#10b981;
    font-size:24px;

}

.hero-buttons{

    display:flex;
    gap:20px;

}

.btn{

    padding:18px 34px;
    border-radius:12px;
    font-weight:600;
    transition:.35s;

}

.green{

    background:#22c55e;
    color:#fff;

}

.white{

    background:#fff;
    color:#111;
    border:2px solid #ddd;

}

.btn:hover{

    transform:translateY(-5px);
    box-shadow:var(--shadow);

}

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

.hero-card{

    background:#fff;
    padding:45px;
    border-radius:25px;
    box-shadow:var(--shadow);
    animation:float 4s ease infinite;

}

.hero-card .icon{

    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#d9fbe6;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:42px;
    color:#22c55e;
    margin-bottom:25px;

}

.hero-card h3{

    text-align:center;
    font-size:34px;
    margin-bottom:20px;

}

.hero-card p{

    text-align:center;
    color:var(--text);
    margin-bottom:30px;

}

.card-btn{

    display:block;
    background:#22c55e;
    color:#fff;
    text-align:center;
    padding:20px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;

}

.card-btn:hover{

    transform:scale(1.03);

}

.card-footer{

    display:flex;
    justify-content:space-between;
    margin-top:25px;
    color:#777;
    font-size:15px;

}

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

@media (max-width:1200px){

.hero h1{
    font-size:54px;
}

.hero-grid{
    gap:50px;
}

}

@media (max-width:991px){

.hero{
    padding:70px 0;
}

.hero-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.hero-content{
    text-align:center;
}

.hero ul{
    align-items:center;
}

.hero-buttons{
    justify-content:center;
}

.hero-card{
    max-width:600px;
    margin:auto;
}

.hero h1{
    font-size:48px;
}

.hero p{
    font-size:17px;
}

}

@media (max-width:768px){

.hero{
    padding:60px 0;
}

.badge{
    font-size:14px;
    padding:10px 18px;
}

.hero h1{
    font-size:38px;
    line-height:1.2;
}

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

.hero ul{
    gap:16px;
}

.hero ul li{
    font-size:16px;
    justify-content:center;
    text-align:left;
}

.hero ul i{
    font-size:20px;
}

.hero-buttons{
    flex-direction:column;
    width:100%;
}

.hero-buttons .btn{
    width:100%;
    text-align:center;
}

.hero-card{
    padding:35px 25px;
}

.hero-card h3{
    font-size:28px;
}

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

.card-btn{
    padding:18px;
}

.card-footer{
    flex-direction:column;
    gap:10px;
    align-items:center;
}

}

@media (max-width:480px){

.hero{
    padding:50px 0;
}

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

.hero h1{
    font-size:30px;
}

.hero p{
    font-size:15px;
}

.hero ul li{
    font-size:15px;
}

.hero-card{
    padding:25px 20px;
}

.hero-card .icon{
    width:70px;
    height:70px;
    font-size:30px;
}

.hero-card h3{
    font-size:24px;
}

.card-btn{
    font-size:15px;
}

.card-footer{
    font-size:14px;
}

}
/*==========================
Floating WhatsApp
===========================*/

.floating-whatsapp{

    position:fixed;
    left:25px;
    bottom:25px;

    width:70px;
    height:70px;

    background:#22c55e;
    color:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:34px;

    box-shadow:0 10px 40px rgba(0,0,0,.2);

    z-index:999;

    animation:pulse 2s infinite;

}

/*==========================
Animations
===========================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(34,197,94,.7);

}

70%{

box-shadow:0 0 0 20px rgba(34,197,94,0);

}

100%{

box-shadow:0 0 0 0 rgba(34,197,94,0);

}

}


/*=========================
GMB SECTION
=========================*/

.gmb-section{

    padding:120px 0;
    background:#fff;

}

.gmb-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.gmb-image{

    text-align:center;

}

.gmb-image img{

    width:100%;
    max-width:650px;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.10);
    transition:.5s;

}

.gmb-image img:hover{

    transform:translateY(-10px);

}

.gmb-content h2{

    font-size:56px;
    line-height:1.1;
    margin-bottom:35px;
    color:#111827;
    font-weight:800;

}

.gmb-content h2 span{

    color:#3B5BFF;

}

.gmb-border{

    border-left:5px solid #3B5BFF;
    padding-left:35px;

}

.gmb-border p{

    font-size:20px;
    line-height:1.9;
    color:#667085;

}
/*=================================
Responsive GMB Section
==================================*/

@media (max-width:1200px){

.gmb-content h2{
    font-size:48px;
}

.gmb-wrapper{
    gap:50px;
}

.gmb-border p{
    font-size:18px;
}

}

@media (max-width:991px){

.gmb-section{
    padding:80px 0;
}

.gmb-wrapper{
    grid-template-columns:1fr;
    gap:50px;
}

.gmb-image{
    order:1;
}

.gmb-content{
    order:2;
    text-align:center;
}

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

.gmb-border{
    border-left:none;
    border-top:5px solid #3B5BFF;
    padding-left:0;
    padding-top:30px;
    text-align:left;
}

.gmb-image img{
    max-width:550px;
    margin:auto;
}

}

@media (max-width:768px){

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

.gmb-content h2{
    font-size:34px;
    line-height:1.25;
}

.gmb-border{
    padding-top:20px;
}

.gmb-border p{
    font-size:16px;
    line-height:1.8;
}

.gmb-image img{
    border-radius:18px;
}

}

@media (max-width:480px){

.gmb-section{
    padding:60px 0;
}

.gmb-content h2{
    font-size:28px;
}

.gmb-border p{
    font-size:15px;
}

.gmb-image img{
    border-radius:15px;
}

}

/*==========================
PRICING SECTION
==========================*/

.pricing-section{
    padding:100px 0;
    background:#f7f9fc;
}

.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.section-heading h2{
    font-size:46px;
    color:#111827;
    font-weight:800;
    margin-bottom:20px;
    line-height:1.2;
}

.section-heading p{
    font-size:18px;
    color:#6b7280;
    line-height:1.8;
}

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

.pricing-card{
    position:relative;
    background:#fff;
    border-radius:24px;
    padding:40px 35px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.35s;
    overflow:hidden;
}

.pricing-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 70px rgba(0,0,0,.15);
}

.plan-tag{
    display:inline-block;
    padding:8px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    color:#fff;
    margin-bottom:20px;
}

.silver-tag{
    background:#6b7280;
}

.gold-tag{
    background:#f59e0b;
}

.platinum-tag{
    background:#2563eb;
}

.popular{
    position:absolute;
    right:-45px;
    top:25px;
    background:#22c55e;
    color:#fff;
    font-size:12px;
    padding:8px 55px;
    transform:rotate(45deg);
    font-weight:700;
}

.pricing-card h3{
    font-size:18px;
    color:#374151;
    text-transform:uppercase;
    margin-bottom:25px;
    letter-spacing:.5px;
}

.price{
    font-size:54px;
    font-weight:800;
    color:#111827;
    margin-bottom:30px;
    line-height:1;
}

.price span{
    font-size:18px;
    color:#6b7280;
    font-weight:500;
}

.pricing-card ul{
    margin:30px 0;
}

.pricing-card ul li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:14px 0;
    border-bottom:1px solid #eef2f7;
    font-size:15px;
    color:#374151;
    line-height:1.6;
}

.pricing-card ul li:last-child{
    border:none;
}

.pricing-card ul li strong{
    color:#111827;
}

.active i{
    color:#22c55e;
    font-size:18px;
    margin-top:2px;
}

.disable{
    color:#b8b8b8;
}

.disable i{
    color:#ef4444;
    font-size:18px;
    margin-top:2px;
}

.pricing-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    width:100%;
    background:#22c55e;
    color:#fff;
    padding:18px;
    border-radius:14px;
    font-weight:700;
    font-size:17px;
    transition:.3s;
}

.pricing-btn:hover{
    background:#16a34a;
    transform:translateY(-3px);
}

.pricing-btn i{
    font-size:22px;
}

.gold{
    border:3px solid #f59e0b;
    transform:scale(1.04);
}

.gold:hover{
    transform:scale(1.04) translateY(-10px);
}

.silver{
    border-top:6px solid #9ca3af;
}

.platinum{
    border-top:6px solid #2563eb;
}

.pricing-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(255,255,255,.2),transparent);
    pointer-events:none;
}

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

@media(max-width:1100px){

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

.platinum{
grid-column:span 2;
max-width:500px;
margin:auto;
width:100%;
}

}

@media(max-width:768px){

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

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

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

.pricing-grid{
grid-template-columns:1fr;
gap:25px;
}

.gold,
.platinum{
grid-column:auto;
transform:none;
max-width:100%;
}

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

.price{
font-size:44px;
}

.pricing-card{
padding:30px 25px;
}

}

@media(max-width:480px){

.section-heading h2{
font-size:28px;
}

.pricing-card{
padding:25px 20px;
}

.price{
font-size:38px;
}

.pricing-btn{
font-size:15px;
padding:16px;
}

}
/*=========================
BENEFITS SECTION
=========================*/

.benefits-section{
    padding:100px 0;
    background:#f8f9fc;
}

.benefits-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.benefit-badge{
    display:inline-block;
    background:#f7c600;
    color:#111;
    font-size:13px;
    font-weight:700;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:20px;
}

.benefits-heading h2{
    font-size:58px;
    font-weight:800;
    line-height:1.1;
    color:#171c34;
}

.benefits-heading h2 span{
    color:#4f5dff;
}

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

.benefit-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    transition:.35s;
}

.problem{
    border:1px solid #ffd1d1;
    background:#fff9f9;
}

.solution{
    border:1px solid #cfd7ff;
    background:#f7f8ff;
}

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

.card-title{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:20px;
}

.problem .card-title i{
    color:#ff4c5b;
    font-size:30px;
}

.solution .card-title i{
    color:#5668ff;
    font-size:28px;
}

.card-title h3{
    font-size:22px;
    font-weight:700;
    color:#222;
    line-height:1.3;
}

.benefit-card p{
    color:#596275;
    font-size:17px;
    line-height:1.9;
}

.benefit-card strong{
    color:#171c34;
}

/*=========================
CTA BOX
=========================*/

.benefit-cta{

    margin:auto;
    max-width:1050px;

    background:#fff;

    border-radius:20px;

    padding:35px 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.cta-left{

    display:flex;
    align-items:center;
    gap:20px;

}

.cta-left i{

    color:#f7c600;
    font-size:38px;

}

.cta-left h3{

    font-size:36px;
    font-weight:700;
    color:#1b233d;

}

.cta-btn{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    min-width:240px;

    height:65px;

    background:#4f5dff;

    color:#fff;

    border-radius:12px;

    font-size:18px;
    font-weight:600;

    transition:.3s;

}

.cta-btn:hover{

    background:#3949f0;

    transform:translateY(-4px);

}

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

@media(max-width:991px){

.benefits-grid{

grid-template-columns:1fr;

}

.benefit-cta{

flex-direction:column;

gap:30px;

text-align:center;

}

.cta-left{

flex-direction:column;

}

.benefits-heading h2{

font-size:42px;

}

.cta-left h3{

font-size:28px;

}

}

@media(max-width:768px){

.benefits-section{

padding:70px 0;

}

.benefits-heading h2{

font-size:34px;

}

.card-title h3{

font-size:20px;

}

.benefit-card{

padding:25px;

}

.benefit-card p{

font-size:16px;

}

.cta-left h3{

font-size:22px;

}

.cta-btn{

width:100%;

min-width:100%;

}

}

@media(max-width:480px){

.benefits-heading h2{

font-size:28px;

}

.benefit-badge{

font-size:12px;

}

.card-title{

flex-direction:column;

}

.card-title i{

font-size:26px;

}

}

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

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

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

.section-badge{
    display:inline-block;
    background:#ffd84d;
    color:#111;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

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

.section-title h2 span{
    color:#5368ff;
}

.section-title p{
    font-size:18px;
    color:#6b7280;
    line-height:1.8;
}

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

.adv-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    transition:.35s;
    border:1px solid #edf0f7;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.adv-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-bottom:25px;
}

.icon i{
    color:#fff;
}

.blue{
    background:#4f6cff;
}

.green{
    background:#22c55e;
}

.orange{
    background:#f59e0b;
}

.purple{
    background:#8b5cf6;
}

.yellow{
    background:#facc15;
}

.red{
    background:#ef4444;
}

.cyan{
    background:#06b6d4;
}

.pink{
    background:#ec4899;
}

.dark{
    background:#1f2937;
}

.adv-card h3{
    font-size:23px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:15px;
    line-height:1.3;
}

.adv-card p{
    font-size:16px;
    line-height:1.8;
    color:#6b7280;
}

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

@media(max-width:1100px){

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

}

@media(max-width:768px){

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

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

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

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

.adv-card{
padding:28px;
}

.icon{
width:60px;
height:60px;
font-size:26px;
}

.adv-card h3{
font-size:20px;
}

}

@media(max-width:480px){

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

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

.adv-card{
padding:22px;
}

}

/*==========================
ONE TIME SERVICES
==========================*/

.one-time-services{
    padding:100px 0;
    background:#f8f9fc;
}

.one-time-services .section-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px;
}

.one-time-services .section-heading h2{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
}

.one-time-services .section-heading p{
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
}

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

.service-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    padding:38px 32px;
    transition:.35s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);
}

.red{
    border:2px solid #ff4d4f;
}

.blue{
    border:2px solid #4f5dff;
}

.green{
    border:2px solid #22c55e;
}

.recommended{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#4f5dff;
    color:#fff;
    padding:8px 24px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
}

.service-card h3{
    font-size:20px;
    text-align:center;
    font-weight:800;
    color:#111827;
    line-height:1.35;
    margin-bottom:30px;
    text-transform:uppercase;
}

.price{
    text-align:center;
    font-size:58px;
    font-weight:800;
    color:#111827;
    margin-bottom:35px;
}

.price span{
    font-size:18px;
    color:#6b7280;
    font-weight:500;
}

.service-card ul{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:40px;
}

.service-card ul li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:#374151;
    font-size:17px;
    line-height:1.5;
}

.service-card ul li i{
    color:#22c55e;
    font-size:20px;
    margin-top:2px;
}

.service-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    width:100%;
    height:58px;
    background:#22c55e;
    color:#fff;
    font-size:18px;
    font-weight:700;
    border-radius:10px;
    transition:.3s;
}

.service-btn:hover{
    background:#16a34a;
    transform:translateY(-3px);
}

.service-btn i{
    font-size:22px;
}

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

@media(max-width:1100px){

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

.service-card:last-child{
    grid-column:span 2;
    max-width:520px;
    margin:auto;
}

}

@media(max-width:768px){

.one-time-services{
    padding:70px 0;
}

.one-time-services .section-heading h2{
    font-size:36px;
}

.one-time-services .section-heading p{
    font-size:16px;
}

.service-grid{
    grid-template-columns:1fr;
}

.service-card:last-child{
    grid-column:auto;
    max-width:100%;
}

.service-card{
    padding:30px 25px;
}

.price{
    font-size:46px;
}

.service-card h3{
    font-size:18px;
}

.service-card ul li{
    font-size:16px;
}

}

@media(max-width:480px){

.one-time-services .section-heading h2{
    font-size:30px;
}

.service-card{
    padding:25px 20px;
}

.price{
    font-size:38px;
}

.service-btn{
    font-size:16px;
    height:54px;
}

}


/*=========================================
WORKING WITH GMB EXPERT
=========================================*/

.working-section{
    padding:100px 0;
    background:#f8f9fc;
}

.working-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
    align-items:center;
}

.working-image img{
    width:100%;
    border-radius:22px;
    display:block;
    object-fit:cover;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.working-content{
    width:100%;
}

.working-content .section-badge{
    display:inline-block;
    background:#FFC928;
    color:#111;
    font-size:13px;
    font-weight:700;
    padding:9px 18px;
    border-radius:40px;
    margin-bottom:18px;
}

.working-content h2{
    font-size:56px;
    line-height:1.1;
    font-weight:800;
    color:#101828;
    margin-bottom:35px;
}

.working-content h2 span{
    color:#4b5cff;
}

.working-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.work-card{
    background:#fff;
    padding:32px 28px;
    border-radius:18px;
    border:1px solid #edf0f7;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.work-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 55px rgba(0,0,0,.12);
}

.work-icon{
    width:58px;
    height:58px;
    border-radius:14px;
    background:#f5f6ff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:22px;
}

.work-icon i{
    font-size:24px;
    color:#8b7cff;
}

.work-card h3{
    font-size:19px;
    font-weight:700;
    color:#20263d;
    line-height:1.45;
    margin-bottom:18px;
}

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

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

@media(max-width:1100px){

.working-wrapper{
    grid-template-columns:1fr;
}

.working-image{
    order:2;
}

.working-content{
    order:1;
}

}

@media(max-width:768px){

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

.working-content h2{
    font-size:38px;
}

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

.work-card{
    padding:25px;
}

.work-card h3{
    font-size:20px;
}

.work-card p{
    font-size:15px;
}

}

@media(max-width:480px){

.working-content h2{
    font-size:30px;
}

.working-content .section-badge{
    font-size:12px;
    padding:8px 15px;
}

.work-icon{
    width:52px;
    height:52px;
}

.work-icon i{
    font-size:20px;
}

.work-card{
    padding:22px;
}

}




/*=================================
CLIENT RESULTS
=================================*/

.client-results{
    padding:100px 0;
    background:#f5f9ff;
}

.results-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.results-heading .section-badge{
    display:inline-block;
    background:#dce8ff;
    color:#3d5afe;
    padding:10px 22px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
    text-transform:uppercase;
}

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

.results-heading h2 span{
    color:#4f5dff;
}

.results-heading p{
    max-width:760px;
    margin:auto;
    font-size:20px;
    color:#667085;
    line-height:1.8;
}

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

.result-card{
    overflow:hidden;
    border-radius:22px;
    background:#fff;
    box-shadow:0 18px 45px rgba(15,23,42,.08);
    transition:.35s ease;
    cursor:pointer;
}

.result-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(15,23,42,.15);
}

.result-card img{
    width:100%;
    height:270px;
    object-fit:cover;
    display:block;
    transition:.45s ease;
}

.result-card:hover img{
    transform:scale(1.06);
}

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

@media(max-width:1100px){

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

}

@media(max-width:768px){

.client-results{
    padding:70px 0;
}

.results-heading{
    margin-bottom:45px;
}

.results-heading h2{
    font-size:38px;
}

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

.results-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.result-card img{
    height:240px;
}

}

@media(max-width:480px){

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

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

.result-card{
    border-radius:18px;
}

.result-card img{
    height:200px;
}

}



/*=====================================
MULTI LOCATION
=====================================*/

.multi-location{
    padding:100px 0;
    background:#f8f9fc;
}

.multi-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:55px;
    align-items:center;
}

.multi-image{
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.10);
}

.multi-image img{
    width:100%;
    display:block;
    transition:.5s;
}

.multi-image:hover img{
    transform:scale(1.05);
}

.multi-content h2{
    font-size:58px;
    line-height:1.12;
    font-weight:800;
    color:#101828;
    margin-bottom:28px;
}

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

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

.multi-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#4f5dff;
    color:#fff;
    padding:18px 34px;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    transition:.35s;
}

.multi-btn:hover{
    background:#3d4ef0;
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(79,93,255,.35);
}

.multi-btn i{
    transition:.3s;
}

.multi-btn:hover i{
    transform:translateX(6px);
}

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

@media(max-width:992px){

.multi-wrapper{
    grid-template-columns:1fr;
}

.multi-image{
    order:1;
}

.multi-content{
    order:2;
}

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

}

@media(max-width:768px){

.multi-location{
    padding:70px 0;
}

.multi-wrapper{
    gap:35px;
}

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

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

.multi-btn{
    width:100%;
    justify-content:center;
}

}

@media(max-width:480px){

.multi-content h2{
    font-size:28px;
}

.multi-btn{
    padding:16px 24px;
    font-size:16px;
}

}


/*==========================
FAQ SECTION
==========================*/

.faq-section{
    padding:100px 0;
    background:#f8f9fc;
}

.faq-section .section-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.faq-section .section-badge{
    display:inline-block;
    background:#e8edff;
    color:#4f5dff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.faq-section h2{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin-bottom:15px;
}

.faq-section h2 span{
    color:#4f5dff;
}

.faq-section p{
    color:#667085;
    font-size:18px;
    line-height:1.8;
}

.faq-wrapper{
    max-width:950px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border:1px solid #edf0f7;
    border-radius:18px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-4px);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 28px;
    cursor:pointer;
    font-size:20px;
    font-weight:600;
    color:#111827;
}

.faq-question i{
    color:#4f5dff;
    transition:.35s;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 28px 25px;
    font-size:17px;
    line-height:1.8;
    color:#667085;
}

.faq-item.active .faq-answer{
    max-height:250px;
}

@media(max-width:768px){

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

.faq-section h2{
    font-size:36px;
}

.faq-question{
    font-size:17px;
    padding:20px;
}

.faq-answer p{
    padding:0 20px 20px;
    font-size:15px;
}

}


/*==========================
CONTACT SECTION
==========================*/

.contact-section{
    padding:100px 0;
    background:#f7f9fc;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:70px;
    align-items:center;
}

.contact-content h2{
    font-size:56px;
    font-weight:800;
    line-height:1.1;
    color:#111827;
    margin:20px 0;
}

.contact-content p{
    font-size:20px;
    line-height:1.8;
    color:#667085;
    margin-bottom:40px;
}

.contact-info{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.contact-icon{
    width:70px;
    height:70px;
    border-radius:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:26px;
    flex-shrink:0;
}

.contact-icon.email{
    background:#4f5dff;
}

.contact-icon.whatsapp{
    background:#22c55e;
}

.contact-info h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:6px;
    color:#111827;
}

.contact-info a{
    color:#667085;
    font-size:18px;
    transition:.3s;
}

.contact-info a:hover{
    color:#4f5dff;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

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

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-size:16px;
    font-weight:600;
    color:#111827;
}

.form-group input,
.form-group select{
    width:100%;
    height:58px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:0 18px;
    font-size:17px;
    font-family:'Poppins',sans-serif;
    outline:none;
    transition:.3s;
    background:#fff;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#4f5dff;
    box-shadow:0 0 0 4px rgba(79,93,255,.12);
}

.captcha-box{
    width:320px;
    max-width:100%;
    margin:15px auto 25px;
    padding:18px;
    border:1px solid #ddd;
    border-radius:8px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
}

.captcha-box label{
    margin-left:10px;
    flex:1;
    font-size:15px;
    color:#333;
}

.captcha-box input{
    width:22px;
    height:22px;
}

.captcha-logo{
    text-align:center;
}

.captcha-logo i{
    display:block;
    font-size:26px;
    color:#4f5dff;
    margin-bottom:4px;
}

.captcha-logo small{
    font-size:11px;
    color:#777;
}

.submit-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:12px;
    background:#4f5dff;
    color:#fff;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
    transition:.35s;
}

.submit-btn:hover{
    background:#3d4df4;
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(79,93,255,.30);
}

/*=================================
Responsive Contact Section
==================================*/

@media (max-width:1200px){

.contact-content h2{
    font-size:48px;
}

.contact-grid{
    gap:50px;
}

.contact-content p{
    font-size:18px;
}

}

@media (max-width:991px){

.contact-section{
    padding:80px 0;
}

.contact-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.contact-content{
    text-align:center;
}

.contact-info{
    justify-content:center;
    text-align:left;
}

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

.contact-content p{
    font-size:17px;
}

.contact-form{
    padding:35px;
}

}

@media (max-width:768px){

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

.contact-content h2{
    font-size:34px;
    line-height:1.25;
}

.contact-content p{
    font-size:16px;
    margin-bottom:30px;
}

.form-grid{
    grid-template-columns:1fr;
    gap:0;
}

.contact-form{
    padding:25px;
}

.contact-info{
    gap:15px;
}

.contact-icon{
    width:60px;
    height:60px;
    font-size:22px;
}

.contact-info h4{
    font-size:20px;
}

.contact-info a{
    font-size:16px;
}

.form-group input,
.form-group select{
    height:54px;
    font-size:15px;
}

.submit-btn{
    height:56px;
    font-size:18px;
}

.captcha-box{
    width:100%;
    padding:15px;
}

}

@media (max-width:480px){

.contact-section{
    padding:60px 0;
}

.contact-content{
    text-align:left;
}

.contact-content h2{
    font-size:28px;
}

.contact-content p{
    font-size:15px;
}

.contact-info{
    align-items:flex-start;
}

.contact-icon{
    width:55px;
    height:55px;
    font-size:20px;
}

.contact-info h4{
    font-size:18px;
}

.contact-info a{
    font-size:15px;
}

.contact-form{
    padding:20px;
    border-radius:15px;
}

.form-group label{
    font-size:15px;
}

.form-group input,
.form-group select{
    height:50px;
    font-size:14px;
    padding:0 15px;
}

.captcha-box{
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    text-align:center;
}

.captcha-box label{
    margin:0;
}

.submit-btn{
    height:52px;
    font-size:16px;
}

}


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

@media(max-width:991px){

.contact-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.contact-content{
    text-align:center;
}

.contact-info{
    justify-content:center;
}

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

}

@media(max-width:768px){

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

.contact-form{
    padding:25px;
}

.form-grid{
    grid-template-columns:1fr;
}

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

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

.contact-info{
    align-items:flex-start;
    text-align:left;
}

.contact-info h4{
    font-size:20px;
}

.contact-info a{
    font-size:16px;
}

.submit-btn{
    font-size:18px;
}

}


/*==========================
COUNTRIES SECTION
==========================*/

.countries-section{
    padding:100px 0;
    background:#fff;
    width: 95%;
}

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

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

.section-title h2 span{
    color:#355CFF;
}

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

.country-tags{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

.country-tags a{
    display:inline-flex;
    align-items:center;
    padding:14px 26px;
    background:#fff;
    border:1px solid #dbe3f3;
    border-radius:50px;
    color:#1f2937;
    font-size:17px;
    font-weight:500;
    transition:.35s ease;
    box-shadow:0 5px 15px rgba(0,0,0,.04);
}

.country-tags a:hover{
    background:#355CFF;
    color:#fff;
    border-color:#355CFF;
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(53,92,255,.25);
}

.country-btn{
    text-align:center;
    margin-top:55px;
}

.country-btn .btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#355CFF;
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    transition:.35s;
}

.country-btn .btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(53,92,255,.30);
}

.country-btn .btn i{
    transition:.3s;
}

.country-btn .btn:hover i{
    transform:translateX(6px);
}

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

@media(max-width:992px){

.countries-section{
    padding:80px 0;
}

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

.country-tags a{
    padding:13px 22px;
    font-size:16px;
}

}

@media(max-width:768px){

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

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

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

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

.country-tags{
    gap:12px;
}

.country-tags a{
    width:100%;
    justify-content:center;
    font-size:15px;
    padding:14px 18px;
}

.country-btn .btn{
    width:100%;
    justify-content:center;
}

}


/*==========================
GOOGLE CERTIFIED
==========================*/

.certified-section{
    background:#082f24;
    padding:100px 0;
}

.certified-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.certified-image img{
    width:100%;
    max-width:520px;
    display:block;
}

.certified-content .section-badge{
    display:inline-block;
    background:#fbbf24;
    color:#111;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:25px;
}

.certified-content h2{
    color:#fff;
    font-size:58px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}

.certified-content h2 span{
    display:block;
    color:#53e3a6;
}

.certified-content p{
    color:#d5d5d5;
    font-size:20px;
    line-height:1.9;
    margin-bottom:40px;
}

.certified-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#22c55e;
    color:#fff;
    padding:18px 38px;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    transition:.35s;
}

.certified-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(34,197,94,.35);
}

.certified-btn i{
    font-size:22px;
}

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

@media(max-width:991px){

.certified-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.certified-image img{
    margin:auto;
}

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

}

@media(max-width:768px){

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

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

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

.certified-btn{
    width:100%;
    justify-content:center;
}

}



/*==========================
FOOTER
==========================*/

.footer{
    background:#050505;
    color:#fff;
    padding:80px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr .9fr .9fr 1.3fr;
    gap:60px;
}

.footer-logo img{
    width:190px;
    margin-bottom:30px;
}

.footer-box p{
    color:#c9c9c9;
    line-height:1.9;
    font-size:17px;
}

.footer-box h4{
    color:#FFC928;
    font-size:22px;
    margin-bottom:30px;
    font-weight:700;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:18px;
}

.footer-box ul li a{
    color:#fff;
    transition:.3s;
    font-size:17px;
}

.footer-box ul li a:hover{
    color:#22c55e;
    padding-left:8px;
}

.insta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:30px;
    background:linear-gradient(90deg,#f9ce34,#ee2a7b,#6228d7);
    color:#fff;
    padding:14px 24px;
    border-radius:10px;
    font-weight:600;
}

.office{
    display:flex;
    gap:18px;
    margin-bottom:28px;
}

.office i{
    color:#9ca3af;
    margin-top:4px;
    font-size:20px;
}

.office strong{
    display:block;
    margin-bottom:8px;
    color:#fff;
    font-size:18px;
}

.footer-contact{
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:25px;
    margin-top:20px;
}

.footer-contact a{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    margin-bottom:18px;
    font-size:18px;
    transition:.3s;
}

.footer-contact a:hover{
    color:#22c55e;
}

.footer-contact .fa-whatsapp{
    color:#22c55e;
}

.footer-bottom{
    margin-top:70px;
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:30px;
    text-align:center;
    color:#d1d5db;
    font-size:17px;
}

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

@media(max-width:991px){

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

}

@media(max-width:768px){

.footer{
    padding:60px 0 25px;
}

.footer-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.footer-logo img{
    width:170px;
}

.footer-box h4{
    font-size:20px;
}

.footer-box p,
.footer-box ul li a,
.footer-contact a{
    font-size:16px;
}

.footer-bottom{
    margin-top:45px;
    font-size:15px;
}

}













/*====================================
BLOG HERO
====================================*/

.blog-hero{
    padding:100px 0;
    background:linear-gradient(135deg,#355CFF,#5b7cff);
    color:#fff;
    text-align:center;
}

.blog-hero span{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 22px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
}

.blog-hero h1{
    font-size:58px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:20px;
}

.blog-hero p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    opacity:.9;
}

.blog-search{
    max-width:650px;
    margin:45px auto 0;
    display:flex;
    background:#fff;
    border-radius:60px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.blog-search input{
    flex:1;
    border:none;
    outline:none;
    padding:18px 25px;
    font-size:16px;
    font-family:'Poppins',sans-serif;
}

.blog-search button{
    width:70px;
    border:none;
    background:#22c55e;
    color:#fff;
    cursor:pointer;
    font-size:20px;
}

/*====================================
FEATURED BLOG
====================================*/

.featured-blog{
    padding:90px 0;
    background:#fff;
}

.featured-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.featured-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.featured-content span{
    display:inline-block;
    background:#22c55e;
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-size:14px;
    margin-bottom:20px;
}

.featured-content h2{
    font-size:46px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.featured-content p{
    color:#667085;
    line-height:1.8;
    font-size:18px;
    margin-bottom:30px;
}

.featured-content a{
    display:inline-flex;
    gap:10px;
    align-items:center;
    color:#355CFF;
    font-weight:700;
}

/*====================================
BLOGS
====================================*/

.blogs{
    padding:100px 0;
    background:#f7f9fc;
}

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

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.12);
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-content{
    padding:28px;
}

.blog-content span{
    display:inline-block;
    background:#EEF3FF;
    color:#355CFF;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.blog-content h3{
    font-size:24px;
    margin:18px 0;
    line-height:1.4;
}

.blog-content p{
    color:#667085;
    line-height:1.8;
    margin-bottom:20px;
}

.blog-content a{
    color:#355CFF;
    font-weight:700;
}

.blog-content a i{
    margin-left:8px;
}

/*====================================
PAGINATION
====================================*/

.pagination{
    margin-top:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
}

.pagination a{
    width:48px;
    height:48px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:12px;
    background:#fff;
    color:#111827;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    transition:.35s;
}

.pagination a:hover,
.pagination a.active{
    background:#355CFF;
    color:#fff;
}

/*====================================
NEWSLETTER
====================================*/

.newsletter{
    padding:100px 0;
    background:linear-gradient(135deg,#355CFF,#597BFF);
    color:#fff;
    text-align:center;
}

.newsletter h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:18px;
}

.newsletter p{
    font-size:18px;
    opacity:.95;
    margin-bottom:40px;
}

.newsletter form{
    max-width:700px;
    margin:auto;
    display:flex;
    background:#fff;
    border-radius:60px;
    overflow:hidden;
}

.newsletter input{
    flex:1;
    border:none;
    outline:none;
    padding:20px 25px;
    font-size:16px;
    font-family:'Poppins',sans-serif;
}

.newsletter button{
    border:none;
    padding:0 40px;
    background:#22c55e;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.35s;
}

.newsletter button:hover{
    background:#16a34a;
}

/*====================================
SECTION TITLE
====================================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:46px;
    font-weight:800;
    color:#111827;
    margin-bottom:15px;
}

.section-title p{
    color:#667085;
    font-size:18px;
}

/*====================================
CARD ANIMATION
====================================*/

.blog-card{
    position:relative;
}

.blog-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#355CFF;
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.blog-card:hover::before{
    transform:scaleX(1);
}

.blog-card img{
    transition:.45s;
}

.blog-card:hover img{
    transform:scale(1.08);
}

/*====================================
FEATURED BUTTON
====================================*/

.featured-content a{
    transition:.3s;
}

.featured-content a:hover{
    color:#22c55e;
}

.featured-content a i{
    transition:.3s;
}

.featured-content a:hover i{
    transform:translateX(6px);
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:1200px){

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

.blog-hero h1{
    font-size:50px;
}

.featured-content h2{
    font-size:38px;
}

.newsletter h2{
    font-size:40px;
}

}

@media(max-width:991px){

.featured-grid{
    grid-template-columns:1fr;
}

.featured-content{
    text-align:center;
}

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

.blog-hero{
    padding:80px 0;
}

.blog-hero h1{
    font-size:42px;
}

.newsletter{
    padding:80px 0;
}

}

@media(max-width:768px){

.blog-grid{
    grid-template-columns:1fr;
}

.blog-hero h1{
    font-size:34px;
}

.blog-hero p{
    font-size:16px;
}

.blog-search{
    flex-direction:column;
    border-radius:15px;
}

.blog-search input{
    width:100%;
}

.blog-search button{
    width:100%;
    height:60px;
}

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

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

.newsletter h2{
    font-size:32px;
}

.newsletter p{
    font-size:16px;
}

.newsletter form{
    flex-direction:column;
    border-radius:15px;
}

.newsletter button{
    width:100%;
    height:60px;
}

.pagination{
    flex-wrap:wrap;
}

}

@media(max-width:480px){

.blog-hero{
    padding:70px 0;
}

.blog-hero h1{
    font-size:28px;
}

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

.featured-content h2{
    font-size:28px;
}

.blog-content{
    padding:22px;
}

.blog-content h3{
    font-size:20px;
}

.newsletter{
    padding:70px 0;
}

.newsletter h2{
    font-size:28px;
}

.newsletter input{
    padding:18px;
}

.newsletter button{
    font-size:15px;
}

}



/*=================================
ABOUT HERO
=================================*/

.about-hero{
    padding:120px 0;
    background:linear-gradient(135deg,#355CFF,#5b7cff);
    color:#fff;
    text-align:center;
}

.about-hero .section-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 24px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
}

.about-hero h1{
    font-size:62px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.about-hero h1 span{
    color:#FFC928;
}

.about-hero p{
    max-width:760px;
    margin:auto;
    font-size:19px;
    line-height:1.9;
    opacity:.95;
}

/*=================================
ABOUT COMPANY
=================================*/

.about-company{
    padding:100px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.4s;
}

.about-image img:hover{
    transform:translateY(-10px);
}

.about-content .section-badge{
    display:inline-block;
    background:#EEF3FF;
    color:#355CFF;
    padding:8px 18px;
    border-radius:40px;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h2{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    color:#111827;
    margin-bottom:25px;
}

.about-content h2 span{
    color:#355CFF;
}

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

.about-list{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.about-list div{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:#111827;
}

.about-list i{
    color:#22c55e;
    font-size:18px;
}

/*=================================
MISSION
=================================*/

.mission{
    padding:100px 0;
    background:#f7f9fc;
}

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

.mission-box{
    background:#fff;
    padding:45px 35px;
    border-radius:18px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.mission-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.mission-box i{
    font-size:50px;
    color:#355CFF;
    margin-bottom:25px;
}

.mission-box h3{
    font-size:28px;
    margin-bottom:18px;
    color:#111827;
}

.mission-box p{
    color:#667085;
    line-height:1.8;
}


/*=================================
ABOUT COUNTER
=================================*/

.about-counter{
    padding:100px 0;
    background:#355CFF;
}

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

.counter-box{
    text-align:center;
    color:#fff;
}

.counter-box h2{
    font-size:58px;
    font-weight:800;
    margin-bottom:12px;
}

.counter-box p{
    font-size:18px;
    opacity:.95;
}

/*=================================
ABOUT CTA
=================================*/

.about-cta{
    padding:100px 0;
    text-align:center;
    background:#fff;
}

.about-cta h2{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.about-cta p{
    max-width:650px;
    margin:0 auto 40px;
    color:#667085;
    font-size:18px;
    line-height:1.8;
}

.about-cta .btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 40px;
}

/*=================================
HOVER EFFECTS
=================================*/

.about-list div{
    transition:.3s;
}

.about-list div:hover{
    transform:translateX(8px);
    color:#355CFF;
}

.counter-box{
    transition:.35s;
}

.counter-box:hover{
    transform:translateY(-10px);
}

.counter-box:hover h2{
    color:#FFC928;
}

.about-cta .btn:hover{
    transform:translateY(-5px);
}

/*=================================
RESPONSIVE
=================================*/

@media(max-width:1200px){

.about-hero h1{
    font-size:54px;
}

.about-content h2{
    font-size:46px;
}

}

@media(max-width:991px){

.about-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.about-content{
    text-align:center;
}

.about-list{
    grid-template-columns:1fr;
    text-align:left;
}

.mission-grid{
    grid-template-columns:1fr;
}

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

.about-hero{
    padding:90px 0;
}

.about-company,
.mission,
.about-counter,
.about-cta{
    padding:80px 0;
}

}

@media(max-width:768px){

.about-hero h1{
    font-size:38px;
}

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

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

.mission-box{
    padding:35px 25px;
}

.mission-box h3{
    font-size:24px;
}

.counter-box h2{
    font-size:42px;
}

.about-cta h2{
    font-size:36px;
}

.about-cta p{
    font-size:16px;
}

}

@media(max-width:480px){

.about-hero{
    padding:70px 0;
}

.about-hero h1{
    font-size:30px;
}

.about-hero p{
    font-size:15px;
}

.about-content h2{
    font-size:28px;
}

.about-list{
    gap:14px;
}

.about-list div{
    font-size:15px;
}

.counter-grid{
    grid-template-columns:1fr;
}

.counter-box{
    padding:20px 0;
}

.counter-box h2{
    font-size:36px;
}

.counter-box p{
    font-size:15px;
}

.about-cta{
    padding:70px 0;
}

.about-cta h2{
    font-size:30px;
}

.about-cta p{
    font-size:15px;
}

.about-cta .btn{
    width:100%;
    justify-content:center;
}

}



/*==================================
CONTACT HERO
==================================*/

.contact-hero{
    padding:120px 0;
    background:linear-gradient(135deg,#355CFF,#5B7CFF);
    text-align:center;
    color:#fff;
}

.contact-hero .section-badge{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,.15);
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.contact-hero h1{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.contact-hero h1 span{
    color:#FFC928;
}

.contact-hero p{
    max-width:760px;
    margin:auto;
    font-size:19px;
    line-height:1.9;
    opacity:.95;
}

/*==================================
CONTACT PAGE
==================================*/

.contact-page{
    padding:100px 0;
    background:#f7f9fc;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:60px;
    align-items:flex-start;
}

/* LEFT */

.contact-left h2{
    font-size:46px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.contact-left p{
    font-size:18px;
    color:#667085;
    line-height:1.9;
    margin-bottom:40px;
}

.contact-box{
    display:flex;
    gap:20px;
    margin-bottom:30px;
    align-items:flex-start;
}

.contact-box i{
    width:65px;
    height:65px;
    background:#355CFF;
    color:#fff;
    border-radius:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    flex-shrink:0;
}

.contact-box h4{
    font-size:22px;
    margin-bottom:8px;
    color:#111827;
}

.contact-box p,
.contact-box a{
    color:#667085;
    line-height:1.8;
    text-decoration:none;
}

.contact-box a:hover{
    color:#355CFF;
}

/* SOCIAL */

.social-links{
    display:flex;
    gap:15px;
    margin-top:40px;
}

.social-links a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#355CFF;
    font-size:18px;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.social-links a:hover{
    background:#355CFF;
    color:#fff;
    transform:translateY(-5px);
}

/* RIGHT */

.contact-right{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

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

.contact-right input,
.contact-right select,
.contact-right textarea{
    width:100%;
    margin-bottom:20px;
    padding:16px 18px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    font-size:16px;
    outline:none;
    font-family:'Poppins',sans-serif;
    transition:.3s;
    background:#fff;
}

.contact-right textarea{
    resize:none;
}

.contact-right input:focus,
.contact-right select:focus,
.contact-right textarea:focus{
    border-color:#355CFF;
    box-shadow:0 0 0 4px rgba(53,92,255,.10);
}

.contact-right button{
    width:100%;
    border:none;
    background:#22c55e;
    color:#fff;
    height:58px;
    border-radius:12px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.35s;
}

.contact-right button:hover{
    background:#16a34a;
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(34,197,94,.30);
}

.contact-right button i{
    margin-right:10px;
}

/* MAP */

.map-section iframe{
    width:100%;
    height:500px;
    border:none;
    display:block;
}


/*==================================
FORM PLACEHOLDER
==================================*/

.contact-right input::placeholder,
.contact-right textarea::placeholder{
    color:#9ca3af;
}

.contact-right select{
    cursor:pointer;
}

/*==================================
HOVER EFFECTS
==================================*/

.contact-box{
    transition:.35s;
}

.contact-box:hover{
    transform:translateX(8px);
}

.contact-box:hover i{
    background:#22c55e;
}

.contact-right{
    transition:.35s;
}

.contact-right:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.contact-right button{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.contact-right button:hover i{
    transform:translateX(5px);
    transition:.3s;
}

.social-links a i{
    transition:.3s;
}

.social-links a:hover i{
    transform:rotate(360deg);
}

/*==================================
MAP
==================================*/

.map-section{
    overflow:hidden;
}

.map-section iframe{
    filter:grayscale(15%);
    transition:.4s;
}

.map-section iframe:hover{
    filter:grayscale(0%);
}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:1200px){

.contact-hero h1{
    font-size:52px;
}

.contact-left h2{
    font-size:40px;
}

}

@media(max-width:991px){

.contact-hero{
    padding:90px 0;
}

.contact-page{
    padding:80px 0;
}

.contact-wrapper{
    grid-template-columns:1fr;
    gap:50px;
}

.contact-left{
    text-align:center;
}

.contact-box{
    justify-content:center;
    text-align:left;
}

.social-links{
    justify-content:center;
}

}

@media(max-width:768px){

.contact-hero{
    padding:70px 0;
}

.contact-hero h1{
    font-size:38px;
}

.contact-hero p{
    font-size:16px;
}

.contact-left h2{
    font-size:34px;
}

.contact-left p{
    font-size:16px;
}

.row{
    grid-template-columns:1fr;
    gap:0;
}

.contact-right{
    padding:25px;
}

.contact-box i{
    width:55px;
    height:55px;
    font-size:20px;
}

.contact-box h4{
    font-size:20px;
}

.contact-right input,
.contact-right select,
.contact-right textarea{
    font-size:15px;
}

.contact-right button{
    font-size:17px;
}

.map-section iframe{
    height:350px;
}

}

@media(max-width:480px){

.contact-hero h1{
    font-size:30px;
}

.contact-hero p{
    font-size:15px;
}

.contact-left{
    text-align:left;
}

.contact-left h2{
    font-size:28px;
}

.contact-box{
    gap:15px;
}

.contact-box i{
    width:50px;
    height:50px;
    font-size:18px;
}

.contact-box h4{
    font-size:18px;
}

.contact-box p,
.contact-box a{
    font-size:15px;
}

.social-links{
    flex-wrap:wrap;
}

.social-links a{
    width:45px;
    height:45px;
}

.contact-right{
    padding:20px;
    border-radius:15px;
}

.contact-right input,
.contact-right select,
.contact-right textarea{
    padding:14px 15px;
    font-size:14px;
}

.contact-right button{
    height:52px;
    font-size:16px;
}

.map-section iframe{
    height:280px;
}

}



/*=================================
SERVICE HERO
=================================*/

.service-hero{
    padding:120px 0;
    background:linear-gradient(135deg,#355CFF,#5B7CFF);
    text-align:center;
    color:#fff;
}

.service-hero .section-badge{
    display:inline-block;
    padding:10px 24px;
    background:rgba(255,255,255,.15);
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.service-hero h1{
    font-size:62px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.service-hero h1 span{
    color:#FFC928;
}

.service-hero p{
    max-width:750px;
    margin:auto;
    font-size:19px;
    line-height:1.9;
    opacity:.95;
}

/*=================================
SERVICES SECTION
=================================*/

.services-page{
    padding:100px 0;
    background:#f7f9fc;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:50px;
    font-weight:800;
    color:#111827;
    margin-bottom:15px;
}

.section-title p{
    font-size:18px;
    color:#667085;
}

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

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

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#355CFF;
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.service-icon{
    width:80px;
    height:80px;
    background:#EEF3FF;
    color:#355CFF;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    margin-bottom:25px;
    transition:.35s;
}

.service-card:hover .service-icon{
    background:#355CFF;
    color:#fff;
}

.service-card h3{
    font-size:26px;
    color:#111827;
    margin-bottom:18px;
    font-weight:700;
}

.service-card p{
    color:#667085;
    line-height:1.8;
    margin-bottom:25px;
}

.service-card a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#355CFF;
    font-weight:700;
    transition:.3s;
}

.service-card a:hover{
    gap:15px;
}

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

.why-services{
    padding:100px 0;
    background:#fff;
}

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

.why-box{
    background:#f7f9fc;
    border-radius:20px;
    padding:45px 25px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.why-box:hover{
    background:#355CFF;
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(53,92,255,.25);
}

.why-box h3{
    font-size:52px;
    font-weight:800;
    color:#355CFF;
    margin-bottom:12px;
    transition:.35s;
}

.why-box p{
    color:#667085;
    font-size:18px;
    transition:.35s;
}

.why-box:hover h3,
.why-box:hover p{
    color:#fff;
}

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

.service-cta{
    padding:100px 0;
    background:linear-gradient(135deg,#355CFF,#5B7CFF);
    text-align:center;
    color:#fff;
}

.service-cta h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:18px;
}

.service-cta p{
    max-width:700px;
    margin:0 auto 40px;
    font-size:18px;
    line-height:1.8;
    opacity:.95;
}

.service-cta .btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 40px;
    border-radius:12px;
    background:#22c55e;
    color:#fff;
    font-weight:700;
    transition:.35s;
}

.service-cta .btn:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(0,0,0,.20);
}

/*=================================
EXTRA HOVER EFFECTS
=================================*/

.service-card h3{
    transition:.3s;
}

.service-card:hover h3{
    color:#355CFF;
}

.service-card:hover a{
    color:#22c55e;
}

.service-card:hover a i{
    transform:translateX(6px);
    transition:.3s;
}

/*=================================
RESPONSIVE
=================================*/

@media(max-width:1200px){

.service-hero h1{
    font-size:52px;
}

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

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

}

@media(max-width:991px){

.service-hero{
    padding:90px 0;
}

.services-page,
.why-services,
.service-cta{
    padding:80px 0;
}

.service-hero h1{
    font-size:46px;
}

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

.services-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

}

@media(max-width:768px){

.service-hero{
    padding:70px 0;
}

.service-hero h1{
    font-size:36px;
}

.service-hero p{
    font-size:16px;
}

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

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

.services-grid{
    grid-template-columns:1fr;
}

.service-card{
    padding:30px;
}

.service-card h3{
    font-size:24px;
}

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

.why-box h3{
    font-size:42px;
}

.service-cta h2{
    font-size:36px;
}

.service-cta p{
    font-size:16px;
}

}

@media(max-width:480px){

.service-hero h1{
    font-size:30px;
}

.service-hero p{
    font-size:15px;
}

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

.service-card{
    padding:25px;
}

.service-icon{
    width:65px;
    height:65px;
    font-size:28px;
}

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

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

.why-box{
    padding:35px 20px;
}

.why-box h3{
    font-size:36px;
}

.why-box p{
    font-size:15px;
}

.service-cta{
    padding:70px 0;
}

.service-cta h2{
    font-size:30px;
}

.service-cta p{
    font-size:15px;
}

.service-cta .btn{
    width:100%;
    justify-content:center;
}

}




/*==========================
LOCAL SEO HERO SECTION
==========================*/

.city-hero{
    padding:100px 0;
    background:#f5f8ff;
    text-align:center;
}

.city-hero .container{
    max-width:1050px;
    margin:auto;
}

/* Badge */

.city-badge{
    display:inline-block;
    background:#FFC107;
    color:#6b4d00;
    padding:12px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:35px;
}

/* Heading */

.city-hero h1{
    font-size:72px;
    font-weight:800;
    color:#121826;
    line-height:1.15;
    margin-bottom:18px;
}

.city-hero h1 span{
    color:#4A5CFF;
}

/* Sub Heading */

.city-hero h3{
    font-size:34px;
    font-weight:600;
    color:#64748b;
    margin-bottom:28px;
}

/* Paragraph */

.city-hero p{
    max-width:930px;
    margin:auto;
    font-size:22px;
    color:#667085;
    line-height:1.9;
}

/*======================
Buttons
=======================*/

.city-buttons{
    display:flex;
    justify-content:center;
    gap:22px;
    margin-top:55px;
    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    height:72px;
    padding:0 42px;
    border-radius:14px;
    font-size:23px;
    font-weight:700;
    transition:.35s;
}

.primary-btn{
    background:#4A5CFF;
    color:#fff;
    box-shadow:0 18px 35px rgba(74,92,255,.25);
}

.primary-btn:hover{
    background:#3649ff;
    transform:translateY(-5px);
}

.secondary-btn{
    background:#fff;
    color:#111827;
    border:2px solid #dbe3ef;
}

.secondary-btn:hover{
    border-color:#4A5CFF;
    color:#4A5CFF;
    transform:translateY(-5px);
}

/*======================
Stats
=======================*/

.city-stats{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-top:75px;
}

.stat-card{
    width:220px;
    background:#fff;
    border-radius:18px;
    padding:35px 20px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(74,92,255,.15);
}

.stat-card h2{
    font-size:54px;
    font-weight:800;
    color:#4A5CFF;
    line-height:1.1;
    margin-bottom:12px;
}

.stat-card span{
    display:block;
    color:#667085;
    font-size:18px;
    font-weight:500;
}

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

@media(max-width:1200px){

.city-hero h1{
    font-size:60px;
}

.city-hero p{
    font-size:20px;
}

}

@media(max-width:992px){

.city-hero{
    padding:80px 0;
}

.city-hero h1{
    font-size:50px;
}

.city-hero h3{
    font-size:28px;
}

.city-hero p{
    font-size:18px;
}

.primary-btn,
.secondary-btn{
    width:100%;
    max-width:420px;
    font-size:20px;
}

.stat-card{
    width:200px;
}

}

@media(max-width:768px){

.city-hero{
    padding:70px 0;
}

.city-badge{
    font-size:13px;
    padding:10px 18px;
}

.city-hero h1{
    font-size:40px;
}

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

.city-hero p{
    font-size:17px;
    line-height:1.8;
}

.city-buttons{
    flex-direction:column;
    align-items:center;
}

.primary-btn,
.secondary-btn{
    width:100%;
    height:62px;
    font-size:18px;
}

.city-stats{
    gap:18px;
}

.stat-card{
    width:100%;
    max-width:320px;
}

.stat-card h2{
    font-size:42px;
}

}

@media(max-width:480px){

.city-hero h1{
    font-size:34px;
}

.city-hero h3{
    font-size:20px;
}

.city-hero p{
    font-size:16px;
}

.primary-btn,
.secondary-btn{
    padding:0 20px;
    font-size:17px;
}

.stat-card{
    padding:28px 18px;
}

.stat-card h2{
    font-size:36px;
}

.stat-card span{
    font-size:16px;
}

}

