/* PREMIUM CORPORATE AGRICULTURE CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary: #2e7d32;
  --primary-light: #4caf50;
  --primary-dark: #1b5e20;
  --secondary: #1e88e5;
  --accent: #fbc02d;
  --bg-light: #f8faf8;
  --bg-white: #ffffff;
  --bg-dark: #121212;
  --text-main: #2d3748;
  --text-muted: #718096;
  --border-color: #e2e8f0;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: #1a202c;
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TYPOGRAPHY */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(46, 125, 50, 0.1);
  color: var(--primary);
  font-weight: 600;
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.section-title.light {
  color: var(--bg-white);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  gap: 10px;
  z-index: 1;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: var(--transition);
  z-index: -1;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
}

.btn-primary::before {
  background-color: var(--primary-dark);
}

.btn-primary:hover {
  color: var(--bg-white);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 25px rgba(46, 125, 50, 0.4), 0 0 15px rgba(46, 125, 50, 0.4);
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary);
  border-color: var(--bg-white);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--bg-white);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-3px);
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  color: var(--primary-light);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-main);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 220px;
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-sm);
  z-index: 1000;
  overflow: hidden;
  border: 1px solid var(--border-color);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-content a {
  color: var(--text-main);
  padding: 12px 20px;
  display: block;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.dropdown-content a::after {
  display: none;
  /* remove hover line inside dropdown */
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: var(--bg-light);
  color: var(--primary);
  padding-left: 25px;
  /* slight indent on hover */
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* HAMBURGER / MOBILE FIXES */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.hamburger:hover {
  color: var(--primary);
}

@media (max-width: 991px) {
  .hamburger {
    display: block;
  }

  .d-none-mobile {
    display: none !important;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-color);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    /* hidden by default via clippath */
    transition: clip-path 0.4s ease-in-out;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .nav-links>li {
    width: 100%;
    text-align: left;
  }

  .nav-links a {
    display: block;
    padding: 15px 24px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .dropdown-content {
    position: relative;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border-color);
    background: var(--bg-light);
    display: block;
    /* unhide it inside mobile menu */
    max-height: 0;
    transition: max-height 0.4s ease;
  }

  .dropdown:hover .dropdown-content,
  .dropdown.active .dropdown-content {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
background-image: url('https://cdn.prod.website-files.com/61094a65869caa4f3c35df0e/69af03796670b8b07e92eefc_123.png');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
  color: var(--bg-white);
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 240px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-tag-wrapper {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  visibility: visible !important;
}

.hero-tag {
  display: inline-block !important;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff !important;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  white-space: nowrap;
  visibility: visible !important;
}

.tag-primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}

.hero h1 {
  font-size: 5.5rem;
  color: var(--bg-white);
  margin-bottom: 30px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 50px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 700px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-outline-light {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--bg-white);
}

.btn-outline-light:hover {
  background-color: var(--bg-white);
  color: var(--primary);
  border-color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* FLOATING STATS */
.floating-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding: 40px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
  z-index: 5;
}

.stat-box {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  font-weight: 600;
}

/* SECTIONS */
.section {
  padding: 120px 0;
}

.section-alt {
  background-color: #ffffff;
}

/* GRID LAYOUTS */
.grid {
  display: grid;
  gap: 40px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ABOUT PREVIEW */
.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: var(--transition);
}

.about-img-main:hover img {
  transform: scale(1.1);
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 50%;
  max-width: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 10px solid var(--bg-white);
  box-shadow: var(--shadow-lg);
}

.about-experience {
  position: absolute;
  top: 40px;
  left: -30px;
  background: var(--primary);
  color: white;
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.exp-years {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 5px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-main);
}

.feature-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CARDS */
.card-premium {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.card-premium:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl), 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-premium:hover .card-img img {
  transform: scale(1.15);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-content {
  padding: 40px;
}

.card-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.card-premium:hover .card-title {
  color: var(--primary);
}

.card-text {
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.8;
}

/* SERVICES/DIVISIONS */
.service-box {
  background: var(--bg-white);
  padding: 50px 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  border: 1px solid var(--border-color);
}

.service-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary);
  z-index: -1;
  transition: var(--transition);
  border-radius: var(--radius-md);
}

.service-box:hover {
  transform: translateY(-10px);
  color: var(--bg-white);
  border-color: transparent;
}

.service-box:hover::after {
  height: 100%;
  top: 0;
}

.service-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 30px;
  transition: var(--transition);
}

.service-box:hover .service-icon,
.service-box:hover h3,
.service-box:hover p {
  color: var(--bg-white);
}

.service-box h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* PROCESS TIMELINE */
.process-wrapper {
  position: relative;
  padding: 40px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: dashed 2px var(--border-color);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 100px;
  height: 100px;
  background: var(--bg-white);
  border: 5px solid var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary);
  margin: 0 auto 30px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* GLOBAL REACH (PARALLAX) */
.global-reach {
  background: linear-gradient(rgba(10, 25, 11, 0.9), rgba(10, 25, 11, 0.95)), url('https://images.unsplash.com/photo-1574007673570-36653ea9d05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
  color: var(--bg-white);
  padding: 120px 0;
  text-align: center;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .market-grid {
    grid-template-columns: 1fr;
  }
}

.market-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
}

.market-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  border-color: var(--primary-light);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.market-card i {
  font-size: 3rem;
  color: var(--primary-light);
  margin-bottom: 20px;
  transition: var(--transition);
}

.market-card:hover i {
  transform: scale(1.1);
  color: var(--bg-white);
}

.market-card h4 {
  color: var(--bg-white);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.market-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* FOOTER */
footer {
  background: #0a190b;
  color: #a0b2a1;
  padding: 100px 0 30px;
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-logo {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 30px;
}

.footer-text {
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-5px);
}

.footer-heading {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-list i {
  font-size: 1.2rem;
  color: var(--primary-light);
  margin-top: 5px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.95rem;
}

/* PAGE HEADERS */
.page-header {
  padding: 200px 0 100px;
  background: linear-gradient(rgba(10, 25, 11, 0.8), rgba(10, 25, 11, 0.9)), url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3') center/cover fixed;
  color: white;
  text-align: center;
}

.page-header h1 {
  font-size: 4rem;
  color: white;
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: white;
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* FORMS */
.form-group {
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  padding: 18px 25px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: var(--transition);
  background: var(--bg-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
  background: var(--bg-white);
}

textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

/* UTILS */
.mt-5 {
  margin-top: 5rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 4.5rem;
  }

  .grid-4,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .about-img-float,
  .about-experience {
    display: none;
  }

  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {

  .grid-3,
  .process-grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    flex-direction: column;
    padding-bottom: 0;
    padding-top: 0;
  }

  .hero>.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .hero-content {
    margin-top: 0;
  }

  .floating-stats {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    flex-direction: column;
    gap: 25px;
    padding: 40px 20px;
    background: rgba(10, 25, 11, 0.95);
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2.7rem;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1.15rem;
  }

  .hero-btns {
    width: 100%;
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-img-main img {
    height: 400px;
  }

  .page-header {
    padding: 150px 0 80px;
  }

  .page-header h1 {
    font-size: 3rem;
  }

  .market-grid {
    grid-template-columns: 1fr;
  }
}

/* ANIMATED FALLING CROPS */
@keyframes floatDown {
  0% {
    transform: translateY(-20vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.9;
  }

  90% {
    opacity: 0.9;
  }

  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

.falling-crops {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  /* Below text, above overlay */
  pointer-events: none;
}

.crop-drop {
  position: absolute;
  top: 0;
  animation: floatDown linear infinite;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

.crop-1 {
  left: 15%;
  width: 90px;
  animation-duration: 22s;
  animation-delay: 0s;
}

.crop-2 {
  left: 85%;
  width: 140px;
  animation-duration: 18s;
  animation-delay: 3s;
  opacity: 0.7;
}

.crop-3 {
  left: 50%;
  width: 70px;
  animation-duration: 25s;
  animation-delay: 8s;
}

.crop-4 {
  left: 30%;
  width: 110px;
  animation-duration: 19s;
  animation-delay: 14s;
}

.crop-5 {
  left: 75%;
  width: 85px;
  animation-duration: 27s;
  animation-delay: 5s;
}

/* SCROLLING GALLERY MARQUEE */
.gallery-marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 60px 0;
  background: var(--bg-light);
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.gallery-marquee-track {
  display: inline-flex;
  gap: 20px;
  animation: scrollMarquee 40s linear infinite;
  /* Start left, move right (wait, left to right visual means it moves towards the right, which means transform: translateX(0) to translateX(50%). Standard is right to left. Let's do left to right as requested ) */
  width: max-content;
}

.gallery-marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  width: 350px;
  height: 250px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.marquee-item:hover img {
  transform: scale(1.1);
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(calc(-50% - 10px));
  }

  100% {
    transform: translateX(0);
  }
}