/* BASE */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #F5F5F0, #ffffff);
  color: #1A1A1A;
}

html {
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(15, 61, 30, 0.9);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  z-index: 100;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left img {
  height: 34px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-size: 14px;
}

/* MOBILE NAV */
/* MOBILE NAVBAR FIX (INLINE, NOT STACKED) */
@media (max-width: 600px) {
  .navbar {
    flex-direction: row;          /* keep in one line */
    align-items: center;
    justify-content: space-between;
  }

  .nav-left strong {
    font-size: 14px;              /* shrink text */
  }

  .nav-left img {
    height: 28px;                 /* smaller logo */
  }

  .nav-links {
    display: flex;
    gap: 10px;
  }

  .nav-links a {
    margin: 0;
    font-size: 13px;              /* smaller links */
  }
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 15px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 50px 15px 20px;
}

.hero h1 {
  font-size: clamp(28px, 6vw, 48px);
  background: linear-gradient(90deg, #1B5E20, #2E7D32);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  color: #6B7280;
}

/* BUTTON */
.button {
  display: inline-block;
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
  color: white;
  padding: 14px 25px;
  border-radius: 12px;
  margin-top: 20px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* HEADINGS */
h2 {
  text-align: center;
  margin-top: 40px;
}

/* GRID (DESKTOP) */
.desktop-grid {
  display: grid;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

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

.card img {
  width: 100%;
}

/* MOBILE SLIDER */
/* MOBILE SLIDER */
.mobile-slider {
  display: none;
}

/* SLIDER CONTAINER */
.slider {
  overflow: hidden;
  max-width: 320px;
  margin: 20px auto 0;
  border-radius: 20px;
  background: #fff;
}

.slides {
  display: flex;
  width: 500%;                 /* 5 slides total */
  animation: slide 10s infinite linear;
}

.slides img {
  width: 100%;                  /* each slide = 1/5 of track */
  flex: 0 0 20%;
  height: 500px;
  object-fit: contain;
  background: #fff;
  display: block;
}

@keyframes slide {
  0%, 20%   { transform: translateX(0); }
  25%, 45%  { transform: translateX(-20%); }
  50%, 70%  { transform: translateX(-40%); }
  75%, 95%  { transform: translateX(-60%); }
  100%      { transform: translateX(-80%); }
}
/* MOBILE SWITCH */
@media (max-width: 768px) {
  .desktop-grid {
    display: none;
  }

  .mobile-slider {
    display: block;
  }
}

/* STEPS */
.steps {
  margin-top: 50px;
  text-align: center;
}

.steps-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.step-item {
  max-width: 140px;
}

.circle {
  width: 50px;
  height: 50px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.line {
  width: 40px;
  height: 2px;
  background: #C8E6C9;
}

@media (max-width: 768px) {
  .steps-flow {
    flex-direction: column;
  }

  .line {
    width: 2px;
    height: 25px;
  }
}

/* CTA */
.cta {
  margin: 50px 0;
  padding: 30px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  color: white;
}

/* FOOTER */
.footer {
  padding: 30px;
  text-align: center;
  background: #0F3D1E;
  color: white;
}

.footer a {
  color: #C8E6C9;
  margin: 0 10px;
  text-decoration: none;
}
