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

body {
  top: 0 !important;
}
a:hover {
  cursor: pointer;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none !important;
}
/* top header */

.top-header {
  font-family: "Open Sans", Arial, sans-serif;
  background: #8fc427;
  color: #fff;
}

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

.top-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.top-left span {
  font-size: 15px;
  font-weight: 600;
}

.top-left a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.top-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.social {
  display: flex;
  gap: 6px;
}

.social a {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: 0.35s;
  text-decoration: none;
}

.custom-dropdown-container {
  position: relative;
  width: 170px;
  font-family: "Open Sans", Arial, sans-serif;
  user-select: none;
}

.custom-select-trigger {
  height: 29px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.selected-option {
  display: flex;
  align-items: center;
}

.flag-img {
  width: 21px;
  height: 14px;
  margin-right: 5px;
  /* border-radius: 2px; */
  opacity: 0.8;
}
.flag-img:hover {
  opacity: 1;
}

.flag-text {
  font-size: 15px;
  color: #747373;
  font-weight: 500;
}

/* Arrow Rotation */
.arrow-icon {
  font-size: 12px;
  color: #333;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-dropdown-container.open .arrow-icon {
  transform: rotate(180deg);
}

.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  z-index: 1000;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.6s;
  visibility: hidden;
}

.custom-dropdown-inner {
  overflow: hidden;
  max-height: 250px;
  overflow-y: auto;
}

.custom-dropdown-container.open .custom-dropdown-menu {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
}

.custom-option {
  padding: 10px 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.custom-option:hover {
  background-color: #f7fafc;
}

.custom-option.selected {
  background-color: #edf2f7;
}

#google_translate_element,
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.goog-te-balloon-frame {
  display: none !important;
}

.skiptranslate {
  font-size: 0 !important;
}

@media (max-width: 768px) {
  .top-header .container {
    flex-direction: column;
    padding: 15px 0;
    gap: 15px;
  }

  .top-left {
    flex-direction: column;
    gap: 10px;
  }

  .top-right {
    gap: 15px;
  }
  .top-left span {
    font-weight: 500;
  }
  .top-left span a {
    font-weight: 500;
  }
}

/* main header */
.header a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  padding: 10px 0;
}

.header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header {
  width: 100%;
  background: #fff;
  border-top: 2px solid #93c93d;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 999;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
}

.header .container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.header .logo img {
  width: 250px;
  max-width: 100%;
  height: auto;
  display: block;
}

.header .navbar {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .navbar > ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header .navbar ul li {
  position: relative;
}

.header .navbar ul li a {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #000000 !important;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header .navbar i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.header .navbar ul li.dropdown:hover > a i {
  transform: rotate(180deg);
}

.header .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 17px 25px;
  background: #ffffff;
  border-top: 3px solid #2ea3f2;
  border-radius: 0 0 0px 0px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header .dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header .dropdown-menu li {
  width: 100%;
  position: relative;
}

.header .dropdown-menu li a {
  padding: 6px 20px !important;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
  font-size: 16px !important;
  color: #000000 !important;
  justify-content: space-between;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.header .dropdown-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.03);
  opacity: 0.7;
}

.header .submenu {
  position: absolute;
  top: -64%;
  left: 100%;
  padding: 17px 25px;
  background: #ffffff;
  border-top: 3px solid #2ea3f2;
  box-shadow: 8px 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: all 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header .has-submenu:hover > a {
  background: #f4f8f0;
  color: #00a504;
}

.header .has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header .submenu li a {
  padding: 12px 20px;
  font-weight: 600;
  color: #222;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header .phone-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #00a504;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 165, 4, 0.25);
}

.header .phone-content span {
  display: block;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
  overflow: hidden;
}

.header .phone-content a {
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 700;
  transition: color 0.3s ease;
}

@media (max-width: 1280px) {
  .header .navbar > ul {
    gap: 18px;
  }
  .header .navbar ul li a {
    font-weight: 500;
    font-size: 14px !important;
    color: #000000 !important;
  }
  .header .logo img {
    width: 210px;
  }
}

@media (max-width: 1100px) {
  .header .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header .navbar {
    width: 100%;
    order: 3;
    margin-top: 10px;
  }

  .header .navbar > ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #68bc20;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }
  .header-contact {
    display: none;
  }

  .header .container {
    position: relative;
    padding: 12px 20px;
  }

  .header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
    margin-top: 0;
    z-index: 1000;
  }

  .header .navbar.active {
    display: flex;
  }

  .header .navbar > ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .header .navbar ul li {
    width: 100%;
  }

  .header .navbar ul li a {
    padding: 12px 0;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
  }
  .header a {
    padding: 12px 0;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
  }

  .header .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: none;
    border-top: none;
    padding: 5px 0 5px 15px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #fafafa;
  }

  .header .dropdown:hover > .dropdown-menu,
  .header .dropdown.open > .dropdown-menu {
    display: flex;
    transform: none;
  }

  .header .submenu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: none;
    border-top: 2px solid white;
    padding: 5px 0 5px 15px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    /* background: #f4f8f0; */
    margin-top: 5px;
  }

  .header .has-submenu:hover > .submenu,
  .header .has-submenu.open > .submenu {
    display: flex;
    transform: none;
  }

  .header-contact {
    margin-left: auto;
  }
}

@media (max-width: 576px) {
  .header .phone-content {
    display: none;
  }
}

@media (max-width: 1024px) {

  .navbar .dropdown > .submenu,
  .navbar .has-submenu > .submenu,
  .navbar .dropdown .dropdown-menu,
  .navbar .has-submenu .dropdown-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
  }

  /* Dropdown arrow hide karna ho to */
  .navbar .dropdown-icon {
    display: none !important;
  }

  /* Parent dropdown ko normal rakho */
  .navbar .dropdown,
  .navbar .has-submenu {
    height: auto;
  }
}

/* footer */

.site-footer {
  background: rgba(12, 75, 4, 0.2);
  /* margin-top: 60px; */
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  color: #222;
}

.site-footer a {
  text-decoration: none;
}

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

.site-footer__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1% 20px;
}

.site-footer__certificates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 40px 0 50px 0;
  margin-bottom: 50px;
}

.site-footer__certificate {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.site-footer__certificate img {
  width: 123px;
  /* height: 103px; */
  object-fit: contain;
  display: block;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.site-footer__heading {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 14.593%;
  line-height: 1em;
  position: relative;
}

.site-footer__info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.site-footer__icon {
  width: 35px;
  min-width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #7cda24;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(121, 207, 24, 0.3);
}

.site-footer__content h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #333;
}

.site-footer__content p {
  font-size: 15px;
  color: #000000 !important;
  font-weight: 500;
  line-height: 1.7em;
  margin: 0;
}

.site-footer__content a {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7em;
  transition: color 0.3s ease;
}

.site-footer__menu li {
  margin-bottom: 12px;
}

.site-footer__menu li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 15px;
  font-family: "Raleway";
  font-weight: 500;
}

.site-footer__leaf-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("../img/footer/leaf-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.2s ease;
}

.site-footer__menu li a:hover .site-footer__leaf-icon {
  background-image: url("../img/footer/leaf.png");
}

.site-footer__bottom {
  background-image: linear-gradient(90deg, #0c4b04 0%, #9ac41f 96%) !important;
  width: 100%;
}

.site-footer__bottom .site-footer__container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 55px;
  padding: 12px 20px;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
}

.site-footer__bottom p,
.site-footer__container p {
  color: #ffffff;

  font-size: 15px;
  font-family: "Raleway";
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .site-footer__bottom .site-footer__container {
    min-height: 50px;
    padding: 10px 15px;
  }

  .site-footer__container p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .site-footer__container p {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (max-width: 1200px) {
  .site-footer__certificate img {
    width: 97px;
  }
}
@media (max-width: 991px) {
  .site-footer__certificate img {
    width: 85px;
  }
}

@media (max-width: 1023px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 30px;
  }

  .site-footer__certificates {
    gap: 12px;
  }
}

@media (max-width: 767px) {
 

  .site-footer__certificates {
    padding: 30px 0;
    gap: 10px;
  }

  .site-footer__certificate img {
    width: 75px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer__heading {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .site-footer__info {
    margin-bottom: 18px;
  }
}
@media (max-width: 650px) {
  .site-footer__certificate img {
    width: 55px;
  }
}

/* home page css */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  font-family: "Open Sans", Arial, sans-serif;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.product-card {
  background: #ffffff;
  padding-top: 15px;
  box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 480px;
  position: relative;
  height: 500px;
  width: 100%;
  transition: 0.5s ease-in-out;
}
.product-card:hover {
  transition: 0.5s ease-in-out;
  transform: scale3d(1.1, 1.1, 1.1);
}

.product-card .card-image {
  margin-bottom: 30px;
  line-height: 0;
  max-width: 100%;
}

.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card .card-title {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;

  font-size: 20px;
  font-weight: 800 !important;
  color: #000000 !important;
  margin-bottom: 25px;

  padding: 0 25px;
}

.product-card .card-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 25px 30px 25px;
}

.btn-green {
  background-color: #93c92b;
  color: #ffffff;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
   white-space: nowrap;
}

.btn-green:hover {
  background-color: #000000;
}

.btn-outline {
  background-color: transparent;
  color: #000000;
  padding: 9px 20px;
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid #000000;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  background-color: #82b424;
  border: 1.5px solid #82b424;
  color: #ffffff;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 210px);
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}

.cert-card {
  background: #ffffff;
  border: 1px solid #8fc427;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 500px) {
  .product-card .card-title {
    font-size: 15px;
    line-height: 1.2em;
  }
  .product-card {
    height: 420px;
  }
}
@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 15px;
  }

  .product-card .card-image {
    height: 200px;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 140px);
    gap: 15px;
  }

  .cert-card {
    height: 90px;
  }
}
@media (max-width: 450px) {
  .product-card .card-buttons {
    padding: 0 18px 30px 1px;
  }
  .btn-green {
    font-size: 13px;
    padding: 10px 15px;
  }
}

/* gallery section  */

.slider-section {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  padding: 60px 30px 40px 30px;
}

.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  border-radius: 4px;
  overflow: hidden;
  background: #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.swiper-slide img {
  width: 100%;

  object-fit: cover;
  display: block;
}

.swiper-button-next,
.swiper-button-next,
.swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  background-color: #e2e2e2 !important;
  border-radius: 50% !important;
  color: #555555 !important;
  top: 58% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  transition: all 0.3s ease !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: bold !important;
  color: #555555 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #d0d0d0 !important;
  color: #111111 !important;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: #111111 !important;
}

.swiper-button-prev {
  left: 10px !important;
}

.swiper-button-next {
  right: 10px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #cccccc;
  color: #111111;
}

.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 1200px) {
  .swiper-slide img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .slider-section {
    padding: 40px 15px;
  }
  .swiper-slide img {
    height: 250px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px !important;
  }
}

/* floating actions */

.floating-actions {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-item {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  padding: 0.9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  z-index: 2;
  flex-shrink: 0;
}
.floating-btn img {
  width: 100%;
}

.floating-label {
  position: relative;
  background-color: white;
  color: #ffffff;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 5px 10px 5px 10px;
  border: 1px solid #fff;
  border-radius: 30px;
  margin-left: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  white-space: nowrap;
  width: 127px;

  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.floating-label::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 7px solid #319838;
  transition: border-right-color 0.3s ease;
}

.floating-item:hover .floating-btn {
  transform: scale(1.08);
}

.floating-item:hover .floating-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  background-color: #359935;
}

.floating-item:hover .floating-label::before {
  border-right-color: #359935;
}

.floating-brochure {
  position: fixed;
  left: -10px;
  bottom: 79px;
  z-index: 10;
}

.brochure-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff !important;
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 0px;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 600;
  font-size: 19px;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
  writing-mode: vertical-lr;
  transform: rotate(180deg);

  border-width: 0px !important;

  font-weight: 600 !important;

  background-image: linear-gradient(90deg, #1c4c0f 1%, #7cda24 100%);

  transition: all 0.3s ease;
}

.brochure-tab i {
  font-size: 18px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.brochure-tab:hover {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  background: linear-gradient(#000000, #ed2c2c) !important;
  transition: 1s;
}

.brochure-tab:hover i {
  transform: rotate(90deg) translateY(-3px);
}
@media (max-width: 650px) {
  .brochure-tab {
    display: none;
  }
}

/* hero banner  */
.hero-banner-section {
  position: relative;
  width: 100%;
  /* height: 100vh;  */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}

.hero-banner-section .banner-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-banner-section .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-banner-section .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  height: 100%;
  background: rgba(255, 255, 255, 0.55);
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.rotating-logo-wrapper {
  margin-bottom: 15px;
  margin-top: 20px;
}

.rotating-logo {
  width: 111px;
  height: 110px;
  animation: spinInfinite 5s linear infinite;
}

@keyframes spinInfinite {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.typing-header {
  font-size: 54px;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.typing-text {
  border-right: 4px solid #000;
  padding-right: 5px;
  white-space: nowrap;
  animation: blinkCursor 0.75s step-end infinite;
}

@keyframes blinkCursor {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #000;
  }
}

.content-list {
  list-style: none;
  margin: 0 auto;
  padding: 0 0 0 35px;
  max-width: 800px;
  width: 100%;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-sizing: border-box;
  margin-bottom: 56px;
}

.content-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10%;
  bottom: -10%;
  width: 2.5px;
  background-color: green;
}

.content-item {
  position: relative;
  font-size: 18px;
  line-height: 1.6;
  color: #111111;
  font-weight: 600;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
}

.content-item::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background-color: green;
}

.content-item strong {
  color: #000000;
}

@media (max-width: 991px) {
  .hero-banner-content {
    width: 90%;
    padding: 0 25px;
  }

  .typing-header {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .content-list {
    max-width: 100%;
    padding-left: 25px;
    gap: 18px;
  }

  .content-item {
    font-size: 16px;
  }

  .content-item::before {
    left: -28px;
  }
}

@media (max-width: 576px) {
  .hero-banner-content {
    width: 100%;
    padding: 0 15px;
  }

  .rotating-logo {
    width: 65px;
    height: 65px;
  }

  .typing-header {
    font-size: 26px;
  }

  .content-list {
    padding-left: 20px;
    gap: 15px;
  }

  .content-item {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
  }

  .content-item::before {
    left: -23px;
  }
}

/* chatbot*/
.chatbot-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999999;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.chatbot-toggle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #00a544;
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.chatbot-toggle-btn:hover {
  transform: scale(1.08);
  background-color: #008f3a;
}

.chatbot-toggle-btn i {
  font-size: 26px;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-toggle-btn .icon-close {
  opacity: 0;
  transform: scale(0.4) rotate(-90deg);
}

.chatbot-wrapper.open .chatbot-toggle-btn .icon-chat {
  opacity: 0;
  transform: scale(0.4) rotate(90deg);
}

.chatbot-wrapper.open .chatbot-toggle-btn .icon-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.chatbot-box {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 350px;
  height: 500px;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.92);
  transform-origin: bottom right;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-wrapper.open .chatbot-box {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

.chat-header {
  background-color: #00a544;
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 600;
}

.chat-header .header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.chat-header i {
  font-size: 16px;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.chat-header i:hover {
  opacity: 1;
}

.chat-body {
  flex: 1;
  padding: 20px 16px;
  background-color: #fbfbfb;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.message-wrapper.user {
  justify-content: flex-end;
}

.support-avatar img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #e2e8f0;
  object-fit: cover;
}

.message-content {
  max-width: 230px;
}

.agent-name {
  display: block;
  font-size: 12px;
  color: #666666;
  margin-bottom: 6px;
}

.message-bubble {
  background-color: #00a544;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px 12px 12px 0px;
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: 0 3px 10px rgba(0, 165, 68, 0.15);
}

.message-wrapper.user .message-bubble {
  background-color: #e2e8f0;
  color: #333333;
  border-radius: 12px 12px 0px 12px;
  box-shadow: none;
}

.chat-footer {
  border-top: 1px solid #eeeeee;
  padding: 14px 16px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-footer input {
  width: 65%;
  border: none;
  outline: none;
  font-size: 13.5px;
  color: #333333;
  background: transparent;
}

.chat-footer input::placeholder {
  color: #999999;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-icons i {
  font-size: 16px;
  color: #333333;
  cursor: pointer;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-icons i:hover {
  color: #00a544;
  transform: scale(1.1);
}

/* Hide default Tawk.to widget iframe */
iframe[title="chat widget"] {
  display: none !important;
}

@media (max-width: 480px) {
  .chatbot-wrapper {
    right: 15px;
    bottom: 15px;
  }
  .chatbot-box {
    width: calc(100vw - 30px);
    height: 460px;
  }
}
