html {
  scroll-behavior: smooth;
}
  body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
  }
  .logo-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: white;
    padding: 10px;
    height: 95px;
  }

  .menu-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #127D13;
    padding: 15px 20px;
    margin-bottom: 83px;
  }
  .menu {
    list-style: none;
    display: flex;
   }
  .menu li {
    margin: 0 13px;
  }
  .menu li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
    }
/* Responsive Design */
@media (max-width: 768px) {
  .menu-section {
      justify-content: center; /* Center menu on smaller screens */
      padding: 10px;
  }

  .menu {
      flex-direction: column;
      align-items: center;
  }

  .menu li {
      margin: 10px 0;
  }
}
      .marquee-container {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        background-color: rgb(214, 245, 214);
        margin-bottom: 60px;
        margin-top: 55px;
    }

    .marquee-content {
        display: flex;
        animation: marquee 50s linear infinite;
        width: max-content;
    }

    .marquee-container:hover .marquee-content {
        animation-play-state: paused;
    }

    .marquee-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .marquee-item img {
        width: 100%;
        max-width: 460px;
        height: auto;
        transition: transform 0.5s ease-in-out;
    }

    .marquee-item p {
        color: black;
        font-size: 21px;
        font-weight: bold;
        margin-top: 15px;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .marquee-item a {
        text-decoration: none;
        color: black;
    }

    .marquee-item img:hover {
        transform: scale(1.05);
    }

    @keyframes marquee {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .marquee-item img {
            max-width: 500px;
        }
    }

    @media (max-width: 768px) {
        .marquee-item img {
            max-width: 400px;
        }
        .marquee-item p {
            font-size: 18px;
        }
    }

    @media (max-width: 480px) {
        .marquee-item img {
            max-width: 300px;
        }
        .marquee-item p {
            font-size: 16px;
        }
        .content {
          text-align: justify;
      }
    }

    .agro-dryer {
      text-align: center; /* Center everything */
      background-color: #f5f5f5; /* Light background for contrast */
      padding: 35px 20px;
      margin-top: 50px;
  }

    /* Title Styling */
    .agro-dryer h1 {
      font-family: 'Cinzel', serif;
      font-size: 35px;
      font-weight: 600;
      color: #127D13; /* Dark Green */
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-top: 35px;
  }
   .content {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 400;
      color: #333; /* Dark Gray for readability */
      max-width: 800px;
      margin: 0 auto; /* Centering */
      line-height: 1.6; /* Better spacing */
  }

  .agro-products .agro-dryer{
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

  @media (max-width: 768px) {
    .row {
        flex-direction: column;
        align-items: center;
        text-align: justify;
    }

    .col-md-8 {
        order: 1;
        width: 100%;
        padding-bottom: 20px;
    }
    .col-md-8 h1, .col-md-8 p {
        text-align: justify;
    }
}
  .contact {
    text-align: center;
    padding: 50px;
    background-color: #000000;
  }
  .contact h2 {
    margin-bottom: 20px;
    color: white;
  }
  .contact p {
    font-size: 18px;
    color: white;
  }

.footer {
  background-color: #333;
  color: white;
  padding: 40px 20px;
  text-align: center; /* Centers content */
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  width: 100%;
  max-width: 500px; /* Keeps it centered and responsive */
  margin-bottom: 20px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
}

.footer-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.contact-link {
  color: #aee7ce;
  text-decoration: none;
  font-weight: bold;
}

.contact-link:hover {
  text-decoration: underline;
  color: #b7fcdd;
}

.social-icons {
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

/* Social Icon Styling */
.social-icons a {
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  padding: 3px;
}

/* Hover Effects */
.social-icons a:hover {
  color: #b7fcdd;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-icons {
      flex-wrap: wrap;
      gap: 10px;
  }

  .social-icons a {
      font-size: 22px;
  }
}

/* Footer Bottom Styling */
.footer-bottom {
  background: #0a0a0a;
  padding: 7px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.copy-right {
  color: white;
  font-size: 14px;
  max-width: 90%;
  margin: 0 auto;
  font-weight: 300;
}

.copy-right a {
  text-decoration: none;
  color: #a0fcd3;
  font-weight: 600;
}

.copy-right a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .copy-right {
      font-size: 12px;
      padding: 5px;
      max-width: 95%;
  }
}
.container {
  max-width: 1228px;
}
/* Responsive for larger screens */
@media (min-width: 768px) {
  .footer-container {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      text-align: left;
      font-size: 9px;
  }

  .footer-section {
      flex: 1;
      max-width: 30%;
      font-size: 9px;
      text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    width: 450px;
  }
}
@media only screen and (max-width: 479px) {
  .container {
    width: 320px;
  }
}
.courses-tab-wrapper .container {
  max-width: 1480px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .courses-tab-wrapper .container {
    max-width: 1200px;
  }
}
.pt--10 {
  padding-top: 10px;
}
.pb--10 {
  padding-bottom: 10px;
}

.blurred {
  filter: blur(5px);
}
.row
{
  background-color: #D1EBD1;
}
.form-container {
  background: white;
  padding: 20px;
  border-radius: 5px;
  border: 2px solid #218838;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 400px;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 80vh;
  overflow-y: auto;
  transition: top 0.5s ease;
  z-index: 1000;
}
.form-container.active {
  top: 50%;
}
.form-container::-webkit-scrollbar {
  display: none;
}
.overlay {
   position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      display: none;
      z-index: 999;
}
label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
  text-align: left;
}
input {
  width: 96%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.error {
  color: red;
  font-size: 12px;
  display: none;
  text-align: center;
}
.checkbox-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
  width: 100%;
}
.checkbox-container input {
  width: auto;
  margin-right: 10px;
}
.checkbox-container label {
  font-weight: normal;
  display: inline;
  white-space: normal;
  width: 100%;
  text-align: justify;
  border: 0px;
}
.agro-dryer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px; /* Space between text and image */
  width: 100vw; /* Full width of the screen */
  max-width: 100%;
  padding: 50px 5%; /* Adds spacing inside */
  background-color: #f8f8f8; /* Optional background color */
}

.agro-dryer .content {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
  max-width: 50%; /* Ensures proper text width */
}

.agro-dryer img {
  max-width: 45%;
  height: auto;
  border-radius: 10px;
}

.h1 h1 {
  font-size: 32px;
  color: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
  .agro-dryer {
      flex-direction: column;
      text-align: center;
      padding: 30px;
  }

  .agro-dryer .content,
  .agro-dryer img {
      max-width: 100%;
  }
}
button {
  width: 100%;
  background: #218838;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
}
button:hover {
  background: #1e7e34;
}
.nav-link {
  margin-bottom: 20px;
  font-size: 18px;
  text-decoration: none;
  color: #007bff;
  cursor: pointer;
}
.nav-link:hover {
  text-decoration: underline;
}
.close-btn {
  position: absolute;
  top: -4px;
  right: 10px;
  width: 12px;
  height: 12px;
  background: rgb(10, 138, 74);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}
.close-btn:hover {
  color: rgb(2, 0, 0);
}

.text-success, .fs-5
{
  text-align: center;
}
 h1 .text-success .fw-bold{
  color: #127D13;
 }