* {
  margin: 0;
  padding: 0;
  border: none;
  font-family: Josefin Sans, sans-serif;

  /* background-color: #4F4C44; */
}

/* .socials {
  position: fixed;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.socials a {
  text-decoration: none;
  color: #4caf50;
}

.socials a:hover {
  color: #07c09e;
} */
nav {
  display: flex;
  align-items: center;
  justify-content: center; 
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  gap: 40px;
  width: 100%;
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 40px; 
}


.nav-after {
  height: 5px;
  width: 100%;
  background: linear-gradient(to left, #4caf50 20%, #0bcabd 80%);
  z-index: 1000;
  position: fixed;
}

.logo {
  font-size: 40px;
  font-weight: bold;
  color: #00816a;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 20px;
}

.nav-links a:hover {
  color: #07c09e;
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #4caf50;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }

  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex;
  }

  .nav-after {
    height: 5px;
    width: 100%;
    background: linear-gradient(to left, #4caf50 20%, #0bcabd 80%);
    position: fixed;
    z-index: 998;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 30px;
    z-index: 1000;
  }
}

body {
  padding-top: 80px;
}

.title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px;
  padding: 10px 0;
}

.line {
  flex-grow: 0.4;
  height: 1px;
  background-color: #424242;
}

.title-text {
  color: black;
  font-size: 30px;
  text-transform: uppercase;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.swiper-container {
  max-width: 100%;
  height: auto;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.promo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 30px;
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  width: 100%;
  gap: 40px;
}

.promo-text {
  flex: 1;
  max-width: 500px;
}

.promo-text h2 {
  font-size: 32px;
  font-weight: bold;
  color: #00816a;
  margin-bottom: 15px;
}

.promo-text p {
  font-size: 18px;
  color: #424242;
  line-height: 1.6;
  margin-bottom: 15px;
}

.promo-text ul {
  list-style: none;
  padding: 0;
}

.promo-text ul li {
  font-size: 19px;
  color: #424242;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-text ul li::before {
  content: "✔";
  color: #00816a;
  font-weight: bold;
}

.promo-text .cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #00816a;
  color: white;
  font-size: 18px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(121, 97, 52, 0.3);
}

.promo-text .cta:hover {
  background: #07c09e;
  transform: translateY(-3px);
}

.promo-image img {
  max-width: 220px;
  height: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: white;
  border: 3px solid transparent;
  box-sizing: border-box;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.promo-image img:hover {
  border: 3px solid #00816a;
}

@media (max-width: 768px) {
  .promo-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .promo-content {
    flex-direction: column;
    gap: 20px;
  }
  .promo-text {
    max-width: 100%;
  }
  .promo-image img {
    max-width: 80%;
  }
}

/* #catalog {
  background: #fafafa;
  padding: 10px;
}

.cata-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px;
  padding: 10px 0;
}

.cata-line {
  flex-grow: 0.38;
  height: 1px;
  background-color: black;
}

.cata-text {
  color: black;
  font-size: 30px;
} */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.product {
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(224, 224, 224, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(248, 248, 247, 0.3);
}

.product img {
  max-width: 90%;
  height: 250px;
  border-radius: 10px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product:hover img {
  transform: scale(1.05);
}

.product h3,
.product p {
  margin: 10px 0;
}

.product button {
  background: #1d7f7c;
  color: white;
  padding: 10px 95px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: #2196f3 0.3s ease;
}

.product button:hover {
  background: #07c09e;
}

.storeFront {
  display: flex;
  justify-content: center;
  margin: 20px auto; 
}

.storeFront a {
  text-decoration: none; 
}

.storeFront button {
  border: 2px solid #1d7f7c; 
  background: transparent; 
  color: #1d7f7c; 
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.storeFront button:hover {
  background: #1d7f7c; 
  color: white; 
}



@media (max-width: 768px) {
  .cata-text {
    font-size: 24px;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
  .product img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .cata-text {
    font-size: 20px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product img {
    height: 180px;
  }
}

.innovate {
  background-color: #0bcabd;
  padding-top: 20px;
}

.innovator-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0px;
  padding: 10px 0;
}

.inno-line {
  flex-grow: 0.3;
  height: 1px;
  background-color: black;
}

.inno-text {
  color: black;
  font-size: 25px;
  text-transform: uppercase;
}

.innovator-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
  padding: 30px;
  gap: 20px;
}

.innovator-section img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.innovator-text {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.innovator-text h3 {
  font-size: 26px;
  color: #222;
  margin-bottom: 10px;
}

.innovator-text h4 {
  font-size: 20px;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
}

.innovator-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

.innovator-text strong {
  color: #00816a;
}

@media (max-width: 900px) {
  .innovator-section {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .innovator-text {
    max-width: 100%;
    text-align: center;
  }
  .innovator-section img {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .inno-text {
    font-size: 20px;
  }
  .innovator-text h3 {
    font-size: 22px;
  }
  .innovator-text h4 {
    font-size: 18px;
  }
  .innovator-text p {
    font-size: 15px;
  }
  .innovator-section img {
    width: 90%;
    max-width: 250px;
  }
}

.testim-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 90px;
  width: 90%;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 70px;
}

.testim-container img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
  display: block;
  margin-bottom: 10px;
}

.card {
  text-align: center;
  padding: 2rem;
  border-bottom-right-radius: 200px;
  border-top-left-radius: 200px;
}

.card-1 {
  border: 4px solid #00816a;
}

.card-2 {
  border: 4px solid #0bcabd;
}

.card-3 {
  border: 4px solid #88b94b;
}

.card-1 img {
  border: 3px solid #00816a;
}

.card-2 img {
  border: 3px solid #0bcabd;
}

.card-3 img {
  border: 3px solid #88b94b;
}

.card-1 i {
  font-size: 20px;
  margin-bottom: 10px;
  color: #00816a;
}

.card-2 i {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0bcabd;
}

.card-3 i {
  font-size: 20px;
  margin-bottom: 10px;
  color: #88b94b;
}

.name {
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 10px;
}

.testim-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 90px;
  width: 90%;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 70px;
}

.testim-container img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
  display: block;
  margin-bottom: 10px;
}

.card {
  text-align: center;
  padding: 2rem;
  border-bottom-right-radius: 200px;
  border-top-left-radius: 200px;
}

.card-1 {
  border: 4px solid #00816a;
}

.card-2 {
  border: 4px solid#07C09E;
}

.card-3 {
  border: 4px solid #88b94b;
}

.card-1 img {
  border: 3px solid #00816a;
}

.card-2 img {
  border: 3px solid #07c09e;
}

.card-3 img {
  border: 3px solid #88b94b;
}

.card-1 i {
  font-size: 20px;
  margin-bottom: 10px;
  color: #00816a;
}

.card-2 i {
  font-size: 20px;
  margin-bottom: 10px;
  color: #07c09e;
}

.card-3 i {
  font-size: 20px;
  margin-bottom: 10px;
  color: #88b94b;
}

.name {
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .testim-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .testim-container {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
    width: 90%;
    padding: 0 20px;
  }

  .testim-container img {
    height: 150px;
    width: 150px;
  }

  .card {
    padding: 1.5rem;
    border-bottom-right-radius: 150px;
    border-top-left-radius: 150px;
  }
}

@media (max-width: 200px) {
  .testim-container {
    grid-gap: 20px;
    width: 95%;
  }

  .testim-container img {
    height: 120px;
    width: 120px;
  }

  .card {
    padding: 1rem;
    border-bottom-right-radius: 100px;
    border-top-left-radius: 100px;
  }
}

.button {
  border: none;
  font-size: 16px;
  color: #fff;
  padding: 8px 16px;
  border-radius: 60px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background: #07c09e;
}

.footer-container {
  background: #00816a;
  padding: 4rem 0 2rem 0;
  position: relative;
  height: 40vh;
  border-top-left-radius: 20% 50%;
  border-top-right-radius: 20% 50%;
}

.footer {
  width: 80%;
  height: 20vh;
  background-color: inherit;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 45px 0;
  margin: 0 auto;
}

.footer-heading {
  display: flex;
  flex-direction: column;
  margin-right: 6rem;
}

.footer-heading {
  margin-bottom: 2rem;
}

.footer-heading a,
.contactText {
  color: #fff;
  text-decoration: none;
  margin-top: 5px;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.footer-heading a:hover,
.contactText:hover {
  color: #07c09e;
  transition: 0.3s ease-out;
}

.footer-email-form h2 {
  margin-bottom: 0.5rem;
}

#footer-email {
  width: 250px;
  height: 25px;
  border-radius: 4px;
  outline: none;
  border: none;
  padding-left: 0.5rem;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

#footer-email::placeholder {
  color: grey;
}

#footer-email-btn {
  width: 100px;
  height: 40px;
  border-radius: 4px;
  background-color: #4caf50;
  outline: none;
  border: none;
  color: #fff;
  font-size: 1rem;
}

#footer-email-btn:hover {
  cursor: pointer;
  background-color: #07c09e;
  transition: all 0.4s ease-out;
}

@media screen and (max-width: 768px) {
  .footer {
    min-height: 40vh;
  }

  .footer-email-form {
    margin-top: 0;
  }
}

@media screen and (max-width: 600px) {
  .footer {
    min-height: 30vh;
    padding-top: 2rem;
  }
}

@media screen and (max-width: 420px) {
  .footer-3 {
    display: none;
  }

  .footer-email-form {
    margin-top: 2rem;
    padding-left: 0;
  }
}

.message-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #00816a;
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.form-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.form-box {
  background: #00816a;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  position: relative;
}

.form-box h2 {
  padding-bottom: 10px;
}

.form-box label {
  line-height: 25px;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
}

input,
textarea {
  width: 95%;
  padding: 8px;
  margin-top: 0px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  width: 100%;
  background: #07c09e;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}
/* =========================
   HAMBURGER MENU UPDATE
   ========================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #00816a;
  border-radius: 5px;
  transition: 0.3s;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================
   MOBILE MENU STYLES
   ========================= */
@media (max-width: 768px) {
  .nav-container {
    /* 🛠️ ADJUSTED FIX: Increased horizontal padding to 35px */
    padding: 0 35px; 
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px; /* adjust if nav height changes */
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #fff;
    text-align: center;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    max-height: 300px; /* Adjust height to fit all links */
    opacity: 1;
    padding: 15px 0;
  }

  .nav-links li {
    margin: 10px 0;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}
