/*==================================================
Theme Colors
==================================================*/

:root{

    --primary:#104734;
    --secondary:#00ab53;
    --card-radius:24px;
    --button-radius:50px;
    --icon-radius:20px;

    --white:#ffffff;

    --light:#f6faf7;

    --light-green:var(--light-green);

    --text:var(--text);

    --text-light:var(--text-light);

    --border:#e8ecea;

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

    --transition:.35s ease;

}



.site-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.top-header{
    background:var(--primary);
    color:#fff;
    font-size:14px;
}

.top-header a{
    color:#fff;
    text-decoration:none;
}

/*.navbar{
    padding:20px 0;
}*/

.navbar-brand img{
    max-height:65px;
}

.navbar-nav .nav-link{
    color:var(--text);
    font-weight:600;
    padding:12px 18px;
    transition:.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .current-menu-item>.nav-link{
    color:var(--secondary);
}

.btn-success{
    background:var(--primary);
    border:2px solid var(--primary);
    color:#fff;
   
}

.btn-success:hover{
    background:var(--secondary);
    border-color:var(--secondary);
}

.btn-outline-success{
    border:2px solid var(--primary);
    color:var(--primary);
   
}

.btn-outline-success:hover{
    background:var(--primary);
    color:#fff;
}

/*img.custom-logo {
    width: 150px;
}*/

/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/

.footer{

    background:var(--primary);

    color:#ffffff;

    padding:90px 0 0;

}

.footer-logo img{

    height:90px;

    width:auto;

}

.footer-text{

    color:rgba(255,255,255,.75);

    line-height:1.8;
    font-size: 14px;
    padding-right: 35px;
    text-align: justify;



}

.footer h5{

    font-size:20px;

    font-weight:700;

    margin-bottom:30px;

    color:#fff;

}

.footer-menu{

    margin:0;

    padding:0;

    

}

.footer-menu li{

    margin-bottom:14px;

}

.footer-menu li a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    transition:.3s;

}

.footer-menu li a:hover{

    color:var(--secondary);

    padding-left:6px;

}

.footer-contact{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-contact li{

    display:flex;

    gap:15px;

    margin-bottom:22px;

    align-items:flex-start;

}

.footer-contact i{

    color:var(--secondary);

    font-size:20px;

    margin-top:2px;

}

.footer-contact a{

    color:#fff;

    text-decoration:none;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    border-radius:50%;

    transition:.3s;

    text-decoration:none;

}

.footer-social a:hover{

    background:var(--secondary);

    color:var(--primary);

    transform:translateY(-4px);

}

.footer-bottom{

    margin-top:70px;

    border-top:1px solid rgba(255,255,255,.12);

    padding:25px 0;

    color:rgba(255,255,255,.70);

    font-size:14px;

}

.footer-bottom a{

    color:rgba(255,255,255,.70);

    text-decoration:none;

}

.footer-bottom a:hover{

    color:var(--secondary);

}

.footer-bottom span{

    margin:0 12px;

    opacity:.5;

}

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

.hero-section{

    padding:120px 0;

    background:linear-gradient(180deg,#ffffff 0%,var(--light) 100%);

    overflow:hidden;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    background:var(--light-green);

    border-radius:50px;

    color:var(--primary);

    font-weight:600;

    margin-bottom:25px;

}

.hero-badge i{

    color:var(--secondary);

}

.hero-section h1{

    font-size:58px;

    line-height:1.15;

    font-weight:800;

    color:var(--primary);

    margin-bottom:25px;

}

.hero-section h1 span{

    display:block;

    color:var(--secondary);

}

.hero-section p{

    font-size:18px;

    line-height:1.8;

    color:var(--text-light);

    margin-bottom:40px;

    max-width:560px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-buttons .btn{

    padding:15px 34px;

    border-radius:50px;

    font-weight:600;

}

.hero-buttons .btn i{

    margin-left:8px;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:var(--primary);

}

.hero-features i{

    color:var(--secondary);

}

.hero-image{

    position:relative;

}

.hero-image img{

    border-radius:30px;

    box-shadow:var(--shadow);

}

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:18px;

    padding:18px 22px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}

.floating-card i{

    font-size:28px;

    color:var(--secondary);

}

.floating-card strong{

    display:block;

    color:var(--primary);

}

.floating-card small{

    color:var(--text-light);

}

.card-one{

    top:35px;

    left:-35px;

}

.card-two{

    bottom:40px;

    right:-35px;

}

/* Responsive */

@media(max-width:991px){

.hero-section{

padding:80px 0;

}

.hero-section h1{

font-size:42px;

}

.hero-image{

margin-top:50px;

}

.card-one{

left:0;

}

.card-two{

right:0;

}

}

/*==========================
Services
==========================*/

.services-section{

    padding:110px 0;

    background:#ffffff;

}

.section-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:var(--light-green);

    color:var(--primary);

    font-weight:600;

    margin-bottom:20px;

}

.section-title{

    font-size:46px;

    font-weight:800;

    color:var(--primary);

    margin-bottom:20px;

}

.section-title span{

    display:block;

    color:var(--secondary);

}

.section-description{

    max-width:760px;

    margin:auto;

    color:var(--text-light);

    font-size:18px;

    line-height:1.8;

}

.service-card{

    background:#fff;

    padding:45px;

    border-radius:24px;

    border:1px solid var(--border);

    transition:.35s;

    height:100%;

    position:relative;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.service-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:30px;

}

.service-card h3{

    font-size:28px;

    color:var(--primary);

    margin-bottom:18px;

}

.service-card p{

    color:var(--text-light);

    line-height:1.8;

    margin-bottom:30px;

}

.service-card a{

    text-decoration:none;

    color:var(--primary);

    font-weight:700;

}

.service-card a i{

    margin-left:8px;

    transition:.3s;

}

.service-card:hover a i{

    margin-left:15px;

}

/*==============================
Why Choose Us
==============================*/

.why-choose-section{

    padding:120px 0;

    background:var(--light);

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:30px;

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

}

.experience-box{

    position:absolute;

    bottom:20px;

    right:20px;

    background:rgba(21,71,52,.95);

    backdrop-filter:blur(10px);

    color:#fff;

    padding:18px 22px;

    border-radius:18px;

    width:220px;

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

}

.experience-box i{

    display:inline-flex;

    width:55px;

    height:55px;

    align-items:center;

    justify-content:center;

    background:var(--secondary);

    color:var(--primary);

    border-radius:50%;

    font-size:26px;

    margin-bottom:15px;

}

.experience-box h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:5px;

    color:#fff;

}

.experience-box p{

    margin:0;

    color:rgba(255,255,255,.80);

    font-size:15px;

    line-height:1.5;

}

.feature-box{

    background:#fff;

    padding:30px;

    border-radius:20px;

    height:100%;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.04);

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-box i{

    width:65px;

    height:65px;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    font-size:28px;

    margin-bottom:20px;

}

.feature-box h5{

    color:var(--primary);

    font-size:22px;

    margin-bottom:12px;

}

.feature-box p{

    color:var(--text-light);

    margin:0;

    line-height:1.7;

}


/*=====================================
How It Works
======================================*/

.process-section{

    padding:120px 0;

    background:#ffffff;

}

.process-card{

    position:relative;

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-10px);

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

}

.process-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

}

.process-number{

    position:absolute;

    top:20px;

    right:20px;

    font-size:50px;

    font-weight:800;

    color:#eef5ef;

    line-height:1;

}

.process-card h4{

    color:var(--primary);

    margin-bottom:15px;

    font-size:24px;

    font-weight:700;

}

.process-card p{

    color:var(--text-light);

    margin:0;

    line-height:1.8;

}

/*=============================
Business Solutions
==============================*/

.business-section{

    padding:120px 0;

    background:var(--light);

}

.solution-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

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

    transition:.35s;

    height:100%;

}

.solution-card:hover{

    transform:translateY(-10px);

}

.solution-image{

    overflow:hidden;

}

.solution-image img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.solution-card:hover img{

    transform:scale(1.08);

}

.solution-content{

    padding:40px;

}

.solution-content span{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:var(--light-green);

    color:var(--primary);

    padding:8px 18px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:20px;

}

.solution-content h3{

    color:var(--primary);

    margin-bottom:18px;

    font-size:32px;

}

.solution-content p{

    color:var(--text-light);

    line-height:1.8;

}

.solution-content ul{

    margin:30px 0;

    padding:0;

    list-style:none;

}

.solution-content ul li{

    margin-bottom:15px;

}

.solution-content ul i{

    color:var(--secondary);

    margin-right:10px;

}

.solution-content .btn{

    border-radius:50px;

    padding:14px 30px;

}

/*==================================================
ALL CARDS
==================================================*/

.service-card,
.feature-box,
.process-card,
.solution-card{

    border-radius:var(--card-radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.service-card:hover,
.feature-box:hover,
.process-card:hover,
.solution-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 70px rgba(16,71,52,.12);

}


/*==================================================
ALL BUTTONS
==================================================*/

.btn,
.btn-primary,
.btn-success,
.btn-outline-primary,
.btn-outline-success{

    border-radius:var(--button-radius);

    font-weight:600;

    padding:14px 30px;

    transition:var(--transition);

}

.btn-primary,
.btn-success{

    background:var(--secondary);

    border:2px solid var(--secondary);

    color:#fff;

}

.btn-primary:hover,
.btn-success:hover{

    background:var(--primary);

    border-color:var(--primary);

    color:#fff;

}

.btn-outline-primary,
.btn-outline-success{

    border:2px solid var(--primary);

    color:var(--primary);

    background:#fff;

}

.btn-outline-primary:hover,
.btn-outline-success:hover{

    background:var(--primary);

    color:#fff;

}


/*==================================================
ALL ICON BOXES
==================================================*/

.service-icon,
.process-icon,
.feature-box i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--primary);

    color:#fff;

    border-radius:var(--icon-radius);

    font-size:30px;

    transition:var(--transition);

}

.service-card:hover .service-icon,
.feature-box:hover i,
.process-card:hover .process-icon{

    background:var(--secondary);

    transform:rotate(-8deg);

}


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

.cta-section{

    padding:120px 0;

    background:#ffffff;

}

.cta-wrapper{

    position:relative;

    overflow:hidden;

    background:#104734;

    border-radius:30px;

    padding:70px;

    color:#fff;

}

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(0,171,83,.10);

    top:-220px;

    right:-180px;


}

.cta-wrapper::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    bottom:-150px;

    left:-120px;

}

.cta-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    margin-bottom:25px;

    font-weight:600;

}

.cta-tag i{

    color:#00ab53;

}

.cta-wrapper h2{

    font-size:46px;

    font-weight:800;

    margin-bottom:20px;

    color:#fff;

}

.cta-wrapper p{

    color:rgba(255,255,255,.85);

    line-height:1.9;

    margin:0;

    max-width:650px;

}

.cta-wrapper .btn{

    min-width:220px;

    border-radius:50px;

    padding:15px 30px;

    font-weight:600;

}

.btn-light{

    color:#104734;

}

.btn-light:hover{

    background:#00ab53;

    color:#fff;

}

.btn-outline-light:hover{

    background:#fff;

    color:#104734;

}

@media(max-width:991px){

.cta-wrapper{

    padding:45px 30px;

    text-align:center;

}

.cta-wrapper h2{

    font-size:34px;

}

.cta-wrapper .btn{

    width:100%;

}

}

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

.services-cta{

    padding-bottom:120px;

    background:#fff;

}

.services-cta-wrapper{

    background:#104734;

    border-radius:24px;

    padding:40px 50px;

    color:#fff;

    box-shadow:0 20px 50px rgba(16,71,52,.10);

}

.services-cta-icon{

    width:80px;

    height:80px;

    background:#00ab53;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.services-cta-icon i{

    color:#fff;

    font-size:34px;

}

.services-cta-wrapper h3{

    margin-bottom:10px;

    font-size:30px;

    font-weight:700;

    color:#fff;

}

.services-cta-wrapper p{

    margin:0;

    color:rgba(255,255,255,.85);

    line-height:1.7;

}

.services-cta-wrapper .btn{

    min-width:180px;

}

.services-cta-wrapper .btn-outline-success{

    border-color:#fff;

/*    color:#fff;*/

}

.services-cta-wrapper .btn-outline-success:hover{

    background:#fff;

    color:#104734;

}

@media(max-width:991px){

.services-cta-wrapper{

    padding:35px 25px;

    text-align:center;

}

.services-cta-icon{

    margin:0 auto 20px;

}

.services-cta-wrapper .d-flex{

    display:block !important;

}

.services-cta-wrapper .btn{

    width:100%;

    margin-bottom:15px;

}

}


/*======================================
HOUSEHOLD HERO
======================================*/

.household-hero{

    padding:120px 0;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f6faf7 100%
    );

}

.household-hero h1{

    font-size:58px;

    font-weight:800;

    color:#104734;

    margin:20px 0;

    line-height:1.2;

}

.household-hero h1 span{

    display:block;

    color:#00ab53;

}

.household-hero p{

    font-size:18px;

    color:#6b7280;

    line-height:1.9;

    margin-bottom:35px;

}

.household-features{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-top:35px;

}

.household-features div{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:#104734;

}

.household-features i{

    color:#00ab53;

}

.household-image img{

    border-radius:30px;

    box-shadow:0 25px 60px rgba(16,71,52,.08);

}

@media(max-width:991px){

.household-hero{

    padding:80px 0;

}

.household-hero h1{

    font-size:40px;

}

.household-features{

    flex-direction:column;

    gap:15px;

}

}

/*==================================
Household Services
==================================*/

.household-services{

    padding:120px 0;

    background:#ffffff;

}

.household-card{

    background:#fff;

    border-radius:24px;

    padding:45px 35px;

    text-align:center;

    box-shadow:0 20px 60px rgba(16,71,52,.08);

    transition:.35s;

    height:100%;

}

.household-card:hover{

    transform:translateY(-10px);

}

.household-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:30px;

    background:#00ab53;

    color:#fff;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    transition:.35s;

}

.household-card:hover .household-icon{

    background:#104734;

}

.household-card h4{

    color:#104734;

    font-size:26px;

    margin-bottom:18px;

}

.household-card p{

    color:#6b7280;

    line-height:1.8;

    margin:0;

}

/*=========================================
Household Benefits
=========================================*/

.household-benefits{

    padding:120px 0;

    background:#f6faf7;

}

.benefit-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    height:100%;

    transition:.35s;

    box-shadow:0 15px 40px rgba(16,71,52,.08);

}

.benefit-card:hover{

    transform:translateY(-8px);

}

.benefit-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:#00ab53;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

}

.benefit-card:hover .benefit-icon{

    background:#104734;

}

.benefit-card h4{

    color:#104734;

    margin-bottom:15px;

    font-size:24px;

}

.benefit-card p{

    color:#6b7280;

    margin:0;

    line-height:1.8;

}

.signup-card{

    background:#104734;

    border-radius:28px;

    overflow:hidden;

    height:100%;

    color:#fff;

}

.signup-card img{

    width:100%;

    height:280px;

    object-fit:cover;

}

.signup-content{

    padding:35px;

}

.signup-content span{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    margin-bottom:18px;

}

.signup-content h3{

    font-size:34px;

    margin-bottom:20px;

    color:#fff;

}

.signup-content p{

    color:rgba(255,255,255,.85);

    margin-bottom:30px;

}


/*==================================
Household Solutions
==================================*/

.household-solutions{

    padding:120px 0;

    background:#ffffff;

}

.solution-image img{

    border-radius:30px;

    box-shadow:0 25px 60px rgba(16,71,52,.08);

}

.household-solutions p{

    color:#6b7280;

    line-height:1.9;

    margin:25px 0 35px;

}

.solution-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.solution-list div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:#104734;

}

.solution-list i{

    color:#00ab53;

    font-size:20px;

}

@media(max-width:991px){

.solution-list{

    grid-template-columns:1fr;

}

}

/*==================================
Waste Guide
==================================*/

.waste-guide{

    padding:120px 0;

    background:#f6faf7;

}

.waste-card{

    background:#fff;

    padding:45px;

    border-radius:24px;

    height:100%;

    box-shadow:0 20px 60px rgba(16,71,52,.08);

}

.waste-header{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:28px;

    font-weight:700;

    color:#104734;

    margin-bottom:30px;

}

.accepted .waste-header i{

    color:#00ab53;

}

.rejected .waste-header i{

    color:#dc3545;

}

.waste-card ul{

    list-style:none;

    margin:0;

    padding:0;

}

.waste-card li{

    padding:14px 0;

    border-bottom:1px solid #e8ecea;

    color:#495057;

    font-weight:500;

}

.waste-card li:last-child{

    border-bottom:none;

}

/*==================================
Collection Process
==================================*/

.collection-process{

    padding:120px 0;

    background:#ffffff;

}

.process-item{

    position:relative;

    text-align:center;

    background:#ffffff;

    padding:40px 30px;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(16,71,52,.08);

    transition:.35s;

    height:100%;

}

.process-item:hover{

    transform:translateY(-8px);

}

.process-number{

    position:absolute;

    top:20px;

    right:25px;

    font-size:48px;

    font-weight:800;

    color:#eef6f1;

    line-height:1;

}

.process-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    background:#104734;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    transition:.35s;

}

.process-item:hover .process-icon{

    background:#00ab53;

}

.process-item h4{

    color:#104734;

    font-size:24px;

    margin-bottom:15px;

}

.process-item p{

    color:#6b7280;

    line-height:1.8;

    margin:0;

}



/*==================================
Recycling Guide CTA
==================================*/

.recycling-guide-section{

    padding:120px 0;

    background:#f6faf7;

}

.recycling-guide-wrapper{

    background:#ffffff;

    border-radius:30px;

    padding:60px;

    box-shadow:0 20px 60px rgba(16,71,52,.08);

}

.recycling-guide-wrapper h2{

    font-size:46px;

    color:#104734;

    font-weight:800;

    margin:20px 0;

}

.recycling-guide-wrapper p{

    color:#6b7280;

    line-height:1.9;

    margin-bottom:30px;

}

.guide-list{

    list-style:none;

    padding:0;

    margin:0 0 35px;

}

.guide-list li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    font-weight:600;

    color:#104734;

}

.guide-list i{

    color:#00ab53;

    font-size:20px;

}

.guide-image img{

/*    width:100%;*/

    border-radius:24px;

    box-shadow:0 20px 50px rgba(16,71,52,.10);

}

@media(max-width:991px){

.recycling-guide-wrapper{

    padding:35px;

}

.recycling-guide-wrapper h2{

    font-size:34px;

    margin-top:15px;

}

.guide-image{

    margin-top:40px;

}

}


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

.household-final-cta{

    padding:120px 0;

    background:#ffffff;

}

.household-final-cta .cta-wrapper{

    background:linear-gradient(135deg,#104734,#0b3628);

    border-radius:32px;

    padding:70px;

    overflow:hidden;

    position:relative;

}

.household-final-cta .cta-wrapper::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    border-radius:50%;

    background:rgba(0,171,83,.12);

    top:-180px;

    right:-120px;

}

.household-final-cta h2{

    font-size:48px;

    color:#fff;

    font-weight:800;

    margin:20px 0;

}

.household-final-cta p{

    color:rgba(255,255,255,.85);

    line-height:1.9;

    margin-bottom:35px;

}

.household-final-cta .section-tag{

    background:rgba(255,255,255,.12);

    color:#fff;

}

.household-final-cta .cta-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.household-final-cta .btn-outline-light{

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

}

.household-final-cta .btn-outline-light:hover{

    background:#fff;

    color:#104734;

}

.cta-image img{

    border-radius:24px;

}

@media(max-width:991px){

.household-final-cta .cta-wrapper{

    padding:40px 30px;

}

.household-final-cta h2{

    font-size:34px;

}

.cta-image{

    margin-top:40px;

}

}


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

.commercial-hero{

    padding:120px 0;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f6faf7 100%
    );

}

.commercial-hero h1{

    font-size:58px;

    font-weight:800;

    color:#104734;

    line-height:1.2;

    margin:20px 0;

}

.commercial-hero h1 span{

    display:block;

    color:#00ab53;

}

.commercial-hero p{

    font-size:18px;

    color:#6b7280;

    line-height:1.9;

    margin-bottom:35px;

}

.commercial-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-top:35px;

}

.commercial-features div{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:#104734;

}

.commercial-features i{

    color:#00ab53;

}

.commercial-image img{

    border-radius:30px;

    box-shadow:0 25px 60px rgba(16,71,52,.08);

}

@media(max-width:991px){

.commercial-hero{

    padding:80px 0;

}

.commercial-hero h1{

    font-size:40px;

}

.commercial-features{

    flex-direction:column;

}

}


/*==================================
Commercial Services
==================================*/

.commercial-services{

    padding:120px 0;

    background:#ffffff;

}

.service-row{

    margin-top:100px;

}

.service-image img{

    width:100%;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(16,71,52,.08);

}

.service-subtitle{

    display:inline-block;

    padding:8px 18px;

    background:#eef8ef;

    color:#104734;

    border-radius:50px;

    margin-bottom:20px;

    font-weight:600;

}

.commercial-services h3{

    font-size:42px;

    color:#104734;

    font-weight:700;

    margin-bottom:25px;

}

.commercial-services p{

    color:#6b7280;

    line-height:1.9;

    margin-bottom:30px;

}

.service-list{

    list-style:none;

    padding:0;

    margin:0;

}

.service-list li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    font-weight:600;

    color:#104734;

}

.service-list i{

    color:#00ab53;

}

@media(max-width:991px){

.service-row{

    margin-top:70px;

}

.commercial-services h3{

    font-size:32px;

}

}

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

.industries-section{

    padding:120px 0;

    background:#f6faf7;

}

.industry-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(16,71,52,.08);

    transition:.35s;

    height:100%;

}

.industry-card:hover{

    transform:translateY(-10px);

}

.industry-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.industry-content{

    padding:35px;

}

.industry-content h4{

    color:#104734;

    font-size:28px;

    margin-bottom:15px;

}

.industry-content p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:25px;

}

.industry-link{

    color:#00ab53;

    font-weight:700;

    text-decoration:none;

}

.industry-link i{

    margin-left:8px;

}


/*==================================
Why Choose Commercial
==================================*/

.why-commercial{

    padding:120px 0;

    background:#ffffff;

}

.why-commercial-image{

    position:relative;

}

.why-commercial-image img{

    width:100%;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(16,71,52,.08);

}

.experience-card{

    position:absolute;

    bottom:30px;

    left:30px;

    background:#104734;

    color:#fff;

    border-radius:24px;

    padding:25px;

    display:flex;

    align-items:center;

    gap:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.experience-card i{

    font-size:42px;

    color:#00ab53;

}

.experience-card h4{

    margin:0;

    color:#fff;

    font-size:22px;

}

.experience-card span{

    color:rgba(255,255,255,.8);

}

.why-commercial p{

    color:#6b7280;

    line-height:1.9;

}

.feature-box{

    background:#fff;

    border:1px solid #e9ecef;

    border-radius:24px;

    padding:25px;

    text-align:center;

    transition:.3s;

    height:100%;

}

.feature-box:hover{

    background:#104734;

    transform:translateY(-6px);

}

.feature-box i{

    font-size:36px;

    color:#00ab53;

    margin-bottom:15px;

}

.feature-box h5{

    font-size:18px;

    color:#104734;

    margin:0;

}

.feature-box:hover h5{

    color:#fff;

}


/*==================================
Commercial Process
==================================*/

.commercial-process{

    padding:120px 0;

    background:#f7faf8;

}

.process-card{

    position:relative;

    background:#fff;

    padding:45px 35px;

    text-align:center;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(16,71,52,.08);

    transition:.35s;

    height:100%;

}

.process-card:hover{

    transform:translateY(-8px);

}

.process-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    background:#00ab53;

    color:#fff;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:38px;

    transition:.35s;

}

.process-card:hover .process-icon{

    background:#104734;

}

.step-no{

    position:absolute;

    top:25px;

    right:25px;

    font-size:46px;

    font-weight:800;

    color:#edf5f1;

}

.process-card h4{

    color:#104734;

    font-size:26px;

    margin-bottom:15px;

}

.process-card p{

    color:#6b7280;

    line-height:1.8;

    margin:0;

}


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

.commercial-cta{

    padding:120px 0;

    background:#ffffff;

}

.commercial-cta .cta-wrapper{

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,#104734,#0d5a3f);

    border-radius:32px;

    padding:70px;

}

.commercial-cta .cta-wrapper::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-150px;

    top:-180px;

}

.commercial-cta h2{

    font-size:48px;

    font-weight:800;

    color:#fff;

    margin:20px 0;

}

.commercial-cta p{

    color:rgba(255,255,255,.85);

    line-height:1.9;

    margin-bottom:30px;

}

.commercial-cta .section-tag{

    background:rgba(255,255,255,.12);

    color:#fff;

}

.cta-list{

    list-style:none;

    padding:0;

    margin:0 0 35px;

}

.cta-list li{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    margin-bottom:18px;

    font-weight:600;

}

.cta-list i{

    color:#00ab53;

}

.cta-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

}

.btn-outline-light{

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

}

.btn-outline-light:hover{

    background:#fff;

    color:#104734;

}

.cta-image img{

    width:100%;

    border-radius:24px;

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

}

@media(max-width:991px){

.commercial-cta .cta-wrapper{

    padding:40px 30px;

}

.commercial-cta h2{

    font-size:34px;

}

.cta-image{

    margin-top:40px;

}

}


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

.help-hero{

    padding:120px 0;

    background:linear-gradient(180deg,#ffffff 0%,#f6faf7 100%);

}

.help-hero h1{

    font-size:58px;

    font-weight:800;

    color:#104734;

    line-height:1.2;

    margin:20px 0;

}

.help-hero h1 span{

    display:block;

    color:#00ab53;

}

.help-hero p{

    font-size:18px;

    color:#6b7280;

    line-height:1.9;

    margin-bottom:40px;

}

.help-search-form{

    max-width:600px;

}

.help-search-form .input-group{

    background:#fff;

    border-radius:60px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(16,71,52,.08);

}

.help-search-form input{

    border:none;

    padding:18px 25px;

    font-size:16px;

    box-shadow:none !important;

}

.help-search-form button{

    width:70px;

    border:none;

    background:#00ab53;

    color:#fff;

    font-size:22px;

    transition:.3s;

}

.help-search-form button:hover{

    background:#104734;

}

.help-image img{

    width:100%;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(16,71,52,.08);

}

@media(max-width:991px){

.help-hero{

    padding:80px 0;

}

.help-hero h1{

    font-size:40px;

}

}


/*==================================
Quick Help
==================================*/

.quick-help{

    padding:120px 0;

    background:#ffffff;

}

.help-card{

    display:block;

    height:100%;

    background:#fff;

    border-radius:24px;

    padding:40px 35px;

    text-decoration:none;

    box-shadow:0 20px 60px rgba(16,71,52,.08);

    transition:.35s;

}

.help-card:hover{

    transform:translateY(-10px);

}

.help-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:#00ab53;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:25px;

    transition:.35s;

}

.help-card:hover .help-icon{

    background:#00ab53;

}

.help-card h4{

    color:#104734;

    font-size:26px;

    margin-bottom:15px;

}

.help-card p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:25px;

}

.help-card span{

    color:#00ab53;

    font-weight:700;

}

.help-card span i{

    margin-left:8px;

}


/*==================================
Helpful Resources
==================================*/

.help-resources{

    padding:120px 0;

    background:#f7faf8;

}

.resource-card{

    display:block;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    text-decoration:none;

    box-shadow:0 20px 60px rgba(16,71,52,.08);

    transition:.35s;

    height:100%;

}

.resource-card:hover{

    transform:translateY(-10px);

}

.resource-card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

.resource-content{

    padding:35px;

}

.resource-tag{

    display:inline-block;

    padding:6px 16px;

    background:#eef8ef;

    color:#104734;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.resource-content h3{

    font-size:28px;

    color:#104734;

    margin-bottom:18px;

    line-height:1.3;

}

.resource-content p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:25px;

}

.resource-link{

    color:#00ab53;

    font-weight:700;

}

.resource-link i{

    margin-left:8px;

}


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

.help-cta{

    padding:120px 0;

    background:#ffffff;

}

.help-cta-wrapper{

    background:linear-gradient(135deg,#104734,#0f5a3d);

    border-radius:30px;

    padding:70px;

    overflow:hidden;

    position:relative;

}

.help-cta-wrapper::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-180px;

    right:-120px;

}

.help-cta h2{

    color:#fff;

    font-size:48px;

    margin:20px 0;

}

.help-cta p{

    color:rgba(255,255,255,.85);

    line-height:1.9;

    margin-bottom:35px;

}

.help-cta .section-tag{

    background:rgba(255,255,255,.12);

    color:#fff;

}

.help-contact-info{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:18px;

}

.contact-icon{

    width:70px;

    height:70px;

    background:#00ab53;

    color:#fff;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

}

.contact-item small{

    color:rgba(255,255,255,.7);

    display:block;

}

.contact-item h5{

    color:#fff;

    margin:5px 0 0;

    font-size:22px;

}

.help-cta-image img{

    width:100%;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.25);

}

@media(max-width:991px){

.help-cta-wrapper{

    padding:40px 30px;

}

.help-cta h2{

    font-size:34px;

}

}

/*==================================
Policy Pages
==================================*/

.policy-section{

    padding:120px 0;

    background:#f8faf8;

}

.policy-content{

    background:#fff;

    padding:60px;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(16,71,52,.08);

}

.policy-content h2{

    color:#104734;

    margin-bottom:25px;

    font-size:42px;

}

.policy-content h3{

    color:#104734;

    margin-top:50px;

    margin-bottom:20px;

    font-size:30px;

}

.policy-content h4{

    color:#00ab53;

    margin-top:30px;

    margin-bottom:12px;

    font-size:22px;

}

.policy-content p{

    color:#6b7280;

    line-height:1.9;

    margin-bottom:20px;

}

.policy-content a{

    color:#00ab53;

    font-weight:600;

    text-decoration:none;

}

.policy-content hr{

    margin:45px 0;

    opacity:.15;

}

@media(max-width:768px){

.policy-content{

    padding:35px 25px;

}

.policy-content h2{

    font-size:34px;

}

.policy-content h3{

    font-size:26px;

}

}


.policy-download-list{

    list-style:none;

    padding:0;

    margin-top:25px;

}

.policy-download-list li{

    margin-bottom:15px;

}

.policy-download-list a{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px 24px;

    background:#f8faf8;

    border:1px solid #e5e7eb;

    border-radius:16px;

    color:#104734;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.policy-download-list a::after{

    content:"Download";

    background:#00ab53;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

}

.policy-download-list a:hover{

    background:#104734;

    color:#fff;

    transform:translateX(6px);

}

.recycling-guide{
    background:#f7faf8;
}

.section-heading{
    max-width:700px;
    margin:0 auto;
}

.sub-title{
    display:inline-block;
    color:#00ab53;
    font-weight:600;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-heading h2{
    font-size:46px;
    color:#104734;
    margin-bottom:15px;
    font-weight:700;
}

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

.guide-card{

    background:#fff;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s;
    height:100%;

}

.guide-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.guide-image{

    height:260px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;

}

.guide-image img{

    max-height:250px;
    transition:.35s;

}

.guide-card:hover img{

    transform:scale(1.05);

}

.guide-card h3{

    color:#104734;
    font-size:24px;
    margin-bottom:20px;
    font-weight:600;

}

.btn-guide{

    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:13px 28px;
    background:#00ab53;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.btn-guide:hover{

    background:#104734;
    color:#fff;

}

.btn-guide i{

    transition:.3s;

}

.btn-guide:hover i{

    transform:translateX(5px);

}

@media(max-width:991px){

.section-heading h2{

    font-size:36px;

}

.guide-image{

    height:220px;

}

.guide-image img{

    max-height:210px;

}

}

.bin-guide-page{
    background:#fff;
}

.breadcrumb-wrap{
    font-size:14px;
    color:#777;
}

.breadcrumb-wrap a{
    text-decoration:none;
    color:#666;
}

.breadcrumb-wrap span{
    margin:0 8px;
}

.page-header h1{
    color:#104734;
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.page-header p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
}

.info-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:24px;
    padding:35px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.info-card h3{
    color:#104734;
    margin-bottom:25px;
    font-size:28px;
}

.info-card ul{
    padding-left:20px;
}

.info-card li{
    margin-bottom:12px;
    line-height:1.7;
}

.not-allowed{
    border-left:5px solid #dc3545;
}

.tips-box{
    background:#f7faf8;
    border-radius:24px;
    padding:35px;
}

.tips-box h3{
    color:#104734;
    margin-bottom:20px;
}

.tips-box li{
    margin-bottom:12px;
}

.other-bins h2{
    color:#104734;
    font-weight:700;
}

.bin-card{
    text-align:center;
    padding:30px 20px;
    background:#fff;
    border-radius:24px;
    border:1px solid #e5e5e5;
    transition:.3s;
    height:100%;
}

.bin-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.bin-card.active{
    border:2px solid #00ab53;
}

.bin-icon{
    width:90px;
    height:110px;
    border-radius:16px;
    margin:0 auto 20px;
}

.recycling{
    background:#1f7cff;
}

.organic{
    background:#6b4a3c;
}

.waste{
    background:#333;
}

.glass{
    background:#61c9ff;
}

.bin-card h4{
    margin-bottom:15px;
    font-size:20px;
}

.bin-card a{
    text-decoration:none;
    color:#00ab53;
    font-weight:600;
}

.accepted-items{
    margin-top:50px;
}

.accepted-card{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:20px;
    padding:20px;
    text-align:center;
    height:100%;
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.accepted-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.accepted-card img{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:50%;
    display:block;
    margin:0 auto 20px;
    border:4px solid #f5f5f5;
}

.accepted-card p{
    margin:0;
    font-size:15px;
    line-height:1.6;
    color:#444;
    font-weight:500;
}


.home_page_cta .btn {
    min-width: 0px;
}


a:visited {
    color: #fff; /* or var(--link-color) */
/*    background: #104734;*/
}

.succsess-label {
    margin-bottom: 19px;
    background: #104734;
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
}

.featured_banner_img {
    padding: 100px;
    background: #00ab53;
    color: #fff;
}

section#your_service_plan {
    margin-top: 20px;
}

a.btn.btn-outline-success.call_now_btn {
    color: #00ab53;
}

a.btn.btn-light.call_now_btn_1 {
    color: #00ab53;
}

.blog-content h3 a {
    text-decoration: none;
    color: #0e5137;
}

.industry-details{

    margin-top:15px;

}

.industry-details summary{

    cursor:pointer;
    color:#00ab53;
    font-weight:600;
    list-style:none;

}

.industry-details summary::-webkit-details-marker{

    display:none;

}

.industry-details summary::after{

    content:" ▼";

    font-size:12px;

}

.industry-details[open] summary::after{

    content:" ▲";

}

.industry-more{

    margin-top:15px;

}


.compact-section{

    padding:70px 0;

}

.compact-section .section-header{

    max-width:760px;
    margin:0 auto 30px;

}

.compact-section .section-title{

    margin:12px 0 15px;

}

.compact-section .section-description{

    margin:0;
}

.feature-list{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px 24px;

    max-width:900px;
    margin:35px auto;

}

.feature-item{

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

    padding:8px 0;

}

.feature-item i{

    color:#00ab53;
    font-size:22px;
    width:24px;
    text-align:center;

}

.feature-item span{

    font-weight:600;
    color:#104734;
    line-height:1.4;

}

@media(max-width:991px){

.feature-list{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.feature-list{

    grid-template-columns:1fr;

}

}

.top_paragraph_one{

    padding:80px 0 40px;

}

.top_paragraph_one h4{

    font-size:42px;
    font-weight:700;
    color:#104734;
    margin-bottom:20px;

}

.top_paragraph_one p{

    font-size:18px;
    line-height:1.8;
    color:#6b7280;
    max-width:900px;
    margin:0;

}


.form_contaier_section{

    padding:0 0 100px;

}

.contactform_internal{

    background:#ffffff;
    padding:50px;
    border-radius:24px;
    border:1px solid #e8ecef;
    box-shadow:0 15px 40px rgba(0,0,0,.06);

}


@media(max-width:991px){

    .top_paragraph_one{

        padding:60px 0 30px;

    }

    .top_paragraph_one h4{

        font-size:34px;

    }

    .contactform_internal{

        padding:35px;

    }

}


@media(max-width:767px){

    .top_paragraph_one{

        padding:50px 0 25px;

    }

    .top_paragraph_one h4{

        font-size:28px;

    }

    .top_paragraph_one p{

        font-size:16px;

    }

    .contactform_internal{

        padding:25px 20px;
        border-radius:18px;

    }

}

.contactform_internal {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

.cof_form_right p {
    font-size: 20px;
    font-weight: 700;
}

.niraj_submit {
    background: #00ab53 !important;
    color: #fff !important;
    padding-left: 50px !important;
    padding-right: 50px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.gr-single-post{

    padding:80px 0 100px;

}

.gr-post{

    max-width:760px;
    margin:auto;

}

.gr-post-meta{

    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:20px;
    font-size:15px;
    color:#6b7280;

}

.gr-category a{

    display:inline-block;
    background:#00ab53;
    color:#fff;
    text-decoration:none;
    padding:6px 14px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;

}

.gr-post-title{

    font-size:48px;
    line-height:1.2;
    color:#104734;
    margin-bottom:25px;
    font-weight:700;

}

.gr-post-excerpt{

    font-size:21px;
    line-height:1.8;
    color:#666;
    margin-bottom:35px;

}

.gr-featured-image{

    margin-bottom:45px;

}

.gr-featured-image img{

    width:100%;
    height:auto;
    border-radius:20px;

}

.gr-post-content{

    color:#444;
    font-size:18px;
    line-height:1.95;

}

.gr-post-content h2,
.gr-post-content h3,
.gr-post-content h4{

    color:#104734;
    margin:45px 0 20px;
    font-weight:700;

}

.gr-post-content p{

    margin-bottom:25px;

}

.gr-post-content ul,
.gr-post-content ol{

    margin:25px 0;
    padding-left:22px;

}

.gr-post-content li{

    margin-bottom:12px;

}

.gr-post-content img{

    max-width:100%;
    height:auto;
    border-radius:18px;
    margin:35px 0;

}

.gr-post-content blockquote{

    background:#f8faf8;
    border-left:4px solid #00ab53;
    padding:25px;
    margin:35px 0;
    border-radius:12px;

}

.gr-post-content table{

    width:100%;
    border-collapse:collapse;
    margin:35px 0;

}

.gr-post-content th,
.gr-post-content td{

    border:1px solid #e5e7eb;
    padding:14px;

}

.gr-post-content th{

    background:#104734;
    color:#fff;

}

.gr-post-footer{

    margin-top:50px;
    padding-top:25px;
    border-top:1px solid #e5e7eb;

}

.gr-tags a{

    display:inline-block;
    margin:6px;
    padding:8px 16px;
    border-radius:40px;
    background:#f3f4f6;
    color:#104734;
    text-decoration:none;
    font-size:14px;

}

@media(max-width:991px){

    .gr-post-title{

        font-size:36px;

    }

    .gr-post-excerpt{

        font-size:18px;

    }

}

@media(max-width:767px){

    .gr-single-post{

        padding:60px 0;

    }

    .gr-post-title{

        font-size:30px;

    }

    .gr-post-content{

        font-size:16px;

    }

}

img.custom-logo {
    width: 240px;
}

.house_hold_btn_z {
    z-index: 1;
}

.commercial_bt_ni{

    background: #00ab53;
}

.remove_space_ni {
    padding: 0px;
}

.white_bgm_ni{

    background: #fff;
}

a.btn.btn-outline-light.white_bgm_ni {
    color: #0d3c2c;
}

/*=====================================
Contact Information
=====================================*/

.your_service_plan{

    padding:80px 0 50px;

}

.contact_section{

    background:#fff;
    padding:45px;
    border-radius:24px;
    border:1px solid #e9ecef;
    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.contact_section p{

    font-size:18px;
    line-height:1.8;
    color:#6b7280;
    margin-bottom:30px;

}

.contact_section b{

    display:block;
    font-size:24px;
    color:#104734;
    margin:30px 0 20px;
    font-weight:700;

}

.contact_section ul{

    margin:0;
    padding:0;
    list-style:none;

}

.contact_section ul li{

    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:#4b5563;
    line-height:1.7;

}

.contact_section ul li::before{

    content:"";
    width:10px;
    height:10px;
    background:#00ab53;
    border-radius:50%;
    position:absolute;
    left:0;
    top:10px;

}


/*=====================================
General Enquiry Form
=====================================*/

.contact_form_general_enquireries{

    padding:20px 0 70px;

}

.contact_for_general_enqury{

    background:#fff;
    padding:50px;
    border-radius:24px;
    border:1px solid #e9ecef;
    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.contact_for_general_enqury h4{

    font-size:36px;
    color:#104734;
    margin-bottom:35px;
    font-weight:700;

}


/*=====================================
Commercial Contact
=====================================*/

.skiphire_section{

    padding-bottom:100px;

}

.skip_commercial_se{

    background:#104734;
    color:#fff;
    padding:45px;
    border-radius:24px;

}

.skip_commercial_se b{

    display:block;
    font-size:28px;
    margin-bottom:25px;
    font-weight:700;

}

.skip_commercial_se ul{

    margin:0;
    padding:0;
    list-style:none;

}

.skip_commercial_se ul li{

    position:relative;
    padding-left:28px;
    margin-bottom:15px;
    line-height:1.8;

}

.skip_commercial_se ul li::before{

    content:"";
    width:10px;
    height:10px;
    background:#00ab53;
    border-radius:50%;
    position:absolute;
    left:0;
    top:10px;

}


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

@media(max-width:991px){

.contact_section,
.contact_for_general_enqury,
.skip_commercial_se{

    padding:35px;

}

.contact_for_general_enqury h4{

    font-size:30px;

}

.contact_section b,
.skip_commercial_se b{

    font-size:22px;

}

}

@media(max-width:767px){

.your_service_plan{

    padding:60px 0 30px;

}

.contact_form_general_enquireries{

    padding:10px 0 50px;

}

.skiphire_section{

    padding-bottom:70px;

}

.contact_section,
.contact_for_general_enqury,
.skip_commercial_se{

    padding:25px 20px;
    border-radius:18px;

}

.contact_for_general_enqury h4{

    font-size:26px;

}

.contact_section p{

    font-size:16px;

}

}

a.call_now_btn:visited{
    color: #104734;
}

a.btn.btn-light.call_now_btn_1:hover {
    color: #fff;
}

a.call_now_btn:visited:hover{
    color: #fff;
}

.for_white_bg:hover{
background: #fff;
color: green;
}

a.btn.btn-outline-success.call_now_btn:hover{
    color: #fff;
}

a.niraj_bt_white:hover{
color: green;
}

a.niraj_bt_white{
color: green;
}

.commercial_bt_ni {
    padding: 15px 23px !important;
}

section.recycling-guide {
    padding-top: 50px;
    padding-bottom: 50px;
}

.help_services_section{

    padding:90px 0;
    background:#f8faf9;

}

.section_heading{

    max-width:760px;
    margin:0 auto 60px;

}

.section_heading h2{

    color:#104734;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;

}

.section_heading p{

    color:#6b7280;
    font-size:18px;
    line-height:1.8;

}

.help_service_card{

    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    border:1px solid #edf2f7;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.help_service_card:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.help_icon{

    width:90px;
    height:90px;
    margin:0 auto 30px;
    background:linear-gradient(135deg,#104734,#00ab53);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

}

.help_icon i{

    font-size:40px;
    color:#fff;

}

.help_service_card h4{

    color:#104734;
    font-size:24px;
    margin-bottom:18px;
    font-weight:700;

}

.help_service_card p{

    color:#6b7280;
    line-height:1.8;
    margin-bottom:30px;
    min-height:95px;

}

.help_link{

    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#00ab53;
    font-weight:600;
    text-decoration:none;
    transition:.3s;

}

.help_link span{

    transition:.3s;

}

.help_link:hover{

    color:#104734;

}

.help_link:hover span{

    transform:translateX(6px);

}

@media(max-width:991px){

.help_service_card{

    padding:35px 25px;

}

.section_heading h2{

    font-size:34px;

}

}

@media(max-width:767px){

.help_services_section{

    padding:70px 0;

}

.section_heading{

    margin-bottom:40px;

}

.section_heading h2{

    font-size:30px;

}

.help_service_card p{

    min-height:auto;

}

}

a.help_link:visited {
    color: #104734;
}

.account_form_card{

    background:#fff;
    border-radius:24px;
    padding:50px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.account_form_card label{

    display:block;
    font-size:15px;
    font-weight:600;
    color:#104734;
    margin-bottom:8px;

}

.account_form_card label span{

    color:#00ab53;

}

.account_form_card .form-control{

    width:100%;
    border:1px solid #d8e3de;
    border-radius:14px;
    padding:15px 18px;
    font-size:16px;
    transition:.3s;

}

.account_form_card .form-control:focus{

    border-color:#00ab53;
    box-shadow:0 0 0 4px rgba(0,171,83,.12);
    outline:none;

}

.account_form_card textarea{

    min-height:180px;
    resize:none;

}

.account_form_card .contact_submit{

    background:#104734;
    color:#fff;
    border:none;
    padding:16px 40px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;

}

.account_form_card .contact_submit:hover{

    background:#00ab53;

}

.service_plan_heading{

    background:#00ab53;
    padding:18px 30px;
    border-radius:14px;
    margin-bottom:25px;

}

.service_plan_heading h2{

    color:#fff;
    margin:0;
    text-align:center;
    font-size:30px;
    font-weight:700;

}

.service_plan_accordion .accordion-item{

    border:none;
    border-radius:16px;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.service_plan_accordion .accordion-button{

    background:#fff;
    color:#104734;
    font-size:20px;
    font-weight:600;
    padding:22px 25px;
    box-shadow:none;

}

.service_plan_accordion .accordion-button:not(.collapsed){

    background:#104734;
    color:#fff;

}

.service_plan_accordion .accordion-button:focus{

    box-shadow:none;

}

.service_plan_accordion .accordion-body{

    padding:25px;
    font-size:16px;
    line-height:1.9;
    color:#555;

}

.help_sidebar{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    position:sticky;
    top:100px;

}

.help_sidebar h4{

    margin:0;
    padding:22px;
    background:#104734;
    color:#fff;
    font-size:24px;
    text-align:center;

}

.help_sidebar ul{

    margin:0;
    padding:0;
    list-style:none;

}

.help_sidebar ul li{

    border-bottom:1px solid #ececec;

}

.help_sidebar ul li:last-child{

    border-bottom:none;

}

.help_sidebar ul li a{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    text-decoration:none;
    color:#444;
    font-weight:500;
    transition:.3s;

}

.help_sidebar ul li a::after{

    content:"›";
    font-size:20px;
    color:#999;

}

.help_sidebar ul li:hover a{

    background:#f5fbf7;
    color:#104734;

}

.help_sidebar ul li.active a{

    background:#00ab53;
    color:#fff;

}

.help_sidebar ul li.active a::after{

    color:#fff;

}

.service_plan_accordion .accordion-button:not(.collapsed)::after{

    filter: brightness(0) invert(1);

}

.black_bin {
    background: #000;
}

.blue_bin {
    background: #0047c0;
}

.brown_bin {
    background: #472f2b;
}