/* GLOBAL STYLING */

body{
font-family:'Poppins', sans-serif;
margin:0;
background:#f0f7f4;
color:#333;
animation:pageLoad 0.6s ease;
}

/* HEADINGS */

h1,h2,h3{
color:#2e7d32;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 60px;
background:#2e7d32;
position:sticky;
top:0;
z-index:100;
}

.logo{
font-size:22px;
font-weight:600;
color:white;
}

nav a{
margin:0 15px;
text-decoration:none;
color:white;
font-weight:500;
position:relative;
}

/* NAVBAR HOVER LINE */

nav a::after{
content:"";
width:0%;
height:2px;
background:#a5d6a7;
position:absolute;
bottom:-5px;
left:0;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

/* HERO SECTION */

.hero{
height:80vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero h2{
font-size:48px;
}

.hero p{
font-size:20px;
}

/* CONTAINER */

.container{
    max-width:1100px;
    margin:auto;
    padding:25px 20px;   /* reduced from 40-60px */
}

/* HEADINGS */
.container h1{
    margin-bottom:10px;
}

.container h2{
    margin-top:20px;
    margin-bottom:10px;
}

/* PARAGRAPHS */
.container p{
    margin-bottom:10px;   /* reduced gap */
    line-height:1.5;      /* tighter */
}

/* LISTS */
.container ul{
    padding-left:18px;
    margin-bottom:10px;
}

.container li{
    margin-bottom:6px;    /* tighter list spacing */
}

/* PRODUCT SECTION */

.products-section{
    padding:20px 10px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);  /* 4 cards in one row */
    gap:15px;
    padding:10px;
}

.product-card{
    padding:8px;
    border-radius:8px;
    text-align:center;
}

.product-card:hover{
transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:90px;   /* very compact */
    object-fit:cover;
    border-radius:6px;
}

.product-card h3{
    font-size:14px;
    margin:5px 0;
}

.product-card p{
    font-size:12px;
    margin:0;
}

/* BUTTON */

.button{
display:inline-block;
padding:12px 25px;
background:#43a047;
color:white;
border-radius:6px;
text-decoration:none;
font-weight:500;
transition:0.3s;
margin-top:10px;
}

.button:hover{
background:#1b5e20;
transform:translateY(-2px);
}

/* WHATSAPP FLOAT BUTTON */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
font-size:28px;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

.whatsapp-float:hover{
transform:scale(1.1);
}

/* SOCIAL MEDIA LINKS */

.socials{
margin-top:30px;
}

.socials a{
display:inline-block;
margin:10px;
padding:10px 18px;
background:#2e7d32;
color:white;
border-radius:5px;
text-decoration:none;
transition:0.3s;
}

.socials a:hover{
background:#1b5e20;
}

/* FOOTER */

footer{
background:#2e7d32;
color:white;
text-align:center;
padding:20px;
margin-top:50px;
}

/* PAGE POP ANIMATION */

@keyframes pageLoad{

0%{
opacity:0;
transform:scale(0.95);
}

100%{
opacity:1;
transform:scale(1);
}

}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

.navbar{
flex-direction:column;
}

nav{
margin-top:10px;
}

.hero h2{
font-size:32px;
}

}
/* Social icons only */
/* Social Media Icons - Bottom Right */
.social-icons{
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: row;   /* Horizontal layout */
    gap: 12px;
    z-index: 1000;
}

.social-icons a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2d6a4f;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.social-icons a:hover{
    background: #40916c;
    transform: scale(1.1);
}

/* WhatsApp Floating Button */

.whatsapp-btn{
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-btn:hover{
    transform: scale(1.1);
    background: #1ebe5d;
}
img{
    width:100%;
    border-radius:10px;
}

.hero{
    height:90vh;
    background:url("../images/poultryfarm.jpg.jpg") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.hero-overlay{
    position:relative;
    color:white;
    text-align:center;
    z-index:2;
}

.hero-overlay h1{
    font-size:52px;
}

.hero-overlay p{
    font-size:20px;
    margin:15px 0;
}

.features{
    display:flex;
    justify-content:space-around;
    background:#e8f5e9;
    padding:20px;
    font-weight:500;
}
.features div{
    text-align:center;
}
.why{
    text-align:center;
    padding:60px 20px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:30px;
}
.cta{
    text-align:center;
    padding:60px;
    background:#2e7d32;
    color:white;
}