  :root{
    --green:#3c6e47;
    --light-green:#e8f3eb;
    --cream:#faf9f5;
    --text:#2d3a31;
    --muted:#6b756f;
    --radius:16px;
  }

  html {
  scroll-behavior: smooth;
}

  body{
    margin:0;
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:var(--cream);
    line-height:1.55;
  }

  img{max-width:100%;height:auto;display:block}

  .wrap{
    max-width:1100px;
    margin:0 auto;
    padding:0 18px;
  }

  /* Header */
  header{
    background:var(--cream);
    padding:16px 0;
    position:sticky;
    top:0;
    z-index:50;
    border-bottom:1px solid #ece8df;
  }

  header nav ul li a {
  color: #2b2b2b;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.3s ease;
}

header nav ul li a:hover {
  background: #e8f8ef;       /* light green tint */
  color: var(--green);        /* your theme color */
}

header nav ul li a.active {
  background: var(--green);
  color: #fff;
}

  nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  nav ul{
    list-style:none;
    display:flex;
    gap:18px;
    margin:0;
    padding:0;
  }
  nav a{
    color:var(--text);
    text-decoration:none;
    font-weight:500;
  }

  /* HERO */
  .hero{
    padding:70px 0;
    display:grid;
    grid-template-columns:1fr 420px;
    gap:40px;
    align-items:center;
  }
  .hero h1{
    font-size:clamp(30px,4vw,42px);
    margin:0 0 14px;
    color:var(--green);
    font-weight:700;
    animation: slideFade 1s ease forwards;
  }
  .hero p{color:var(--muted);max-width:61ch}

  .btn{
    display:inline-block;
    padding:12px 20px;
    border-radius:var(--radius);
    border:none;
    cursor:pointer;
    font-weight:600;
    background:var(--green);
    color:white;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
  }

  .btn:hover{
    background: darkgreen;
    padding:12px 20px;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: 1.1s;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
  }

  .btn-light{
    background:transparent;
    border:1px solid var(--green);
    color:var(--green);
  }

.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background:white;
    padding:22px;
    border-radius:var(--radius);
    box-shadow:0 4px 18px rgba(0,0,0,0.06);
}

.buy-btn {
  display: block;
  margin-top: 10px;
  padding: 8px 19px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 10px;
}

  .hero-box{
    background:white;
    padding:20px;
    border-radius:var(--radius);
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
  }

  /* Brand sections */
  .section{padding:60px 0;}
  .center{text-align:center}

  .brand-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:20px;
  }

  .brand-card{
    background:white;
    padding:22px;
    border-radius:var(--radius);
    text-align:center;
    box-shadow:0 4px 18px rgba(0,0,0,0.06);
  }
  .brand-card img{
    height:70px;
    margin:0 auto 12px;
    object-fit:contain;
  }
  .brand-card p{
    color:var(--muted);
    font-size:15px;
  }

  /* About section */
  .two-col{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:30px;
    align-items:start;
  }

  /* Contact */
  form{
    display:flex;
    flex-direction:column;
    gap:12px;
  }
  input,textarea{
    padding:12px;
    border-radius:var(--radius);
    border:1px solid #dcd7cb;
    font-size:15px;
    outline:none;
  }
  textarea{min-height:120px}

  footer{
    padding:30px 0;
    text-align:center;
    color:var(--muted);
    font-size:15px;
  }

.brand-grid .box {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.brand-grid .box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 600;
  opacity: 0;
  transition: .3s;
}

.brand-grid .box:hover::after {
  opacity: 1;
}

.brand-grid .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.brand-card {
  transition: .3s ease;
}
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.swiper {
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 20px auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.brand-grid .box img {
  transition: transform .6s ease;
}

.brand-grid .box:hover img {
  transform: scale(1.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 30px;
  text-align: center;
}

.trust-strip div {
  background: white;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  font-weight: 600;
  color: var(--green);
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(60,110,71,.15);
}



@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 600px) {
  .section { padding: 40px 0; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .swiper { height: 300px; }
}

  /* Responsive */
  @media(max-width:900px){
    .hero,.two-col{grid-template-columns:1fr}
    .brand-grid{grid-template-columns:1fr}
  }
