/* Base Styles */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #F5F5DC;
  color: #333;
  scroll-behavior: smooth;
}

body.lock-scroll {
  overflow: hidden;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}

button {
  background-color: #FFD700;
  color: #333;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e6c200;
}

/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  background: #1b5e20;
  z-index: 1000;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

/* Navigation */
.nav-desktop {
  display: flex;
  gap: 20px;
}

.nav-desktop a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-desktop a:hover {
  color: #ffd700;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.nav-overlay {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2e7d32;
  padding-top: 80px;
  align-items: center;
  gap: 30px;
  z-index: 9999;
}

.nav-overlay.active {
  display: flex;
}

.nav-overlay a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-overlay.active {
    display: flex;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #1b5e20, #4caf50);
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero h1 {
  font-size: 2.8rem;
  background: linear-gradient(to right, #2E7D32, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideIn 0.6s ease-out;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-gradient {
  background: linear-gradient(to right, #ff9800, #ffc107);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.btn-gradient:hover {
  transform: scale(1.05);
}

.btn-outline {
  padding: 12px 24px;
  border: 2px solid #fff;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  animation: bounce 1.5s infinite;
}
@keyframes slideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Responsive Typography */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }


  .service-card {
    margin: 20px 10px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .scroll-indicator {
    font-size: 1.5rem;
  }
}



/* About Section */
.about-section {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.about-content h2 {
  font-size: 2.4rem;
  color: #2e7d32;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #444;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-highlights li {
  font-size: 1rem;
  margin: 10px 0;
  color: #333;
}

/* Why Us Section */
.why-us {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.why-us ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.why-us li {
  font-size: 1rem;
  margin: 10px 0;
  color: #2e7d32;
}

/* Services Section */
.services-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.section-heading {
  font-size: 2.4rem;
  color: #2e7d32;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #1b5e20;
}

.card p {
  font-size: 1rem;
  color: #555;
}

.section-subheading {
  font-size: 1.6rem;
  color: #2e7d32;
  margin: 60px 0 20px;
  text-align: center;
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

.services-cta .btn-gradient {
  background: linear-gradient(to right, #ff9800, #ffc107);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.services-cta .btn-gradient:hover {
  transform: scale(1.05);
}



/* Testimonials */
.testimonials {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
  font-size: 1rem;
  color: #333;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.6s ease-in-out;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #2e7d32;
}

/* Contact Section */
.contact-section {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background: linear-gradient(to right, #ff9800, #ffc107);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.05);
}

/* Founder’s Note */
.founder-note {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  font-style: italic;
  color: #444;
}

/* Footer */
/* Footer Container */
.site-footer {
  background: #1b5e20;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer Layout */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Branding Block */
.footer-brand {
  flex: 1 1 250px;
}

.footer-brand img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .footer-brand img {
    max-width: 120px;
    margin: 0 auto 10px;
    display: block;
  }
}

.footer-brand p {
  max-width: 250px;
  opacity: 0.8;
}

/* Footer Links */
.footer-links {
  flex: 1 1 200px;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffd700;
}

/* Contact Info */
.footer-contact {
  flex: 1 1 250px;
}

.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.footer-contact a {
  color: #fff;
  text-decoration: underline;
}

/* Footer Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  opacity: 0.8;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    max-width: 100%;
  }
}


/* Legal Page */

/* Legal Page Container */
.legal-page {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.7;
}

/* Headings */
.legal-page h1 {
  font-size: 2.2rem;
  color: #2e7d32;
  margin-bottom: 20px;
  text-align: center;
}

.legal-page h2 {
  font-size: 1.4rem;
  color: #1b5e20;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Paragraphs and Lists */
.legal-page p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-page li {
  margin-bottom: 8px;
}

/* Links */
.legal-page a {
  color: #2e7d32;
  text-decoration: underline;
}

.legal-page a:hover {
  color: #ff9800;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-page h1 {
    font-size: 1.8rem;
  }

  .legal-page h2 {
    font-size: 1.2rem;
  }

  .legal-page {
    padding: 0 15px;
  }
}

.back-home {
  text-align: center;
  margin: 40px 0;
}

.back-home a {
  display: inline-block;
  background: linear-gradient(to right, #ff9800, #ffc107);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.back-home a:hover {
  transform: scale(1.05);
}
html {
  scroll-behavior: smooth;
}