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

body{
    font-family:'Poppins',sans-serif;
}

.hero{

    position:relative;

    width:100%;
    height:100vh;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url("../images/hero.jpg");

    background-size:cover;
    background-position:center bottom;

    overflow:hidden;
}
.hero-content{

    position:absolute;

    top:50%;
    left:8%;

    transform:translateY(-50%);

    color:white;

    z-index:10;
}
.hero-subtitle{

    display:block;

    letter-spacing:3px;

    font-size:14px;

    margin-bottom:15px;

    opacity:.9;
}
.hero-stats{

    display:flex;

    gap:40px;

    margin-top:40px;
}

.hero-stats h3{

    color:white;

    font-size:2rem;

    margin-bottom:5px;
}

.hero-stats span{

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

    font-size:.9rem;
}
.hero h1{

    font-size:
    clamp(
    4rem,
    10vw,
    8rem
    );
}
.hero p{

    font-size:1.3rem;

    margin-bottom:30px;

    max-width:500px;
}
.hero-btn{

    text-decoration:none;

    color:white;

    border:2px solid white;

    padding:14px 28px;

    border-radius:50px;

    transition:.3s;
}

.hero-btn:hover{

    background:white;

    color:black;
}
.leaf{

    position:absolute;

    width:200px;

    height:200px;

    opacity:.15;
}
.leaf-1{

    top:0;
    right:0;

    animation:sway 8s ease-in-out infinite;
}

.leaf-2{

    bottom:50px;
    left:20px;

    animation:sway 10s ease-in-out infinite;
}
@keyframes sway{

    0%{
        transform:rotate(0deg);
    }

    50%{
        transform:rotate(5deg);
    }

    100%{
        transform:rotate(0deg);
    }
}
.hero-content{

    animation:fadeUp 1.5s ease;
    max-width:700px;
}
@keyframes fadeUp{

    from{
        opacity:0;
        transform:
        translateY(-50%)
        translateX(-40px);
    }

    to{
        opacity:1;
        transform:
        translateY(-50%)
        translateX(0);
    }
}
.trusted-section{

    padding:100px 0;

    background:
    linear-gradient(
        to bottom,
        #ffffff,
        #f8faf7
    );

    overflow:hidden;
}
.trusted-section h2{
    text-align: center;
    font-size:1.5rem;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#1B4332;
    margin-bottom:50px;
}
.trusted-slider{

    width:100%;

    overflow:hidden;

    position:relative;
}
.trusted-track{

    display:flex;

    align-items:center;

    gap: 100px;

    width:max-content;

    animation:marquee 15s linear infinite;
}
.trusted-track img{
    height:110px;
    width:auto;

    padding:0;

    background:none;

    border-radius:0;

    box-shadow:none;

    object-fit:contain;

    transition:.3s;

   
}
.trusted-track img:hover{

    transform:
    translateY(-5px)
    scale(1.05);
}
@keyframes marquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}
.trusted-slider{

    position:relative;

    overflow:hidden;
}
.trusted-slider::before,
.trusted-slider::after{

    content:"";

    position:absolute;

    top:0;

    width:120px;

    height:100%;

    z-index:2;
}
.trusted-slider::before{

    left:0;

    background:
    linear-gradient(
        to right,
        #f8faf7,
        transparent
    );
}
.trusted-slider::after{

    right:0;

    background:
    linear-gradient(
        to left,
        #f8faf7,
        transparent
    );
}

.services{

    padding:120px 8%;

    background:white;
}
.section-title{

    text-align:center;

    margin-bottom:70px;
}
.section-title span{

    color:#2E7D32;

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;
}
.section-title h2{

    margin-top:15px;

    font-size:3rem;

    color:#1B4332;
}
.services-grid{

    display:grid;

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

    gap:35px;
}
.service-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

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

    transition:.4s;
    overflow:hidden;
}
.service-card img{

    width:100%;

    height:260px;

    object-fit:cover;
    transition: .6s;
}
.service-content{

    padding:25px;
}
.service-content h3{

    margin-bottom:10px;

    color:#1B4332;
}
.service-content p{

    color:#666;
}
.service-card:hover{

    transform:
    translateY(-10px)
    scale(1.03);

    box-shadow:
    0 20px 40px rgba(0,0,0,.15);
}
.service-card:hover img{

    transform:scale(1.1);
}
@media(max-width:900px){

.services-grid{

grid-template-columns:1fr;
}

}

.gallery-section{

    padding:120px 0;

    background:#f8faf7;

    overflow:hidden;
}
.gallery-row{

    overflow:hidden;

    margin:25px 0;
}
.gallery-track{

    display:flex;

    gap:25px;

    width:max-content;

    animation:galleryMove 30s linear infinite;
}
.reverse{

    animation:
    galleryMoveReverse
    30s
    linear
    infinite;
}
.gallery-track img{

    width:450px;

    height:300px;

    object-fit:cover;

    border-radius:20px;

    transition:.4s;
}
.gallery-track:hover{

    animation-play-state: paused;
}
.gallery-track img:hover{

    transform:scale(1.04);
}
@keyframes galleryMove{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}
@keyframes galleryMoveReverse{

    from{
        transform:translateX(-50%);
    }

    to{
        transform:translateX(0);
    }
}
.about-section{

    padding:120px 8%;

    background:white;
}
.about-container{

    display:grid;

    grid-template-columns:
    1.2fr 1fr;

    gap:80px;

    align-items:center;
}
.about-left span{

    color:#2E7D32;

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;
}
.about-left h2{

    margin:20px 0;

    font-size:3rem;

    color:#1B4332;
}
.about-left p{

    color:#555;

    line-height:1.8;

    margin-bottom:40px;
}
.about-stats{

    display:flex;

    gap:50px;
}
.about-stats h3{

    color:#2E7D32;

    font-size:2rem;
}
.about-right{

    display:grid;

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

    gap:25px;
}
.team-card{

    padding:30px;

    border-radius:20px;

    background:#f8faf7;

    transition:.3s;
}
.team-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.1);
}
.team-card h3{

    color:#1B4332;

    margin-bottom:8px;
}
.team-card p{

    color:#777;
}
@media(max-width:900px){

.about-container{

grid-template-columns:1fr;
}

.about-right{

grid-template-columns:1fr;
}

}

.contact-header{

    text-align:center;

    margin-bottom:70px;
}
.contact-section{

    padding:120px 8%;

    background:#f8faf7;
}
.contact-header span{

    color:#2E7D32;

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;
}
.contact-header h2{

    font-size:3rem;

    margin:20px 0;

    color:#1B4332;
}
.contact-container{

    display:grid;

    grid-template-columns:
    1.2fr 1fr;

    gap:40px;
}
.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;
}
.contact-form input,
.contact-form textarea{

    padding:18px;

    border:none;

    border-radius:15px;

    background:white;

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

    font-size:16px;
}
.contact-form textarea{

    min-height:180px;

    resize:none;
}
.contact-form button{

    background:#2E7D32;

    color:white;

    border:none;

    padding:18px;

    border-radius:15px;

    font-size:16px;

    cursor:pointer;

    transition:.3s;
}
.contact-form button{

    background:#2E7D32;

    transition:.3s;
}

.contact-form button:hover{

    background:#1B4332;

    transform:translateY(-2px);
}
.contact-form button:hover{

    background:#1B4332;
}
.contact-info{

    display:flex;

    flex-direction:column;

    gap:20px;
}
.info-card{

    background:white;

    padding:25px;

    border-radius:18px;

    box-shadow:
    0 5px 15px rgba(0,0,0,.05);
}
@media(max-width:900px){

.contact-container{

grid-template-columns:1fr;
}

}
.footer{

    text-align:center;

    padding:60px 20px;

    background:#1B4332;

    color:white;
}
.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    transition:.4s;
}
.navbar.scrolled{

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

    backdrop-filter:
    blur(10px);

    box-shadow:
    0 5px 20px rgba(0,0,0,.08);
}
html{

    scroll-behavior:smooth;
}
.whatsapp{

    position:fixed;

    bottom:30px;
    right:30px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;

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

    font-size:28px;

    text-decoration:none;

    z-index:1000;

    box-shadow:
    0 10px 30px rgba(0,0,0,.2);
}
section{

    position:relative;
}
section::before{

    content:"";

    position:absolute;

    top:0;
    left:50%;

    width:60px;
    height:3px;

    background:#2E7D32;

    transform:
    translateX(-50%);
}
.gallery-track:hover{

    animation-play-state:
    paused;
}
.scroll-indicator{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    animation:bounce 2s infinite;
}

@keyframes bounce{

    0%,100%{
        transform:
        translateX(-50%)
        translateY(0);
    }

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

@media(max-width:768px){

.hero{

height:100vh;
}

.hero-content{

left:5%;
right:5%;
}

.hero h1{

font-size:3.5rem;
}

.hero p{

font-size:1rem;
}

.hero-stats{

gap:20px;
flex-wrap:wrap;
}

}

.whatsapp:hover{

transform:scale(1.1);

transition:.3s;
}
.team-card{

cursor:pointer;
}
