:root {
  --green: #2E7D32;
  --dark: #1E1E1E;
  --light: #F5F5F5;
  --white: white;
  --muted: #8a8a8a;
  --shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

* {
  -webkit-tap-highlight-color: transparent;
  /* Mobile highlight */
  outline: none;
  /* Removes blue outline on click/focus */
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;

}

html {
  scroll-behavior: smooth
}

body {
  font-family: "Poppins", "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  overflow: hidden;
}

/* Modern Navbar */
.modern-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.modern-navbar.scrolled {
  border-color: rgba(0, 0, 0, 0.12);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  transition: all 0.3s ease;
}

.navbar-logo-img {
  width: 170px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-links {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-link {
  padding: 10px 18px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--green);
  background: rgba(46, 125, 50, 0.1);
}

.navbar-cta {
  padding: 12px 24px;
  background: var(--green);
  color: #fff !important;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-left: 16px;
}

.navbar-cta:hover {
  background: #1f5d21;
  transform: translateY(-2px);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.navbar-toggle span {
  width: 28px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .navbar-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .navbar-links.active {
    transform: translateX(0);
  }

  .navbar-link {
    width: 100%;
    padding: 16px;
    text-align: center;
  }

  .navbar-cta {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }

  .navbar-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1200px, 95%);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 20px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(25px) saturate(2);
  -webkit-backdrop-filter: blur(25px) saturate(2);

}

.site-header.scrolled:hover {
  background: rgba(255, 255, 255, .25);
  border-color: rgba(255, 255, 255, .4);

}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;




}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand {
  width: 270px;
  height: 40px;
  align-items: center;
}

.logo img {

  width: 250px;
  height: 100px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1);
}

.logo span {
  color: var(--dark);
  transition: color 0.3s ease;
}

.logo:hover span {
  color: var(--green);
}

.main-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0
}

.main-nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: block;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(46, 125, 50, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.main-nav a:hover {
  color: var(--green);
  transform: translateY(-1px);
}

.main-nav a:hover::before {
  opacity: 1;
}

.main-nav a:hover::after {
  width: 80%;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.25rem;
  color: var(--dark)
}

/* Bento Hero Section */
.bento-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(46, 125, 50, .02), rgba(30, 30, 30, .01));
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 24px;
  margin-bottom: 48px;
}

.bento-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;

}

.bento-card:hover {
  transform: translateY(-8px);

}

/* Bento Card Variants */
.bento-main {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-stats {
  grid-column: span 1;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}

.bento-services {
  grid-column: span 2;
}

.bento-product {
  grid-column: span 2;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-quality {
  grid-column: span 1;
  grid-row: span 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bento-why {
  grid-column: span 3;
  grid-row: span 1;
}

/* Bento Background Image */
.bento-bg {
  position: relative;
  background: var(--dark);
}

.bento-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  transition: all 0.5s ease;
}

.bento-card:hover .bento-bg-image {
  opacity: 0.8;
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(46, 125, 50, 0.4));
  z-index: 1;
}

.bento-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.bento-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.2;
}

.bento-title-small {
  font-size: 1.5rem;
  margin: 0 0 12px;
  font-weight: 700;
}

.bento-description {
  font-size: 1.1rem;
  margin: 0 0 32px;
  opacity: 0.95;
  line-height: 1.6;
}

.bento-description-small {
  font-size: 0.95rem;
  margin: 0 0 20px;
  opacity: 0.9;
}

.bento-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bento-btn {
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.bento-btn.btn-primary {
  background: var(--green);
  color: #fff;
}

.bento-btn.btn-primary:hover {
  background: #1f5d21;
  transform: translateY(-2px);

}

.bento-btn.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.bento-btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.bento-btn.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.bento-btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Bento Stats */
.bento-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--green);
  font-size: 1.5rem;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Bento Services */
.bento-services-header h3 {
  margin: 0 0 20px;
  font-size: 1.5rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.bento-services-header i {
  color: var(--green);
  font-size: 1.3rem;
}

.bento-services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bento-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.bento-service-item:hover {
  background: rgba(46, 125, 50, 0.05);
  border-color: rgba(46, 125, 50, 0.2);
  transform: translateX(8px);
}

.bento-service-item i:first-child {
  width: 20px;
  color: var(--green);
}

.bento-service-item span {
  flex: 1;
}

.bento-service-item i:last-child {
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--green);
}

.bento-service-item:hover i:last-child {
  opacity: 1;
}

/* Bento Quality */
.bento-quality-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.1);
  color: var(--green);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.bento-quality h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  color: var(--dark);
}

.bento-quality p {
  margin: 0 0 24px;
  color: var(--muted);
}

.bento-quality-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.quality-badge {
  padding: 6px 14px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--green);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(46, 125, 50, 0.2);
}

/* Bento Why Choose Us */
.bento-why {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-why-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.bento-why-header i {
  font-size: 2rem;
  color: var(--green);
}

.bento-why-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--dark);
}

.bento-why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(46, 125, 50, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.why-feature:hover {
  background: rgba(46, 125, 50, 0.1);
  transform: translateX(4px);
}

.why-feature i {
  color: var(--green);
  font-size: 1.2rem;
}

.why-feature span {
  color: var(--dark);
  font-weight: 500;
}

.bento-btn.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.bento-btn.btn-outline-dark:hover {
  background: var(--green);
  color: #fff;
}

/* Bento Scroll Indicator */
.bento-scroll-indicator {
  text-align: center;
  margin-top: 32px;
}

.bento-scroll-indicator i {
  font-size: 1.5rem;
  color: var(--green);
  animation: bounce 2s infinite;
  cursor: pointer;
}

/* Responsive Bento Grid */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-main {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bento-stats {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    flex-direction: row;
    gap: 16px;
  }

  .bento-stats .bento-stat {
    flex: 1;
  }

  .bento-product {
    grid-column: span 2;
  }

  .bento-quality,
  .bento-why {
    grid-column: span 2;
  }

  .navbar-cta {
    display: none;
  }
}

@media (max-width: 680px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-main,
  .bento-stats,
  .bento-services,
  .bento-product,
  .bento-quality,
  .bento-why {
    grid-column: span 1;
  }

  .bento-stats {
    flex-direction: column;
  }

  .bento-actions {
    flex-direction: column;
  }

  .bento-btn {
    width: 100%;
    justify-content: center;
  }

  .bento-why-features {
    grid-template-columns: 1fr;
  }

  .navbar-cta {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  height: 120vh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.3);
}

.slide-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 12px;
  color: #fff;
}

.slide-content p {
  margin: 0 0 24px;
  color: #e9f5ec;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--green);
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, .55), rgba(20, 20, 20, .55));
  background: linear-gradient(180deg, rgba(30, 30, 30, .55), rgba(30, 30, 30, .55)),
    radial-gradient(1200px 400px at 50% 100%, rgba(46, 125, 50, .45), transparent);
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  width: 100%;
}

.hero-text {
  margin-bottom: 30px;
}

.hero h1 {

  /* background-image: url('https://plus.unsplash.com/premium_photo-1742236568135-8894ba29353e?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=2855');
 
  
  background-size: cover;
  background-position: bottom;
  color: transparent;
  background-clip:text; */

  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 12px;

}

.hero p {

  margin: 0 0 24px;
  color: #e9f5ec;

  /* background-image: url('https://plus.unsplash.com/premium_photo-1742236568135-8894ba29353e?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=2855');
  background-size: cover;
  background-position: bottom;
  color: transparent;
  background-clip:text; */
}

.cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stat {
  text-align: center;
  color: #fff;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(4px);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  50% {
    transform: translateY(10px) translateX(-50%);
  }
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;

}

.feature-box:hover {
  transform: translateY(-8px);

  border-color: var(--green);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(46, 125, 50, .1);
  color: var(--green);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  background: var(--green);
  color: #fff;
  transform: scale(1.1);
}

.feature-box h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: var(--dark);
}

.feature-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    gap: 32px;
  }

  .hero-stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 680px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-number {
    font-size: 1.75rem;
  }

  .scroll-indicator {
    bottom: 30px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: .2s ease;


}

.btn-primary {
  background: var(--green);
  color: #fff
}

.btn-primary:hover {
  filter: brightness(.95);
  transform: translateY(-1px)
}

.btn-secondary {
  background: white;
  color: var(--green);
  /* background: #ffffff1a;
  color: #fff;
  border-color: #ffffff33 */
  border-color: var(--green)
}

.btn-secondary:hover {
  background: #ffffff33;
  transform: translateY(-1px)
}

/* Sections */
.section {
  padding: 64px 0
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 0 16px
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center
}

.about .highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px
}

.about-media {
  perspective: 400px;

}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light);
  border-radius: 12px;
  padding: 10px 12px
}

.highlight i {
  color: var(--green)
}

.about-media img {
  transition: all ease 0.6s;
  border-radius: 28px;
  /* box-shadow: var(--shadow) */
}

.about-media img:hover {
  transform: rotatey(6deg);
}

/* Solutions */
.solutions .cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;


}

.card:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1627807452369-a2cd0b5ca56f?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8bWFjaGluZXN8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&q=60&w=900');
  background-position: center;
  background-size: cover;
}

.card {
  display: block;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  text-decoration: none;
  color: white;

  /* box-shadow: var(--shadow); */
  transition: all ease .4s
}


.card:hover {
  transform: translateY(-2px)
}

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(46, 125, 50, .1);
  color: var(--green);
  margin-bottom: 10px
}

/* Machineries */
.machineries .section-head {
  text-align: center
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 22px;
  flex-wrap: wrap
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.chip {
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  transition: .2s
}

.chip:hover {
  border-color: var(--green);
  color: var(--green)
}

.chip.is-active {
  background: var(--green);
  color: #fff;
  border-color: var(--green)
}

.search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border-radius: 999px;
  padding: 8px 12px
}

.search input {
  border: 0;
  outline: 0;
  background: transparent;
  min-width: 220px
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px
}

.machine-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* box-shadow: var(--shadow); */
  transition: all ease-out 1.4s
}

.machine-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: all ease .8s;


}

.machine-card img:hover {
  transform: scale(1.1);

}

.machine-card .content {
  padding: 14px 14px 18px
}

.machine-card h4 {
  margin: 0 0 6px;
  font-size: 1.05rem
}

.machine-card p {
  margin: 0 0 12px;
  color: #555
}

.machine-card .tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px
}

.tag {
  font-size: .8rem;
  background: var(--light);
  padding: 4px 8px;
  border-radius: 999px;
  color: #555
}

.machine-card .actions {
  margin-top: auto;
  padding: 0 14px 14px
}

.machine-card .btn {
  width: 100%;
  justify-content: center
}

.empty {
  display: grid;
  place-items: center;
  color: var(--muted)
}

.empty.hidden {
  display: none
}

/* Services */
.icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px
}

.icon-list i {
  color: var(--green)
}

.services-media img {
  border-radius: 14px;
  box-shadow: var(--shadow)
}

/* Industries */
.industries .chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

/* Why / Stats */
*/
/* .why {
  /* background: var(--light);
   */

/* } */

#why_sec {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px
}

.stat {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  /* box-shadow: var(--shadow) */
}

.stat .number {
  font-size: 2rem;
  color: var(--green);
  font-weight: 700
}

.logos {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px
}

.testimonial {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  /* box-shadow: var(--shadow) */
}

.testimonial footer {
  color: #666;
  margin-top: 8px
}

/* Contact */
.contact-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px
}

.contact-list a {
  color: var(--dark);
  text-decoration: none
}

.contact-form {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 16px;
  /* box-shadow: var(--shadow) */
}

.form-row {
  display: grid;
  gap: 6px;
  margin-bottom: 10px
}

.form-row input,
.form-row textarea {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px;
  font: inherit
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(46, 125, 50, .35);
  border-color: var(--green)
}

.form-actions {
  margin-top: 6px
}

.map-wrap {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  /* box-shadow: var(--shadow) */
}

/* Modern Footer */
.modern-footer {
  background: #0f0f0f;
  color: #ddd;
  margin-top: 80px;
}

.footer-top {
  padding: 60px 0 40px;
}

.modern-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand {
  max-width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
}

.footer-brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.footer-tagline {
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-about {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.social-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-4px);

}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu a {
  color: #aaa;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: var(--green);
  transform: translateX(8px);
}

.footer-menu a i {
  font-size: 0.7rem;
  color: var(--green);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.footer-contact i {
  width: 24px;
  color: var(--green);
  font-size: 1.2rem;
  margin-top: 4px;
}

.footer-contact div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.footer-contact a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--green);
}

.footer-contact span {
  color: #aaa;
  font-size: 0.95rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  display: block;
  max-width: 100%;
}

.footer-brand-name {
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.footer-about {
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-content p {
  margin: 0;
  color: #aaa;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--green);
}

.developer-credit {
  flex: 1;
  text-align: right;
}

.developer-credit strong {
  color: var(--green);
}

@media (max-width: 992px) {
  .modern-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .developer-credit {
    text-align: center;
    margin-top: 12px;
  }

  .footer-contact div {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .footer-contact span {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 768px) {
  .modern-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-column {
    margin-bottom: 24px;
  }

  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .footer-menu {
    gap: 10px;
  }

  .footer-menu a {
    font-size: 0.9rem;
  }

  .footer-contact {
    gap: 16px;
  }

  .footer-contact li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-contact i {
    margin-top: 0;
  }

  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }

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

@media (max-width: 680px) {
  .modern-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .footer-bottom-links a {
    display: block;
    padding: 8px 0;
  }

  .footer-brand-name {
    font-size: 1.1rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .footer-tagline {
    font-size: 0.85rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .footer-about {
    font-size: 0.85rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .footer-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .footer-menu a {
    font-size: 0.85rem;
  }

  .footer-contact a,
  .footer-contact span {
    font-size: 0.85rem;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .social-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .modern-footer {
    padding: 40px 0 20px;
  }

  .modern-footer .footer-grid {
    gap: 24px;
  }

  .footer-brand-name {
    font-size: 1rem;
  }

  .footer-tagline {
    font-size: 0.8rem;
  }

  .footer-about {
    font-size: 0.8rem;
  }

  .footer-title {
    font-size: 0.95rem;
  }

  .footer-menu a {
    font-size: 0.8rem;
  }

  .footer-contact a,
  .footer-contact span {
    font-size: 0.8rem;
  }

  .social-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom-content {
    font-size: 0.85rem;
  }
}

/* Footer */
.site-footer {
  background: #0f0f0f;
  color: #ddd;
  padding: 28px 0 10px;
  margin-top: 28px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px
}

.site-footer .logo {
  color: #fff
}

.site-footer .logo img {
  background: #fff
}

.site-footer .tagline {
  color: #aaa;
  margin-top: 4px
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px
}

.footer-links a {
  color: #ddd;
  text-decoration: none
}

.footer-links a:hover {
  color: #fff
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #222;
  margin-top: 16px;
  padding-top: 10px;
  color: #aaa
}

.socials a {
  color: #ddd;
  margin-right: 10px
}

.socials a:hover {
  color: #fff
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  display: grid;
  place-items: center;
  padding: 16px;
  z-index: 2000;
  /* Higher than navbar */
}

@media (max-width: 768px) {
  .modal-content {
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Prevent body scroll, handle internal scroll */
  }

  .modal-body {
    overflow-y: auto;
    /* Allow scrolling within body */
    max-height: calc(90vh - 50px);
    /* Adjust for close button/padding */
    display: block;
    /* Stack columns on mobile */
  }

  .modal-info {
    margin-top: 16px;
  }

  #modalDesc,
  #newsModalContent {
    max-height: 30vh;
    /* Limit description height */
    overflow-y: auto;
    /* Scrollable description */
    padding-right: 5px;
    margin-bottom: 16px;
  }

  .modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    /* Ensure above content */
    background: #fff;
    /* Ensure visibility */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}


.modal.hidden {
  display: none
}

.modal-content {
  background: #fff;
  border-radius: 14px;
  max-width: 900px;
  width: 100%;

  position: relative
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: #fff;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;

  cursor: pointer
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px
}

.modal-info h3 {
  margin: 0 0 8px
}

.specs {
  list-style: disc;
  padding-left: 18px;
  max-height: 260px;
  overflow: auto
}

/* Utilities */
.hidden {
  display: none !important
}

/* Responsive */
@media (max-width: 992px) {
  .site-header {
    width: min(1200px, 98%);
    top: 15px;
  }

  .logo {
    font-size: 1.3rem;

  }

  .brand {
    position: relative;
    left: -29px;
    width: 240px;
    height: 50px;
  }

  .logo img {
    width: 248px;
    height: 92px;
  }

  .main-nav ul {
    gap: 16px;
  }

  .main-nav a {
    padding: 6px 12px;
    font-size: 0.95rem;
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

  .solutions .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .testimonial-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 680px) {
  .site-header {
    width: 95%;
    top: 10px;
    padding: 8px 16px;
  }

  .logo {
    font-size: 1.2rem;

  }

  .brand {
    position: relative;
    left: -49px;
    width: 250px;
    height: 40px;
  }

  .logo img {
    width: 250px;
    height: 98px;
  }

  .nav {
    min-height: 56px;
  }

  .main-nav {
    position: fixed;
    top: 90px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    padding: 20px;

    z-index: 1000;

  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15), rgba(46, 125, 50, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
  }

  .main-nav a:hover {
    color: var(--green);
    transform: translateX(4px);
  }

  .main-nav a:hover::before {
    opacity: 1;
  }

  .nav-toggle {
    display: inline-flex;
    font-size: 1.4rem;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-toggle:hover {
    background: rgba(46, 125, 50, 0.1);
    color: var(--green);
  }

  .solutions .cards {
    grid-template-columns: 1fr
  }

  .grid {
    grid-template-columns: 1fr
  }

  .modal-body {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .search input {
    min-width: 140px
  }
}

/* Glassmorphism utilities */
.glass {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12)
}

.glass-light {
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(255, 255, 255, .8);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2)
}

/* Enhance header with stronger glass - styles moved to main .site-header */

/* Apply glass to common cards/panels */
.card {
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(8px)
}

.machine-card {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(8px)
}

.testimonial {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(8px)
}

.contact-form {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px)
}

.stat {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px)
}

.modal-content {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px)
}

/* CTA Band */
.cta-band {
  position: relative;
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, .08), rgba(30, 30, 30, .04))
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 16px;
  padding: 18px 20px
}

.cta-panel h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem)
}

.cta-panel p {
  margin: 6px 0 0;
  color: #2a2a2a
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

/* FAQ */
.faq {
  background: var(--light);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 {
  margin: 0 0 12px;
  font-size: 2.5rem;
}

.faq-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--green);

}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--green);
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--green);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(90deg);
}

.faq-question span {
  flex: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .faq-list {
    grid-template-columns: 1fr
  }
}

.partners {
  background: linear-gradient(135deg, rgba(46, 125, 50, .06), rgba(30, 30, 30, .03))
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: center
}

.partners-logos img {
  width: 100%;
  height: 48px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .8;
  transition: .2s
}

.partners-logos img:hover {
  filter: grayscale(0);
  opacity: 1
}

.gallery {
  background: #fff
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  cursor: zoom-in;
  /* box-shadow: var(--shadow) */
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  display: none;
  place-items: center;
  padding: 18px;
  z-index: 100
}

.lightbox.open {
  display: grid
}

.lightbox img {
  max-width: 96vw;
  max-height: 84vh;
  border-radius: 14px;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, .6) */
}

.lightbox .close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  border: 0;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer
}

/* Icon badges for lists */
.icon-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px
}

.icon-badges .badge {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(46, 125, 50, .08);
  border: 1px solid rgba(46, 125, 50, .18);
  border-radius: 12px;
  padding: 10px 12px
}

.icon-badges .badge i {
  color: var(--green)
}

@media (max-width: 992px) {
  .partners-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .icon-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width: 680px) {
  .gallery-grid {
    grid-template-columns: 1fr
  }

  .cta-panel {
    display: flex;
    flex-direction: column;
  }
}

/* Services Page Styles */
.page-header {
  background: linear-gradient(135deg, rgba(46, 125, 50, .1), rgba(30, 30, 30, .05));
  padding: 120px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 16px;
  color: var(--dark);
}

.page-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  margin: 0;
}

.services-overview {
  background: #fff;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
  height: 180px;
  /* Reduced height */
  overflow: hidden;
  position: relative;
}

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

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

.news-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.4;
  color: var(--dark);
}

.news-summary {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
  flex: 1;
  line-height: 1.6;
}

.news-btn {
  align-self: flex-start;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--green);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.news-btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

/* News Modal */
.news-modal-content {
  max-width: 800px;
  width: 90%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;

}

.service-card:hover {
  transform: translateY(-4px);

}

.service-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(46, 125, 50, .1);
  color: var(--green);
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  color: var(--dark);
}

.service-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.9rem;
}

.service-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: bold;
  font-size: 0.8rem;
}

.process-flow {
  background: var(--light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--green);
  opacity: 0.3;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--dark);
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Active nav link */
.main-nav a.active {
  color: var(--green);
  background: rgba(46, 125, 50, .1);
}

.main-nav a.active::after {
  width: 80%;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .service-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .page-header {
    padding: 100px 0 60px;
  }
}

/* Contact Page Styles */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-info-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;


}

#c1 {
  font-size: 0.9rem;
}

.contact-info-card:hover {
  transform: translateY(-4px);

}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(46, 125, 50, .1);
  color: var(--green);
  font-size: 2rem;
}



.contact-info-card h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  color: var(--dark);
}

.contact-info-card p {
  margin: 0 0 16px;
  color: var(--muted);
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}


.contact-link {
  display: block;
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  margin-top: 8px;
  transition: color 0.3s ease;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

#cbtn {
  border: 2px solid var(--green);
  background-color: white;
}

#cbtn:hover {
  background-color: var(--green);
  color: white;
}

.contact-link:hover {
  color: var(--dark);

}

.address-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 20px;
  margin-top: 16px;

}

.address-card h3 {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
}

.address-card h3 i {
  color: var(--green);
}

.address-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.hours-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;

}

.hours-card:hover {
  transform: translateY(-4px);

}

.hours-card i {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 16px;
}

.hours-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--dark);
}

.hours-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.social-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s ease;

}

.social-card:hover {
  transform: translateY(-4px);

  background: rgba(46, 125, 50, .05);
}

.social-card i {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 16px;
}

.social-card h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.social-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .contact-info-card {
    padding: 24px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .contact-info-card h3 {
    font-size: 1.2rem;
  }

  .contact-info-card p {
    font-size: 0.9rem;
  }

  .contact-link {
    font-size: 0.95rem;
    word-break: break-word;
  }

  #cbtn {
    padding: 12px 20px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  .hours-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-info-card {
    padding: 20px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .contact-info-card p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .contact-link {
    font-size: 0.9rem;
    padding: 4px 0;
    line-height: 1.4;
  }

  #c1 {
    font-size: 0.85rem;
    word-break: break-all;
  }

  #cbtn {
    padding: 10px 16px;
    font-size: 0.9rem;
    margin-top: 8px;
  }

  .hours-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .gg2 {
    grid-template-columns: 1fr;
    margin: auto;
  }
}

/* Contact Section Responsiveness - Both Pages */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px;
  }

  .contact-list {
    margin-bottom: 24px;
  }

  .contact-list li {
    padding: 12px 0;
    font-size: 0.95rem;
  }

  .contact-list a {
    word-break: break-word;
  }

  .map-wrap {
    margin-bottom: 24px;
    margin-top: 24px;
  }

  .map-wrap iframe {
    height: 350px;
  }

  .address-card {
    margin-top: 24px;
  }

  .form-actions button {
    width: 100%;
    justify-content: center;
  }

  /* Index page contact section */
  .contact h2 {
    font-size: 1.75rem;
  }

  .contact p {
    font-size: 0.95rem;
  }
}

@media (max-width: 680px) {
  .contact-form {
    padding: 24px;
  }

  .form-row input,
  .form-row textarea,
  .form-row select {
    font-size: 16px;
    /* Prevents zoom on iOS */
    padding: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  textarea {
    min-height: 120px;
    resize: vertical;
  }

  .map-wrap iframe {
    height: 300px;
  }

  h2 {
    font-size: 1.75rem;
  }

  .contact-form h2 {
    font-size: 1.5rem;
  }

  .contact-form p {
    font-size: 0.95rem;
  }

  .form-row {
    margin-bottom: 16px;
  }

  .form-actions {
    margin-top: 20px;
  }

  .form-actions button {
    padding: 14px 24px;
    width: 100%;
    font-size: 1rem;
  }

  /* Index page contact section mobile */
  .contact h2 {
    font-size: 1.5rem;
  }

  .contact p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .contact-list {
    gap: 10px;
    margin-bottom: 20px;
  }

  .contact-list li {
    padding: 10px 0;
    font-size: 0.9rem;
    align-items: flex-start;
  }

  .contact-list i {
    font-size: 1.1rem;
    margin-top: 2px;
  }

  .contact-list a {
    line-height: 1.5;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .contact-form {
    padding: 20px;
  }

  .contact-form h2 {
    font-size: 1.3rem;
  }

  .form-row label {
    font-size: 0.9rem;
  }

  .form-row input,
  .form-row textarea,
  .form-row select {
    padding: 12px;
    font-size: 16px;
  }

  textarea {
    min-height: 100px;
  }

  .map-wrap {
    border-radius: 12px;
    overflow: hidden;
  }

  .map-wrap iframe {
    height: 250px;
  }

  .address-card {
    padding: 16px;
  }

  .address-card h3 {
    font-size: 1.1rem;
  }

  .address-card p {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
  }

  /* Contact info cards extra small */
  .contact-info-card {
    padding: 18px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .contact-info-card h3 {
    font-size: 1rem;
  }

  .contact-info-card p {
    font-size: 0.8rem;
  }

  .contact-link {
    font-size: 0.85rem;
  }

  #c1 {
    font-size: 0.8rem;
  }

  #cbtn {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  /* Index page contact section extra small */
  .contact h2 {
    font-size: 1.3rem;
  }

  .contact p {
    font-size: 0.85rem;
  }

  .contact-list li {
    font-size: 0.85rem;
    padding: 8px 0;
  }

  .contact-list i {
    font-size: 1rem;
  }
}





/* Solutions Section Updates */
.solutions .card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  /* Remove default border if any */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  /* Ensure text is white */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solutions .card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  z-index: -1;
  transition: background 0.3s ease;
}

.solutions .card:hover::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
}

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

.solutions .card h3,
.solutions .card .card-icon i {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Specific Background Images */
.solutions .card[data-category="Waste"] {
  background-image: url('./images/waste_solution.png');
}

.solutions .card[data-category="Water"] {
  background-image: url('./images/water_solution.png');
}

.solutions .card[data-category="Air"] {
  background-image: url('./images/1.jpeg');
  /* Placeholder until generated */
}

.solutions .card[data-category="Recycling"] {
  background-image: url('./images/2.jpeg');
  /* Placeholder until generated */
}