* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9fafb;
  color: #222;
  line-height: 1.6;
}

a {
  color: #2e7d32;
  text-decoration: none;
}

.navbar {
  background: #2e7d32;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.navbar nav a {
  margin-left: 1rem;
  color: #fff;
  font-weight: 500;
}

.logo {
  color: white;
}

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://images.pexels.com/photos/5063779/pexels-photo-5063779.jpeg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  background: #43a047;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #2e7d32;
}

.section {
  padding: 4rem 1rem;
  max-width: 1100px;
  margin: auto;
}

.section-alt {
  padding: 4rem 1rem;
  background: #e8f5e9;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2e7d32;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}

.step {
  margin: 1rem;
}

.step span {
  display: inline-block;
  background: #2e7d32;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: auto;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #81c784;
  padding-left: 1rem;
  color: #444;
}

footer {
  background: #2e7d32;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 0rem;
}

.contact-section {
  background: #4caf50;
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.form-subtitle {
  font-size: 1.1rem;
  margin: 1rem 0 2rem;
  line-height: 1.5;
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input {
  flex: 1;
}

.request-form input,
.request-form textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  width: 100%;
  font-family: inherit;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #666;
}

.request-form textarea {
  resize: vertical;
}

.dark-btn {
  background: #2e7d32;
  color: white;
  font-weight: bold;
  padding: 0.8rem;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}

.dark-btn:hover {
  background: #1b5e20;
}

/* ======= MOBILE NAV STYLING ======= */

/* Menu toggle button - hidden on large screens */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Nav links default layout */
.nav-links {
  display: flex;
  gap: 1rem;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #2e7d32;
    position: absolute;
    top: 60px;
    right: 5%;
    width: 90%;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  .nav-links a {
    color: white;
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }

  .nav-links.show {
    display: flex;
  }
}

html {
  scroll-padding-top: 80px;
  /* adjust based on navbar height */
  scroll-behavior: smooth;
}

/* Ensure smooth scrolling */

.request-form {
  margin-bottom: 3rem;
  /* Adds space between the form and the contact info */
}

.contact-info h3 {
  color: #2e7d32;
  /* Matches email and phone */
  font-weight: normal;
  /* Optional: makes it feel more unified */
}

.contact-info {
  font-size: 1.1rem;
  /* You can increase to 1.3rem or 1.4rem if you want it bigger */
}