/*==================================================
 Farmer Card Pages CSS
 Common Design for All Static Pages
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7faf8;
    color:#333;
    line-height:1.8;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}


/*==============================
HEADER
==============================*/

.header{

position:sticky;

top:0;

left:0;

width:100%;

background:#ffffff;

box-shadow:0 10px 30px rgba(0,0,0,.06);

z-index:999;

}

.nav{

height:82px;

display:flex;

justify-content:space-between;

align-items:center;

}

.logo img{

height:60px;

width:auto;

}

.menu{

display:flex;

gap:28px;

align-items:center;

}

.menu a{

font-size:15px;

font-weight:600;

transition:.3s;

color:#333;

}

.menu a:hover{

color:#179d46;

}

.download-btn{

padding:14px 28px;

background:#169c43;

color:#fff;

font-weight:700;

border-radius:40px;

transition:.3s;

}

.download-btn:hover{

background:#117735;

}


/*==============================
PAGE HERO
==============================*/
.page-hero{

    padding:35px 0 20px;
    min-height:auto;

    background:linear-gradient(135deg,#edfdf1,#ffffff);

    position:relative;
    overflow:hidden;

}

.page-hero h1{

    font-size:48px;
    font-weight:800;
    color:#1f2d20;

    margin-bottom:10px;

}

.page-hero p{

    font-size:17px;
    max-width:720px;
    color:#555;

    margin-bottom:10px;
}

.breadcrumb{

    margin-top:10px;
    font-size:15px;
    color:#666;

}

/*==============================
BREADCRUMB
==============================*/

.breadcrumb{

margin-top:18px;

font-size:15px;

color:#666;

}

.breadcrumb a{

color:#179d46;

font-weight:600;

}


/*==============================
CONTENT
==============================*/

.page-content{

padding:15px 0;

}

.content-box{

background:#fff;

border-radius:20px;

padding:55px;

box-shadow:0 20px 45px rgba(0,0,0,.05);

}

.content-box h2{

font-size:34px;

margin-bottom:20px;

color:#222;

}

.content-box h3{

font-size:25px;

margin-top:40px;

margin-bottom:18px;

color:#222;

}

.content-box p{

margin-bottom:20px;

font-size:17px;

color:#555;

}

.content-box ul{

margin:20px 0 25px 22px;

list-style:disc;

}

.content-box li{

margin-bottom:12px;

font-size:17px;

color:#555;

}


/*==============================
INFO BOX
==============================*/

.info-box{

background:#f4fff7;

border-left:5px solid #1aa34a;

padding:25px;

border-radius:15px;

margin:35px 0;

}

.info-box h4{

font-size:22px;

margin-bottom:10px;

color:#169c43;

}

.info-box p{

margin:0;

}


/*==============================
QUOTE BOX
==============================*/

.quote{

background:#169c43;

color:#fff;

padding:35px;

border-radius:20px;

font-size:22px;

font-weight:500;

margin:45px 0;

text-align:center;

}


/*==============================
TABLE
==============================*/

.table-responsive{

overflow:auto;

margin:35px 0;

}

table{

width:100%;

border-collapse:collapse;

}

table th{

background:#169c43;

color:#fff;

padding:16px;

text-align:left;

}

table td{

padding:16px;

border-bottom:1px solid #eee;

}


/*==============================
BUTTON
==============================*/

.page-btn{

display:inline-block;

margin-top:20px;

padding:16px 34px;

background:#169c43;

color:#fff;

font-weight:700;

border-radius:40px;

transition:.3s;

}

.page-btn:hover{

background:#117735;

}


/*=====================================
CALL TO ACTION
=====================================*/

.page-cta{

padding:90px 40px;

margin:80px 0;

background:linear-gradient(135deg,#148d3e,#29b85c);

border-radius:25px;

text-align:center;

color:#fff;

overflow:hidden;

position:relative;

}

.page-cta::before{

content:"";

position:absolute;

width:320px;

height:320px;

background:rgba(255,255,255,.08);

border-radius:50%;

left:-120px;

top:-120px;

}

.page-cta::after{

content:"";

position:absolute;

width:250px;

height:250px;

background:rgba(255,255,255,.08);

right:-100px;

bottom:-100px;

border-radius:50%;

}

.page-cta h2{

font-size:42px;

margin-bottom:18px;

position:relative;

z-index:2;

}

.page-cta p{

max-width:700px;

margin:auto;

font-size:18px;

line-height:32px;

position:relative;

z-index:2;

margin-bottom:35px;

}

.page-cta a{

display:inline-block;

padding:16px 38px;

background:#fff;

color:#148d3e;

font-weight:700;

border-radius:40px;

transition:.3s;

position:relative;

z-index:2;

}

.page-cta a:hover{

transform:translateY(-5px);

}


/*=====================================
FAQ
=====================================*/

.faq{

margin-top:50px;

}

.faq-item{

background:#fff;

border-radius:15px;

margin-bottom:18px;

overflow:hidden;

box-shadow:0 12px 25px rgba(0,0,0,.05);

}

.faq-question{

padding:22px;

font-size:18px;

font-weight:600;

background:#f8fff9;

cursor:pointer;

}

.faq-answer{

padding:22px;

display:none;

line-height:30px;

color:#555;

}


/*=====================================
CONTACT BOXES
=====================================*/

.contact-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.contact-card{

background:#fff;

padding:35px;

text-align:center;

border-radius:18px;

box-shadow:0 15px 40px rgba(0,0,0,.05);

transition:.35s;

}

.contact-card:hover{

transform:translateY(-8px);

}

.contact-card i{

width:70px;

height:70px;

background:#169c43;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

color:#fff;

margin:auto;

margin-bottom:20px;

}

.contact-card h3{

margin-bottom:12px;

}


/*=====================================
FOOTER
=====================================*/

.footer{

background:#111;

color:#ddd;

padding-top:70px;

margin-top:80px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:50px;

padding-bottom:50px;

}

.footer h3{

color:#fff;

margin-bottom:20px;

}

.footer p{

line-height:30px;

color:#bbb;

}

.footer ul{

list-style:none;

padding:0;

}

.footer li{

margin-bottom:12px;

}

.footer a{

color:#bbb;

transition:.3s;

}

.footer a:hover{

color:#34d36f;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

padding:20px;

font-size:15px;

color:#999;

}


/*=====================================
SOCIAL ICONS
=====================================*/

.social{

display:flex;

gap:12px;

margin-top:25px;

}

.social a{

width:42px;

height:42px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#1d1d1d;

transition:.3s;

}

.social a:hover{

background:#169c43;

color:#fff;

}


/*=====================================
BACK TO TOP
=====================================*/

#topBtn{

position:fixed;

right:25px;

bottom:25px;

width:55px;

height:55px;

background:#169c43;

color:#fff;

border:none;

border-radius:50%;

cursor:pointer;

display:none;

box-shadow:0 15px 35px rgba(0,0,0,.20);

}


/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:991px){

.menu{

display:none;

}

.contact-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

}

.content-box{

padding:35px;

}

.page-hero h1{

font-size:38px;

}

.page-cta h2{

font-size:32px;

}

}

@media(max-width:768px){

.nav{

height:75px;

}

.logo img{

height:52px;

}

.page-hero{

padding:70px 0;

}

.page-content{

padding:60px 0;

}

.content-box{

padding:25px;

}

.content-box h2{

font-size:28px;

}

.content-box h3{

font-size:22px;

}

.page-hero p{

font-size:16px;

}

.page-cta{

padding:60px 25px;

}

.page-cta p{

font-size:16px;

}

.page-btn{

width:100%;

text-align:center;

}

}


/*=========================
button link highlight
=========================*/


.menu a.contact-btn {
    background: #28a745;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.menu a.contact-btn:hover {
    background: #218838;
}




/*=========================
Mobile Menu
=========================*/

.menu-toggle{
display:none;
font-size:30px;
cursor:pointer;
color:#169c43;
font-weight:700;
}

@media(max-width:991px){

.menu-toggle{
display:block;
}

.download-btn{
display:none;
}

.menu{
display:none;
position:absolute;
top:82px;
left:0;
width:100%;
background:#fff;
padding:20px;
flex-direction:column;
gap:18px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.menu.active{
display:flex;
}

.menu a{
display:block;
padding:12px 0;
border-bottom:1px solid #eee;
}

}
