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

/*=====================
RESET
======================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#333;
    line-height:1.7;
    overflow-x:hidden;
}

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

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*=====================
COLORS
======================*/

:root{

    --primary:#2E7D32;
    --secondary:#43A047;
    --accent:#8BC34A;

    --white:#fff;
    --black:#222;
    --gray:#666;
    --light:#f5f5f5;

    --shadow:0 10px 30px rgba(0,0,0,.1);

}

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

.btn{

    display:inline-block;

    padding:15px 35px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    transition:.4s;

    font-weight:600;

}

.btn:hover{

    background:#1b5e20;

    transform:translateY(-5px);

}

.btn-outline{

    background:transparent;

    border:2px solid #fff;

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

/*=====================
HEADER
======================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

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

    backdrop-filter:blur(10px);

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

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:1px 0;

}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:200px;
    height:100px;
    object-fit:contain;

    margin-right:-72px;   /* Adjust between -10px and -25px */
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo-text h2{

    font-family:'Cinzel',serif;

    font-size:28px;

    color:#0B5D2A;

    font-weight:800;

    letter-spacing:1px;

}

.logo-text span{

    font-size:13px;
    color:#555;

    margin-top:4px;

    display:block;

    letter-spacing:0.5px;

}

.nav-links{

    display:flex;

    gap:30px;

}

.nav-links li a{

    font-size:16px;

    font-weight:500;

    position:relative;

}

.nav-links li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.4s;

}

.nav-links li a:hover::after{

    width:100%;

}

.active{

    color:var(--primary);

}

.menu-btn{

    display:none;

    font-size:28px;

    cursor:pointer;

}

/*=====================================================
   ============  SERVICES PAGE (new)  ==================
   Built on top of the tokens/rules above, same
   font system (Poppins body / Cinzel logo) and the
   same green brand palette (--primary/--secondary/--accent).
======================================================*/

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

.eyebrow{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--primary);
    margin-bottom:14px;
     display:flex;

    align-items:center;

   

}

.eyebrow--light{
    color:var(--accent);
    
}

.lede{
    color:var(--gray);
    font-size:16px;
    max-width:600px;
}

.lede--light{
    color:rgba(255,255,255,.88);
}

/*=====================
SERVICES HERO
======================*/

.services-hero{
    position:relative;
    min-height:82vh;
    margin-top:0;
    padding-top:118px; /* clears the fixed header */
    display:flex;
    align-items:flex-end;
    overflow:hidden;
}

.services-hero__bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.services-hero__scrim{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,
        rgba(11,93,42,.25) 0%,
        rgba(11,93,42,.45) 45%,
        rgba(6,54,24,.92) 100%);
}

.services-hero__inner{
    position:relative;
    z-index:2;
    padding-bottom:70px;
    max-width:720px;
}

.services-hero h1{
    font-family:'Montserrat',sans-serif;
    font-weight:800;
    font-size:clamp(32px,5vw,52px);
    line-height:1.15;
    color:#fff;
    margin-bottom:20px;
}

.services-hero h1 span{
    color:var(--accent);
}

/*=====================
INTRO
======================*/

.intro h2{
    font-family:'Montserrat',sans-serif;
    font-weight:700;
    font-size:clamp(26px,3.4vw,36px);
    color:var(--black);
    margin-bottom:16px;
}

/*=====================
SERVICES GRID
======================*/

.services-grid{
    padding:20px 0 90px;
}

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

.service-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:var(--shadow);
    display:flex;
    flex-direction:column;
    opacity:0;
    transform:translateY(24px);
    transition:opacity .6s ease, transform .6s ease, box-shadow .4s ease;
}

.service-card.is-visible{
    opacity:1;
    transform:translateY(0);
}

.service-card:hover{
    box-shadow:0 20px 45px rgba(0,0,0,.16);
}

.service-card__media{
    position:relative;
    aspect-ratio:4/3;
    overflow:hidden;
    background:var(--light);
}

.service-card__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.service-card:hover .service-card__media img{
    transform:scale(1.07);
}

.service-card__media::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.5) 100%);
}

.service-card__icon{
    position:absolute;
    top:16px;
    left:16px;
    z-index:2;
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    box-shadow:0 8px 18px rgba(0,0,0,.25);
}

.service-card__body{
    padding:24px 24px 26px;
    display:flex;
    flex-direction:column;
    gap:12px;
    flex:1;
}

.service-card__body h3{
    font-family:'Montserrat',sans-serif;
    font-weight:700;
    font-size:19px;
    color:var(--black);
    line-height:1.3;
}

.service-card__body p{
    color:var(--gray);
    font-size:14.5px;
}

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:auto;
    padding-top:14px;
    border-top:1px dashed #e2e2e2;
}

.tags li{
    font-size:12px;
    font-weight:500;
    background:var(--light);
    color:var(--primary);
    border-radius:50px;
    padding:5px 12px;
}

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

.cta{
    background:var(--primary);
    background:linear-gradient(135deg, var(--primary), #1b5e20);
    padding:80px 0;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta__inner{
    max-width:640px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.services-intro h2{
    font-size:38px;
    font-weight:700;
    color:#1b1b1b;
    line-height:1.25;
    margin-bottom:25px;
    font-family:'Poppins',sans-serif;
}   

.cta h2{
    font-family:'Montserrat',sans-serif;
    font-weight:700;
    font-size:clamp(24px,3.2vw,32px);
    line-height:1.3;
    color:#fff;
    margin-bottom:30px;
}

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

.footer{
    padding:26px 0 40px;
}

.footer__inner{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    font-size:13px;
    color:var(--gray);
}

.footer__sep{
    opacity:.5;
}

/*=====================
MOBILE NAV
======================*/

@media (max-width:991px){

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:280px;
        height:100vh;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:110px 30px;
        box-shadow:-10px 0 30px rgba(0,0,0,.1);
        transition:.4s;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links li{
        width:100%;
        border-bottom:1px solid #eee;
    }

    .nav-links li a{
        display:block;
        padding:16px 0;
    }

    .nav-btn{
        display:none;
    }

    .menu-btn{
        display:block;
    }

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

@media (max-width:640px){

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

    .logo img{
        width:140px;
        height:70px;
        margin-right:-40px;
    }

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

    .services-hero{
        min-height:70vh;
    }
}



 



/*==============================
      SERVICES INTRO
==============================*/

.services-intro{

    padding:100px 20px 70px;

    background:#fff;

}

.services-intro .container{

    max-width:900px;

    margin:auto;

    text-align:center;

}

/* Small Heading */

.section-tag{

    display:inline-block;

    color:#2e7d32;

    font-size:15px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    position:relative;
    margin-top: 1px;
    margin-bottom:25px;

}

/* Line below heading */

.section-tag::after{

    content:"";

    width:70px;

    height:3px;

    background:#2e7d32;

    display:block;

    margin:15px auto 0;

    border-radius:20px;

}

/* Main Heading */

.services-intro h2{

    font-size:38px;

    font-weight:700;

    color:#1b1b1b;

    line-height:1.25;

    margin-bottom:25px;

    font-family:'Poppins',sans-serif;

}

/* Paragraph */

.services-intro p{

    font-size:15px;

    color:#666;

    max-width:650px;

    margin:auto;

    line-height:1.8;

}
@media(max-width:992px){

.services-intro h2{

font-size:45px;

}

.services-intro p{

font-size:19px;

}

}

@media(max-width:768px){

.services-intro{

padding:70px 20px;

}

.services-intro h2{

font-size:34px;

}

.services-intro p{

font-size:17px;

}

.section-tag{

font-size:13px;

letter-spacing:3px;

}

}