/* NEWSLATER SECTION STYLE SHEET */
.newsletter-section {
  position: relative;
  width: 100%;
  height: auto;
  background: url('../images/homepage/newslater.jpg') no-repeat center center/cover;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-overlay {
  text-align: center;
  /* background: rgba(0, 0, 0, 0.6); */
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 700px;
  color: var(--text-dark);
}

.newsletter-overlay h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--primary-color-dark);
  font-weight: 700;
}

.newsletter-overlay p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ff8200;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  font-size: 18px;
  border: none;

}

.newsletter-form button {
  padding: 12px 30px;
  font-size: 18px;
  border: none;
  background: var(--primary-color-dark);
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: var(--primary-color);
  font-weight: 700;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .newsletter-overlay h1 {
    font-size: 28px;
  }

  .newsletter-overlay p {
    font-size: 16px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
  }
}



/* Footer style sheet start */
.footer {
  background: var(--white);
  padding: 20px 20px 10px 20px;

}

.footer .box-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 1.5rem;
  padding-left: 20px;
}

.footer .box h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  text-align: left;
}


.footer .box a {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.4s ease;
}

.footer .box a i {
  color: var(--primary-color-dark);
  font-size: 1.2rem;
}

.footer .box a:hover {
  color: var(--primary-color-dark);
  font-weight: 600;
}

.footer .box ul.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .box ul.footer-links li {
  margin: 0.5rem 0;
}

.footer .credit {
  font-size: 1.2rem;
  color: var(--text-dark);
  border-top: 1px solid #ccc;
  padding-top: 1rem;
  text-align: center;
}


.footer .credit a{
  text-decoration: none;
  color: var(--primary-color-dark);
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

:root {
  --primary-color: #a8cf45;
  --primary-color-dark: #0e844d;
  --text-dark: #333333;
  --white: #ffffff;
}


.footer .boxes h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  text-align: start;
}

.footer .boxes ul.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link a img {
  width: 130px;
  height: 55px;
  border-radius: 5px;
  border: 1px solid #0098ff42;
  padding: 0px 5px;
  transition: transform 0.3s ease;
  object-fit: contain;
}
.footer-link a img:hover{
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(60, 171, 209, 0.2);
}

.footer-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
}



@media (max-width: 768px) {

  .footer .box-container {
    display: flex;
    flex-wrap: wrap;
  }

  .newsletter-section {
    background-size: 166.66% 100%;

  }

  .footer-link {
    display: flex;
    flex-direction: unset;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer .box-container {
    padding-left: 0px;
  }

  .footer-link a img {
    width: 115px;
    height: 50px;
  }
}
