*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body{
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1f2933;
  background: #fff;
}

h1, h2, h3, h4{
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.4px;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 24px;
}

/* HEADER */
.header{
  background:#0f3d2e;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
}

.logo{
  height:42px;
}

.nav-links a{
  color:#fff;
  margin-left:22px;
  text-decoration:none;
  font-size:14px;
}

.enquiry-btn{
  border:1px solid #c9a24d;
  padding:8px 14px;
  border-radius:5px;
}

/* HERO */
.hero{
  height:90vh;
  background:
    linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
    url("images/hero1.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
}

.hero-content{
  color:#fff;
  max-width:700px;
}

.hero-content h1{
  font-size:48px;
  margin-bottom:18px;
}

.hero-content p{
  font-size:18px;
  line-height:1.6;
  margin-bottom:28px;
}

.primary-btn{
  background:#c9a24d;
  color:#000;
  padding:12px 22px;
  text-decoration:none;
  border-radius:6px;
}

/* SECTIONS */
.section{
  padding:80px 0;
}

.section.light{
  background:#f9fafb;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:30px;
}

.card{
  background:#fff;
  border:1px solid #e5e7eb;
  padding:28px;
  border-radius:10px;
}

.center-text{
  max-width:700px;
  margin:20px auto 40px;
  text-align:center;
}

/* FOOTER */
.footer{
  background:#1f2933;
  color:#d1d5db;
  padding:60px 0 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:30px;
}

.footer a{
  display:block;
  color:#d1d5db;
  margin-bottom:8px;
  text-decoration:none;
}

.footer h4{
  color:#fff;
  margin-bottom:12px;
}

.copyright{
  text-align:center;
  margin-top:40px;
  font-size:14px;
  color:#9ca3af;
}
/* ABOUT PAGE HERO */
.hero-about {
  height: 55vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/process.jpg") center/cover no-repeat;
}
.nav {
  position: relative;
  z-index: 1000;
}

.hero {
  position: relative;
  z-index: 1;
}
.hero-operations {
  height: 60vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/process.jpg") center/cover no-repeat;
}
.hero-products {
  height: 60vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/goat1.jpg") center/cover no-repeat;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card h3 {
  padding: 15px;
  color: #0f3d2e;
}

.product-card p,
.product-card ul {
  padding: 0 15px 15px;
  color: #444;
}

.product-card ul {
  list-style: disc;
  padding-left: 35px;
}
.hero-quality {
  height: 60vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/process.jpg") center/cover no-repeat;
}

.cert-list {
  margin-top: 15px;
  padding-left: 20px;
}

.cert-list li {
  margin-bottom: 10px;
}
.hero-exports {
  height: 60vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/markets.jpg") center/cover no-repeat;
}
.hero-investors {
  height: 60vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/markets.jpg") center/cover no-repeat;
}
.hero-sustainability {
  height: 60vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/process.jpg") center/cover no-repeat;
}
.hero-markets {
  height: 60vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/markets.jpg") center/cover no-repeat;
}
.hero-contact {
  height: 55vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/process.jpg") center/cover no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.section {
  padding: 80px 0;
}

.hero-content h1 {
  font-size: 48px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 34px;
  }
}
.section-desc {
  max-width: 700px;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card h3 {
  padding: 20px 20px 0;
}

.product-card p {
  padding: 10px 20px 24px;
  color: #555;
}

/* MOBILE */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
