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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
}



/* AI Farming Section */
.ai-farming {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
}

/* Article Image */
.article-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: none;
}

/* Headings */
h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subheading {
    font-size: 18px;
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Paragraphs */
p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Features List */
.features {
    text-align: left;
    margin-top: 20px;
}

.features p {
    background: #e8f5e9;
    padding: 10px;
    border-left: 4px solid #27ae60;
    margin-bottom: 10px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: #27ae60;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.cta-button:hover {
    background: #219150;
}



/* Contact Us Section */
.contact-us {
  padding: 4rem 2rem;
  background-color: #004aad;
  color: #fff;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

.contact-text {
  max-width: 500px;
}

.contact-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.contact-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #ffffff;
}

.contact-button {
  background-color: #25d366;
  color: #fff;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #128c7e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-image img {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .contact-text {
    max-width: 100%;
  }
}



/* Sticky WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  font-size: 22px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

/* Hover Effect */
.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}



/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #004225; /* Deep green */
  color: white;
  font-size: 18px;
  width: 45px;
  height: 45px;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

/* Hover Effect */
.back-to-top:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}





/* Footer Section */
.footer-section {
  background-color: #00317a;
  color: #fff;
  padding: 4rem 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
}


.footer-column {
  text-align: left;
}

.footer-heading {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

.social-link:hover {
  text-decoration: underline;
}

.footer-links {
  list-style-type: none;
  padding: 0;
}

.footer-links li {
  margin: 0.5rem 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  list-style-type: none;
  padding: 0;
}

.footer-contact li {
  font-size: 1rem;
  margin: 0.5rem 0;
}

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

.email-input {
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  width: 200px;
}

.subscribe-button {
  background-color: #004aad;
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-button:hover {
  background-color: #00317a;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}