*{box-sizing:border-box}
:root{
  --green:#2f7d1f;
  --green-dark:#1e5a16;
  --cream:#fffaf0;
  --text:#222;
  --muted:#666;
  --border:#e8e0d2;
}
html{scroll-behavior:smooth}
body{margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--text);background:var(--cream)}
a{text-decoration:none}
.topbar{height:72px;padding:0 7%;display:flex;align-items:center;justify-content:space-between;background:#fff;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:10}
.brand{display:flex;align-items:center;gap:12px}
.logo-placeholder{width:44px;height:44px;border-radius:50%;background:var(--green);color:#fff;display:grid;place-items:center;font-size:26px;font-weight:800}
.brand-name{font-weight:800;font-size:18px}
.brand-sub{font-size:13px;color:var(--green-dark);font-weight:700}
.nav-btn{background:var(--green);color:#fff;padding:10px 18px;border-radius:8px;font-weight:700}
.hero{min-height:610px;padding:75px 8%;display:grid;grid-template-columns:1.15fr .85fr;gap:60px;align-items:center;background:linear-gradient(135deg,#fffdf7,#f2f8ed)}
.tag{color:var(--green);font-size:13px;font-weight:800;letter-spacing:2px}
h1{font-size:clamp(42px,6vw,72px);line-height:1.05;margin:16px 0 10px}
.hero-title{font-size:27px;color:var(--green-dark);font-weight:800;margin:0 0 18px}
.hero-text{max-width:620px;color:var(--muted);font-size:18px;line-height:1.7}
.hero-actions{display:flex;gap:12px;margin-top:28px;flex-wrap:wrap}
.primary-btn,.secondary-btn{display:inline-block;border:0;border-radius:9px;padding:14px 22px;font-weight:800;cursor:pointer;font-size:15px}
.primary-btn{background:var(--green);color:#fff}
.primary-btn:hover{background:var(--green-dark)}
.secondary-btn{background:#fff;color:var(--green-dark);border:1px solid #cbd8c5}
.hero-card{width:min(360px,100%);aspect-ratio:1/1;margin:auto;border-radius:28px;background:#fff;border:1px solid #dfe8d8;box-shadow:0 25px 70px rgba(30,90,22,.12);display:flex;flex-direction:column;align-items:center;justify-content:center}
.big-r{width:120px;height:120px;border-radius:50%;background:var(--green);color:#fff;display:grid;place-items:center;font-size:82px;font-weight:900;border:8px solid #e9f1e5}
.card-brand{margin-top:20px;font-size:22px;font-weight:900;letter-spacing:3px;color:var(--green-dark)}
.card-product{font-size:13px;letter-spacing:5px;color:#777;margin-top:4px}
.card-hindi{margin-top:18px;font-size:18px;font-weight:800}
.section{padding:80px 8%;max-width:1200px;margin:auto}
.section-heading{text-align:center;margin-bottom:35px}
.section-heading span{color:var(--green);font-size:12px;font-weight:900;letter-spacing:2px}
.section-heading h2{font-size:38px;margin:9px 0}
.section-heading p{color:var(--muted)}
.products{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.product{background:#fff;padding:32px;border-radius:18px;border:1px solid var(--border);text-align:center}
.product-icon{width:70px;height:70px;border-radius:50%;margin:0 auto 15px;background:#edf5e9;color:var(--green-dark);display:grid;place-items:center;font-size:25px;font-weight:900}
.product h3{margin:10px 0;font-size:23px}
.product p{color:var(--muted);margin:0;line-height:1.6}
.enquiry-section{max-width:850px}
.enquiry-form{background:#fff;border:1px solid var(--border);border-radius:18px;padding:30px;box-shadow:0 15px 45px rgba(0,0,0,.05)}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
label{display:block;font-weight:700;font-size:14px;color:#333}
input,select,textarea{width:100%;margin-top:8px;border:1px solid #d9d9d9;border-radius:8px;padding:13px;font:inherit;outline:none;background:#fff}
input:focus,select:focus,textarea:focus{border-color:var(--green)}
textarea{resize:vertical}
.enquiry-form>label{margin-top:18px}
.full{width:100%;margin-top:20px}
.form-note{font-size:12px;color:#888;text-align:center}
footer{background:#1d4018;color:#fff;padding:28px 8%;display:flex;justify-content:center;gap:14px;align-items:center;flex-wrap:wrap}
footer span{opacity:.8}
@media(max-width:760px){
  .topbar{padding:0 5%}
  .brand-name{font-size:15px}
  .hero{grid-template-columns:1fr;padding:55px 6%;gap:35px;text-align:center}
  .hero-text{margin:auto}
  .hero-actions{justify-content:center}
  .products{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .section{padding:60px 6%}
}
