/*Project Fonts*/

@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");

body {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

.navbar-outer-section {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: visible;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
}

.navbar {
  background-color: white;
  padding: 15px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  max-width: 1320px;
  margin: auto;

}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active-nav {
  color: #1c6a38;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    padding: 15px 20px;
  }

  .logo img {
    height: 40px;
    width: auto;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateX(0);
  }

  .nav-links.active {
    display: flex;
    gap: 30px;
  }

  .nav-links li {
    margin: 2px 0;
  }

  .contact-btn {
    display: none;
  }
}

.hero-section-container {
  position: relative;
  height: 725px;
  overflow-x: clip;
  /* background-color: #EAF2CD; */
}

.bg-item {
  position: absolute;
}

.bg-item.coriander {
  top: 0;
  left: 0;
  height: 190px;
}

.bg-item.mint {
  top: 0;
  right: 0;
  height: 180px;
}

.bg-item.rosemary {
  top: 50%;
  height: 170px;
  margin-top: -85px;
}

.bg-item.basil {
  top: 50%;
  right: 0;
  height: 170px;
  margin-top: -65px;
}

.bg-item.flower {
  bottom: -40px;
  height: 190px;
}

.bg-item.mint-alt {
  bottom: -70px;
  left: 50%;
  width: 220px;
  margin-left: -110px;
}

.bg-item.chillies {
  bottom: -75px;
  right: 0;
  height: 210px;
}

/*Navigation Section*/
@media (min-width: 1024px) {
  .aromatic-navbar {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}

.aromatic-navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 20px;
}

.brand-section {
  width: 25%;
}

.desktop-nav a {
  margin-left: 45px;
  color: #1c6a38;
  text-decoration: none;
}

.desktop-nav a:hover {
  font-weight: Bold;
}

.desktop-nav a.active-nav {
  font-weight: Bold;
  border-bottom: 2px solid #1c6a38;
}

.aromatic-top-bar-outer-section {
  background-color: #1c6a38;
  color: #fff;
}

.aromatic-top-bar {

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 65px;
  font-size: 16px;
  font-weight: 500;
  max-width: 1320px;
  margin: auto;
}


.top-bar-right a {
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #eaf2cd;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.top-bar-right a:hover {
  transform: scale(1.1);
  background-color: #c5de96;
}

.top-bar-right svg {
  height: 18px;
  width: 18px;
  fill: #1c6a38;
}

/*Mobile Navigation Section*/

.mobile-nav {
  display: none;
}

.mobile-nav svg {
  cursor: pointer;
}

.dropdown-menu.show {
  width: 100%;
  margin-top: 10px !important;
  padding: 30px;
  background-color: #1c6a38;
  border: none;
  border-radius: 0;
}

.mobile-menu-item {
  margin-bottom: 12px;
  text-align: center;
}

.mobile-menu-item a {
  color: #fff;
  font-size: 20px;
  font-weight: Bold;
  text-decoration: none;
}

.mobile-menu-item a.active-nav {
  border-bottom: 2px solid #fff;
}

/*Hero Content Section*/

.hero-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100% - 125px);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.swiper-slide img {
  width: 100vw;
  height: calc(100vh - 125px);
  object-fit: cover;
}

.zoom-animation {
  animation: zoomIn 3s ease-in-out forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.hero-content-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  width: 90%;
  max-width: 1200px;
  padding: 0 20px;
}

.hero-content-text .main-text {
  font-size: 50px;
  font-weight: bold;
  line-height: 60px;
  margin-bottom: 20px;
}

.main-text span {
  color: #b1ec0d;
}

.hero-content-text p[style*="font-size: 20px"] {
  font-size: 20px;
  margin-bottom: 20px;
}

.hero-content-text button {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  border-radius: 50px;
}

.hero-content-text button:hover {
  background: white;
  color: #1a3c34;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content-text .main-text {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-content-text p[style*="font-size: 20px"] {
    font-size: 16px;
  }

  .hero-content-text button {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-content-text .main-text {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 15px;
  }

  .hero-content-text p {
    font-size: 14px;
  }

  .hero-content-text button {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .hero-content-text .main-text {
    font-size: 24px;
    line-height: 30px;
  }

  .hero-content-text {
    width: 95%;
  }
}

@media (max-width: 1024px) {
  .hide-on-mobile {
    display: none;
  }
}

/*Home Page*/

/*What we do section*/

.section-title {
  color: #1c6a38;
  font-size: 36px;
  font-weight: Bold;
}

.about-title {
  color: #1c6a38;
  font-size: 36px;
  font-weight: Bold;
}

.section-description {
  font-size: 22px;
}

.what-we-do-section {
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 60px;
}

.what-we-do-section p {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.8;
  text-align: justify;
  max-width: 70%;
}

.agriContainer {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
}

.agriLeft {
  width: 50%;
  padding-right: 30px;
  flex: 1;
  text-align: left;
}

.agri-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.agri-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;

}

.agriHeader {
  font-size: 20px;
  color: #1c6a38;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  text-align: left;
}

h1 {
  font-size: 48px;
  color: #062b13;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: left;
  font-weight: bold;
}

.agriDesc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: left;
}

.agriTabs {
  display: flex;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
}

.agriTab {
  flex: 1;
  padding: 15px 30px;
  text-align: center;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  border-right: 1px solid #ddd;
  transition: background-color 0.3s;
}

.agriTab:last-child {
  border-right: none;
}

.agriTab:hover {
  background-color: #1c6a38;
  color: #fff;
}

.agriTab.active {
  background-color: #1c6a38;
  color: #fff;
}

.agriContent {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 900px) {
  .agriContainer {
    flex-direction: column;
  }

  .agriLeft,
  .agri-img {
    width: 100%;
  }

  .agriLeft {
    padding: 0 20px;
    margin-bottom: 20px;
  }

  h1 {
    font-size: 36px;
  }

  .agriDesc,
  .agriContent {
    font-size: 14px;
  }

  .agriTab {
    padding: 10px 15px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }

  .agriHeader {
    font-size: 16px;
  }

  .agriHeader::before {
    width: 15px;
    left: -25px;
  }

  .agriDesc,
  .agriContent {
    font-size: 12px;
  }

  .agriTabs {
    flex-direction: column;
  }

  .agriTab {
    padding: 10px;
    font-size: 12px;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .agriTab:last-child {
    border-bottom: none;
  }

  .agri-img img {
    max-width: 350px;
  }
}

/*Herbs Section*/
.home-page-herbs-section {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  box-sizing: border-box;
  overflow: hidden;
  gap: 20px;
}

.home-page-herbs-section .herbs-section-image {
  flex: 0 0 40%;
  max-width: 40%;
  padding-right: 20px;
  box-sizing: border-box;
  position: relative;
}

.home-page-herbs-section .herbs-section-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.home-page-herbs-section .herbs-section-text {
  flex: 1 1 60%;
  padding-left: 30px;
  box-sizing: border-box;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .home-page-herbs-section {
    padding: 30px 15px;
  }

  .home-page-herbs-section .herbs-section-image {
    flex: 0 0 38%;
    padding-right: 15px;
  }

  .home-page-herbs-section .herbs-section-text {
    flex: 1 1 62%;
    padding-left: 15px;
  }
}

@media (max-width: 768px) {
  .home-page-herbs-section {
    flex-direction: column;
    padding: 20px 10px;
  }

  .home-page-herbs-section .herbs-section-image,
  .home-page-herbs-section .herbs-section-text {
    flex: 1 1 100%;
    padding: 0;
  }

  .home-page-herbs-section .herbs-section-image {
    max-width: 280px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .about-title {
    font-size: 28px;
  }

  .aromatic-top-bar {
    padding: 6px 6%;
    font-size: 13px;
  }
}

/*Featured Products Section*/
.featured-products-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #fbfdf2 0%, #e3e9cf 100%);
  position: relative;
  overflow: hidden;
}

.products-title {
  /* margin-bottom: 30px; */
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #062b13;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #062b13;
}

.about-title {
  font-size: 2.5rem;
  color: #062b13;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 43px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #062b13;
}

.no-after::after {
  display: none !important;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.products-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.products-item-container {
  flex: 0 0 calc(25% - 30px);
  max-width: calc(25% - 30px);
  padding: 15px;
}

.product-card {
  text-decoration: none;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
}

.product-card-p {
  text-decoration: none;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.product-card-p:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.item-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  padding: 20px;
  background: #fff;
}

.item-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .item-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 10px;
  border-top: 1px solid #bebebe;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #3a8a5a, #1c6a38);
  text-align: center;
}

.item-title {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  margin-top: 5px;
}

.item-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  flex-grow: 1;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1c6a38;
  margin-top: 10px;
}

.products-button-section {
  margin-top: 30px;
  text-align: center;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 50px;
  background: linear-gradient(to right, #1c6a38, #3a8c5a);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(28, 106, 56, 0.3);
  border: none;
  font-size: 1rem;
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 106, 56, 0.4);
  background: linear-gradient(to right, #3a8c5a, #1c6a38);
  color: white;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .products-item-container {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
  }
}

@media (max-width: 768px) {
  .products-item-container {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }

  .section-title {
    font-size: 2rem;
  }

  .about-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .item-image {
    height: 150px;
  }

  .products-content {
    gap: 0px;
    padding: 0 5px;
  }

  .products-item-container {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

/* impact section */
.impact-section {
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.impact-header {
  text-align: center;
}

.impact-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #333;
}

.impact-images {
  display: grid;
  padding: 20px;
  gap: 2rem;
  /* Reduced gap for tighter spacing */
  justify-items: center;
  align-items: center;
  max-width: 800px;
  /* Limit grid width to prevent excessive stretching */
  margin: 0 auto;
  /* Center the grid */
}

/* Desktop: 4 images per row */
@media (min-width: 1024px) {
  .impact-images {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet: 3 images per row */
@media (min-width: 768px) and (max-width: 1023px) {
  .impact-images {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile: 2 images per row */
@media (max-width: 767px) {
  .impact-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

.impact-images img {
  width: 100%;
  max-width: 150px;
  /* Consistent image size */
  height: 150px;
  /* Fixed height for uniformity */
  object-fit: contain;
  /* Maintains aspect ratio */
  display: block;
}

/*Certifications Section*/
.certifications-section {
  padding-top: 10px;
  padding-bottom: 10px;
}

.certifications-title {
  text-align: center;
  padding: 20px;
}

.certifications-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.certifications-content img {
  /* height: 120px;  */
  width: auto;
  margin-top: 24px;
  flex: 0 0 auto;
}

@media (max-width: 576px) {
  .certifications-content {
    padding: 20px 20px;
  }

  .memberships-logos {
    padding: 20px 20px;
  }

  .certifications-content img {
    flex: 0 0 calc(50% - 10px);
    margin-top: 0px;
    max-width: calc(50% - 10px);
  }
}



.memberships-section {
  margin-bottom: 30px;
  width: 100%;
  box-sizing: border-box;
}

.memberships-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 20px;
}
.certificates-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
}


.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.memberships-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.memberships-logos img {
  margin-top: 20px;
  width: 250px;
  height: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .memberships-logos img {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    margin-top: 0px;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* Very small devices (optional tweak) */
@media (max-width: 480px) {
  .memberships-logos img {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .section-title {
    font-size: 1.2rem;
  }

  .memberships-container,.certificates-container {
    padding: 0px;
  }
}

/*Footer Section*/
.aromatic-footer {
  padding: 40px 0 20px;
  background-color: #1c6a38;
  color: #fff;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

.aromatic-footer-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4px 65px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  /* reduced */
  /* margin-bottom: 30px; */
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
}

.footer-brand-logo {
  margin-bottom: 15px;
}

.footer-brand-logo img {
  height: 50px;
  width: auto;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.brand-contacts {
  margin-bottom: 15px;
}

.brand-contacts-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.brand-contacts-item svg {
  margin-right: 12px;
  flex-shrink: 0;
}

.brand-contacts-item p {
  color: #fff;
  font-size: 15px;
  margin: 0;
  transition: color 0.3s ease;
}

.brand-contacts-item:hover p {
  color: #eaf2cd;
}

.brand-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-socials a {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.brand-socials a:hover {
  transform: translateY(-3px);
}

.links-heading {
  color: #eaf2cd;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 6px;
}

.links-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #eaf2cd;
}

.footer-links-section {
  display: flex;
  flex-direction: column;
}

.footer-links-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-links-section a:hover {
  color: #eaf2cd;
  padding-left: 5px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-bar {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #eaf2cd;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/*Media Queries*/

@media screen and (max-width: 1399px) {
  .bg-item.coriander {
    top: 0;
    left: 0;
    height: 165px;
  }

  .bg-item.mint {
    top: 0;
    right: 0;
    height: 160px;
  }

  .bg-item.rosemary {
    top: 50%;
    height: 130px;
    margin-top: -65px;
  }

  .bg-item.basil {
    top: 50%;
    right: 0;
    height: 130px;
    margin-top: -65px;
  }

  .bg-item.flower {
    bottom: -30px;
    height: 150px;
  }

  .bg-item.mint-alt {
    bottom: -70px;
    left: 50%;
    width: 220px;
    margin-left: -110px;
  }

  .bg-item.chillies {
    bottom: -50px;
    right: 0;
    height: 170px;
  }
}

@media screen and (max-width: 1120px) {
  .aromatic-navbar {
    justify-content: space-between;
    /* padding-left: 10%;
    padding-right: 18%; */
    background-color: #fff;
    /* padding: 20px; */
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .nav-flex-item {
    display: none;
  }

  .hero-context-images img {
    height: 70px;
  }

  .hero-content-text .main-text {
    font-size: 50px;
    line-height: 58px;
  }

  .herbs-section-image {
    height: 450px;
    width: 450px;
    margin-left: -200px;
  }
}

@media screen and (max-width: 999px) {
  .home-page-herbs-section {
    flex-direction: column;
    margin-bottom: 65px;
  }

  .herbs-section-image {
    justify-content: center;
    margin: 0;
  }

  .herbs-section-image img {
    margin: 0;
  }

  .herbs-section-text {
    width: 60%;
    margin: 25px 0;
    text-align: center;
  }
}

@media screen and (max-width: 800px) {
  .bg-item.coriander {
    top: 100px;
    left: -40px;
    height: 112px;
    transform: rotate(-15deg);
  }

  .bg-item.mint {
    top: 100px;
    right: -60px;
    height: 110px;
    transform: rotate(60deg);
  }

  .bg-item.rosemary {
    top: 50%;
    height: 80px;
    margin-top: -40px;
  }

  .bg-item.basil {
    top: 50%;
    right: 0;
    height: 80px;
    margin-top: -40px;
  }

  .bg-item.flower {
    bottom: -30px;
    height: 100px;
    left: -25px;
  }

  .bg-item.mint-alt {
    bottom: -50px;
    left: 50%;
    width: 160px;
    margin-left: -80px;
  }

  .bg-item.chillies {
    bottom: -50px;
    right: -26px;
    height: 100px;
  }

  .hero-content-text {
    font-size: 20px;
  }

  .hero-content-text .main-text {
    font-size: 40px;
    line-height: 52px;
  }

  .section-title {
    font-size: 26px;
  }

  .about-title {
    font-size: 26px;
  }
}

@media screen and (max-width: 500px) {
  .hero-section-container {
    height: 500px;
  }

  .bg-item.rosemary {
    display: none;
  }

  .bg-item.basil {
    display: none;
  }

  .hero-content-section {
    height: calc(100% - 85px);
  }

  .hero-content-text .main-text {
    width: 100%;
    font-size: 30px;
    line-height: 42px;
  }

  .hero-context-images {
    display: none;
  }

  .what-we-do-section p {
    max-width: 100%;
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
  }

  .products-content {
    justify-content: center;
  }

  .herbs-section-image {
    height: 320px;
    width: 320px;
  }

  .herbs-section-text {
    width: 90%;
  }

  .footer-brand-links {
    flex-direction: column;
    padding-left: 10%;
  }

  .footer-brand-section {
    margin-bottom: 30px;
  }
}

/*About Us Page*/

.main-page-content {
  min-height: calc(100vh - 519px);
}

.page-intro-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  text-align: center;
  background: url("/img/Header Sections Photo.jpg") no-repeat center center;
  background-size: cover;
  overflow: hidden;
  border-bottom: 2px solid #e0e8d5;
  color: white; /* ensure text is visible */
}

.page-intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-intro-section > * {
  position: relative;
  z-index: 2;
}


.page-intro-title {
  color: #fff;
  font-size: 42px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-intro-img.intro-def {
  position: absolute;
  left: 0;
  top: 0;
  height: 150px;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.page-intro-img.intro-alt {
  position: absolute;
  top: 0;
  right: 0;
  height: 150px;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/*Our Story Section*/
.wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4px 65px;
}

.story-section {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.story-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.farm-layout {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.narrative-content {
  flex: 1;
  min-width: 300px;
}

.narrative-content h1 {
  /* color: #1a1a1a; */
}

.narrative-content p {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.narrative-content .accent {
  color: #2e7d32;
  font-weight: 600;
}

.visual-content {
  flex: 1;
  min-width: 300px;
}

.visual-content img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.action-button {
  display: inline-block;
  padding: 12px 30px;
  background: #2e7d32;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}

.action-button:hover {
  background: #255d27;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .story-section {
    padding: 40px 0;
  }

  .narrative-content h1 {
    font-size: 2.2rem;
  }

  .wrapper {
    padding: 0 20px;
  }

  .narrative-content,
  .visual-content {
    min-width: 0;
    width: 100%;
  }

  .narrative-content p {
    font-size: 1rem;
    text-align: justify;
  }

  .story-layout {
    flex-direction: column;
    text-align: center;
  }

  .farm-layout {
    flex-direction: column;
    text-align: center;
  }

  .action-button {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .narrative-content h1 {
    font-size: 1.8rem;
  }

  .narrative-content p {
    text-align: justify;
    font-size: 0.9rem;
  }
}

/*Vision - Mission Section*/

.vision-mission-section {
  position: relative;
  /* margin-top: 50px; */
  line-height: 1.8;
  padding-top: 75px;
  padding-bottom: 75px;
  background: #eaf2cd;
}

.vision-mission-section img.section-parsley {
  position: absolute;
  bottom: -70px;
  left: 0;
  height: 200px;
}

.vision-mission-section img.section-parsley-alt {
  position: absolute;
  right: 0;
  top: -80px;
  height: 200px;
}

/* .vision-mission-section p {
  font-size: 1.125rem;
    color: #555;

} */
.vision-mission-content {
  display: flex;
  justify-content: space-between;
  max-width: 1320px;
  margin: auto;
  padding: 4px 65px;
}

.vision-section {
  width: 46%;
}

.mission-section {
  width: 46%;
}

.vision-mission-title {
  display: flex;
  align-items: center;
}

.title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  margin-right: 20px;
  border-radius: 50%;
  background: rgba(172, 203, 58, 0.52);
}

/*.vision-mission-title p {*/
/*  margin: 0;*/
/*  color: #1C6A38;*/
/*  font-size: 36px;*/
/*  font-weight: Bold;*/
/*}*/
.vision-mission-description p {
  margin-top: 20px;
  text-align: justify;
  /* padding-left: 60px; */
  font-size: 1.125rem;
  color: #555;
}

@media screen and (max-width: 600px) {
  .vision-mission-description p {
    font-size: 0.85rem;
  }
}

/*Our Farms Section*/
.our-farms-section {
  padding: 4rem 0;
}

.farm-location {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.farm-image-container {
  flex: 1;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.farm-image {
  width: 100%;
  /* height: 400px; */
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.farm-image:hover {
  transform: scale(1.05);
}

.farm-text {
  flex: 1;
}

.farm-text .section-title {
  font-size: 1.75rem;
  text-align: left;
  margin-bottom: 1rem;
}

.farm-description {
  text-align: justify;
  font-size: 1.125rem;
  color: #555;
  line-height: 1.6;
}

.team-section {}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 1rem; */
}

.team-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-image {
  width: 100%;
  max-width: 300px;
  height: 350px;
  max-height: 350px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0.5rem 0;
}

.member-role {
  font-size: 1rem;
  color: #666;
}

@media (max-width: 768px) {
  .team-title {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .team-image {
    max-width: 250px;
    max-height: 250px;
    /* Adjust max height for smaller screens */
  }

  .team-title {
    font-size: 1.75rem;
  }
}

/* Tablet and smaller screens */
@media screen and (max-width: 999px) {
  .section-title {
    font-size: 2rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .farm-location {
    flex-direction: column;
    align-items: center;
  }

  .farm-image-container {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .farm-image {
    height: 300px;
  }

  .farm-text {
    width: 100%;
  }

  .farm-text .section-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .farm-description {
    font-size: 1rem;
  }
}

/* Mobile screens */
@media screen and (max-width: 600px) {
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .about-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .farm-image {
    height: 200px;
  }

  .farm-text .section-title {
    font-size: 1.25rem;
  }

  .farm-description {
    text-align: justify;
    font-size: 0.875rem;
  }

  .our-farms-section {
    padding: 2rem 0;
  }
}

@media screen and (max-width: 999px) {
  .page-intro-img.intro-def {
    top: 20px;
    height: 100px;
  }

  .page-intro-img.intro-alt {
    top: 20px;
    height: 100px;
  }

  .our-story-section {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .our-story-text {
    width: 96%;
  }

  .about-page-section-image-container {
    width: 96%;
    margin-top: 40px;
  }

  .about-page-section-image {
    width: 85%;
  }

  .about-page-section-image img {
    top: -30px;
    right: 30px;
  }

  .about-page-section-image-container.alt-image {
    margin-bottom: 30px;
  }

  .about-page-section-image.alt-image img {
    right: -30px;
    top: -30px;
  }

  .about-page-section-description {
    font-size: 18px;
  }

  .vision-mission-section img.section-parsley {
    bottom: -50px;
    height: 120px;
  }

  .vision-mission-section img.section-parsley-alt {
    top: -60px;
    height: 120px;
  }

  .vision-mission-content {
    flex-direction: column;
    align-items: center;
  }

  .vision-mission-description {
    margin-top: 10px;
    font-size: 18px;
  }

  .vision-section {
    width: 90%;
  }

  .mission-section {
    width: 90%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 600px) {
  .page-intro-section {
    height: 160px;
  }

  .page-intro-title {
    font-size: 32px;
  }

  .page-intro-img.intro-def {
    top: 40px;
    height: 70px;
  }

  .page-intro-img.intro-alt {
    top: 40px;
    height: 70px;
  }
}

/**/
/**/
/*Products Page*/
/**/
/**/
.custom-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.custom-modal .modal-content {
  position: relative;
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease-out;
}

.custom-modal .close-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  color: #333;
  cursor: pointer;
  z-index: 1001;
}

.custom-modal .close-btn:hover {
  color: #fff;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.custom-modal .modal-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.custom-modal .modal-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .custom-modal .modal-body {
    border-radius: 10px;
    border: 1px solid #1c6a38;
    flex-direction: row;
    align-items: center;
  }

  .custom-modal .modal-image {
    flex: 1 1 40%;
  }

  .custom-modal .modal-text {
    flex: 1 1 60%;
  }

  .custom-modal .modal-content {
    padding: 2.5rem;
    width: 70%;
  }
}

/* Mobile layout */
@media (max-width: 767px) {
  .custom-modal .modal-image {
    display: none;
  }

  .custom-modal .modal-text {
    width: 100%;
  }

  .custom-modal .modal-content {
    width: 95%;
    padding: 1rem;
  }
}

/**/
/**/
/*Gallery Page*/
/**/
/**/

.gallery-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.video-container {
  display: flex;
  gap: 20px;
  /* padding: 2rem 1rem; */
  margin-top: 40px;
  max-width: 100%;
}

.video-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

.article-link {
  text-align: center;
  padding: 20px 0;
  font-size: 20px;
}

.media-content {
  display: flex;
  gap: 20px;
  align-items: center;
  /* padding: 20px; */
  /* padding: 4px 15px; */
  margin: auto;
  max-width: 1320px;
  text-align: left;
  flex-wrap: nowrap;
}

.media-content img {
  width: 100%;
  max-width: 40rem;
  border-radius: 1rem;
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 30px 0;
  }

  .media-content {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
  }

  .media-content img {
    max-width: 100%;
  }

  .article-link {
    padding: 0;
    font-size: 16px;
  }
}

.gallery-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4px 65px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  /* padding: 20px; */
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zoom-overlay.active {
  display: flex;
  opacity: 1;
}

.zoom-container {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}

.zoom-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.nav-prev {
  left: -60px;
}

.nav-next {
  right: -60px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-img {
    height: 150px;
  }

  .nav-prev {
    left: 10px;
  }

  .nav-next {
    right: 10px;
  }
}

@media (max-width: 575px) {
  .gallery-img {
    height: 150px;
  }

  .video-container {
    display: flex;
    flex-direction: column;
  }

  .gallery-container {
    padding: 4px 15px;
  }
}

/**/
/**/
/*Contact Us Page*/
/**/
/**/

/* Contact Section Styles */
.contact-section {
  position: relative;
  padding: 6rem 2rem;
  background-color: #f9fafb;
  overflow: hidden;
}

.contact-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 4px 65px;
}

/* Decorative Elements */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg,
      rgba(28, 106, 56, 0.1) 0%,
      rgba(40, 167, 69, 0.05) 100%);
  z-index: 1;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  left: -100px;
}

.circle-3 {
  width: 150px;
  height: 150px;
  bottom: 200px;
  right: 50px;
}

/* Header Styles */
.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1c6a38;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background-color: #1c6a38;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-top: 2rem;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: linear-gradient(90deg, #f6f9f7 0%, #9ccba7 100%);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1c6a38 0%, #28a745 100%);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: rgba(28, 106, 56, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #1c6a38;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.9375rem;
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.card-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: #1c6a38;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.card-link:hover {
  color: #28a745;
}

.phone-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dual-input {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.input-wrapper {
  position: relative;
}

.input-wrapper label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #6b7280;
  font-size: 0.9375rem;
  pointer-events: none;
  transition: all 0.2s ease;
  transform-origin: left center;
  padding: 0 0.25rem;
  background: white;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #111827;
  transition: all 0.2s ease;
  background: transparent;
}

.input-wrapper textarea {
  min-height: 120px;
  resize: vertical;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: #1c6a38;
}

.input-wrapper input:focus+label,
.input-wrapper input:not(:placeholder-shown)+label,
.input-wrapper textarea:focus+label,
.input-wrapper textarea:not(:placeholder-shown)+label {
  transform: translateY(-1.5rem) scale(0.85);
  color: #1c6a38;
}

.focus-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1c6a38 0%, #28a745 100%);
  transition: width 0.3s ease;
}

.input-wrapper input:focus~.focus-line,
.input-wrapper textarea:focus~.focus-line {
  width: 100%;
}

/* Submit Button */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, #1c6a38 0%, #28a745 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(28, 106, 56, 0.2);
  overflow: hidden;
  position: relative;
}

.submit-btn span {
  position: relative;
  z-index: 2;
}

.submit-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #28a745 0%, #1c6a38 100%);
  transition: left 0.3s ease;
  z-index: 1;
}

.submit-btn:hover {
  box-shadow: 0 6px 20px rgba(28, 106, 56, 0.3);
}

.submit-btn:hover::before {
  left: 0;
}

.submit-btn:hover svg {
  transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-container{
    padding: 0px;
  }
  .contact-section {
    padding: 4rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .dual-input {
    grid-template-columns: 1fr;
  }

  .circle-1,
  .circle-2,
  .circle-3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .contact-header {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }
}


.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
}

.toast-message {
  min-width: 250px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-message.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.toast-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.toast-message .close-btn {
  background: none;
  border: none;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  float: right;
  margin-left: 10px;
}

#map {
  width: 100%;
  height: 40vh;
  border: none;
}