
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background:#eef2e3;
}

/* HEADER CONTAINER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background-color: #fff;
}

/* LEFT LOGO AREA */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    height: 60px;
    margin-right: 10px;
}

.logo-text h1 {
    margin: 0;
    font-size: 28px;
    color: #6d4c41;
}

.logo-text p {
    margin: 0;
    font-size: 14px;
    color: #2e7d32;
}

/* NAVIGATION */
.navbar {
    display: flex;
}

.navbar a {
    text-decoration: none;
    padding: 15px 25px;
    color: black;
    background-color: #e0e0e0;
    margin: 0 2px;
    font-weight: bold;
    transition: 0.3s;
}

.navbar a.active {
    background-color: #7a9c2f;
    color: white;
}
.navbar a:hover{
    background-color:#7a9c2f;
    color:white;
    transition:0.3s;
}

/* RIGHT CERTIFICATES */
.certifications img {
    height: 50px;
    margin-left: 10px;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* OVERLAY CONTENT */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
}

.overlay h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.overlay p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 30px;
    background-color: #7a9c2f;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background-color: #5f7d22;
}

/* DOTS */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    opacity: 0.5;
}

.dot.active {
    opacity: 1;
    background-color: #7a9c2f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .overlay h1 {
        font-size: 28px;
    }

    .overlay p {
        font-size: 16px;
    }

    .hero {
        height: 60vh;
    }
}
.welcome-section {
    padding: 20px 10%;
    text-align: center;
    background-color: #ffffff;
}

.welcome-section h1 {
    font-size: 48px;
    color: #0b7a0b;
    margin-bottom: 25px;
}

.welcome-section p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 1000px;
    margin: auto;
}
/* RESPONSIVE */
@media (max-width: 1000px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .navbar {
        flex-wrap: wrap;
        justify-content: center;
        margin: 10px 0;
    }

    .certifications {
        margin-top: 10px;
    }
}

 
/* SECTION */
.products-section{
    padding:20px 8%;
}

.section-title{
    text-align:center;
    font-size:40px;
    font-weight:700;
    color:#1f6f2f;
    margin-bottom:50px;
}

/* GRID */
.products-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap:30px;
}

/* CARD */
.product-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
    transition:0.4s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.product-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:0.5s ease;
}

/* OVERLAY */

.overlay h3{
    margin:0;
    font-size:28px;
    font-weight:600;
}

.overlay p{
    font-size:14px;
    margin-top:10px;
    opacity:0.9;
}

/* HOVER EFFECT */
.product-card:hover img{
    transform:scale(1.1);
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* SECTION */
.success-section{
    padding:29px 0%;
    text-align:center;
    background-color: white;
}

.success-section h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:50px;
}

/* GRID */
.success-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap:30px;
}

/* CARD */
.success-card{
    background:#158a83;
    color:white;
    padding:10px 30px;
    border-radius:15px;
    text-align:left;
    transition:0.4s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.success-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* ICON */
.success-icon{
    font-size:32px;
    margin-bottom:20px;
}

/* NUMBER */
.success-number{
    font-size:48px;
    font-weight:700;
    margin-bottom:10px;
}

/* TEXT */
.success-text{
    font-size:20px;
    font-weight:500;
    opacity:0.95;
}

@media(max-width:768px){
    .success-section h2{
        font-size:32px;
    }
    .success-number{
        font-size:38px;
    }
}
/* HEADER SECTION */
.why-header{
    background:#bcc89f;
    text-align:center;
    padding:20px 20px 40px;
}

.why-header h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    color:#333;
}

.why-header p{
    font-size:18px;
    max-width:900px;
    margin:0 auto;
    color:#333;
}

/* MAIN SECTION */
.why-section{
    background:#bcc89f;
    padding:0px 2%;
}

.why-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap:40px;
}

/* CARD */
.why-card{
    background:#f3f3f3;
    padding:20px 30px;
    border-radius:8px;
    box-shadow:0 6px 12px rgba(0,0,0,0.15);
    text-align:left;
    transition:0.3s ease;
    border:1px solid #888;
}

.why-card:hover{
    transform:translateY(-8px);
}

/* ICON CIRCLE */
.icon-circle{
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.icon-circle span{
    font-size:38px;
    color:white;
}

/* TITLE */
.why-card h3{
    font-size:24px;
    margin-bottom:15px;
    font-weight:600;
    color:#333;
}

/* TEXT */
.why-card p{
    font-size:16px;
    line-height:1.7;
    color:#333;
}

@media(max-width:768px){
    .why-header h2{
        font-size:30px;
    }
}
html {
    scroll-behavior: smooth;
}

.team-section{
    background:#9fb390;
    padding:80px 10%;
    text-align:center;
}

.team-section h2{
    font-size:42px;
    color:white;
    margin-bottom:10px;
}

.team-desc{
    max-width:800px;
    margin:auto;
    color:white;
    line-height:1.6;
    margin-bottom:50px;
}

/* GRID */

.team-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

/* CARD */

.team-card{
    background:white;
    border-radius:5px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    transition:0.3s;
}

.team-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.team-info{
    padding:20px;
    text-align:left;
}

.team-info h3{
    margin:0;
    font-size:18px;
}

.team-info p{
    margin-top:5px;
    color:#555;
}

/* HOVER EFFECT */

.team-card:hover{
    transform:translateY(-8px);
}

/* COMPANY SECTION */

.company-section{
background:#e5e3d5;
padding:70px 2%;
}

.company-container{
display:flex;
gap:40px;
align-items:center;
}

.company-image img{
width:100%;
border-radius:5px;
}

.company-image{
flex:1;
}

.company-text{
flex:1;
}

.company-text h2{
font-size:28px;
margin-bottom:20px;
color:#333;
}

.company-text p{
line-height:1.7;
color:#444;
margin-bottom:15px;
}


/* MANUFACTURING SECTION */

.manufacturing{
padding:60px 10%;
text-align:center;
}

.manufacturing h1{
font-size:42px;
margin-bottom:40px;
}

.facility-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.facility-grid img{
width:100%;
height:250px;
object-fit:cover;
border-radius:4px;
transition:0.3s;
}

.facility-grid img:hover{
transform:scale(1.05);
}

/* PRODUCTS BANNER */



.products-banner h2{
    position:relative;
    color:#fff;
    font-size:42px;
    font-weight:700;
}

/* PRODUCTS GRID */

.products-container{
    padding:60px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
}

/* PRODUCT CARD */

.product-card1{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    text-align:center;
    transition:0.4s;
}

.product-card1:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.product-card1 img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-card1 h3{
    margin-top:15px;
    font-size:20px;
    color:#2e7d32;
}

.product-card1 p{
    padding:15px 20px 30px;
    font-size:14px;
    color:#555;
    line-height:1.6;
}
/* ADVANTAGE SECTION */

.advantage-section{
    background:linear-gradient(to right,#b9c59a 50%,#d7cbb7 50%);
    padding:60px 8%;
}

.advantage-title{
    text-align:center;
    font-size:40px;
    font-weight:700;
    margin-bottom:40px;
    color:#333;
}

/* CONTAINER */

.advantage-container{
    display:flex;
    align-items:center;
    gap:40px;
}

/* LEFT IMAGE */

.advantage-image{
    flex:1;
}

.advantage-image img{
    width:100%;
    border-radius:6px;
}

/* RIGHT CONTENT */

.advantage-content{
    flex:1;
}

.advantage-item{
    margin-bottom:30px;
}

.advantage-item h3{
    font-size:20px;
    margin-bottom:10px;
    color:#2d2d2d;
}

.advantage-item p{
    font-size:15px;
    color:#555;
    line-height:1.6;
}

/* RESPONSIVE */

@media(max-width:900px){

.advantage-container{
    flex-direction:column;
}

.advantage-section{
    background:#d7cbb7;
}

}

/* CONTACT SECTION */

.contact-section{
background:#d9dbc8;
padding:60px 8%;
}

.contact-title{
text-align:center;
font-size:42px;
margin-bottom:40px;
}

.contact-container{
display:flex;
gap:40px;
}

/* CONTACT INFO */

.contact-info{
flex:1;
}

.info-item{
display:flex;
gap:3px;
margin-bottom:30px;
font-size:16px;
}

.icon{
font-size:16px;
padding: 3px;
}

.social-icons span{
font-size:20px;
margin-right:10px;
}

/* FORM */

.contact-form{
flex:1;
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.contact-form form{
display:flex;
flex-direction:column;
gap:20px;
}

.form-row{
display:flex;
gap:15px;
}

input, select, textarea{
width:100%;
padding:12px;
border-radius:8px;
border:none;
background:#e5e7e5;
font-size:14px;
}

textarea{
height:120px;
resize:none;
}

button{
background:#4c7a4c;
color:white;
border:none;
padding:14px;
border-radius:8px;
font-size:16px;
cursor:pointer;
}

button:hover{
background:#3b623b;
}

/* LOCATION */

.location-section{
background:#cfd7b2;
padding:50px 8%;
text-align:center;
}

.map-container{
margin-top:30px;
border-radius:10px;
overflow:hidden;
}

/* MOBILE */

@media(max-width:900px){

.contact-container{
flex-direction:column;
}

.form-row{
flex-direction:column;
}

}
.footer{
  background:#f5f5f5;
  padding:40px 10%;
  font-family: Arial, sans-serif;
  
}

.footer-container{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}

.footer-col{
  width:22%;
}

.footer-col h3,
.footer-col h2{
  margin-bottom:15px;
}

.footer-col ul{
  list-style:disc;
  padding-left:20px;
}

.footer-col ul li{
  margin-bottom:8px;
}

.social-icons a{
  margin-right:10px;
  text-decoration:none;
  color:#333;
  font-size:14px;
}

.footer-bottom{
  text-align:center;
  margin-top:30px;
  border-top:1px solid #ddd;
  padding-top:15px;
  font-weight:bold;
}
.certificate-images{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.certificate-images img{
  width:60px;
  height:60px;
  object-fit: contain;
  border:1px solid #ddd;
  padding:5px;
  background:#fff;
}

.tagline{
    color:#f4b53f;
    letter-spacing:4px;
    font-size:14px;
    margin-bottom:15px;
}

.overlay h1{
    font-size:70px;
    font-weight:700;
    line-height:1.1;
}

.overlay span{
    color:#f4b53f;
}

.hero-desc{
    font-size:18px;
    max-width:700px;
    margin:20px auto;
}

/* BUTTON COLOR */

.btn{
    padding:12px 30px;
    background-color:#f4b53f;
    color:black;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
}

.btn:hover{
    background-color:#e0a22d;
}

.blog-section{
    padding:80px 8%;
    background:#e5e3d5;
}

.blog-title{
    text-align:center;
    margin-bottom:50px;
}

.blog-title h2{
    font-size:36px;
    margin-bottom:10px;
}

.blog-title p{
    color:#666;
}

.blog-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.blog-card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.1);
    transition:0.3s;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-img{
    overflow:hidden;
}

.blog-img img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.5s;
}

.blog-card:hover img{
    transform:scale(1.1);
}

.blog-content{
    padding:25px;
}

.blog-content h3{
    font-size:22px;
    margin-bottom:10px;
}

.blog-content p{
    color:#555;
    font-size:15px;
    line-height:1.6;
}

.blog-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 20px;
    background:#2e7d32;
    color:white;
    text-decoration:none;
    border-radius:5px;
    font-size:14px;
}

.blog-btn:hover{
    background:#1b5e20;
}