*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
overflow-x:hidden;
font-family:'Outfit',sans-serif;
}


.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,.1);
position:sticky;
top:0;
z-index:999;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo img{
height:70px;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav a{
text-decoration:none;
color:#222;
font-weight:600;
}

.call-btn{
background:#7CB342;
padding:12px 20px;
color:#fff;
text-decoration:none;
border-radius:5px;
}

.hero{
height:700px;
background:
linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url('../images/banner.jfif');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:#fff;
}

.hero h1{
font-size:60px;
margin-bottom:20px;
}

.hero p{
font-size:22px;
max-width:700px;
margin:auto;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:14px 30px;
background:#7CB342;
color:#fff;
text-decoration:none;
border-radius:5px;
margin:5px;
}

.btn-outline{
background:transparent;
border:2px solid #fff;
}

.about-home{
padding:100px 0;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-grid img{
width:100%;
border-radius:15px;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:40px;
color:#222;
}

.services{
padding:100px 0;
background:#f8f8f8;
}

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-box{
background:#fff;
padding:35px;
border-radius:10px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.service-box i{
font-size:50px;
color:#7CB342;
margin-bottom:20px;
}

.why-us{
padding:100px 0;
}

.features{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.feature{
background:#7CB342;
color:#fff;
padding:25px;
text-align:center;
border-radius:8px;
}

.premium-cta{
    position:relative;
    padding:120px 0;
    background:url('images/cta-bg.jfif') center center/cover no-repeat;
    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.75);
}

.cta-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:900px;
    margin:auto;
}

.cta-tag{
    display:inline-block;
    background:#84cc16;
    color:#111;
    padding:12px 25px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:25px;
}

.premium-cta h2{
    font-size:64px;
    line-height:1.1;
    color:#fff;
    margin-bottom:25px;
}

.premium-cta h2 span{
    color:#84cc16;
}

.premium-cta p{
    color:#d1d5db;
    font-size:19px;
    line-height:1.9;
    max-width:800px;
    margin:0 auto 35px;
}

.cta-features{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    margin-bottom:40px;
}

.cta-features div{
    color:#fff;
    font-weight:600;
}

.cta-features i{
    color:#84cc16;
    margin-right:8px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#84cc16;
    color:#111;
    text-decoration:none;
    padding:18px 40px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    padding:18px 40px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-secondary:hover{
    background:#fff;
    color:#111;
}

footer{
    background:#111827;
    color:#fff;
    padding:80px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-widget h3{
    font-size:22px;
    margin-bottom:25px;
    color:#84cc16;
}

.footer-logo{
    max-width:180px;
    margin-bottom:20px;
}

.footer-widget p{
    line-height:1.8;
    color:#d1d5db;
}

.footer-widget ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-widget ul li{
    margin-bottom:12px;
}

.footer-widget ul li a{
    color:#d1d5db;
    text-decoration:none;
    transition:.3s;
}

.footer-widget ul li a:hover{
    color:#84cc16;
    padding-left:5px;
}

.footer-social{
    margin-top:20px;
    display:flex;
    gap:12px;
}

.footer-social a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#84cc16;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    transform:translateY(-5px);
}

.copyright{
    margin-top:50px;
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    color:#d1d5db;
}

@media(max-width:991px){

.about-grid,
.footer-grid,
.service-grid,
.features{
grid-template-columns:1fr 1fr;
}

.hero h1{
font-size:45px;
}

}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:15px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
}

.about-grid,
.footer-grid,
.service-grid,
.features{
grid-template-columns:1fr;
}

.hero{
height:550px;
}

.hero h1{
font-size:32px;
}

.hero p{
font-size:18px;
}

}
.top-header{
    background:#111827;
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.top-header-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left{
    display:flex;
    gap:30px;
}

.top-left a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.top-left a:hover{
    color:#84cc16;
}

.top-left i{
    margin-right:8px;
    color:#84cc16;
}

.top-right{
    display:flex;
    gap:10px;
}

.top-right a{
    width:34px;
    height:34px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.top-right a:hover{
    background:#84cc16;
    color:#000;
    transform:translateY(-3px);
}
p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}
h2{
    font-size:35px;
    line-height:1.2;
    margin-bottom:15px;
}
.why-pest-control{
    padding:120px 0;
    background:#f8fafc;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.why-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-bottom:4px solid transparent;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:#84cc16;
}

.why-card .icon{
    width:85px;
    height:85px;
    background:#84cc16;
    border-radius:50%;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.why-card .icon i{
    font-size:32px;
    color:#fff;
}

.why-card h3{
    margin-bottom:15px;
    color:#111827;
    font-size:24px;
}

.why-card p{
    color:#6b7280;
    line-height:1.9;
}

.pest-services{
	padding:100px 0;
background:#f8f8f8;
}

.pest-solutions{
padding:120px 0;
background:#f8f8f8;

}

.pest-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
margin-top:60px;
}

.pest-card{
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
}

.pest-card:hover{
transform:translateY(-10px);
}

.pest-image img{
width:100%;
height:320px;
object-fit:cover;
}

.pest-content{
padding:35px;
}

.pest-content h3{
font-size:30px;
margin-bottom:15px;
}

.pest-content p{
line-height:1.9;
color:#6b7280;
margin-bottom:25px;
}

.read-more-btn{
display:inline-flex;
align-items:center;
gap:10px;
color:#84cc16;
font-weight:700;
text-decoration:none;
}

.read-more-btn:hover{
gap:15px;
}
.service-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.service-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card img{
width:100%;
height:220px;
object-fit:cover;
}

.service-content{
padding:25px;
}

.service-content h3{
margin-bottom:12px;
}

.service-content p{
line-height:1.8;
color:#6b7280;
margin-bottom:15px;
}

.service-content a{
color:#84cc16;
font-weight:700;
text-decoration:none;
}

.service-btn{
    text-align:center;
    margin-top:60px;
}

.all-services-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 40px;
    background:#84cc16;
    color:#111827;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    border-radius:50px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(132,204,22,.3);
}

.all-services-btn:hover{
    background:#111827;
    color:#fff;
    transform:translateY(-5px);
}

.all-services-btn i{
    transition:.3s;
}

.all-services-btn:hover i{
    transform:translateX(5px);
}

.page-banner{
    position:relative;
    height:200px;
    background:url('images/services-banner.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.banner-content{
    position:relative;
    z-index:2;
}

.page-banner h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin-bottom:15px;
    line-height:1.1;
}

.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:16px;
}

.breadcrumb a{
    color:#84cc16;
    text-decoration:none;
    font-weight:600;
}

.breadcrumb span{
    color:#fff;
}
@media(max-width:768px){

    .page-banner{
        height:220px;
    }

    .page-banner h1{
        font-size:36px;
    }

    .breadcrumb{
        font-size:14px;
    }

}

.clients-section{
    padding:80px 0;
    background:#f8fafc;
}

.clients-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    margin-top:60px;
}

.client-item{
    background:#fff;
    height:140px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s ease;
    border:1px solid #eef2f7;
}

.client-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.client-item img{
    max-width:100%;
    max-height:120px;
    object-fit:contain;
    opacity:.8;
    transition:.4s;
}

.client-item:hover img{
    filter:grayscale(0%);
    opacity:1;
}
/* =========================
TABLET RESPONSIVE
========================= */

@media (max-width: 991px){

    .container{
        width:95%;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .clients-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .pest-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .premium-cta h2{
        font-size:48px;
    }

    .hero h1{
        font-size:50px;
    }

}

/* =========================
MOBILE RESPONSIVE
========================= */

@media (max-width: 767px){

    .container{
        width:92%;
    }
    .top-header{
        display:none;
    }


    /* Top Header */

    .top-header-wrap{
        flex-direction:column;
        gap:10px;
    }

    .top-left{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    /* Header */

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .logo img{
        height:60px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .call-btn{
        width:100%;
        text-align:center;
    }

    /* Hero */

    .hero{
        height:500px;
        padding:20px;
    }

    .hero h1{
        font-size:34px;
        line-height:1.2;
    }

    .hero p{
        font-size:16px;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:10px;
    }

    .hero-buttons .btn{
        width:100%;
    }

    /* About */

    .about-home{
        padding:70px 0;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .about-grid h2{
        font-size:30px;
    }

    /* Section Heading */

    .section-title h2{
        font-size:30px;
    }

    h2{
        font-size:30px;
    }

    p{
        font-size:16px;
        line-height:1.8;
    }

    /* Services */

    .service-grid{
        grid-template-columns:1fr;
    }

    .service-card img{
        height:220px;
    }

    /* Why Choose */

    .why-grid{
        grid-template-columns:1fr;
    }

    /* Pest Solution */

    .pest-grid{
        grid-template-columns:1fr;
    }

    .pest-content{
        padding:25px;
    }

    .pest-content h3{
        font-size:24px;
    }

    /* Clients */

    .clients-grid{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .client-item{
        height:90px;
        padding:10px;
    }

    .client-item img{
        max-width:90%;
        max-height:55px;
        object-fit:contain;
    }


    /* CTA */

    .premium-cta{
        padding:80px 0;
    }

    .premium-cta h2{
        font-size:32px;
    }

    .premium-cta p{
        font-size:16px;
    }

    .cta-features{
        flex-direction:column;
        gap:12px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    /* Footer */

     .footer-grid{
        grid-template-columns:1fr;
        text-align:left;
    }

    .footer-grid > div{
        margin-bottom:30px;
    }

    .footer-grid ul{
        padding-left:0;
    }

    .footer-grid ul li{
        list-style:none;
        margin-bottom:10px;
    }

    /* Banner */

    .page-banner{
        height:180px;
    }

    .page-banner h1{
        font-size:32px;
    }

}

/* =========================
SMALL MOBILE
========================= */

@media (max-width: 480px){

     .top-header{
        display:none;
    }

    .hero h1{
        font-size:28px;
    }

    .section-title h2{
        font-size:26px;
    }

    .premium-cta h2{
        font-size:28px;
    }

    .clients-grid{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .client-item{
        height:90px;
        padding:10px;
    }

    .client-item img{
        max-width:90%;
        max-height:55px;
        object-fit:contain;
    }

 .footer-grid{
        grid-template-columns:1fr;
        text-align:left;
    }

    .footer-grid > div{
        margin-bottom:30px;
    }

    .footer-grid ul{
        padding-left:0;
    }

    .footer-grid ul li{
        list-style:none;
        margin-bottom:10px;
    }
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#222;
    z-index:1001;
}

@media(max-width:768px){

    .top-header{
        display:none;
    }

    .navbar{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:12px 0;
    }

    .logo img{
        height:60px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-menu{
        position:fixed;
        top:0;
        right:-320px;
        width:300px;
        height:100vh;
        background:#111827;
        z-index:9999;
        transition:.4s ease;
        padding-top:80px;
        overflow-y:auto;
    }

    .nav-menu.active{
        right:0;
    }

    .nav-menu ul{
        display:block;
        padding:0;
    }

    .nav-menu ul li{
        list-style:none;
        border-bottom:1px solid rgba(255,255,255,.1);
    }

    .nav-menu ul li a{
        display:block;
        color:#fff;
        padding:18px 25px;
        text-decoration:none;
        font-size:16px;
    }

    .nav-menu ul li a:hover{
        background:#84cc16;
        color:#111;
    }

    .call-btn{
        display:none;
    }

    .menu-overlay{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background:rgba(0,0,0,.6);
        opacity:0;
        visibility:hidden;
        transition:.3s;
        z-index:9998;
    }

    .menu-overlay.active{
        opacity:1;
        visibility:visible;
    }

}
.menu-close{
    position:absolute;
    top:20px;
    right:20px;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/*About Us Page*/

.about-page{
    padding:100px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

.sub-title{
    color:#84cc16;
    font-weight:700;
    text-transform:uppercase;
}

.about-content h2{
    font-size:48px;
    margin:15px 0 25px;
}

.about-content p{
    line-height:1.9;
    margin-bottom:20px;
}

/* Mission Vision */

.mission-vision{
    padding:100px 0;
    background:#f8fafc;
}

.mv-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mv-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.mv-icon{
    width:80px;
    height:80px;
    background:#84cc16;
    border-radius:50%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
}

/* Counters */

.counter-section{
    padding:100px 0;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.counter-box{
    background:#fff;
    text-align:center;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.counter-box h3{
    font-size:50px;
    color:#84cc16;
}

/* Process */

.work-process{
    padding:100px 0;
    background:#f8fafc;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
}

.process-box span{
    width:70px;
    height:70px;
    background:#84cc16;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:auto auto 20px;
    font-size:24px;
    font-weight:700;
}

@media(max-width:768px){

    .about-grid,
    .mv-grid,
    .counter-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:32px;
    }

    .counter-box h3{
        font-size:40px;
    }

    .about-page,
    .mission-vision,
    .counter-section,
    .work-process{
        padding:70px 0;
    }
      .contact-section{
        padding:70px 0;
    }

    .contact-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .contact-form{
        padding:25px;
    }

    .contact-box{
        padding:20px;
    }

    .contact-box i{
        width:50px;
        height:50px;
        font-size:18px;
    }

    .contact-btn{
        width:100%;
    }

    .map-section iframe{
        height:300px;
    }


}
  /*Contact Page*/
.contact-section{
    padding:100px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:40% 60%;
    gap:50px;
    margin-top:60px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-box{
    display:flex;
    gap:20px;
    padding:25px;
    background:#f8fafc;
    border-radius:15px;
    transition:.3s;
}

.contact-box:hover{
    transform:translateY(-5px);
}

.contact-box i{
    width:60px;
    height:60px;
    background:#84cc16;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.contact-box h4{
    margin-bottom:8px;
    color:#111827;
}

.contact-box p{
    margin:0;
    line-height:1.8;
}

/* Form */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-group{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#84cc16;
}

.contact-btn{
    background:#84cc16;
    color:#111827;
    border:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.contact-btn:hover{
    background:#111827;
    color:#fff;
}

.map-section iframe{
    display:block;
}

.gallery-section{
    padding:100px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    position:relative;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
    display:block;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-item::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.3);
    opacity:0;
    transition:.4s;
}

.gallery-item:hover::before{
    opacity:1;
}



@media(max-width:767px){

    .gallery-section{
        padding:70px 0;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .gallery-item img{
        height:180px;
    }

}
@media(max-width:480px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:250px;
    }

}



/* Danger */

.danger-section{
    padding:100px 0;
    background:#f8fafc;
}

.danger-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.danger-box{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:20px;
}

.danger-box i{
    font-size:40px;
    color:#84cc16;
    margin-bottom:15px;
}

/* Process */

.process-section{
    padding:100px 0;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.process-box span{
    width:70px;
    height:70px;
    background:#84cc16;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
}

/* Safety */

.safety-box{
    padding:80px 0;
}

.notice{
    background:#fff8e1;
    padding:35px;
    border-left:5px solid #f59e0b;
    border-radius:15px;
    display:flex;
    gap:20px;
}
@media(max-width:768px){

    .service-grid,
    .danger-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .service-content h2{
        font-size:32px;
    }

    .service-details,
    .danger-section,
    .process-section{
        padding:70px 0;
    }

    .notice{
        flex-direction:column;
    }

}

.testimonials{
    padding:100px 0;
    background:#f8fafc;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.testimonial-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
}

.testimonial-box:hover{
    transform:translateY(-10px);
}

.testimonial-box::before{
    content:"❝";
    position:absolute;
    top:20px;
    right:25px;
    font-size:60px;
    color:#84cc16;
    opacity:.2;
}

.stars{
    color:#ffc107;
    font-size:20px;
    margin-bottom:20px;
}

.testimonial-box p{
    line-height:1.9;
    margin-bottom:20px;
}

.testimonial-box h4{
    margin-bottom:5px;
    color:#111827;
}

.testimonial-box span{
    color:#6b7280;
    font-size:14px;
}
@media(max-width:768px){

    .testimonials{
        padding:70px 0;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .testimonial-box{
        padding:25px;
    }

}

.certification-section{
    padding:100px 0;
    background:#f8fafc;
}

.certification-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.cert-box{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    border-top:4px solid #84cc16;
}

.cert-box:hover{
    transform:translateY(-10px);
}

.cert-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    background:#84cc16;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.cert-icon i{
    color:#fff;
    font-size:32px;
}

.cert-box h3{
    font-size:20px;
    margin-bottom:15px;
    color:#111827;
}

.cert-box p{
    line-height:1.8;
    color:#666;
}
/* Tablet */
@media(max-width:991px){

    .certification-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

}

/* Mobile */
@media(max-width:767px){

    .certification-section{
        padding:70px 0;
    }

    .certification-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .cert-box{
        padding:25px 20px;
    }

    .cert-icon{
        width:70px;
        height:70px;
    }

    .cert-icon i{
        font-size:28px;
    }

    .cert-box h3{
        font-size:18px;
    }

}

.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    text-align:center;
    font-size:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,0.25);
    animation:whatsappPulse 2s infinite;
    transition:0.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    color:#fff;
}

@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,0.7);
    }
    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}
@media(max-width:767px){

    .whatsapp-float{
        width:55px;
        height:55px;
        right:15px;
        bottom:15px;
        font-size:28px;
    }

}