/* Pamba Landscaping - style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root{

    /* Brand Colors */
    --primary: #82B933;      /* Bright green from the logo */
    --secondary: #5E8F26;    /* Medium green */
    --accent: #234A07;       /* Dark forest green */

    /* Neutral Colors */
    --dark: #111111;         /* Logo black */
    --text: #333333;
    --light: #F7FAF3;        /* Very light green background */
    --white: #FFFFFF;

    /* Extras */
    --border: #DCE8D2;
    --shadow: 0 12px 30px rgba(35, 74, 7, 0.15);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #234A07, #82B933);
    --gradient-light: linear-gradient(135deg, #5E8F26, #A9D74E);

}
*{margin:0;padding:0;box-sizing:border-box;scroll-behavior:smooth}
body{font-family:Poppins,sans-serif;color:var(--text);background:#fafcf9;line-height:1.7}
img{max-width:100%;display:block}
a{text-decoration:none}
section{padding:60px 8%}
.section-title{text-align:center;margin-bottom:30px}
.section-title h2{font-size:1.3rem;color:var(--dark);margin-bottom:5px}
.section-title p{max-width:700px;margin:auto;color:#666}
/*=========================
HEADER
==========================*/

.header{

    position:fixed;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    width:92%;

    max-width:1400px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 40px;

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

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border-radius:60px;

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

    z-index:1000;

    transition:.35s;

}

.header.scrolled{

    top:0;

    width:100%;

    border-radius:0;

    padding:18px 8%;

}

/*======================
LOGO
======================*/

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

.logo-img{
    width:60px;
    height:60px;
    object-fit:contain;
}

.logo-text h2{
    color:#234A07;
    font-size:24px;
    line-height:1;
    margin:0;
}

.logo-text span{
    color:#2E7D32;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
}
@media (max-width:576px){

    .logo-img{
        width:45px;
        height:45px;
    }

    .logo-text h2{
        font-size:18px;
    }

    .logo-text span{
        font-size:11px;
    }

}
/*==
NAVIGATION
======================*/

.navbar{
 
    display:flex;

    align-items:center;

    gap:35px;

}

.navbar a{

    text-decoration:none;

    color: var(--text);

    font-weight:500;

    position:relative;

    transition:.3s;

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    border-radius:20px;

   background: var(--primary);

    transition:.3s;

}

.navbar a:hover,

.navbar .active{

     color: var(--primary);

}

.navbar a:hover::after,

.navbar .active::after{

    width:100%;

}

/*======================
QUOTE BUTTON
======================*/

.quote-btn{

   background: var(--gradient-primary);
    color: var(--white);

    color:#fff;

    text-decoration:none;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 25px rgba(46,125,50,.35);

}

.quote-btn:hover{

     background: var(--accent);

    transform:translateY(-4px);

}

/*======================
MENU BUTTON
======================*/

.menu-btn{

    display:none;

    width:50px;

    height:50px;

    border-radius:50%;

    background:#fff;

    color:var(--dark);

    justify-content:center;

    align-items:center;

    cursor:pointer;

    margin-left:20px;

    font-size:20px;

}

.header-right{

    display:flex;

    align-items:center;

}

/* ===================================================
   LARGE LAPTOPS (1400px and below)
=================================================== */

@media (max-width:1400px){

    .header{
        width:95%;
    }

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

    .about{
        gap:60px;
    }

}

/* ===================================================
   LAPTOPS (1200px and below)
=================================================== */

@media (max-width:1200px){

    section{
        padding:90px 6%;
    }

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

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

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

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

}

/* ===================================================
   TABLETS (992px and below)
=================================================== */

@media (max-width:992px){

    .header{
        padding:15px 25px;
        width:95%;
    }

    .menu-btn{
        display:flex;
        color: var(--dark);
    }

    .quote-btn{
        display:none;
    }

    .navbar{

        position:fixed;

        top:80px;

        left:-100%;

        width:100%;

        background:#fff;

        flex-direction:column;

        gap:25px;

        padding:40px 0;

        box-shadow:0 15px 30px rgba(0,0,0,.08);

        transition:.4s;

    }

    .navbar.active{
        left:0;
    }

    .hero{
        text-align:center;
        padding-top:180px;
    }

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

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

    .hero-stats{
        gap:5px;
    }

    .about{

        grid-template-columns:1fr;

        gap:50px;

    }

    .experience{

        right:20px;

        bottom:20px;

    }

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

    .project-details{
        grid-template-columns:1fr;
    }

}

/* ===================================================
   LARGE PHONES (768px and below)
=================================================== */

@media (max-width:768px){

    section{
        padding:80px 5%;
    }

    .header{
        top:10px;
        border-radius:20px;
    }

    .logo-text h2{
        font-size:20px;
    }

    .logo-text span{
        font-size:12px;
    }

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

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

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

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

    .hero-stats{

        gap:25px;

    }

    .hero-stats h2{
        font-size:32px;
    }

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

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

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

    .service-container,
    .projects-container,
    .testimonial-container{

        grid-template-columns:1fr;

    }

    .project-meta{
        grid-template-columns:1fr;
    }

}

/* ===================================================
   MOBILE PHONES (576px and below)
=================================================== */
/* =========================
   MOBILE MENU
========================= */

@media (max-width:992px){

    .header{

        padding:14px 20px;

        width:95%;

    }

    .menu-btn{

        display:flex;

    }

    .quote-btn{

        display:none;

    }

    .whatsapp-btn{

        display:none;

    }

    .navbar{

        position:fixed;

        top:85px;

        left:-100%;

        width:100%;

        height:calc(100vh - 85px);

        background:#fff;

        display:flex;

        flex-direction:column;

        justify-content:flex-start;

        align-items:center;

        gap:25px;

        padding:40px 20px;

        transition:.4s;

        overflow-y:auto;

    }

    .navbar.active{

        left:0;

    }

    .navbar a{

        font-size:18px;

        width:100%;

        text-align:center;

        padding:15px;

        border-radius:10px;

    }

    .navbar a:hover{

        background:#E8F5E9;

    }

    .mobile-quote{

        display:block;

        width:100%;

        margin-top:20px;

        background:#2E7D32;

        color:#fff;

        text-align:center;

        padding:15px;

        border-radius:50px;

        font-weight:600;

    }

    .mobile-whatsapp{

        display:block;

        width:100%;

        background:#25D366;

        color:#fff;

        text-align:center;

        padding:15px;

        border-radius:50px;

        font-weight:600;

    }

}

/*=============================
=================================================== */

@media (max-width:430px){

    html{
        font-size:15px;
    }

    section{
        padding:70px 20px;
    }

    /* ---------- Header ---------- */

    .header{

        top:10px;

        width:95%;

        padding:12px 18px;

        border-radius:18px;

    }

    .logo i{

        width:42px;
        height:42px;
        font-size:18px;

    }

    .logo-text h2{

        font-size:18px;

    }

    .logo-text span{

        font-size:11px;

        letter-spacing:1px;

    }

    .menu-btn{

        width:42px;
        height:42px;
        font-size:18px;

    }

    /* ---------- Mobile Menu ---------- */

    .navbar{

        top:78px;

        padding:30px;

        gap:20px;

    }

    .navbar a{

        font-size:18px;

    }

    /* ---------- Hero ---------- */

    .hero{

        min-height:150vh;

        padding:120px 20px 60px;

        background-position:center;

    }

    .hero-content{

        width:100%;

    }

    .hero-tag{

        font-size:12px;

        padding:8px 16px;

        margin-bottom:20px;

    }

    .hero h1{

        font-size:2rem;

        line-height:1.2;

        margin-bottom:18px;

    }

    .hero p{

        font-size:15px;

        line-height:1.7;

        margin-bottom:30px;

    }

    .hero-buttons{

        width:100%;

        gap:15px;

    }

    .hero-buttons .btn{

        width:100%;

        max-width:none;

    }

    .hero-stats{

        margin-top:35px;

        display:grid;

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

        gap:15px;

        text-align:center;

    }

    .hero-stats h2{

        font-size:24px;

    }

    .hero-stats span{

        font-size:12px;

    }

    /* ---------- About ---------- */

    .about{

        gap:35px;

    }

    .about-content h2{

        font-size:30px;

        line-height:1.2;

    }

    .about-content p{

        font-size:15px;

    }

    .experience{

        position:relative;

        right:auto;

        bottom:auto;

        width:100%;

        margin-top:20px;

        padding:20px;

    }

    .experience h2{

        font-size:32px;

    }

    .features{

        grid-template-columns:1fr;

        gap:15px;

    }

    /* ---------- Cards ---------- */

    .service-card,
    .testimonial-card,
    .project-card{

        padding:22px;

        border-radius:18px;

    }

    .service-card h3{

        font-size:20px;
        font-family: "Patrick Hand", cursive;

    }

    .service-card p{

        font-size:15px;

    }

    /* ---------- Projects ---------- */

    .project-card img{

        height:200px;

    }

    .project-content{

        padding:20px;

    }

    /* ---------- Titles ---------- */

    .section-title{

        margin-bottom:40px;

    }

    .section-title h2{

        font-size:30px;

    }

    .section-title p{

        font-size:15px;

    }

    /* ---------- Contact ---------- */

    .contact input,
    .contact textarea{

        padding:14px;

    }

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

    .footer-content{

        grid-template-columns:1fr;

        text-align:center;

        gap:25px;

    }

}

/* ===================================================
   EXTRA SMALL DEVICES (360px and below)
=================================================== */

@media (max-width:360px){

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

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

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

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

}
.hero{

    position:relative;

    height:120vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:#fff;

  

}


.hero-content{

    max-width:900px;

    z-index:2;

    padding:20px;
    

}

.hero-tag{

    display:inline-block;

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

    backdrop-filter:blur(12px);

    padding:10px 22px;

    border-radius:50px;

    margin-bottom:20px;

    font-weight:600;

}

.hero h1{

    font-size:68px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.hero-stats{

    display:flex;

    justify-content:center;

    gap:70px;

    margin-top:80px;

    flex-wrap:wrap;

}

.hero-stats h2{

    font-size:42px;

}

.hero-stats span{

    color:#ddd;

}
.btn{display:inline-block;padding:14px 34px;border-radius:40px;background:var(--primary);color:#fff;font-weight:600;transition:.3s}
.btn:hover{background:var(--dark);transform:translateY(-3px)}
.btn-outline{background:transparent;border:2px solid #fff}
.btn-outline:hover{background:#fff;color:var(--primary)}
.about{

    padding:120px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:25px;

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

}

.experience{

    position:absolute;

    right:-30px;

    bottom:30px;

    background: var(--gradient-primary);

    color:#fff;

    padding:30px;

    border-radius:20px;

    text-align:center;

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

}

.experience h2{

    font-size:42px;

}

.about-content span{

    color:#2E7D32;

    letter-spacing:2px;

    font-weight:700;

}

.about-content h2{

    font-size:18px;

    margin:20px 0;

    color:var(--accent);

}

.about-content p{

    line-height:1.9;

    color:#666;

    margin-bottom:25px;

}

.features{

    display:grid;

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

    gap:20px;

    margin:35px 0;

}

.features div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.features i{

    color:#2E7D32;

    font-size:20px;

}
.services{background:var(--light)}
.service-container{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:25px}
.service-card{background:#fff;padding:35px;border-radius:18px;text-align:center;box-shadow:var(--shadow);transition:.3s}
.service-card:hover{transform:translateY(-8px)}
.service-card i{font-size:3rem;color:var(--primary);margin-bottom:20px}
.service-card h3{margin-bottom:12px}
.why-container{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:20px}
.why-box{background:linear-gradient(135deg,var(--primary),var(--secondary));color:#fff;padding:40px 20px;border-radius:18px;text-align:center}
.why-box h3{font-size:2.4rem}



/*==========================
TESTIMONIALS
==========================*/

.testimonials{
    padding:100px 8%;
    background:linear-gradient(135deg,#f7fbf7,#eef8ee);
}

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

.section-title span{
    display:inline-block;
    color: #2E7D32;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:23px;
    color: var(--accent);
    margin-bottom:8px;
}

.section-title p{
    color: var(--text);
    line-height:1.8;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

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

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

.testimonial-card::before{
    content:"❝";
    position:absolute;
    top:20px;
    right:25px;
    font-size:60px;
    color:#2E7D32;
    opacity:.12;
}

.stars{
    color:#FBC02D;
    margin-bottom:20px;
    font-size:18px;
}

.testimonial-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

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

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

.client h4{
    color:#1f2937;
    margin-bottom:5px;
}

.client span{
    color:#777;
    font-size:14px;
}

@media(max-width:768px){

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

    .testimonial-card{
        padding:25px;
    }

}
.contact form{max-width:750px;margin:auto;display:grid;gap:18px}
.contact input,.contact textarea{padding:15px;border:1px solid #ddd;border-radius:10px;font:inherit}
.contact textarea{resize:vertical}
.contact button{border:none;cursor:pointer}
.footer{
    background:#163d12;
    color:#fff;
    padding:70px 8% 20px;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:40px;
}

.footer-box h3{
    margin-bottom:20px;
    color:#82B933;
}

.footer-box p,
.footer-box li{
    color:#ddd;
    line-height:1.8;
}

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

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

.footer-box a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-box a:hover{
    color:#82B933;
}

.social-links{
    margin-top:20px;
    display:flex;
    gap:12px;
}

.social-links a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:.3s;
}

.social-links a:hover{
    background:#82B933;
    transform:translateY(-4px);
}

.footer hr{
    border:none;
    border-top:1px solid rgba(255,255,255,.15);
    margin:40px 0 20px;
}

.footer-bottom{
    text-align:center;
    color:#bbb;
}

@media(max-width:768px){
    .footer{
        text-align:center;
    }

    .social-links{
        justify-content:center;
    }
}
.copyright{text-align:center}
#topBtn{position:fixed;right:20px;bottom:20px;width:48px;height:48px;border:none;border-radius:50%;background:var(--primary);color:#fff;display:none;cursor:pointer}
#topBtn.show{display:block}
.service-card,.why-box,.gallery img,.testimonial,.about-content,.about-image{opacity:0;transform:translateY(40px);transition:.7s}
.show{opacity:1;transform:none}
@media(max-width:900px){
.about{grid-template-columns:1fr}
.hero h1{font-size:2.8rem}
nav{display:none;position:absolute;top:75px;left:0;width:100%;background:#fff;flex-direction:column;padding:20px}
nav.active{display:flex}
.menu-btn{display:block}
}
@media(max-width:600px){
.hero h1{font-size:2.2rem}
.hero p{font-size:1rem}
.section-title h2{font-size:1.8rem}
section{padding:70px 6%}
}
/*=========================
    PROJECTS
==========================*/

.projects{
    background:#f8fbf6;
}

.projects-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;
    margin-top:50px;
}

.project-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.project-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;
}

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

.project-content{
    padding:25px;
}

.project-content span{
    display:inline-block;
    color:#2E7D32;
    background:#e8f5e9;
    padding:6px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.project-content h3{
    margin-bottom:15px;
    color:#1B4332;
}

.project-content p{
    color:#666;
    margin-bottom:20px;
    line-height:1.7;
}

/*=========================
    PAGE BANNER
==========================*/

.page-banner{
    height:45vh;
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600") center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

.banner-content h1{
    font-size:48px;
    margin-bottom:15px;
}

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

/*=========================
    PROJECT DETAILS
==========================*/

.project-details{
    padding:90px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.project-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.project-info h2{
    color:#1B4332;
    margin-bottom:20px;
    font-size:36px;
}

.project-info p{
    margin-bottom:20px;
    line-height:1.8;
    color:#555;
}

.project-meta{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;
}

.project-meta div{
    background:#f8f8f8;
    padding:20px;
    border-left:5px solid #2E7D32;
    border-radius:8px;
}

.project-meta strong{
    color:#1B4332;
    display:block;
    margin-bottom:8px;
}

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

@media(max-width:768px){

    .project-details{
        grid-template-columns:1fr;
    }

    .project-meta{
        grid-template-columns:1fr;
    }

    .banner-content h1{
        font-size:34px;
    }

}

/*=========================
WHATSAPP BUTTON
==========================*/

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    box-shadow:0 15px 35px rgba(37,211,102,.45);

    z-index:9999;

    transition:.3s;

}

.floating-whatsapp:hover{

    transform:scale(1.1);

    background:#1ebe5d;

}
.floating-whatsapp{

    position:fixed;

    right:18px;

    bottom:18px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

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

    z-index:9999;

    animation:float 2s infinite;

}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0);
    }

}
