*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: 'Poppins', sans-serif;
  background:#f5f7fa;
  color:#333;
  line-height:1.6;
  padding-top:60px;
}

header{
  background:#0b7a3d;
  color:white;
  text-align:center;
  padding:30px 20px;
}

header h1{
  font-size:36px;
}

header p{
  font-size:18px;
  margin-top:10px;
}

nav{
    background:#06662f;
    display:flex;
    justify-content:center;
    gap:30px;
    padding:15px;
    flex-wrap:nowrap;

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.15);
}

nav a{
  color:white;
  text-decoration:none;
  margin:0 15px;
  font-weight:bold;
  font-size:18px;
}

nav a:hover{
  color:#ffd700;
}

section{
  max-width:1000px;
  margin:30px auto;
  padding:20px;
}

.hero{
  text-align:center;
  padding:100px 20px;
  min-height:600px;
  display:flex;
  justify-content:center;
  align-items:center;
  background:linear-gradient(135deg,#0b7a3d,#17a85d);
  color:#fff;
  position:relative;
  overflow:hidden;
}

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

.btn{
  display:inline-block;
  background:#0b7a3d;
  color:white;
  padding:12px 25px;
  text-decoration:none;
  border-radius:5px;
  margin-top:20px;
}

.btn:hover{:0 0 10px rgba(0,0,0,0.1);
}

.card h3{
  color:#0b7a3d;
  margin-bottom:12px;
  font-size:24px;
  font-weight:700;
  letter-spacing:0.5px;
}
.card p{
  color:#555;
  font-size:17px;
  line-height:1.8;
  text-align:left;
  margin-top:15px;
}

footer{
  background:#0b7a3d;
  color:white;
  text-align:center;
  padding:20px;
  margin-top:40px;
}
.product-details{
  max-width:900px;
  margin:40px auto;
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 0 15px rgba(0,0,0,0.1);
}

.product-details img{
  width:100%;
  max-width:350px;
  display:block;
  margin:0 auto 25px;
  border-radius:10px;
}

.product-details h1{
  color:#0b7a3d;
  margin-bottom:15px;
  text-align:center;
}

.product-details h2{
  color:#0b7a3d;
  margin-top:25px;
}

.back-btn{
  display:inline-block;
  background:#0b7a3d;
  color:#fff;
  padding:10px 20px;
  text-decoration:none;

  background:#06662f;
}

.products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.card{
  background:#ffffff;
  padding:25px;
  border-radius:18px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  margin-bottom:20px;
  text-align:center;
  transition:all 0.3s ease;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(11,122,61,0.18);
}

.back-btn:hover{
  background:#06662f;
}
.product-layout{
  display:flex;
  gap:40px;
  align-items:flex-start;
  flex-wrap:wrap;
}

.product-image{
  flex:1;
  min-width:280px;
  text-align:center;
}

.product-info{
  flex:2;
  min-width:300px;
}
.product-details ul{
    list-style:none;
    padding:0;
    margin:15px 0 25px 0;
}

.product-details li{
    background:#eaf8ef;
    border-left:5px solid #0b7a3d;
    padding:12px 15px;
    margin-bottom:12px;
    border-radius:8px;
    font-size:17px;
    font-weight:500;
}
.product-table{
    width:100%;
    border-collapse:collapse;
    margin:20px 0;
}

.product-table th,
.product-table td{
    border:1px solid #ddd;
    padding:12px;
    text-align:left;
}

.product-table th{
    background:#0b7a3d;
    color:white;
    width:35%;
}

.product-table tr:nth-child(even){
    background:#f8f8f8;
}
.product-table{
    width:100%;
    border-collapse:collapse;
    margin:20px 0;
}

.product-table th,
.product-table td{
    border:1px solid #ddd;
    padding:12px;
    text-align:left;
}

.product-table th{
    background:#0b7a3d;
    color:white;
    width:35%;
}

.product-table tr:nth-child(even){
    background:#f8f8f8;
}
#contact a{
  display:inline-block;
  background:#0b7a3d;
  color:white;
  padding:10px 18px;
  border-radius:25px;
  text-decoration:none;
  margin-top:10px;
}

#contact a:hover{
  opacity:0.85;
}
.hero{
  text-align:center;
  padding:60px 20px;
  background:#f1f8f4;
}

.hero h2{
  font-size:36px;
  color:#0b7a3d;
  margin-bottom:15px;
}

.hero p{
  max-width:700px;
  margin:auto;
  font-size:18px;
  color:#444;
}

.hero .btn{
  display:inline-block;
  margin-top:25px;
  padding:12px 25px;
  background:#0b7a3d;
  color:white;
  text-decoration:none;
  border-radius:25px;
}
@media (max-width: 768px){

  header h1{
    font-size:28px;
  }

  header p{
    font-size:16px;
  }

  nav a{
    display:block;
    margin:10px 0;
  }

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

  .hero p{
    font-size:16px;
    padding:0 10px;
  }

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

  .card{
    width:90%;
  }

  .product-layout{
    flex-direction:column;
  }

  .product-image img{
    width:80%;
  }

}
/* Hero Slider */

.hero{
  text-align:center;
  padding:50px 20px;
  position:relative;
  overflow:hidden;
}

.slide{
  display:none;
  animation:fade 1s ease-in-out;
}

.slide.active{
  display:block;
}

.slide img{
  max-width:340px;
  width:100%;
  border-radius:20px;
  box-shadow:0 15px 35px rgba(0,0,0,0.25);
  transition:transform 0.4s ease;
}

.slide img:hover{
  transform:scale(1.05);
}

@keyframes fade{
  from{opacity:0;}
  to{opacity:1;}
}
.company-banner{
    margin:40px auto;
    text-align:center;
}

.company-banner img{
    width:100%;
    max-width:850px;
    display:block;
    margin:auto;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.about-image{
    margin:40px auto;
    text-align:center;
}

.about-image img{
    width:100%;
    max-width:500px;
    display:block;
    margin:auto;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}
.search-section{
    background:#ffffff;
    padding:35px 20px;
    text-align:center;
}

.search-section h2{
    color:#0b7a3d;
    margin-bottom:20px;
    font-size:30px;
}

.search-box{
    max-width:650px;
    margin:auto;
    display:flex;
    background:#fff;
    border-radius:40px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.search-box input{
    flex:1;
    padding:16px 20px;
    border:none;
    outline:none;
    font-size:16px;
}

.search-box button{
    width:70px;
    border:none;
    background:#0b7a3d;
    color:#fff;
    cursor:pointer;
    font-size:20px;
}

.search-box button:hover{
    background:#06662f;
}
