:root {
  --brand-green: #236202;
  --brand-green-tint: rgba(35, 98, 2, 0.10);
  --accent-hover: #b9fbc0;
  --brand-blue: #267CA4;
  --blue-hover: #1C5D80;


}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  font-size: 16px;
  color: #000;
  background-blend-mode: multiply;
  background-size: 400px auto;
  line-height: 1.6;;
}


body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--brand-green-tint);
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, #1C5D80, rgba(255,255,255,0.9));
  z-index: -1;
}

html, body {
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--heading-font);
  text-align: center;
  color: var(--brand-green);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
    font-family: var(--body-font);
    text-align: left;
    color: black);
    margin-bottom: 1rem;  
    font-size: 16px;
}







/* 🌿 MENU BAR */
.menu-bar {

  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--brand-green);
  padding: 10px 20px;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.menu-left, .menu-right {
  font-family: var(--menu-font);
  display: flex;
  gap: 20px;
}

.menu-left a, .menu-right a {
  font-family: var(--menu-font);
  color: white;
  text-decoration: none;
}

.menu-left a:hover, .menu-right a:hover {
  color: var(--accent-hover);
}


/* 🌿 HERO SECTION */
.overlay {
  max-width: 768px;
  margin: 4rem auto 2rem auto;
  padding: 60px 30px 20px;
  background-color: #f9fff9;
  border: 2px solid var(--brand-green);
  border-radius: 8px;
  line-height: 1.6;
  box-sizing: border-box;
  text-align: center;
}

.overlay h1 {
  margin-top: 0.5rem;
  font-size: 2.5rem;
}

.overlay p {
  font-size: 1.2rem;
}

/* 🌿 LOGO */
.logo {
  max-width: 200px;
  opacity: 1.0;
  margin: 60px auto 0;
  position: relative;
  display: block;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

.logo-tomato {
  max-width: 300px;
  opacity: 1.0;
  margin: 60px auto 0;
  position: relative;
  display: block;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

.About-icon {
  max-width: 60px;
  opacity: 1.0;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
}

.about-table {
  font-size: 0.9rem; /* slightly smaller than base (adjust as needed) */
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 20px; /* Adds vertical space between rows */
}

.about-table td {
  vertical-align: top;
  padding: 10px 5px; /* Adds space between icon and text */
  line-height: 1.4; /* keeps things readable */
}



.about-table tr:hover  {
  background-color: rgb(252, 178, 170);
  transition: background-color 0.2s ease-in-out;
}

.about-table tr.hovered {
  background-color: salmon;
  transition: background-color 0.2s ease-in-out;
}


/* Free Resources Section */
.free-table {
  font-size: 0.9rem; /* slightly smaller than base (adjust as needed) */
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 20px; /* Adds vertical space between rows */
}



.free-table td {
  vertical-align: top;
  padding: 10px 5px; /* Adds space between icon and text */
  line-height: 1.4; /* keeps things readable */
}



.free-table tr:hover  {
  background-color: rgb(170, 252, 182);
  transition: background-color 0.2s ease-in-out;
}

.free-table tr.hovered {
  background-color: rgb(114, 250, 146);
  transition: background-color 0.2s ease-in-out;
}
.free-table td a:hover {
  text-decoration: underline;
}

.home-table {
  font-size: 1.0rem; /* slightly smaller than base (adjust as needed) */
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 20px; /* Adds vertical space between rows */
}

.Free-icon {
  max-width: 60px;
  opacity: 1.0;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
}

.icon-cell {
  width: 50px;
  padding-right: 10px;
  vertical-align: middle;
  text-align: left;
}



/* 🌿 SWIPER CAROUSEL */
.swiper-container {
  position: relative; /* Needed to anchor the buttons inside the container */
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  height: auto;
  overflow: hidden;
}


.swiper-slide {
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
}

.swiper-slide img {
  width: 100%;
  border-radius: 10px;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide p {
  margin-top: 0.5rem;
  font-weight: bold;
  color: #333;
}

.carousel-paused .swiper-button-next,
.carousel-paused .swiper-button-prev {
  opacity: 0;
  pointer-events: none;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s ease;
}


.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}


/* 🌿 PHOTO GALLERY */
.photo-gallery {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  text-align: center;
}

.photo {
  flex: 1 1 250px;
  max-width: 300px;
}

.photo img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.photo img:hover {
  transform: scale(1.03);
}

.photo p {
  margin-top: 0.5rem;
  font-weight: bold;
  color: #333;
}

/* 🌿 FORM STYLES */
form {
  background-color: #ffffff;
  padding: 20px;
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 8px;
  box-sizing: border-box;
}

form label {
  display: block;
  margin-top: 15px;
  color: var(--brand-green);
  font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #666666;
  border-radius: 4px;
  font-size: 16px;
  background-color: #ffffff;
  color: #333333;
  box-sizing: border-box;
  resize: vertical;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #a0c4ff;
}

form button {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.button {
      display: inline-block;
      margin-top: 2rem;
      padding: 10px 20px;
      background-color: #236202;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
      text-align: center;
    }

    .button:hover {
      background-color: #1a4b02;
    }

.button-inquiries {
  display: inline-block;
  margin-top: 2rem;
  padding: 10px 20px;
  background-color: #267CA4;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
}

.button:hover {
      background-color: #1a4b02;
    }

.button-inquiries:hover {
  background-color: #1C5D80;
}


form button[type="reset"] {
  background-color: #ffadad;
  color: #333333;
}

form button[type="reset"]:hover {
  background-color: #f08080;
}


form button[type="submit"] {
  background-color: #236202;
  color: white;
}

form button[type="submit"]:hover {
  background-color: #1a4b02;
  color: white;
}


/* 🌿 FOOTER */
footer {
  background-color: #f2f7f1;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #555;
}

/* 🌿 SWIPER PAGINATION */
.swiper-pagination-bullet {
  background-color: #5bf806;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

/* 🌿 MOBILE STYLES */
@media (max-width: 768px) {
  .menu-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-left,
  .menu-right {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    background-color: var(--brand-green);
    padding-top: 40px;
    margin-top: 50px;
 }

  .menu-left.active,
  .menu-right.active {
    display: flex;
  }

  .menu-left a,
  .menu-right a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .menu-right a:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: white;
    padding: 10px 20px;
    background-color: var(--brand-green);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  .overlay {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  .overlay h1 {
    margin: 0.25rem 0 0.5rem;
    font-size: 1.5rem;
  }

  .overlay p {
    font-size: 1.5rem;
  }

  .logo {
    max-width: 200px;
    margin-bottom: 0.25rem;
  }

  .photo-gallery {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .photo {
    max-width: 90%;
  }
}

.letter {
  max-width: 600px;
  margin: 4rem auto 2rem auto;
  padding-top: 60px;
  background-color: #f9fff9;
  border: 2px solid var(--brand-green);
  padding: 20px 30px;
  border-radius: 8px;
  line-height: 1.6;
  box-sizing: border-box;
}



.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.signature-block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.signature-image img {
  max-width: 120px;
  height: auto;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .letter {
    margin: 6rem 1rem 2rem 1rem;
    padding: 20px;
  }
}


  .container {
    max-width: 600px;
    margin: 6rem auto 2rem auto;
    background-color: #f9fff9;
    padding: 30px;
    border-radius: 8px;
    border: #1a4b02 2px solid;
    box-sizing: border-box;
    line-height: 1.6;
  }

    @media (max-width: 768px) {
      .container {
        margin: 120px 1rem 2rem 1rem;
        padding: 20px;
      }
    }
 .right-align {
  text-align: right;
  font-size: 1.0rem; /* slightly smaller than base (adjust as needed) */
  }

.carousel-photo {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}

.carousel-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-photo .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 33%; /* or 100% for full cover */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 0.95em;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.carousel-photo:hover .overlay {
  opacity: 1;
  pointer-events: auto;
}

#iot-readiness-questionnaire ul {
  list-style: none;
  padding-left: 0;
}