@charset "utf-8";
:root{
    --app-deep-blue: #085701;
    --app-orange: #f3b602;
    --app-black: #000000;
    --app-green: #02c902;
    --app-white: #ffffff;
    --app-red: #ff0000;
}
.red{color: var(--app-red)}
*{box-sizing: border-box;}
body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
 font-size:1.2rem;
 margin: 0;
 padding:0;
 background-color: #e2f2e9;
}
a:link{
    text-decoration: none;
    color: var(--app-green);
}
a:hover{
    text-decoration: none;
    color: var(--app-orange);
    transition: color 0.3s ease;
}
a:active{
    text-decoration: none;
    color: var(--app-deep-green);
}
a:visited{
    text-decoration: none;
    color: #40bab2;
}
#pfg-app{
    position: relative;
}
#header{
    position: sticky;
    top:0;
    left:0;
    z-index: 10;
    background-color: #ffffff97;
}
#header-content{
    position: relative;
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    width: 89%;
    margin: auto;
}
#brand-container{
    padding: 12px;
}
#brand-icon{
    background-image: url("../icons/favicon4xxxhdpi.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100px;
    height: 100px;
    display: inline-block;
}
#brand-title{
    display: none;
}
#nav-container{
     
}
#nav-btn{
    display: none;
}
#nav-close{display: none;}
#nav-menu-panel{}
#nav-menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}
a.nav-item{
    font-size: 1.4rem;
    color: var(--app-deep-green);
    text-shadow: 1px 1px 1px #ffffff;
    font-weight: 560;
}
.nav-item:hover{
    color: var(--app-orange);
    transition: color 0.3s ease;
    text-shadow: -1px -1px 1px #fff;
}
#contents{}
#footer{
    background-color: var(--app-deep-blue);
    color: #ffffff; 
  
}
#footer-content{
    display: flex;
    justify-content: space-between;
    width:89%;
    margin: auto;
    padding:50px 0;
}
#footer-content h3{
    color: var(--app-orange);
}
#footer-content:nth-child(1){
    align-self: start;
    flex-grow: 1;
}
.item1{
    flex-basis: 25%;
}
#copyright{
    padding: 20px;
    font-size: 0.9rem;
    color: silver;
    text-align: center;
}
#home-banner-container{
    min-height: 400px;
    background-image: linear-gradient(185deg, rgb(138, 84, 2, 0.8) 20%, 
    rgb(2, 55, 5,0.8) , rgb(2, 2, 2)), url("../static/farm-estate-banner3.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;  
}
#home-banner-text{
    margin: auto;
    width:80%;
    text-align: center;
    color: var(--app-white);
    padding:20px;
}
#home-banner-text h1{
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 1px 1px 1px #000;
    text-transform: uppercase;
    text-align: center;
}
#home-banner-text p{
    text-transform: capitalize;
    font-size:1.5rem;
}
#home-banner-data{
    font-size: 1.7rem;
    font-weight: bolder;
    text-align: center;
    color:#ffffff;
    margin: 40px 0;
    text-shadow: 1px 1px 1px #000;
}
#home-banner-data span{
    padding:10px;
    display:inline-block;
}
#home-banner-data span i{
    font-size: 0.8rem;
    color: var(--app-red)
}
#launch-countdown{
    margin: 40px 0;
}
#countdown-title{
    color:#ccff00;
    font-size: 1.5rem;
    font-weight: bolder;
    text-align: center;
    text-shadow: 1px 1px 1px #000;
    margin: 20px 0;
}
/* ticker */
.tick {
    padding-bottom: 1em;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans,
        Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

.tick-label {
    font-size: 0.375em;
    text-align: center;
    color:#02c902;
}

.tick-group {
    margin: 0 0.25em;
    text-align: center;
}
/* end ticker */

.pgf-intro{
 text-align: center;
}

.layout-container{
    margin: 80px auto;
    width: 89%;
}
.layout-container p{
    font-size: 1.3rem;
    line-height: 1.6;
}
.layout-container h1{
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bolder;
    text-transform: uppercase;
   }
.obj-panel{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
   }
.subsect{
    margin: 30px auto;
}
.subsect h2{
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}
.obj1 h2 span{
    color: var(--app-green);
    font-weight: bolder;
    font-size: 2.5rem;
}
.obj2 h2 span{
    color: blue;
    font-weight: bolder;
    font-size: 2.5rem;
}
.obj3 h2 span{
    color: var(--app-red);
    font-weight: bolder;
    font-size: 2.5rem;
}
.obj1,.obj2,.obj3{
   background-color: aliceblue;
   padding:10px;
    border-radius: 5px;
    box-shadow: 1px 1px 5px 1px #cbcbcb;
}
.pfg-pilot-sites{
    position: relative;
    margin: 50px auto;

}
.pfg-pilot-sites h1{
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bolder;
    text-transform: uppercase;
    text-align: center;
    color: var(--app-green);
}
.pilot-sites-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px auto;
}
.enugu-pilot-site,.abuja-pilot-site{
    position: relative;
    min-height: 300px;
}
.enugu-pilot-site{
    background-image: url("../static/enugu.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}
.abuja-pilot-site{
    background-image: url("../static/fct-abuja.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.site-info-a{
    position:absolute;
    bottom:20px;
    left:50px;
    font-weight: bolder;
    font-size: 1.2rem;
    background-color: #03801a90;
    color:#ffffff;
    padding:10px;
    border-radius: 5px;
}
.site-info-b{
    position:absolute;
    bottom:20px;
    right:50px;
    font-weight: bolder;
    font-size: 1.2rem;
    background-color: #03801a90;
    color:#ffffff;
    padding:10px;
    border-radius: 5px;
}
.en-gov-staff{
    background-image: url("../static/Dr-Peter-Mbah.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position:absolute;
    top:20px;
    right:50px;
    z-index: 10;
    border: 5px solid var(--app-green);
}
.abj-gov-staff{
    background-image: url("../static/Nwike.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position:absolute;
    top:20px;
    left:50px;
    z-index: 10;
    border: 5px solid var(--app-green);
}
.app-project{
    text-align: center;
    background-color: #ffffff;
    border-radius: 5px;
    padding:20px;
}
.app-project img{
   width: 190px;
   border-radius: 5px;
}
.join-us{
    background-color: #e3f2f6;
    padding:20px;
    border:1px solid #bee4ee;
    border-radius: 5px;
    box-shadow: 1px 1px 5px 1px #cbcbcb;
}
.jopt1,.jopt2{margin: 45px 0;}
.center{text-align: center;}
.agric-stack{
    margin: 20px 0;
    border: 1px solid #cbcbcb;
    border-radius: 5px;
    padding:15px;
    color: #ffffff;
    font-size: 1.2rem;
    background-image: linear-gradient(to right, #05781d, #950499);
    transform: perspective(100px) rotateX(356deg);
}
.pfg-goals{
    border-left: 4px solid #02c902;
    border-right: 4px solid #02c902;
    border-radius: 5px;
    padding: 15px;
    background-color: #ffffff;
}
.pfg-goals li, .pfg-invest li{
    padding: 10px 0;
    font-size: 1.2rem;
    font-weight: bolder;
    color:#950499
}

.pfg-invest h1{color: var(--app-green)}
.pfg-invest ul{
    list-style:  none;
}
#page-intro-container{
    margin: 0 0 50px 0;
    min-height: 150px;
    background-image: linear-gradient(185deg, rgba(217, 6, 241, 0.8) 20%, 
    rgb(2, 55, 5,0.8) , rgb(2, 2, 2)), url("../static/combine-harvester.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height: 100%;
    text-align: center;
}
#page-intro-container h2{
   font-size: clamp(2rem, 5vw, 3rem);
   font-weight: bolder;
    text-transform: uppercase;
    color: var(--app-white);
}
.assertions{
    text-align: center;
}
.assertions-title{
    text-transform: capitalize;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bolder;
    color:#547cce;
    line-height: 49px;
    padding:15px;
}
.project-def{
    background-color: #ffffff;
    margin: 45px 0;
  
}
.project-def-data{
    width: 89%;
    margin: 0 auto;
    padding:20px;
}
.proj-op>div{
    margin: 20px 0;
    padding:10px;
    background-color: #f4f3f3;
    border-radius: 4px;
    border: 1px solid #ccc;
}
.proj-op>div h2{
    color: #547cce;
}

.proj-benefits>div{
    margin: 20px 0;
    padding:10px;
    
}
.clag-layout{
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 align-content: center;
 gap: 40px;
 margin:60px auto;
}
.ceo-note{
    text-align: center;
}
#ceo-container{
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#ceo-image{
    width:200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid var(--app-green);

}
 #ceo-image img{
    width:187px;
    height: 189px;
    border-radius: 50%;

}
.contact-panel{
    display:flex;
    justify-content: center;
    align-items: center;
    gap:30px;
    margin: 50px auto;
}

.contacts{
    text-align: center;
}
.partner-us ul{
    list-style: none;
}