/* Hero Section */

#hero {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero video {
  position: absolute;
  top: 40%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  background-size: cover;
}

.hero_container {
  position: relative;
  color: #f8f9fa;
  text-align: center;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
}

.hero_container h1 {
  font-size: 50px;
  line-height: 1.2;
  color: whitesmoke;
}

.hero_container p {
  font-size: 25px;
  margin-top: 20px;
  color: #cfd8dc;
}

.hero_container .btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  font-size: 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  margin-bottom: 29.050px;
}

/* Products Section */
.products {
  background: #f8f9fa;
  padding: 20px 20px
}

.products .section_container {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 10px;
}

.products .product_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.product-card {
  position: relative;
  max-width: 280px;
  background: linear-gradient(135deg, #f0f0f0 0%, #fff 100%);
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card:nth-child(1) { --animation-order: 1; }
.product-card:nth-child(2) { --animation-order: 2; }
.product-card:nth-child(3) { --animation-order: 3; }
.product-card:nth-child(4) { --animation-order: 4; }
.product-card:nth-child(5) { --animation-order: 5; }

.product-card img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-family: 'Poppins', sans-serif;
  margin: 10px 0;
  font-size: 1.75em;
  color: #333;
  transition: color 0.3s ease;
  
  /* Set fixed height */
  height: 70px;
  
  /* Flexbox to center content vertically */
  display: flex;
  align-items: center;  /* Centers text vertically */
  justify-content: center;  /* Centers text horizontally, optional */
}

.product-card:hover h3 {
  color: #007bff;
}

.product-card p {
  color: #555;
  font-size: 1.1em;
  line-height: 1.6;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.product-btn:hover {
  background-color: #0056b3;
}

/* WhatsApp Button */
.whatsapp-btn-container {
  text-align: center;
  margin: 30px 0px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #25d366;
  color: white;
  font-size: 1.2em;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-btn img {
  width: 30px;
  margin-right: 10px;
}

.whatsapp-btn:hover {
  background-color: #20b358;
}

/* Badge Styling */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff4757;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8em;
}

/* About Section */
.about {
  background-image: linear-gradient(to top, #00c6fb 0%, #005bea 100%);
  padding: 50px 20px;
}

.about .section_container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: white;
}

.box {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.3s;
}

/* Animations */
.box.animate-left {
  animation: slideInLeft 1s ease forwards;
}

.box.animate-right {
  animation: slideInRight 1s ease forwards;
}

.box:hover {
  transform: scale(1.02);
}

.box img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s;
}

.box img:hover {
  transform: scale(1.05);
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5em;
  color: #333;
  margin: 30px 0px;
}

p {
  font-size: 25px;
  line-height: 1.5;
}

/* Slide-in Animations */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Strength Section */
.strength {
  background-color: #f8f9fa;
  padding: 20px 20px;
}

.strength .section_container {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 10px;
}

.feature {
  max-width: 300px;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature img {
  max-width: 100px;
  margin: 20px;
}

.feature h3 {
  height: 70px;
  font-size: 1.5em;
  margin-bottom: 10px;
    display: flex;
  align-items: center;  /* Centers text vertically */
  justify-content: center;  /* Centers text horizontally, optional */
}

.feature p {
  font-size: 1.1em;
  color: #555;
}

/* Testimony Section */
.testimony {
  background-color: #f8f9fa;
  padding: 20px 20px;
}

.testimony .section_container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #333;
}

.testimonial-carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  margin: 20px 0;
}

.testimonial {
  min-width: 100%;
  transition: transform 0.5s ease;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 1.2em;
  line-height: 1.6;
  margin: 0 0 10px;
}

.testimonial span {
  display: block;
  font-size: 1em;
  color: #777;
  margin-top: 5px;
}

.testimony button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 2em;
  color: #007bff;
  z-index: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

button:hover {
  color: #0056b3;
}

/* Shipping Locations Section */
.shipping {
  background-color: #f8f9fa;
  padding: 20px 20px;
  text-align: center;
}

.shipping .section_container {
  max-width: 1200px;
  margin: 0 auto;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.location-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 1.2em;
  color: #555;
  transition: transform 0.3s, box-shadow 0.3s;
}

.location-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.location-list img {
  width: 40px;
  height: 25px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Certification Section */
.certifications {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.certifications .section_container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 100px;
}

.certifications-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.certifications-logos img {
  max-width: 150px;
  height: auto;
  transition: transform 0.3s;
}

.certifications-logos img:hover {
  transform: scale(1.05);
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  .about .section_container {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 768px) {
  #hero {
    height: 40vh;
  }

  .hero_container h1 {
    font-size: 28px;
  }

  .hero_container p {
    font-size: 16px;
  }

  .about h2 {
    font-size: 2em;
  }

  .about p {
    font-size: 1em;
  }


  .feature h3 {
    font-size: 1.2em;
  }

  .feature p {
    font-size: 1em;
  }

  .testimony .testimonial p {
    font-size: 1em;
  }

  .certifications h2 {
    font-size: 1.8em;
  }
}
