:root {
  --brand-green: #2ecc71;
  --brand-red: #e74c3c;
  --brand-blue: #3498db;
}

.contact-info h3 {
  color: var(--brand-green);
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    background: #2e8b57;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6') no-repeat center center/cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    background: #ffffff;
    color: #2e8b57;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
.products {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.products h2 {
    font-size: 32px;
    color: #2e8b57;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.product-card {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h3 {
    margin-top: 15px;
    font-size: 18px;
    color: #333;
}

.product-card:hover {
    transform: scale(1.03);
}
.export {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.export h2 {
    font-size: 32px;
    color: #2e8b57;
    margin-bottom: 40px;
}

.export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.export-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.export-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.export-card p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.export-card:hover {
    transform: scale(1.05);
}
.contact {
    padding: 60px 20px;
    text-align: center;
    background: #f8f8f8;
}
.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.contact p {
    font-size: 18px;
    margin: 10px 0;
}
.contact a {
    color: #2e8b57;
    text-decoration: none;
    font-weight: bold;
}
.contact {
    padding: 60px 20px;
    text-align: center;
    background: #f8f8f8;
}
.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.contact p {
    font-size: 18px;
    margin: 10px 0;
}
.contact a {
    color: #2e8b57;
    text-decoration: none;
    font-weight: bold;
}
.contact a:hover {
    text-decoration: underline;
}
.marketing {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}
.marketing h2 {
    font-size: 36px;
    margin-bottom: 30px;
}
.marketing-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.marketing-gallery img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.inquiry {
    padding: 60px 20px;
    background: #f1f1f1;
    text-align: center;
}
.inquiry h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.inquiry form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.inquiry input,
.inquiry textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.inquiry button {
    padding: 12px;
    font-size: 18px;
    background-color: #2e8b57;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.inquiry button:hover {
    background-color: #256b45;
}
.export {
  background: url('https://images.unsplash.com/photo-1606788075761-845129d5f4f4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1650&q=80') no-repeat center center/cover;
  padding: 80px 20px;
  color: white;
  position: relative;
  text-align: center;
}

.export-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* dark overlay for text readability */
  padding: 40px;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.export h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.export p,
.export h3,
.export li {
  font-size: 18px;
}

.flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.flag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
}

.flag img {
  width: 30px;
  height: auto;
  border-radius: 4px;
}

.export-products {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.inquiry-note a {
  color: #00ffcc;
  text-decoration: underline;
}
footer {
  background: #2e8b57;
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.footer-container div {
  margin-bottom: 10px;
}

.footer-left h3 {
  margin: 0;
  font-size: 22px;
}

.footer-center p,
.footer-right a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    text-align: left;
  }

  footer {
    text-align: left;
  }
}

footer a {
  color: #ffffff;
}

footer a:hover {
  color: #ddd;
}

footer .copyright {
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
}
.testimonials {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #2e8b57;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial h4 {
  margin: 0;
  color: #333;
}

.testimonial span {
  font-size: 14px;
  color: #777;
}

@media (min-width: 768px) {
  .testimonial-cards {
    flex-direction: row;
    justify-content: space-between;
  }

  .testimonial {
    width: 30%;
  }
}
.review-button {
  margin-top: 30px;
}

.review-button .btn {
  background: #2e8b57;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.review-button .btn:hover {
  background: #256f47;
}
/* Header style with logo */
header {
    background: #2e8b57;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 60px;
    margin-right: 15px;
}

.logo-container h1 {
    font-size: 28px;
    margin: 0;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffe000;
}
/* Universal background and text style */
body {
    background-color: #000000;
    color: #ffffff;
}

/* Section backgrounds */
section, .hero, footer {
    background-color: #000000;
    color: #ffffff;
}

/* Card or box style (like for products) */
.product-box, .export-box, .inquiry-box, .contact-box {
    background-color: #111111;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Link styles */
a {
    color: #ffe000;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
/* Reset and font */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}
/* Sections */
section {
  padding: 60px 20px;
  text-align: center;
}
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}
/* Fix full screen video */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* Hero styling */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: white;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
}
/* Header styles */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url('farmer-header.jpg') no-repeat center center/cover;
  padding: 20px 40px;
  color: white;
  position: relative;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.site-header * {
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 50px;
}

.logo h1 {
  font-size: 28px;
  font-family: 'Segoe UI', sans-serif;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.farm-images {
  width: 100%;
  padding: 40px 0;
  background-color: #f5f5f5;
}

.farm-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.farm-container img {
  width: 45%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  object-fit: cover;
}
.btn {
  background: #25d366;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}
/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    padding: 0;
  }

  nav ul li {
    margin: 10px 0;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero p {
    font-size: 16px;
  }

  section {
    padding: 20px;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  form input, form textarea, form button {
    font-size: 14px;
  }
}
.mandi-intro, .mandi-list, .mandi-export {
  padding: 40px;
  text-align: center;
}

.mandi-list ul {
  list-style: none;
  padding: 0;
}

.mandi-list li {
  background: #f2f2f2;
  margin: 10px;
  padding: 15px;
  border-radius: 8px;
  font-size: 18px;
}
.mandi-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.mandi-card {
  background: #fff;
  width: 260px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.mandi-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.mandi-card h3 {
  margin: 15px 0 5px;
  color: #2e8b57;
}

.mandi-card p {
  font-size: 14px;
  color: #555;
  padding: 0 12px 12px;
}

.mandi-intro, .mandi-info {
  text-align: center;
  padding: 40px 20px;
}
.mandi-section {
  background: url("images/nashik-mandi-bg.jpg") no-repeat center center/cover;
  position: relative;
  padding: 60px 20px;
  color: #333;
}

.mandi-section .overlay {
  background: rgba(255,255,255,0.9);
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  margin: auto;
}

.mandi-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #2e8b57;
}

.mandi-section h3 {
  margin-top: 30px;
  color: #444;
}
.mandi-section {
  background: url("images/nashik-mandi-bg.jpg") no-repeat center center/cover;
  position: relative;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.mandi-section .overlay {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 10px;
}

.mandi-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}

.packing-house, .onion-quality, .other-vegetables {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.gallery img {
  width: 30%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.onion-quality ul {
  list-style: none;
  padding: 0;
}

.onion-quality li {
  background: #f4f4f4;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  font-size: 18px;
  text-align: left;
}

.veg-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.veg-list div {
  text-align: center;
  width: 150px;
}

.veg-list img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 8px;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Hero Section */
.mandi-hero {
  background: url("images/nashik-mandi-bg\ 3..jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.mandi-hero .overlay {
  background: rgba(0,0,0,0.5); /* black transparent overlay */
  padding: 40px;
  border-radius: 10px;
}

.mandi-hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 10px;
}

.mandi-hero p {
  color: #f0f0f0;
  font-size: 1.2rem;
}

/* Content sections */
.content {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.content h2 {
  color: #004d00;
  margin-bottom: 20px;
}

.highlight {
  background: #f2f9f2;
  border-left: 5px solid #004d00;
  padding: 40px 20px;
  border-radius: 8px;
}

/* Vegetables grid */
.veg-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.veg-item {
  flex: 1 1 200px;
  text-align: center;
}

.veg-item img {
  width: 100%;
  max-width: 200px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.veg-item p {
  margin-top: 10px;
  font-weight: bold;
}
/* Navbar */
header {
  background: #2e8b57; /* green premium color */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

header .logo h1 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ffd700; /* gold hover effect */
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* Navbar */
header {
  background: #2e8b57;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

header .logo h1 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ffd700;
}

/* Hero Section (Home) */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-text {
  position: relative;
  top: 40%;
  text-align: center;
  color: white;
}
.hero-text h1 {
  font-size: 48px;
}
.hero-text p {
  font-size: 20px;
  margin: 20px 0;
}
.btn {
  background: #fff;
  color: #2e8b57;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.btn:hover {
  background: #ffd700;
  color: #000;
}

/* Quality Hero Section */
.quality-hero {
  background: url("images/nashik-mandi-bg.jpg") no-repeat center center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.quality-hero .overlay {
  background: rgba(0,0,0,0.6);
  padding: 30px;
  border-radius: 10px;
}

/* Content Sections */
.content {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}
.content h2 {
  color: #2e8b57;
  margin-bottom: 20px;
}
.highlight {
  background: #f8fdf8;
  padding: 40px 20px;
  border-radius: 8px;
}

/* Packing Materials / Veg List */
.veg-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.veg-item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 250px;
}
.veg-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}
.veg-item p {
  margin-top: 10px;
  font-weight: bold;
}

/* CTA Button */
.cta {
  text-align: center;
  margin: 50px 0;
}
.inquiry-btn {
  background: #2e8b57;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.inquiry-btn:hover {
  background: #226b44;
}

/* Footer */
footer {
  background: #2e8b57;
  color: white;
  text-align: center;
  padding: 20px;
}
/* Highlight section fix */
.highlight {
  background: #f8fdf8;   /* halka green background */
  color: #222;           /* dark text color */
}
.highlight h2 {
  color: #2e8b57;        /* green heading */
}
.highlight p, 
.highlight ul li {
  color: #333;           /* readable dark text */
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin: 0;
}
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}
.search-bar {
  text-align: center;
  margin: 30px 0;
}
.search-bar input {
  width: 60%;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #2e8b57;
  border-radius: 6px;
}

/* Product Sections */
.product-section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
  border-bottom: 1px solid #ddd;
}
.product-section h2 {
  color: #2e8b57;
  margin-bottom: 15px;
}
.product-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
}

/* Gallery */
.gallery {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery img {
  width: 30%;
  min-width: 250px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.search-bar {
  text-align: center;
  margin: 30px 0;
}
.search-bar input {
  width: 60%;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #2e8b57;
  border-radius: 6px;
  outline: none;
}
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Poppins:wght@300;400;500&display=swap');

/* Body & Text */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fafafa; /* soft background */
}
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}

/* Navbar (already made) */
header {
  background: #2e8b57; /* premium green */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}
header .logo h1 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
nav ul li a:hover,
nav ul li a.active {
  color: #ffd700;
}

/* Search Bar */
.search-bar {
  text-align: center;
  margin: 30px 0;
}
.search-bar input {
  width: 60%;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #2e8b57;
  border-radius: 6px;
  outline: none;
  transition: 0.3s;
}
.search-bar input:focus {
  border-color: #ffd700;
  box-shadow: 0 0 8px rgba(46, 139, 87, 0.5);
}

.product-section {
  padding: 30px 15px;
  max-width: 1100px;
  margin: 30px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.product-section h2 {
  font-size: 24px;
  text-align: center;
}
.product-section p {
  font-size: 16px;
  text-align: center;
}
/* Gallery */
.gallery {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery img {
  width: 30%;
  min-width: 250px;
  border-radius: 8px;
  border: 3px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.3s;
}
.gallery img:hover {
  transform: scale(1.05);
  border-color: #2e8b57;
}

/* Footer */
footer {
  background: #2e8b57;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 40px;
}
/* Product Gallery Responsive */
.gallery {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery img {
  flex: 1 1 calc(33% - 20px); /* 3 images in a row on desktop */
  max-width: 350px;
  border-radius: 8px;
  border: 3px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.3s;
  object-fit: cover;
}

.gallery img:hover {
  transform: scale(1.05);
  border-color: #2e8b57;
}

/* ✅ Mobile Responsive */
@media screen and (max-width: 992px) {
  .gallery img {
    flex: 1 1 calc(50% - 15px); /* 2 per row on tablets */
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .gallery img {
    flex: 1 1 100%; /* 1 per row on mobile */
    max-width: 100%;
  }
}
.search-bar input {
  width: 60%;
  max-width: 600px;
}

@media screen and (max-width: 600px) {
  .search-bar input {
    width: 90%;
    font-size: 14px;
  }
}
.search-bar {
  text-align: center;
  margin: 30px 0;
}
.search-bar input {
  width: 60%;
  max-width: 600px;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #2e8b57;
  border-radius: 6px;
  outline: none;
}
.search-bar input:focus {
  border-color: #ffd700;
  box-shadow: 0 0 8px rgba(46,139,87,0.4);
}

@media screen and (max-width: 600px) {
  .search-bar input {
    width: 90%;
    font-size: 14px;
  }
}
.quality-hero {
  background: url("images/backroung\ image\ vegetables.jpeg") no-repeat center center;
  background-size: cover;
  height: 180px;   /* aur chhota banner */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
}

.quality-hero .overlay {
  background: rgba(0,0,0,0.4); /* halka dark for readability */
  padding: 10px 25px;
  border-radius: 6px;
}

.quality-hero h1 {
  font-size: 22px;  /* small professional font */
  margin-bottom: 5px;
}

.quality-hero p {
  font-size: 14px;
}
.quality-hero {
  background: url("images/backroung\ image\ vegetables.jpeg") no-repeat center center;
  background-size: contain;  /* ✅ image poori dikhayega, crop nahi karega */
  background-color: #000;    /* extra space ke liye background color */
  height: 200px;             /* strip size */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.quality-hero .overlay {
  background: rgba(0,0,0,0.4);
  padding: 10px 25px;
  border-radius: 6px;
}

.quality-hero h1 {
  font-size: 22px;
  margin-bottom: 5px;
}

.quality-hero p {
  font-size: 14px;
}
.quality-hero {
  background: url("images/header\ backround\ image.jpg") no-repeat center center;
  background-size: contain;   /* ✅ image poora dikhayega, fatne nahi dega */
  background-color: #f4f4f4;  /* ✅ professional light grey background behind image */
  height: 290px;              /* strip height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #222;                /* dark text for contrast */
}

.quality-hero .overlay {
  background: rgba(255,255,255,0.7); /* white transparent box for text */
  padding: 12px 25px;
  border-radius: 6px;
}

.quality-hero h1 {
  font-size: 24px;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}

.quality-hero p {
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}
/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f8fdf8, #e6f4ea); /* professional soft green gradient */
  padding: 60px 20px;
  text-align: center;
}
.contact-section h2 {
  font-size: 32px;
  color: #2e8b57;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}
.contact-section p {
  color: #444;
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
}
.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}
.contact-form input:focus, 
.contact-form textarea:focus {
  border-color: #2e8b57;
  outline: none;
}
.contact-form button {
  background: #2e8b57;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #226b44;
}

/* Contact Info */
.contact-info {
  flex: 1;
  min-width: 250px;
  text-align: left;
}
.contact-info p {
  margin: 10px 0;
  font-size: 16px;
}
.contact-info a {
  color: #2e8b57;
  text-decoration: none;
  font-weight: bold;
}
.contact-info a:hover {
  text-decoration: underline;
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Background Video */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Background Image (fallback) */
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3; /* video ke peeche */
}

/* Overlay Content */
.hero .overlay {
  background: rgba(0,0,0,0.5); /* readability */
  padding: 30px 50px;
  border-radius: 8px;
  z-index: 1;
}
/* IMAGE HERO (Top Banner) */
.hero-image {
  position: relative;
  text-align: center;
  color: white;
}
.hero-image img {
  width: 90%;
  height: 70vh;   /* chhota banner size */
  object-fit: cover;
}
.hero-image .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  padding: 20px 40px;
  border-radius: 6px;
}

/* VIDEO HERO (Background Section) */
.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  color: white;
}
.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-video .overlay {
  position: relative;
  top: 40%;
  background: rgba(0,0,0,0.4);
  display: inline-block;
  padding: 20px 40px;
  border-radius: 6px;
}
/* HERO IMAGE (top banner) */
.hero-image {
  position: relative;
  text-align: center;
  color: white;
}
.hero-image img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}
.hero-image .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  padding: 20px 40px;
  border-radius: 6px;
}

/* VIDEO SECTION (below hero) */
.video-section {
  position: relative;
  height: 80vh; /* video ki height */
  overflow: hidden;
  text-align: center;
  color: white;
}
.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.video-overlay {
  position: relative;
  top: 40%;
  background: rgba(0,0,0,0.4);
  display: inline-block;
  padding: 20px 40px;
  border-radius: 6px;
}
/* Fullscreen Video Section */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;  /* full screen height */
  overflow: hidden;
  text-align: center;
  color: white;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;     /* full width */
  height: 100%;    /* full height */
  object-fit: cover; /* video ko crop karke full screen fill karega */
  z-index: -1;     /* video peeche rahe */
}

.video-overlay {
  position: relative;
  top: 40%; /* text center ke paas */
  background: rgba(0, 0, 0, 0.4); /* dark background for readability */
  display: inline-block;
  padding: 20px 40px;
  border-radius: 8px;
}
.video-overlay h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}
.video-overlay p {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* full screen fill karega */
  z-index: -1;         /* peeche rahe */
}
.video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen */
  overflow: hidden;
  text-align: center;
  color: white;
  display: flex;
  justify-content: center;  /* horizontally center */
  align-items: center;      /* vertically center */
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-overlay {
  position: relative;
  background: rgba(0, 0, 0, 0.5); /* dark transparent box */
  padding: 20px 40px;
  border-radius: 8px;
  text-align: center;
}

.video-overlay h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.video-overlay p {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
}
.video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen video */
  overflow: hidden;
  color: white;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Bottom Banner with Image Background */
.video-bottom-banner {
  position: absolute;
  bottom: 0;           /* niche chipka do */
  left: 0;
  width: 100%;
  background: url("images/world\ image.jpg") no-repeat center center/cover; /* ✅ apna image */
  padding: 30px 20px;
  text-align: center;
}

.video-bottom-banner h2 {
  font-size: 28px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.video-bottom-banner p {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}
.video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen */
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* video always at back */
}

/* Bottom banner (with background image) */
.video-bottom-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url("images/world\ image.jpg") no-repeat center center/cover;
  background-blend-mode: multiply; /* professional dark effect */
  color: white;
  text-align: center;
  padding: 30px 20px;
  z-index: 1; /* text & banner above video */
}

.video-bottom-banner h2 {
  font-size: 28px;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.video-bottom-banner p {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}
.video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen */
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* video always at back */
}

/* Bottom banner (with background image) */
.video-bottom-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url("images/world\ image.jpg") no-repeat center center/cover;
  background-blend-mode: multiply; /* professional dark effect */
  color: white;
  text-align: center;
  padding: 30px 20px;
  z-index: 1; /* text & banner above video */
}

.video-bottom-banner h2 {
  font-size: 28px;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.video-bottom-banner p {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;   /* full screen section */
  overflow: hidden;
}

.hero {
  background: url("images/header\ backround\ image.jpg") no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* dark overlay */
}

.hero-overlay {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 40px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.hero-overlay h1 span {
  color: #ffcc00; /* highlight */
}

.hero-overlay p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  background: #ffcc00;
  color: #2e8b57;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.btn:hover {
  background: #f1b800;
}
.about {
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: center;
  flex-wrap: wrap;
}

.about-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 28px;
  color: #2e8b57;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}
.products {
  padding: 60px 20px;
  text-align: center;
}

.products h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #2e8b57;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.product {
  background: white;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product img {
  width: 100%;
  height: 200px;       /* ✅ equal height for all */
  object-fit: cover;   /* ✅ crop kar ke same size */
  border-radius: 10px;
  margin-bottom: 10px;
}

.product h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.team {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.team h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #2e8b57;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.team-member img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;   /* ✅ round profile photo */
  margin-bottom: 15px;
  border: none;         /* ✅ no border */
  box-shadow: none;     /* ✅ no shadow */
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #333;
}

.team-member p {
  font-size: 14px;
  color: #555;
  margin: 4px 0;
}
.team {
  padding: 60px 20px;
  background: #fff; /* ✅ White background */
  text-align: center;
}

.team h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #2e8b57;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.team-member img {
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 0;   /* ✅ rectangle image (no round) */
  margin-bottom: 15px;
  border: none;       /* ✅ no border */
  box-shadow: none;   /* ✅ no shadow */
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #333;
}

.team-member p {
  font-size: 14px;
  color: #555;
  margin: 4px 0;
}
.team {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.team h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #2e8b57;
  font-weight: bold;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.team-member img {
  width: 230px;        /* ✅ bada size */
  height: 230px;
  object-fit: cover;
  border: none;        /* ✅ border hata diya */
  border-radius: 12px; /* thoda rounded professional look */
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* ✅ 3D shadow effect */
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-member img:hover {
  transform: scale(1.05); /* ✅ hover pe thoda bada effect */
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.team-member h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #333;
  font-weight: bold;  /* ✅ bold font */
}

.team-member p {
  font-size: 15px;
  color: #555;
  margin: 4px 0;
}
.team {
  padding: 50px 20px;
  text-align: center;
  background: #f9f9f9;
}

.team h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #2e8b57;
  font-weight: bold;
}

/* Section wise layout */
.team-member-section {
  padding: 60px 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.member-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.member-container.reverse {
  flex-direction: row-reverse; /* Alternate layout for 2nd member */
}

.member-photo img {
  width: 280px;           /* bigger size */
  height: auto;
  object-fit: cover;
  border-radius: 12px;    /* slight curve */
  box-shadow: 0 8px 25px rgba(0,0,0,0.2); /* 3D effect */
  transition: transform 0.3s;
}

.member-photo img:hover {
  transform: scale(1.05);
}

.member-info {
  flex: 1;
  min-width: 250px;
}

.member-info h3 {
  font-size: 24px;
  color: #2e8b57;
  margin-bottom: 10px;
  font-weight: bold;
}

.member-info p {
  font-size: 16px;
  color: #444;
  margin-bottom: 8px;
}
.team {
  padding: 50px 20px;
  text-align: center;
  background: #f9f9f9;
}

.team h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #2e8b57;
  font-weight: bold;
}

/* Section wise layout */
.team-member-section {
  padding: 60px 20px;
}

.team-member-section:nth-child(odd) {
  background: #fff;   /* odd = white */
}

.team-member-section:nth-child(even) {
  background: #f5f5f5;  /* even = light grey */
}

.member-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.member-container.reverse {
  flex-direction: row-reverse; /* Alternate layout */
}

.member-photo img {
  width: 280px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;    
  box-shadow: 0 8px 25px rgba(0,0,0,0.2); /* 3D effect */
  transition: transform 0.3s;
}

.member-photo img:hover {
  transform: scale(1.05);
}

.member-info {
  flex: 1;
  min-width: 250px;
}

.member-info h3 {
  font-size: 24px;
  color: #2e8b57;
  margin-bottom: 10px;
  font-weight: bold;
}

.member-info p {
  font-size: 16px;
  color: #444;
  margin-bottom: 8px;
}
.team {
  padding: 50px 20px;
  text-align: center;
  background: #f9f9f9;
}

.team h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #2e8b57;
  font-weight: bold;
}

/* Section wise layout */
.team-member-section {
  padding: 60px 20px;
}

.team-member-section:nth-child(odd) {
  background: #fff;   /* odd = white */
}

.team-member-section:nth-child(even) {
  background: #f5f5f5;  /* even = light grey */
}

.member-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.member-container.reverse {
  flex-direction: row-reverse; /* Alternate layout */
}

.member-photo img {
  width: 280px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;    
  box-shadow: 0 8px 25px rgba(0,0,0,0.2); /* 3D effect */
  transition: transform 0.3s;
}

.member-photo img:hover {
  transform: scale(1.05);
}

.member-info {
  flex: 1;
  min-width: 250px;
}

.member-info h3 {
  font-size: 24px;
  color: #2e8b57;
  margin-bottom: 10px;
  font-weight: bold;
}

.member-info p {
  font-size: 16px;
  color: #444;
  margin-bottom: 8px;
}
.team {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.team h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #2e8b57;
  font-weight: bold;
}

.team-member-open {
  margin-bottom: 50px;
}

.team-member-open img {
  width: 260px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2); /* 3D shadow */
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.team-member-open img:hover {
  transform: scale(1.05);
}

.team-member-open h3 {
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: bold;
}

.team-member-open p {
  font-size: 15px;
  color: #555;
  margin: 4px 0;
}
.contact {
  padding: 80px 20px;
  background: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: flex-start;
}

.contact-form {
  flex: 1;
}

.contact-form h2 {
  font-size: 26px;
  color: #2e8b57;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.contact-form button {
  background: #2e8b57;
  color: white;
  padding: 14px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #256d45;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2e8b57;
}

.contact-info p {
  font-size: 15px;
  margin-bottom: 10px;
}

.contact-info a {
  color: #2e8b57;
  text-decoration: none;
  font-weight: bold;
}
.contact {
  padding: 80px 20px;
  background: #000; /* ✅ Black background */
  color: white;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: flex-start;
}

.contact-form {
  flex: 1;
}

.contact-form h2 {
  font-size: 28px;
  color: #ffcc00; /* ✅ golden highlight */
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 2px solid #444;
  border-radius: 6px;
  font-size: 15px;
  background: #111;
  color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

.contact-form button {
  background: #2e8b57;
  color: white;
  padding: 14px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #256d45;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #ffcc00; /* ✅ golden highlight */
}

.contact-info p {
  font-size: 15px;
  margin-bottom: 10px;
  color: #eee;
}

.contact-info a {
  color: #2e8b57;
  text-decoration: none;
  font-weight: bold;
}
.strip {
  background: url("images/world\ image.jpg") no-repeat center center/cover; /* ✅ apni image ka naam */
  padding: 80px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.strip::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* ✅ dark overlay for readability */
}

.strip h2, 
.strip p {
  position: relative;
  z-index: 1;
}

.strip h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.strip p {
  font-size: 18px;
}
/* Quality Page Hero */
.quality-hero {
  background: url("images/back\ index.jpg") no-repeat center center/cover; /* ✅ apni image lagao */
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.quality-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* ✅ overlay for readability */
}

.quality-overlay {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.quality-overlay h1 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}

.quality-overlay p {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
}
/* Header */
header {
  background: #000; /* ✅ black background */
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  height: 50px;
}

header .logo h1 {
  font-size: 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
}

/* Nav Links */
header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s, border-bottom 0.3s;
  padding: 5px 0;
}

header nav ul li a:hover {
  color: #ffcc00; /* ✅ golden hover */
  border-bottom: 2px solid #ffcc00; /* ✅ underline hover */
}
/* Packing Process Section */
.packing {
  background: #fff;  /* ✅ White background */
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  border-radius: 8px;
}

.packing h2 {
  font-size: 30px;
  font-weight: bold;
  color: #2e8b57;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif; /* ✅ international heading font */
}

.packing p {
  font-size: 16px;
  color: #000; /* ✅ Black text */
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif; /* ✅ clean professional font */
}

.packing-list {
  list-style: none;
  padding: 0;
  font-size: 16px;
  color: #000; /* ✅ Black text */
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.packing-list li {
  margin-bottom: 10px;
}
/* Packing Material Section */
.packing-material {
  background: #fff;   /* ✅ White background */
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  border-radius: 8px;
}

.packing-material h2 {
  font-size: 28px;
  font-weight: bold;
  color: #2e8b57;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif; /* ✅ International heading font */
}

.packing-material p {
  font-size: 16px;
  color: #000; /* ✅ Black text */
  margin-bottom: 20px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif; /* ✅ Clean paragraph font */
}

.material-list {
  list-style: none;
  padding: 0;
  font-size: 16px;
  color: #000;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.material-list li {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    gap: 15px;
  }
  .about-container, .member-container, .contact-container {
    flex-direction: column;
    text-align: center;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .team-member-open img, .member-photo img {
    width: 90%;
    max-width: 300px;
  }
}
html {
  scroll-behavior: smooth;
}
section {
  border-bottom: 1px solid #eee;
}
nav.show {
  display: block;
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
footer {
  background: #000;
  color: #bbb;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

footer p:first-child {
  color: #fff;
  font-weight: bold;
}
/* Chatbot Styling */
#chatbox {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: #fff;
  border: 2px solid #2e8b57;
  border-radius: 12px;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  z-index: 10000;
}

#chatlog {
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 10px;
  padding: 5px;
  font-size: 14px;
  line-height: 1.5;
}

#chatlog p {
  margin: 5px 0;
}

#userInput {
  width: 70%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#chatbox button {
  background: #2e8b57;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
}
#chatbox button:hover {
  background: #256d45;
}
header {
  background: #000;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header nav ul li a:hover {
  color: #ffcc00;
  border-bottom: 2px solid #ffcc00;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.about {
  padding: 80px 20px;
  background: #f9f9f9;  /* light background */
  font-family: 'Poppins', sans-serif;
}

.about h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
  color: #2e8b57; /* company green */
  font-weight: 700;
  letter-spacing: 1px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.about-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.about-text p {
  margin-bottom: 18px;
}

.about-text em {
  color: #2e8b57;
  font-weight: 600;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }
}
.about-tagline {
  margin-top: 50px;
  padding: 25px;
  background: linear-gradient(135deg, #2e8b57, #1c5d3b);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.about-tagline h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}
.about {
  padding: 80px 20px;
  background: #f9f9f9; /* light background */
}

.about h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #2e8b57;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.about-text em {
  color: #2e8b57;
  font-weight: 600;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 90%;
  }
}
.team {
  padding: 70px 20px;
  background: #fff;
}

.team h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: #2e8b57;
  font-size: 30px;
  margin-bottom: 30px;
}

.team-member-open {
  text-align: center;
  margin-bottom: 36px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.team-member-open img {
  width: 240px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  margin-bottom: 14px;
  transition: transform 0.3s;
}

.team-member-open img:hover {
  transform: translateY(-6px);
}

/* ✅ Co-Founder Names Styling */
.cofounder-name {
  font-size: 20px;
  font-weight: 700;
  color: #2e8b57;  /* professional green */
  margin: 6px 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ✅ Director name subtle */
.director-name {
  font-size: 16px;
  color: #444;
  font-weight: 600;
  margin-bottom: 8px;
}
/* ---------- FORCE DESKTOP-LIKE LAYOUT ON MOBILE (safe-preserve) ---------- */

/* Keep main two-column sections side-by-side even on small screens */
.about-container,
.contact-container,
.team-container,
.product-grid,
.quality-container {
  display: flex !important;
  flex-wrap: nowrap !important;    /* prevent stacking */
  gap: 24px !important;
}

/* Make each column take about half the available width */
.about-container > .about-text,
.about-container > .about-image,
.contact-container > .contact-form,
.contact-container > .contact-info,
.team-container > .team-member-open,
.quality-container > .packing,
.product-grid .product {
  flex: 0 0 50% !important;        /* fixed two-column layout */
  max-width: 50% !important;
}

/* Allow horizontal scrolling on very small screens instead of stacking */
html, body {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Slightly reduce font size on small screens so content fits better */
@media (max-width: 420px) {
  body { font-size: 14px; }
  .hero h1 { font-size: 24px !important; }
  .about h2, .products h2, .team h2 { font-size: 26px !important; }
  .team-member-open img { width: 180px !important; }
  .product img { height: 140px !important; object-fit: cover; }
}

/* Make product grid keep two columns on mobile */
.product-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
}

/* Prevent inputs & buttons from overflowing */
.contact-form input,
.contact-form textarea,
.contact-form button {
  box-sizing: border-box;
  max-width: 100%;
}

/* Navbar: keep links inline, allow horizontal scroll */
header nav {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
header nav ul {
  display: flex;
  white-space: nowrap;
}

/* If you want strict no-wrap but still want content readable, reduce paddings */
.about-text, .contact-form, .contact-info {
  padding-right: 18px;
  padding-left: 18px;
}

/* Optional: small visual tweak to show horizontal scrollbar area less intrusive */
::-webkit-scrollbar {
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.12);
  border-radius: 8px;
}

/* Fallback: if a section looks too narrow, allow it to shrink but not stack */
@supports (flex: 1 0 50%) {
  .about-container > .about-text,
  .about-container > .about-image {
    min-width: 300px; /* each column at least 300px; adjust if needed */
  }
}/* ---------- GLOBAL ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@300;400;500&display=swap');

:root {
  --brand-green: #2e8b57;
  --brand-gold: #ffcc00;
  --bg-light: #f9f9f9;
  --dark: #111;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- GLOBAL ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@300;400;500&display=swap');

:root {
  --brand-green: #2e8b57;
  --brand-gold: #ffcc00;
  --bg-light: #f9f9f9;
  --dark: #111;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

html { scroll-behavior: smooth; }
section { border-bottom: 1px solid #eee; }

/* ---------- HEADER ---------- */
header {
  background: #000;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo { display: flex; align-items: center; gap: 10px; }
header .logo img { height: 50px; }
header .logo h1 {
  font-size: 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s, border-bottom 0.3s;
  padding: 5px 0;
}
header nav ul li a:hover {
  color: var(--brand-gold);
  border-bottom: 2px solid var(--brand-gold);
}

/* ---------- HERO ---------- */
/* Make sure image filename = header-background-image.jpg in images/ */
.hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  background: url("images/header\ backround\ image.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero .overlay { position: relative; z-index: 1; max-width: 1100px; padding: 20px; }
.hero h1 { font-size: 36px; font-family: 'Montserrat', sans-serif; margin: 0; }
.hero p { font-size: 18px; color: #f1f1f1; margin-top: 10px; }

/* ---------- ABOUT ---------- */
.about { padding: 80px 20px; background: var(--bg-light); font-family: 'Poppins', sans-serif; }
.about h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--brand-green);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.about-text { flex: 1; font-size: 16px; line-height: 1.8; color: #333; }
.about-text p { margin-bottom: 18px; }
.about-text em { color: var(--brand-green); font-weight: 600; }
.about-image { flex: 1; text-align: center; }
.about-image img {
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-image img:hover { transform: scale(1.03); box-shadow: 0 12px 35px rgba(0,0,0,0.2); }
.about-tagline {
  margin-top: 40px;
  padding: 20px;
  background: linear-gradient(135deg, #2e8b57, #1c5d3b);
  text-align: center;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

/* ---------- PRODUCTS ---------- */
.products { padding: 70px 20px; }
.products h2 {
  text-align: center;
  font-size: 30px;
  color: var(--brand-green);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 30px;
}
.product-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.product {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.product img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}
.product h3 { margin-top: 12px; font-family: 'Montserrat', sans-serif; }

/* ---------- TEAM ---------- */
.team { padding: 70px 20px; background: #fff; }
.team h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: var(--brand-green);
  font-size: 30px;
  margin-bottom: 30px;
}
.team-member-open {
  text-align: center;
  margin-bottom: 36px;
  max-width: 400px;
  margin: auto;
}
.team-member-open img {
  width: 240px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  margin-bottom: 14px;
  transition: transform 0.3s;
}
.team-member-open img:hover { transform: translateY(-6px); }
.cofounder-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-green);
  margin: 6px 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.director-name { font-size: 16px; color: #444; font-weight: 600; }

/* ---------- CONTACT ---------- */
.contact { padding: 70px 20px; background: var(--bg-light); }
.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-form {
  flex: 1;
  background: #000;
  color: #fff;
  padding: 28px;
  border-radius: 10px;
}
.contact-form h2 { color: var(--brand-gold); font-size: 22px; margin-bottom: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
}
.contact-form button {
  background: var(--brand-green);
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
}
.contact-info {
  flex: 1;
  background: #fff;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.contact-info h3 { font-size: 20px; margin-bottom: 16px; color: var(--brand-green); }
.contact-info ul { list-style: none; }
.contact-info li { margin-bottom: 10px; color: #333; }

/* ---------- FOOTER ---------- */
footer {
  background: #000;
  color: #bbb;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
footer p:first-child { color: #fff; font-weight: bold; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-container, .contact-container { flex-direction: column; text-align: center; }
  .about-image img { max-width: 100%; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .team-member-open img { width: 180px; }
}
@media (max-width: 480px) {
  body { font-size: 14px; }
  .hero h1 { font-size: 24px; }
  .about h2, .products h2, .team h2 { font-size: 26px; }
  .product img { height: 140px; }
}
