@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

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

body {
  font-family: "Playfair Display", "Georgia", "serif";
  color: #fff;
}

html{
  scroll-behavior: smooth;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}


/* HEADER */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  background: #f5f4ef;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #ddd;
}

/* NAV CONTAINER */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.logo h3 {
  font-size: 20px;
  color: #2f541c;
}
.logo p {
  font-size: 12px;
  color: #577557;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

/* DESKTOP MENU */
.desktop-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.desktop-menu a {
  text-decoration: none;
  color: #1d301d;
  font-weight: 500;
  font-size: 17px;
}

.desktop-menu a:hover {
  color: green;
}

/* PRIMARY BUTTON */
.btn-primary {
  padding: 8px 18px;
  background: green;
  color: white !important;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

/* MOBILE MENU BUTTON */
.menu-btn {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  display: none;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 30px;
  padding: 20px 0 12px;
}

.mobile-link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #444;
}

.mobile-btn {
  width: fit-content;
}

/* RESPONSIVE BEHAVIOUR */

/* Show mobile menu button */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  scroll-margin-top: 48px;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-farm.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 80, 0, 0.9),
    rgba(0, 80, 0, 0.7),
    rgba(0, 80, 0, 0.5)
  );
}

/* CONTENT */
.hero-content {
  display: flex;
  z-index: 5;
  padding: 40px 20px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  max-width: 1200px;

  text-align: left;

}

/* TAGLINE */
.tagline {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 25px;
}

/* TITLE */
.hero-title {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  color: #ffdd55;
}

/* DESCRIPTION */
.hero-description {
  font-size: clamp(16px, 2.5vw, 22px);
  max-width: 700px;
  margin: 0 auto 35px;
  opacity: 0.95;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 60px;
}

.btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

/* Accent Button */
.accent-btn {
  background: #ffdd55;
  color: #000;
}

/* Outline Button */
.outline-btn {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 40px;
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
  
}

.stat-box {
  text-align: left;
}

.stat-number {
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 700;
  color: #ffdd55;
}

.stat-label {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 8px;
}

/* RESPONSIVE BREAKPOINTS */

/* Tablets */
@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Services */

.services-section {
  padding: 80px 20px;
  background: #f5f4ef;
  scroll-margin-top: 25px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* ----- SECTION HEADER ----- */

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  background: #2f541c1a !important;
  color: #2f541c !important;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.section-subtitle {
  max-width: 600px;
  margin: auto;
  font-size: 17px;
  color: #555;
}

/* ----- SERVICES GRID ----- */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Medium screens */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large screens */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ----- SERVICE CARD ----- */

.service-card {
  padding: 30px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.12);
}

/* ICON BOX */
.icon-box {
  width: 60px;
  height: 60px;
  background: #2f541c1a !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.service-card:hover .icon-box {
  background: #276842 !important;
  color: white;
}

.service-card:hover .icon {
  stroke: #ffffff !important;
}

/* TEXT */
.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* About */

.about-section {
  padding: 80px 20px;
  background: #faf8f5;
  scroll-margin-top: 25px;
}

.container {
  max-width: 1300px;
  margin: auto;
}

.about-grid {
  display: grid;
  gap: 50px;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 80px;
  }
}

/* IMAGE SIDE */
.about-image-wrapper {
  position: relative;
}

.about-image-box {
  aspect-ratio: 4 / 3;
  background: hsl(100 50% 22% / 0.2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-overlay {
  position: absolute;
  inset: 0;
}

.tractor-icon {
  stroke: rgba(0, 140, 60, 0.4);
}

/* Floating Card */
.floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #ffe9b0;
  color: #5d4200;
  padding: 20px 25px;
  border-radius: 14px;
  box-shadow: 0px 8px 20px rgba(255, 190, 80, 0.4);
}

.floating-number {
  font-size: 40px;
  font-weight: 700;
}

.floating-text {
  font-size: 14px;
  opacity: 0.9;
}

/* CONTENT SIDE */
.about-tag {
  background: #2f541c1a;
  color: #2f541c;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.about-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.text-primary {
  color: #2f541c;
}

.about-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* FEATURES */
.features-list {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-icon {
  stroke: #008c3c;
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 16px;
  color: #333;
}

/* BUTTON */
.learn-btn {
  display: inline-block;
  background: #008c3c;
  color: #fff;
  padding: 14px 28px;
  font-size: 17px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.learn-btn:hover {
  background: #006f2f;
}

/* Contact */

.section {
    padding: 60px 20px;
    background: #f5f4ef;
    scroll-margin-top: 40px;
  }

  .container {
    max-width: 1100px;
    margin: auto;
  }

  /* ----------- HEADER ----------- */
  .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
  }

  .badge {
    display: inline-block;
    background: #2f541c1a !important;
    color: #2f541c !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .section-header h2 {
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #222;
  }

  .section-header p {
    font-size: 18px;
    color: #555;
  }

  /* ----------- CONTACT BOX ---------- */
  .contact-box {
    background: #2f541c;
    color: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 650px;
    margin: auto;
  }

  .contact-box h3 {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
  }

  .contact-grid {
    display: grid;
    gap: 25px;
  }

  /* 2 columns on medium and up */
  @media (min-width: 600px) {
    .contact-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* ----------- CONTACT ITEM ----------- */
  .contact-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: white;
  }

  .contact-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    flex-shrink: 0;
  }

  .contact-label {
    font-size: 14px;
    opacity: 0.8;
  }

  .contact-value {
    font-size: 16px;
    font-weight: 600;
  }

/* ---------- Footer ---------- */
.footer {
  background: #1d301d;
  color: #f8fafc;
}

.footer-main {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  gap: 40px;
}

/* Responsive grid */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

@media (max-width: 998px) {
  .footer-main .container,
  .footer-bottom .container {
    padding-left: 20px;
    padding-right: 12px; 
  }
}

/* ---------- Brand ---------- */
.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: #fff;
  margin-bottom: 20px;
}

.brand-icon {
  width: 48px;
  height: 48px;
  
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.footer-brand h3 {
  margin: 0;
  font-size: 20px;
}

.footer-brand p {
  font-size: 12px;
  opacity: 0.7;
}

.brand-desc {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ---------- Socials ---------- */
.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}

.socials a:hover {
  background: #e2a336;
  color: #0f172a;
}

/* ---------- Columns ---------- */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #e2a336;
}

/* ---------- Contact ---------- */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  /* transition: color 0.3s ease; */
}

.contact-list li svg {
  flex-shrink: 0;
}

/* ---------- Bottom ---------- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

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

.bottom-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.bottom-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.bottom-links a:hover {
  color: #e2a336;
}

/* ===============================
   Privacy Policy Page Styling
   =============================== */

.policy-content,
.policy-content p,
.policy-content h2,
.policy-content h3,
.policy-content h4,
.policy-content ul,
.policy-content li {
  color: #000000;
}

/* Paragraph spacing */
.policy-content p {
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Headings spacing */
.policy-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.policy-content h3 {
  margin-top: 28px;
  margin-bottom: 14px;
}

.policy-content h4 {
  margin-top: 22px;
  margin-bottom: 12px;
}

/* Lists spacing */
.policy-content ul {
  margin-top: 12px;
  margin-bottom: 18px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 8px;
}



@media (min-width: 768px) {
  .bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
