/* ==========================
   ATLAS AGRO EXPORTS DESIGN SYSTEM
   ========================== */
:root {
  --primary: hsl(160, 73%, 60%);
  --primary: 160 73% 60%;
  --primary-hover: hsl(160, 54%, 65%);
  --primary-dark: hsl(0, 0%, 13%);
  --secondary-dark: hsl(210, 18%, 17%);
  --footer-bg: hsl(210, 15%, 6%);
  --text-light: #fff;
  --text-muted: hsl(210, 14%, 70%);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-hover: 0 8px 30px hsl(160 73% 60% / 0.25);
  --gradient-hero: linear-gradient(
    135deg,
    hsl(0 0% 13% / 0.9),
    hsl(210 18% 17% / 0.85)
  );
  --gradient-dark: linear-gradient(180deg, hsl(0 0% 13%), hsl(210 18% 17%));
  --muted-foreground: 210 14% 45%;
  --foreground: 210 18% 17%;
  --section-bg: 210 14% 27%;
  --border: 210 14% 85%;
  --muted: 210 14% 95%;
  --supplychain-primary: 160 73% 60%;
  --footer-bg: 210 15% 6%;
  --radius: 0.75rem;
  --accent: 160 73% 60%;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--secondary-dark);
  background-color: white;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  h2 {
    font-size: 3rem;
    line-height: 1;
  }
}

p {
  line-height: 1.625;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--muted-foreground));
}

.main {
  padding-top: 5rem;
}

.section-padding {
  padding: 5rem 1.5rem;
}

.text-foreground {
  color: hsl(var(--foreground));
}

@media (min-width: 768px) {
  .section-padding {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.container-wide {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: hsl(var(--primary));
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-out forwards;
}
.fade-in.delay-1 {
  animation-delay: 0.2s;
}
.fade-in.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================
NAVBAR Section (Resusable)
   ========================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: hsla(0, 0%, 13%, 0.95);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: var(--primary-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 48px; /* Adjust height to fit navbar */
  width: auto; /* Maintain aspect ratio */
  display: block; /* Removes extra bottom space */
  object-fit: contain; /* Ensures it scales neatly */
  padding-left: 1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.6px;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: hsl(var(--primary));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: hsl(var(--primary));
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  font-size: 1.8rem;
  color: #fff;
  padding-right: 1rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: var(--secondary-dark);
  flex-direction: column;
  text-align: center;
  padding: 1rem 0;
}
.mobile-menu.open {
  display: flex;
}
.mobile-item {
  color: white;
  padding: 0.75rem 0;
  text-decoration: none;
  transition: var(--transition);
}
.mobile-item:hover {
  color: hsl(var(--primary));
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* ==========================
   CTA SECTION (REUSABLE)
   ========================== */

.cta-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, hsl(160, 73%, 60%), hsl(160, 54%, 65%));
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.cta-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: white;
  opacity: 0.1;
  filter: blur(100px);
}

.cta-bg-circle.circle1 {
  width: 250px;
  height: 250px;
  top: 50px;
  left: 50px;
}

.cta-bg-circle.circle2 {
  width: 400px;
  height: 400px;
  bottom: 50px;
  right: 50px;
}

.cta-content {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-content h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 3rem;
    line-height: 1;
  }
}

.cta-content p {
  color: #ffffffe6;
  font-size: 1.25rem;
  line-height: 1.625;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-buttons .btn-primary {
  background-color: rgb(243 244 246);

  border: none;
  color: hsl(var(--primary));
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-buttons .btn-primary svg {
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
}

.cta-buttons .btn-primary:hover {
  transform: scale(1.05);
}

.cta-section .btn-outline {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #4ecca3;
  transform: scale(1.05);
}

/* ==========================
   Footer SECTION (REUSABLE)
   ========================== */

.footer {
  background-color: hsl(var(--footer-bg));
  color: #ccc;
  padding: 60px 20px 20px 20px;
  font-family: sans-serif;
}

.footer-grid {
  display: flex;
  gap: 90px;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 120px; /* adjust this value */
  height: auto;
}

.white-text {
  color: #fff;
}
.primary-text {
  color: #4ecca3;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(209 213 219);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #fff;
}

.footer-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #4ecca3;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-contact .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #4ecca3;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #4ecca3;
}

.footer-certifications li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.cert-dot {
  width: 8px;
  height: 8px;
  background-color: #4ecca3;
  border-radius: 50%;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-btn:hover {
  background: #4ecca3;
  transform: scale(1.1);
}

.social-icon {
  width: 20px;
  height: 20px;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #aaa;
}

.footer-bottom p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(209 213 219);
}
/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 30px;
  }
}

/* ==========================
   PAGE HERO SECTION (Reusable)
   ========================== */
.page-hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark) !important;
  opacity: 0.7;
}

.page-hero .hero-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3.75rem;
    line-height: 1;
  }
}

.page-hero p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: hsl(0 0% 95%);
  margin-bottom: 2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}



/* ==========================
    HOMEPAGE HERO SECTION
   ========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero-harvest.jpg") center/cover no-repeat;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 4rem 1rem;
}

.hero h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.75rem;
  color: hsl(0, 0%, 90%);
  max-width: 56rem;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.75rem;
    line-height: 1;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
    line-height: 1;
  }

  .hero p {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
  font-size: 1.25rem;
  gap: 0.5rem;
  padding: 0.75rem 2.5rem;
  width: 200px;
}

.btn-primary {
  background: hsl(var(--primary));
  color: white;
}
.btn-primary:hover {
  
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  border: 2px solid white;
  color: white;
}
.btn-outline:hover {
  background: white;
  color: var(--primary-dark);
  transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1.8s infinite;
}
.scroll-outline {
  width: 26px;
  height: 42px;
  border: 2px solid white;
  border-radius: 20px;
  display: flex;
  justify-content: center;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  margin-top: 6px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

/* ==========================
   RESPONSIVE DESIGN
   ========================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* ---------- About Section ---------- */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.items-center {
  align-items: center;
}
.image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 30px hsla(0, 0%, 0%, 0.2);
  height: 400px;
}
.overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsl(var(--primary-dark) / 0.5),
    transparent
  );
}
.responsive-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ---------- Products Section ---------- */
.product-section {
  background-color: hsl(var(--section-bg));
}
.product-section h2 {
  color: white;
}

.product-heading {
  margin-bottom: 4rem;
}

.product-heading p {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-gray {
  color: rgb(209 213 219);
  opacity: 1;
}
.product-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 3rem;
  }
}
.card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;

  cursor: pointer;
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border));
}
.card:hover {
  box-shadow: var(--shadow-hover);
}
.card-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.card:hover .card-image img {
  transform: scale(1.1);
}
.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsl(var(--primary-dark) / 0.8),
    transparent
  );
}
.card-body {
  padding: 1.5rem;
  text-align: left;
}
.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.card-text {
  color: hsl(210, 14%, 45%);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.btn-outline.full {
  display: block;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  font-weight: 300;
  padding: 0.5rem 0.75rem;

  border-radius: var(--radius);

  font-weight: 600;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.btn-outline.full:hover {
  background: hsl(var(--primary));
  color: white;
}
.btn-primary.large {
  display: inline-block;
  background: hsl(var(--primary));
  color: white;
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.btn-primary.large:hover {
  transform: scale(1.05);
}

/* Quality Commitment */
.quality-commitment {
  padding: 80px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
  color: #333;
}

.quality-commitment .container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  text-align: center;
}

.quality-commitment .primary {
  color: #4ecca3;
}

.quality-title {
  margin-bottom: 4rem;
}

.quality-title p {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.quality-commitment .features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.quality-commitment .feature {
  flex: 1;
  min-width: 250px;
  margin: 10px;
  padding: 20px;
  background-color: hsl(var(--muted));
  border-radius: 0.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.quality-commitment .feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(78, 204, 163, 0.2);
}

.quality-commitment .feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.quality-commitment .feature .icon {
  width: 60px; /* fixed width for the circle */
  height: 60px; /* fixed height for the circle */
  border-radius: 50%; /* makes it circular */
  background-color: white; /* circle background */
  display: flex; /* centers the SVG */
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quality-commitment .feature .icon svg {
  width: 2rem;
  height: 2rem;
}

.quality-commitment .feature h3 {
  font-size: 1.5rem;
  line-height: 2rem;
}

.quality-commitment .feature p {
  font-size: 1rem;
  line-height: 1;
}

.quality-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.quality-image-card {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: 22rem;
  overflow: hidden;
  border-radius: 16px;
}

.quality-image-card img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

.quality-image-card:hover img {
  transform: scale(1.05);
}

.quality-image-card .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, hsl(0 0 13%), transparent);
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 0;
}

.quality-image-card .caption p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 0;
  color: white;
}

.cta button {
  background: none;
  border: 2px solid #4ecca3;
  padding: 16px 32px;
  color: #4ecca3;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.cta button:hover {
  background: #4ecca3;
  color: #fff;
}

/* Supply Chain */
.supply-chain {
  padding: 80px 20px;
  background: #202020;
  color: #fff;
}

.supply-chain .container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  text-align: center;
}

.supply-chain-title {
  text-align: center;
  margin-bottom: 4rem;
}

.supply-chain .primary {
  color: #4ecca3;
}

.supply-chain p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  color: #ccc;
}
/* Base (Mobile First) */
.chain-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0;
}

.circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #4ecca3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background-color: hsl(var(--supplychain-primary) / 0.2);
  color: hsl(var(--primary));
  transition: all 0.3s ease;
  cursor: default;
}

.circle:hover {
  background: #4ecca3;
  color: #fff;
  transform: scale(1.1);
}

.circle svg {
  width: 2rem;
  height: 2rem;
}

.line {
  width: 4px;
  height: 40px;
  background: rgba(78, 204, 163, 0.4);
  margin: 5px 0;
}

/* Tablet and Above */
@media (min-width: 768px) {
  .chain-flow {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .step {
    margin: 0 10px;
  }

  .line {
    flex: 1;
    height: 4px;
    width: auto;
    background: rgba(78, 204, 163, 0.4);
    margin: 0 5px;
    align-self: center;
    margin-bottom: 60px;
  }
}

/* Home Page Gallery Section (Start) */
.gallery-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.gallery-header {
  margin-bottom: 4rem;
}

.gallery-header p {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 300;
}

/* Mobile-first grid: 2 cards per row */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: center;
}

.image-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  max-width: 300px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.image-card:hover img {
  transform: scale(1.05);
}

.caption {
  display: none;
}

/* Tablet (≥768px): 3 cards per row */
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop (≥1024px): 4 cards per row */
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .caption {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    padding: 10px 15px;
    font-weight: bold;
    text-align: left;
  }
}

/* Home Page Gallery Section (End) */

/* ========================== PRODUCTS Page ========================== */

/* ==========================
   PRODUCTS INTRO SECTION
   ========================== */

.products-intro {
  background-color: var(--background);
}

.products-intro .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .products-intro .section-title {
    font-size: 3rem;
  }
}

.products-intro .section-description {
  font-size: 1.125rem;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.625;
}

.products-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card styles */
.card {
  background: white;
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.card-content {
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.card-content .icon-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.bg-primary-light {
  background-color: hsl(var(--primary-hue), 80%, 92%);
  color: hsl(var(--primary-hue), 70%, 40%);
}

.card-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  margin: 0 0 0.5rem 0;
}

.card-text {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  margin-bottom: 1rem;
}

/* ==========================
   PRODUCT CATEGORIES SECTION
   ========================== */
.product-categories {
  background-color: hsl(var(--section-bg));
  color: white;
}

.product-categories .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.category-block {
  margin-bottom: 5rem;
}

.category-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.category-desc {
  font-size: 1.125rem;
  color: hsl(0 0% 80%);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Table styling */
.table-container {
  background: white;
  border-radius: 0.75rem;
  overflow-x: auto;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
  color: hsl(210, 30%, 10%);
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.product-table th,
.product-table td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

.product-table th {
  font-weight: 700;
  background: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 20%);
}

.product-table tr:hover td {
  background: hsl(210, 100%, 97%);
}

/* Buttons */
/* .btn {
  display: inline-block;
  background: hsl(220, 80%, 45%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background: hsl(220, 90%, 40%);
} */

/* ==========================
   PACKAGING & LOGISTICS SECTION
   ========================== */

.packaging-logistics .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
  line-height: 1.2;
}

.packaging-logistics .section-description {
  max-width: 56rem;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground)) !important;
  line-height: 1.75;
}

.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.feature {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px hsl(160 73% 60% / 0.25);
} */

.feature .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature .icon svg {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
}

.feature h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.feature p {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
}

.quality-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .quality-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

.quality-image-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px hsl(160 73% 60% / 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.quality-image-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px hsl(160 73% 60% / 0.2);
}

.quality-image-card img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
}

/* ==========================
   Product Certifications Section
   ========================== */

.product-certifications h2 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.product-certifications p {
  color: hsl(210, 14%, 70%);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75rem;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cert-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cert-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px hsl(160 73% 60% / 0.1);
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.cert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: hsl(160 73% 60% / 0.1);
  margin-bottom: 1rem;
}

.cert-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.cert-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.cert-card p {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ========================== About Page ========================== */

/* ==========================
   Who We Are Section
   ========================== */

.who-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.who-title {
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.who-desc {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight {
  color: hsl(var(--primary));
  font-weight: 600;
}

.quote-box {
  background-color: hsl(var(--primary) / 0.1);
  border-left: 4px solid hsl(var(--primary));
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-text {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.who-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

/* ================
   Animation Delay Utilities
   ================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}

/* ==========================
   Mission & Vision Section
   ========================== */

.mission-vision {
  background-color: hsl(var(--section-bg));
}

.mission-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mission-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.icon-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: hsl(var(--primary) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.icon-circle svg {
  width: 1.75rem;
  height: 1.75rem;
  color: hsl(var(--primary));
}

.mission-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 0;
}

.mission-text {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin: 0;
}

/* ================
   Fade-in Animation
   ================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

/* ---------- Our Values Section ---------- */

.values-section {
  background: white;
}

.values-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.values-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px hsla(150, 2%, 19%, 0.1);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(var(--accent) / 0.1);
}

.value-icon svg {
  color: hsl(var(--primary));
  width: 2.5rem;
  height: 2.5rem;
}

.value-card .icon {
  width: 2.5rem;
  height: 2.5rem;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 0;
}

.value-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* ---------- Why Choose Us Section ---------- */

.why-choose-section {
  background: hsl(var(--section-bg));
}

.why-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.why-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px hsl(160 73% 60% / 0.1);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(40px);
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  background-color: hsl(160, 54%, 65%, 0.1);
}

.why-icon svg {
  color: hsl(var(--primary));
  width: 1.75rem;
  height: 1.75rem;
}

.why-card:hover .why-icon {
  background-color: hsl(var(--primary));
  transform: scale(1.1);
  color: #fff;
}

.why-card:hover .why-icon svg {
  color: #fff;
}

.why-card:hover .why-icon .icon {
  color: white;
}

.bg-accent-light {
  background-color: hsl(160, 54%, 65%, 0.1);
}

.why-card .icon {
  width: 1.75rem;
  height: 1.75rem;
}

.why-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.why-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/**** Contact Page Started ****/

/* ---------- Contact Section ---------- */
.contact-section {
  background-color: white;
}

.contact-grid {
  gap: 3rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: hsl(0, 0%, 100%);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 20px hsla(120, 1%, 32%, 0.1);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background-color: hsla(160, 73%, 60%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon img {
  width: 28px;
  height: 28px;
  filter: invert(47%) sepia(93%) saturate(366%) hue-rotate(104deg)
    brightness(96%) contrast(94%);
}

.contact-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
  color: hsl(var(--foreground));
}

.contact-card p {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.contact-link {
  color: hsl(var(--primary));
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-link:hover {
  text-decoration: underline;
}

.small-text {
  font-size: 0.9rem;
  margin-top: 0.3rem;
  color: hsl(var(--muted-foreground));
}

.social-section h3 {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background-color: hsla(160, 73%, 60%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn svg {
  color: hsl(var(--primary));
}

.social-btn svg:hover {
  color: #fff;
  transform: scale(1.05);
}

.map-container {
  width: 100%;
  height: 500px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}


