:root {
      --bg: #fffaf2;
      --surface: #ffffff;
      --primary: #7b1113;
      --secondary: #c89b3c;
      --text: #222222;
      --muted: #666666;
      --border: #eadfcb;
      --dark: #1c1c1c;
      --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      --radius: 18px;
      --max-width: 1200px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(92%, var(--max-width));
      margin: 0 auto;
    }

    /* Navbar */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 250, 242, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 76px;
      gap: 20px;
    }

    .brand {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .brand h1 {
      font-size: 1.35rem;
      color: var(--primary);
      letter-spacing: 0.5px;
    }

    .brand span {
      font-size: 0.85rem;
      color: var(--muted);
    }

    .nav-links {
      display: flex;
      gap: 22px;
      align-items: center;
    }

    .nav-links a {
      font-weight: 600;
      color: var(--dark);
      position: relative;
      transition: color 0.25s ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--secondary);
      transition: width 0.25s ease;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .menu-btn {
      display: none;
      border: none;
      background: var(--primary);
      color: white;
      padding: 10px 14px;
      border-radius: 10px;
      cursor: pointer;
      font-weight: bold;
    }

    /* Hero */
    .hero {
      padding: 80px 0 60px;
      background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
	url("images/paddy-field-banner.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
      	color: white;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 40px;
      align-items: center;
    }

    .hero h2 {
      font-size: clamp(2rem, 4vw, 4rem);
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .hero p {
      font-size: 1.05rem;
      max-width: 700px;
      color: rgba(255, 255, 255, 0.92);
      margin-bottom: 26px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      display: inline-block;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 700;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      opacity: 0.95;
    }

    .btn-primary {
      background: var(--secondary);
      color: #231b0d;
    }

    .btn-outline {
      border: 2px solid rgba(255, 255, 255, 0.8);
      color: white;
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .hero-card h3 {
      margin-bottom: 14px;
      color: #fff6dd;
    }

    .hero-points {
      display: grid;
      gap: 12px;
    }

    .hero-points div {
      background: rgba(255, 255, 255, 0.08);
      padding: 12px 14px;
      border-radius: 12px;
      font-size: 0.98rem;
    }

    /* Sections */
    section {
      padding: 70px 0;
    }

    .section-head {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-head h2 {
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: var(--primary);
      margin-bottom: 10px;
    }

    .section-head p {
      max-width: 760px;
      margin: 0 auto;
      color: var(--muted);
    }

    /* Products */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .product-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

   .product-card.makhana {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
	url("images/makhana.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

    }

   .product-card.saffron {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
	url("images/saffron.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

    }


   .product-card.spices {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
	url("images/spices.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

    }

   .product-card.rice {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
	url("images/rice.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

    }

   .product-card.pulses {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
	url("images/pulses.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

    }

   .product-card.dry-fruits {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
	url("images/dry-fruits.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

    }
   
    

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
    }

    .product-icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--secondary), #f3dd9a);
      color: var(--primary);
      font-size: 1.6rem;
      margin-bottom: 16px;
      font-weight: bold;
    }

    .product-card h3 {
      margin-bottom: 10px;
      color: #fafafa;
    }

    .product-card p {
      color: #fafafa;
      margin-bottom: 14px;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      background: #f7f0e2;
      color: #6e5420;
      border: 1px solid #ead9af;
      padding: 7px 10px;
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 600;
    }

    /* Services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .service-box {
      background: white;
      border: 1px solid var(--border);
      border-left: 6px solid var(--secondary);
      border-radius: 16px;
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .service-box h3 {
      margin-bottom: 10px;
      color: var(--primary);
    }

    .service-box p {
      color: var(--muted);
    }

    /* About */
    .about-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .about-box,
    .stats-box {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .about-box h3,
    .stats-box h3 {
      margin-bottom: 16px;
      color: var(--primary);
    }

    .about-box p,
    .stats-box p {
      color: var(--muted);
      margin-bottom: 14px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 18px;
    }

    .stat {
      background: #fff8ec;
      border: 1px solid #f0dfbb;
      border-radius: 14px;
      padding: 18px;
      text-align: center;
    }

    .stat strong {
      display: block;
      color: var(--primary);
      font-size: 1.4rem;
      margin-bottom: 6px;
    }

    .stat span {
      color: var(--muted);
      font-size: 0.92rem;
    }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .contact-card,
    .contact-form {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .contact-card h3,
    .contact-form h3 {
      margin-bottom: 16px;
      color: var(--primary);
    }

    .contact-list {
      display: grid;
      gap: 14px;
      margin-top: 14px;
    }

    .contact-item {
      padding: 14px;
      background: #fff8ec;
      border: 1px solid #f0dfbb;
      border-radius: 14px;
    }

    .contact-item strong {
      display: block;
      margin-bottom: 4px;
      color: var(--dark);
    }

    .contact-item span,
    .contact-item a {
      color: var(--muted);
      word-break: break-word;
    }

    .form-grid {
      display: grid;
      gap: 14px;
    }

    .form-grid input,
    .form-grid textarea {
      width: 100%;
      border: 1px solid #d7ccb7;
      border-radius: 12px;
      padding: 14px 15px;
      font: inherit;
      background: #fffdfa;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .form-grid input:focus,
    .form-grid textarea:focus {
      border-color: var(--secondary);
      box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.15);
    }

    .form-grid textarea {
      min-height: 140px;
      resize: vertical;
    }

    .submit-btn {
      border: none;
      cursor: pointer;
      background: var(--primary);
      color: white;
      padding: 14px 18px;
      border-radius: 12px;
      font-weight: 700;
    }


   .submit-btn:disabled {
  	opacity: 0.7;
  	cursor: not-allowed;
    }

    .form-message {
      margin-top: 12px;
      font-size: 0.95rem;
      color: #1f6a2e;
      font-weight: 600;
      display: none;
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: #f2f2f2;
      padding: 26px 0;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .footer-inner p {
      color: #d3d3d3;
      font-size: 0.95rem;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #f2e4b0;
    }

    /* Responsive */
    @media (max-width: 980px) {
      .hero-grid,
      .about-wrap,
      .contact-grid,
      .services-grid {
        grid-template-columns: 1fr;
      }

      .product-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .menu-btn {
        display: inline-block;
      }

      .nav-links {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #fffaf2;
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px 20px 20px;
        display: none;
      }

      .nav-links.show {
        display: flex;
      }

      .product-grid,
      .stats-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 60px;
      }
    }