* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-family: "Poppins", sans-serif;
  background: #f8fafc;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

.header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.header .container {
  margin: auto;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1320px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 180px;
  transition: 0.35s ease;
}

.logo:hover img {
  transform: scale(1.03);
}

.navbar .nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.navbar .nav-menu li a {
  position: relative;
  color: #071c2c;
  font-weight: 600;
  font-size: 16px;
  transition: 0.35s ease;
}

.navbar .nav-menu li a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  border-radius: 50px;
  width: 0;
  height: 3px;
  content: "";
  background: #18a558;
  transition: 0.35s ease;
}

.navbar .nav-menu li a:hover {
  color: #18a558;
}

.navbar .nav-menu li a:hover::after {
  width: 100%;
}

.nav-menu .active {
  color: #18a558;
}

.nav-menu .active::after {
  width: 100%;
}

.header-btns {
  display: flex;
  align-items: center;
}

.header-btns .login-btn {
  border-radius: 50px;
  padding: 12px 30px;
  color: #fff;
  font-weight: 600;
  background: #18a558;
  transition: 0.35s ease;
}

.header-btns .login-btn:hover {
  background: #d64b4b;
  transform: translateY(-3px);
}

.hamburger {
  position: relative;
  z-index: 1100;
  border: none;
  width: 48px;
  height: 48px;
  display: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 10px;
  border-radius: 20px;
  width: 28px;
  height: 3px;
  background: #071c2c;
  transition: 0.35s;
}

.hamburger span:nth-child(1) {
  top: 14px;
}

.hamburger span:nth-child(2) {
  top: 22px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

.hamburger.active {
  position: fixed;
  top: 18px;
  right: 20px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  background: #18a558;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.hamburger.active span {
  background: #fff;
}

.hamburger.active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.overlay {
  position: fixed;
  z-index: 998;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: -330px;
  width: 330px;
  height: 100vh;
  padding: 25px;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-top {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.mobile-logo img {
  width: 170px;
}

.mobile-close {
  position: relative;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  outline: none;
  background: #18a558;
  cursor: pointer;
  transition: 0.35s ease;
}

.mobile-close span {
  position: absolute;
  top: 19px;
  left: 11px;
  width: 20px;
  height: 2px;
  background: #fff;
}

.mobile-close span:first-child {
  transform: rotate(45deg);
}

.mobile-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-close:hover {
  background: #d64b4b;
}

.mobile-nav li {
  margin-bottom: 15px;
}

.mobile-nav li a {
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 12px;
  color: #071c2c;
  font-weight: 600;
  font-size: 16px;
  gap: 15px;
  transition: 0.35s ease;
}

.mobile-nav li a i {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  min-width: 42px;
  background: #18a558;
  transition: 0.35s ease;
}

.mobile-nav li a span {
  flex: 1;
}

.mobile-nav li a:hover {
  padding-left: 18px;
  color: #18a558;
  background: rgba(24, 165, 88, 0.08);
}

.mobile-nav li a:hover i {
  background: #d64b4b;
}

.mobile-buttons {
  margin-top: 35px;
}

.mobile-buttons .login-btn {
  border-radius: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  color: #fff;
  font-weight: 600;
  gap: 10px;
  background: #18a558;
  transition: 0.35s ease;
}

.mobile-buttons .login-btn:hover {
  background: #d64b4b;
}

.mobile-social {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  padding-top: 25px;
  border-top: 1px solid #e9ecef;
  gap: 15px;
}

.mobile-social a {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #18a558;
  font-size: 18px;
  background: #f5f5f5;
  transition: 0.35s ease;
}

.mobile-social a:hover {
  color: #fff;
  background: #18a558;
  transform: translateY(-4px);
}

@media (max-width: 1200px) {
  .navbar .nav-menu {
    gap: 25px;
  }
  .navbar .nav-menu li a {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .header .container {
    height: 80px;
    padding: 0 15px;
  }
  .logo img {
    width: 165px;
  }
  .navbar {
    display: none;
  }
  .header-btns {
    display: none;
  }
  .hamburger {
    position: absolute;
    top: 50%;
    right: 15px;
    display: block;
    transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  .header .container {
    height: 75px;
  }
  .logo img {
    width: 150px;
  }
  .mobile-menu {
    right: -320px;
    width: 320px;
  }
  .mobile-menu.active {
    right: 0;
  }
}
@media (max-width: 575px) {
  .header .container {
    height: 70px;
  }
  .logo img {
    width: 135px;
  }
  .hamburger {
    right: 12px;
    width: 42px;
    height: 42px;
  }
  .hamburger span {
    left: 9px;
    width: 24px;
  }
  .hamburger span:nth-child(1) {
    top: 13px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 27px;
  }
  .mobile-menu {
    right: -290px;
    width: 290px;
    padding: 20px;
  }
  .mobile-logo img {
    width: 145px;
  }
  .mobile-nav li a {
    padding: 10px;
    font-size: 15px;
    gap: 12px;
  }
  .mobile-nav li a i {
    width: 38px;
    height: 38px;
    font-size: 15px;
    min-width: 38px;
  }
  .mobile-buttons {
    margin-top: 25px;
  }
  .mobile-buttons .login-btn {
    padding: 14px;
    font-size: 15px;
  }
}
@media (max-width: 400px) {
  .mobile-menu {
    right: -100%;
    width: 100%;
  }
  .mobile-menu.active {
    right: 0;
  }
}
.oz-footer {
  position: relative;
  padding: 80px 0 0;
  color: #fff;
  background: #061826;
  overflow: hidden;
}

.oz-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
}

.oz-footer .container {
  margin: auto;
  padding: 0 20px;
  max-width: 1320px;
}

.oz-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 45px;
}

.oz-footer-col {
  position: relative;
}

.oz-company {
  padding-right: 20px;
}

.oz-footer-logo {
  margin-bottom: 25px;
  display: inline-block;
}

.oz-footer-logo img {
  width: 200px;
  transition: 0.35s ease;
}

.oz-footer-logo:hover img {
  transform: scale(1.05);
}

.oz-company p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 28px;
}

.oz-social-icons {
  display: flex;
  gap: 15px;
}

.oz-social-icons a {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.35s ease;
}

.oz-social-icons a:hover {
  background: #18a558;
  transform: translateY(-5px);
}

.oz-footer-col h4 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  font-weight: 700;
  font-size: 22px;
}

.oz-footer-col h4::after {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 20px;
  width: 55px;
  height: 3px;
  content: "";
  background: #18a558;
}

.oz-footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.oz-footer-col ul li {
  margin-bottom: 16px;
  transition: 0.35s ease;
}

.oz-footer-col ul li a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 15px;
  gap: 12px;
  text-decoration: none;
  transition: 0.35s ease;
}

.oz-footer-col ul li a i {
  width: 22px;
  color: #18a558;
  font-size: 14px;
  transition: 0.35s ease;
}

.oz-footer-col ul li:hover {
  transform: translateX(8px);
}

.oz-footer-col ul li:hover a {
  color: #fff;
}

.oz-footer-col ul li:hover a i {
  color: #d64b4b;
}

.oz-contact-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.oz-contact-list li i {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #18a558;
  font-size: 17px;
  min-width: 42px;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.35s ease;
}

.oz-contact-list li a, .oz-contact-list li span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 26px;
  transition: 0.35s ease;
}

.oz-contact-list li:hover i {
  color: #fff;
  background: #18a558;
}

.oz-contact-list li:hover a, .oz-contact-list li:hover span {
  color: #fff;
}

.oz-footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.oz-footer-col ul li a .fa-capsules, .oz-footer-col ul li a .fa-heart-pulse, .oz-footer-col ul li a .fa-droplet, .oz-footer-col ul li a .fa-leaf, .oz-footer-col ul li a .fa-brain, .oz-footer-col ul li a .fa-shield-heart {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #18a558;
  font-size: 15px;
  min-width: 38px;
  background: rgba(24, 165, 88, 0.15);
  transition: 0.35s ease;
}

.oz-footer-col ul li a:hover .fa-capsules, .oz-footer-col ul li a:hover .fa-heart-pulse, .oz-footer-col ul li a:hover .fa-droplet, .oz-footer-col ul li a:hover .fa-leaf, .oz-footer-col ul li a:hover .fa-brain, .oz-footer-col ul li a:hover .fa-shield-heart {
  color: #fff;
  background: #18a558;
  transform: rotate(360deg);
}

.oz-footer-col ul li a {
  position: relative;
}

.oz-footer-col ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 34px;
  width: 0;
  height: 2px;
  content: "";
  background: #18a558;
  transition: 0.35s ease;
}

.oz-footer-col ul li:hover a::after {
  width: calc(100% - 34px);
}

.footer-bottom {
  margin-top: 60px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 28px;
}

.footer-bottom strong {
  color: #fff;
  font-weight: 600;
}

.tripledots {
  color: #18a558;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s ease;
}

.tripledots:hover {
  color: #d64b4b;
}

@media (max-width: 1200px) {
  .oz-footer-grid {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .oz-footer {
    padding: 70px 0 0;
  }
  .oz-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .oz-company {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .oz-footer {
    padding: 60px 0 0;
  }
  .oz-footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .oz-company {
    text-align: center;
  }
  .oz-footer-logo {
    display: flex;
    justify-content: center;
  }
  .oz-social-icons {
    justify-content: center;
  }
  .oz-footer-col h4 {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .oz-footer {
    padding: 50px 0 0;
  }
  .oz-footer .container {
    padding: 0 15px;
  }
  .oz-footer-logo img {
    width: 170px;
  }
  .oz-footer-col h4 {
    font-size: 20px;
  }
  .oz-company p {
    font-size: 17px;
    line-height: 26px;
  }
  .oz-footer-col ul li a {
    font-size: 16px;
  }
  .oz-contact-list li {
    gap: 12px;
  }
  .oz-contact-list li i {
    width: 38px;
    height: 38px;
    font-size: 15px;
    min-width: 38px;
  }
  .oz-social-icons {
    gap: 12px;
  }
  .oz-social-icons a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .footer-bottom {
    margin-top: 40px;
    padding: 18px 0;
  }
  .footer-bottom p {
    font-size: 13px;
    line-height: 24px;
  }
}
@media (max-width: 400px) {
  .oz-footer {
    text-align: left;
  }
  .oz-company {
    text-align: left;
  }
  .oz-footer-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
  }
  .oz-footer-logo img {
    width: 150px;
  }
  .oz-company p {
    font-size: 16px;
    text-align: left;
  }
  .oz-social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
  }
  .oz-footer-col {
    text-align: left;
  }
  .oz-footer-col h4 {
    font-size: 18px;
    text-align: left;
  }
  .oz-footer-col ul {
    padding: 0;
  }
  .oz-footer-col ul li {
    margin-bottom: 14px;
    text-align: left;
  }
  .oz-footer-col ul li a {
    justify-content: flex-start;
  }
  .oz-contact-list li {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer-bottom {
    text-align: center;
  }
}
.products-section {
  padding: 100px 0;
  background: #f8faf8;
}

.products-section .container {
  margin: auto;
  padding: 0 20px;
  max-width: 1320px;
}

.product-certifications {
  margin-bottom: 60px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 25px 30px;
  gap: 30px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-certifications .certificate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.35s ease;
}

.product-certifications .certificate-item:hover {
  transform: translateY(-5px);
}

.product-certifications .certificate-item img {
  margin-bottom: 10px;
  width: 65px;
  height: 65px;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-certifications .certificate-item span {
  color: #071c2c;
  font-weight: 600;
  font-size: 14px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.35s ease;
}

.product-card:hover {
  border-color: #18a558;
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-card:hover h3 {
  color: #18a558;
}

.product-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  aspect-ratio: 1/1;
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  transition: 0.35s ease;
}

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

.product-content {
  padding: 25px;
}

.product-content h3 {
  margin-bottom: 18px;
  color: #071c2c;
  font-weight: 700;
  font-size: 22px;
  transition: 0.35s ease;
}

.product-info {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-info li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: #333;
  font-size: 15px;
  border-bottom: 1px solid #e9ecef;
}

.product-info li:last-child {
  border-bottom: none;
}

.product-info li strong {
  color: #071c2c;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .products-section {
    padding: 80px 0;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-certifications {
    gap: 20px;
  }
  .product-certifications .certificate-item img {
    width: 55px;
    height: 55px;
  }
  .product-certifications .certificate-item span {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .products-section {
    padding: 70px 0;
  }
  .products-section .container {
    padding: 0 15px;
  }
  .products-grid {
    gap: 20px;
  }
  .product-image {
    height: 220px;
  }
  .product-image img {
    max-height: 180px;
  }
  .product-content {
    padding: 20px;
  }
  .product-content h3 {
    font-size: 20px;
  }
  .product-info li {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .products-section {
    padding: 60px 0;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-certifications {
    padding: 20px;
    gap: 18px;
  }
  .product-certifications .certificate-item img {
    width: 50px;
    height: 50px;
  }
  .product-certifications .certificate-item span {
    font-size: 12px;
  }
  .product-content h3 {
    font-size: 19px;
  }
}
@media (max-width: 575px) {
  .product-card {
    padding: 15px;
  }
  .product-image {
    height: 240px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px !important;
    background: #fff;
    overflow: hidden;
  }
  .product-image img {
    width: auto !important;
    height: 100% !important;
    display: block;
    max-width: 100% !important;
    max-height: 100% !important;
    -o-object-fit: contain !important;
    object-fit: contain !important;
    -o-object-position: center;
    object-position: center;
  }
}

/*# sourceMappingURL=product.css.map */
