:root {
  --bg: #f9faf9;
  --paper: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --accent: #2d7d57;       /* Deep, natural green */
  --accent-dark: #1e5b3e;  /* Button hover contrast */
  --accent-light: #e3f3ea; /* Soft green-gray background tone */
  --line: #dfe4e3;
  --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

body {
  margin:0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg);
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.header-land {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000; /* Ensure above hero overlay */
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.header-land.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(10px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.brand-land {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .brand-logo {
    height: 40px;
  }
}


.nav-land a {
  margin-left: 24px; text-decoration: none; color: var(--text);
}
.btn {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.3rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-alt {
  background: transparent; border: 2px solid var(--accent);
  color: var(--accent);
}

/* Hero */
.hero-land {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex; align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-land .overlay {
  background: linear-gradient(
    rgba(0, 0, 0, 0.65) 10%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.25) 75%
  );
}

.hero-content-land {
  position: relative; z-index:1;
  color: #fff;
  max-width: 700px;
}
.hero-content-land h1 {
  font-size: 2.8rem; margin-bottom: 12px;
}
.hero-content-land p {
  font-size: 1.125rem; margin-bottom: 20px;
}

.hero-ctas a {
  margin-right: 12px;
}

/* Icon features */
.icon-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 24px;
  text-align: center;
}
.icon-features .feature img {
  width: 48px; margin-bottom: 12px;
}

/* Stats bar */
.stats-bar {
  background: var(--paper);
}
.stats-inner {
  display: flex; flex-wrap: wrap; justify-content: space-around;
  gap: 24px; padding: 12px 0;
}
.stat {
  flex: 1 1 200px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 20px;
}
.proj-card {
  overflow: hidden; border-radius: 12px;
  box-shadow: var(--shadow); background: var(--paper);
  display: flex; flex-direction: column;
}
.proj-card img {
  width: 100%; height: auto;
}
.proj-card h3 {
  padding: 16px;
  margin: 0;
  flex: 1;
}

/* Testimonials slider */
.slider {
  position: relative;
  overflow: hidden;
}
.slide {
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease;
  position: absolute; top:0; left:0; width:100%;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
}
.slider-controls {
  margin-top: 24px;
  text-align: center;
}
.slider-controls button {
  background: none;
  border: none;
  font-size: 1.6rem;
  margin: 0 12px;
  cursor: pointer;
  color: var(--accent);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 24px;
}
.svc {
  background: var(--paper);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Process steps */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 24px;
}
.proc-step {
  text-align: center;
}

/* Contact */
.form {
  max-width: 500px;
  margin: auto;
  display: grid;
  gap: 16px;
}
label span {
  display: block;
  margin-bottom: 6px;
  font-size: .9rem;
  color: var(--muted);
}
input, textarea {
  width: 95%; padding:12px;
  border:1px solid var(--line); border-radius:8px;
  font: inherit;
}
button.btn {
  width: auto;
}

/* Footer */
.footer-land {
  background: var(--accent-dark);
  color: #e2e8f0;
  text-align: center;
  padding: 48px 0 32px;
}
.footer-land p {
  color: #cbd5e1;
  font-size: 0.95rem;
}
.footer-land a {
  color: #f1f5f9;
  font-weight: 500;
}

.footer-land a:hover {
  text-decoration: underline;
}


/* Responsive tweaks */
@media (max-width: 900px) {
  .hero-content-land h1 {
    font-size: 2.2rem;
  }
  .hero-content-land p {
    font-size: 1rem;
  }
}

/* Darken hero overlay a bit for better text pop */
.hero-land .overlay {
  background: rgba(0, 0, 0, 0.55);
}

/* On hover icon blocks: subtle lift */
.icon-features .feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Slide fade transitions instead of horizontal slide */
.slide {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

/* Add padding around CTA buttons in sections */
.section .btn {
  margin-top: 16px;
}

/* Ensure consistent vertical rhythm across all sections */
section {
  padding: 100px 0 80px;
}
.section:nth-of-type(even) {
  background: #f6f8f6;
}




.section p {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  color: #475569;
}

/* Add equal padding to cards / grids */
.card, .proj-card, .svc {
  padding: 24px;
}

.hero-content-land h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #ffffff;
}

h1, h2, h3 {
  color: #1e293b;
  letter-spacing: -0.2px;
}
h2 {
  margin-bottom: 20px;
}
p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  max-width: 720px;
}

.section:nth-of-type(even) {
  background: #f1f5f3;
}

.proj-card, .svc, .feature {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.proj-card:hover, .svc:hover, .feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-land {
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-land .overlay {
  background: linear-gradient(
    rgba(0, 0, 0, 0.6) 20%,
    rgba(0, 0, 0, 0.3) 80%
  );
}
.hero-content-land h1 {
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-content-land p {
  color: #f1f5f9;
}


.hero-land::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


section:nth-of-type(even) {
  background: #f5f7f5; /* Slightly lighter green tint */
}
.card, .proj-card, .svc {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

#testimonials {
  background: var(--accent-light);
  text-align: center;
  position: relative;
}

.slide blockquote {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px 28px;
  font-style: italic;
  color: #334155;
  max-width: 640px;
  margin: auto;
}

.slide blockquote::before {
  content: "“";
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
}

.slide footer {
  font-weight: 600;
  margin-top: 16px;
  color: var(--accent-dark);
}

.proj-card:hover, .svc:hover, .feature:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

