/*========================================
JKWI FARMING DIVISION HERO
========================================*/

.farming-hero{
    position:relative;
    width:100%;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
    url("../images/farming-hero.jpeg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,176,80,.18),
        rgba(0,0,0,.18)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:900px;
    animation:heroFade 1s ease;
}

.division-logo{
    width:170px;
    margin-bottom:25px;
    animation:floatLogo 4s ease-in-out infinite;
}

.division-subtitle{
    display:block;
    color:#ffffff;
    font-size:18px;
    font-weight:600;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.farming-hero h1{
    font-size:75px;
    font-weight:800;
    color:#ffffff;
    margin-bottom:20px;
    text-shadow:0 8px 25px rgba(0,0,0,.35);
}

.farming-hero p{
    max-width:760px;
    margin:auto;
    margin-bottom:40px;
    color:#ffffff;
    font-size:20px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    display:inline-block;
    background:#00B050;
    color:#ffffff;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    transition:.35s;
}

.btn-primary:hover{
    background:#008A3E;
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,176,80,.35);
}

.btn-secondary{
    display:inline-block;
    border:2px solid #ffffff;
    color:#ffffff;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    transition:.35s;
}

.btn-secondary:hover{
    background:#ffffff;
    color:#00B050;
}

@keyframes floatLogo{

    0%,100%{
        transform:translateY(0px);
    }

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

}

@keyframes heroFade{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

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

@media (max-width:992px){

    .farming-hero h1{
        font-size:58px;
    }

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

}

@media (max-width:768px){

    .farming-hero{
        height:100svh;
        padding:120px 20px 60px;
    }

    .division-logo{
        width:120px;
    }

    .division-subtitle{
        font-size:14px;
        letter-spacing:3px;
    }

    .farming-hero h1{
        font-size:42px;
        line-height:1.2;
    }

    .farming-hero p{
        font-size:16px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-primary,
    .btn-secondary{
        width:230px;
        text-align:center;
    }

}/*=========================================
ABOUT FARMING
=========================================*/

.about-farming{

    padding:120px 8%;

    background:#ffffff;

}

.about-farming .container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.about-image{

    overflow:hidden;

    border-radius:25px;

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

}

.about-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.05);

}

.section-tag{

    display:inline-block;

    background:#EAF8EF;

    color:#00B050;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;

}

.about-content h2{

    font-size:48px;

    color:#111;

    margin-bottom:25px;

    line-height:1.2;

}

.about-content p{

    font-size:18px;

    line-height:1.9;

    color:#555;

    margin-bottom:25px;

}

.about-btn{

    display:inline-block;

    margin-top:15px;

    padding:16px 40px;

    background:#00B050;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.about-btn:hover{

    background:#008A3E;

    transform:translateY(-5px);

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

}

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

@media(max-width:992px){

.about-farming .container{

    grid-template-columns:1fr;

    text-align:center;

}

.about-content h2{

    font-size:38px;

}

}

@media(max-width:768px){

.about-farming{

    padding:80px 20px;

}

.about-content h2{

    font-size:30px;

}

.about-content p{

    font-size:16px;

}

.about-btn{

    width:220px;

    text-align:center;

}

}/*=========================================
FARMING SERVICES
=========================================*/

.farming-services{

    padding:120px 8%;

    background:#f8fbf8;

}

.farming-services .container{

    max-width:1400px;

    margin:auto;

}

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-header span{

    display:inline-block;

    padding:10px 24px;

    background:#E8F8ED;

    color:#00B050;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}

.section-header h2{

    font-size:48px;

    color:#111;

    margin-bottom:20px;

}

.section-header p{

    max-width:720px;

    margin:auto;

    font-size:18px;

    line-height:1.8;

    color:#666;

}

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

.services-grid{

    display:grid;

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

    gap:30px;

}

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

.service-card{

    background:#ffffff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

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

    border-top:5px solid transparent;

}

.service-card:hover{

    transform:translateY(-10px);

    border-top:5px solid #00B050;

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

}

.service-card i{

    font-size:55px;

    color:#00B050;

    margin-bottom:25px;

    transition:.35s;

}

.service-card:hover i{

    transform:scale(1.15);

}

.service-card h3{

    font-size:24px;

    color:#111;

    margin-bottom:18px;

}

.service-card p{

    color:#666;

    font-size:16px;

    line-height:1.8;

}

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

@media(max-width:1200px){

.services-grid{

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

}

}

@media(max-width:768px){

.farming-services{

padding:80px 20px;

}

.section-header h2{

font-size:34px;

}

.section-header p{

font-size:16px;

}

.services-grid{

grid-template-columns:1fr;

}

.service-card{

padding:35px 25px;

}

.service-card h3{

font-size:22px;

}

}/*=====================================
FARMING STATISTICS
======================================*/

.farming-stats{

    padding:120px 8%;

    background:#00B050;

}

.farming-stats .container{

    max-width:1400px;

    margin:auto;

}

.stats-header{

    text-align:center;

    margin-bottom:60px;

}

.stats-header span{

    color:#ffffff;

    font-size:15px;

    font-weight:700;

    letter-spacing:3px;

}

.stats-header h2{

    color:#ffffff;

    font-size:46px;

    margin-top:15px;

}

.stats-grid{

    display:grid;

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

    gap:30px;

}

.stat-box{

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

    border:1px solid rgba(255,255,255,.20);

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

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

}

.stat-box i{

    font-size:55px;

    color:#ffffff;

    margin-bottom:20px;

}

.stat-box h3{

    color:#ffffff;

    font-size:24px;

    margin-bottom:15px;

}

.stat-box p{

    color:#F4F4F4;

    line-height:1.8;

}

@media(max-width:992px){

.stats-grid{

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

}

}

@media(max-width:768px){

.farming-stats{

padding:80px 20px;

}

.stats-header h2{

font-size:34px;

}

.stats-grid{

grid-template-columns:1fr;

}

}/*=====================================
FARMING CONTACT
======================================*/

.farming-contact{

    padding:120px 8%;

    background:#ffffff;

}

.farming-contact .container{

    max-width:1100px;

    margin:auto;

}

.contact-content{

    background:linear-gradient(135deg,#00B050,#009640);

    border-radius:30px;

    padding:80px 50px;

    text-align:center;

    color:#ffffff;

    box-shadow:0 20px 50px rgba(0,176,80,.25);

}

.contact-logo{

    width:120px;

    margin-bottom:25px;

}

.contact-content span{

    display:block;

    font-size:15px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:15px;

}

.contact-content h2{

    font-size:46px;

    margin-bottom:25px;

}

.contact-content p{

    max-width:750px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;

}

.contact-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.contact-btn{

    background:#ffffff;

    color:#00B050;

    padding:16px 40px;

    text-decoration:none;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.contact-btn:hover{

    transform:translateY(-5px);

}

.project-btn{

    border:2px solid #ffffff;

    color:#ffffff;

    padding:16px 40px;

    text-decoration:none;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.project-btn:hover{

    background:#ffffff;

    color:#00B050;

}

@media(max-width:768px){

    .contact-content{

        padding:60px 25px;

    }

    .contact-content h2{

        font-size:32px;

    }

    .contact-content p{

        font-size:16px;

    }

    .contact-buttons{

        flex-direction:column;

        align-items:center;

    }

    .contact-btn,
    .project-btn{

        width:240px;

        text-align:center;

    }

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

.footer{

    background:#0B1724;

    color:#ffffff;

    padding:80px 8% 25px;

}

.footer-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:140px;

    margin-bottom:20px;

}

.footer-box h3{

    color:#00B050;

    margin-bottom:20px;

    font-size:22px;

}

.footer-box p{

    color:#cfcfcf;

    line-height:1.8;

    margin-bottom:12px;

}

.footer-box a{

    display:block;

    color:#cfcfcf;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;

}

.footer-box a:hover{

    color:#00B050;

    padding-left:8px;

}

.footer-box i{

    color:#00B050;

    margin-right:10px;

}

.footer-bottom{

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

    margin-top:60px;

    padding-top:25px;

    text-align:center;

}

.footer-bottom p{

    color:#bdbdbd;

    font-size:15px;

}

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

@media(max-width:992px){

.footer-container{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.footer{

padding:60px 20px 20px;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-logo{

margin:auto auto 20px;

}

.footer-box a:hover{

padding-left:0;

}

}
