/* root variables  */
:root {
  /* brand colors  */
  --gentox-primary: #176b3a;
  --gentox-primary-dark: #0e4d29;
  --gentox-primary-light: #eaf5e6;

  --gentox-secondary: #45a82c;
  --gentox-lime: #7bcb35;

  --gentox-red: #e30613;
  --gentox-red-dark: #b8040e;

  /* text colors  */
  --gentox-heading: #17221b;
  --gentox-text: #536057;
  --gentox-muted: #7a857e;

  /* background colors */
  --gentox-white: #ffffff;
  --gentox-bg: #fafcf8;
  --gentox-light: #f3f8f1;
  --gentox-light-green: #eaf5e6;
  --gentox-light-gray: #f5f7f6;

  /* border */
  --gentox-border: #dfe8e1;

  /* =========================
       STATUS
    ========================== */

  --gentox-success: #2e8b57;
  --gentox-whatsapp: #25d366;

  /* =========================
       FOOTER
    ========================== */

  --gentox-footer: #0d2b1b;

  /* =========================
       BORDER RADIUS
    ========================== */

  --gentox-radius-sm: 8px;
  --gentox-radius: 14px;
  --gentox-radius-lg: 24px;
  --gentox-radius-xl: 32px;

  /* =========================
       SHADOWS
    ========================== */

  --gentox-shadow-sm: 0 5px 20px rgba(23, 107, 58, 0.06);

  --gentox-shadow: 0 12px 40px rgba(23, 107, 58, 0.1);

  --gentox-shadow-lg: 0 20px 60px rgba(23, 107, 58, 0.14);

  /* =========================
       TRANSITION
    ========================== */

  --gentox-transition: all 0.3s ease;

  /* =========================
       CONTAINER
    ========================== */

  --gentox-container: 1320px;
}

/* =========================================================
   2. GLOBAL RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--gentox-text);
  background: var(--gentox-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--gentox-transition);
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* =========================================================
   3. TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: var(--gentox-heading);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
  font-size: 1.35rem;
}

p {
  margin-bottom: 0;
}

.text-primary-gentox {
  color: var(--gentox-primary) !important;
}

.text-green {
  color: var(--gentox-secondary) !important;
}

.text-red {
  color: var(--gentox-red) !important;
}

/* =========================================================
   4. GLOBAL CONTAINER
========================================================= */

.container-xl {
  max-width: var(--gentox-container);
}

/* =========================================================
   5. SECTION SPACING
========================================================= */

.section-pad {
  padding: 40px 0;
}

.section-pad-sm {
  padding: 70px 0;
}

.section-pad-lg {
  padding: 120px 0;
}

.section-bg {
  background: var(--gentox-bg);
}

.section-light {
  background: var(--gentox-light);
}

/* =========================================================
   6. SECTION HEADER
========================================================= */

.section-heading {
  max-width: 750px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 14px;

  color: var(--gentox-primary);

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-heading .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;

  background: var(--gentox-secondary);

  border-radius: 10px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading h2 span {
  color: var(--gentox-primary);
}

.section-heading p {
  max-width: 650px;
  margin: auto;

  color: var(--gentox-text);
  font-size: 1rem;
}

/* =========================================================
   7. BUTTONS
========================================================= */

.gentox-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 52px;
  padding: 0 27px;

  border: 2px solid transparent;
  border-radius: 8px;

  font-size: 0.92rem;
  font-weight: 600;

  transition: var(--gentox-transition);
}

.gentox-btn i {
  font-size: 0.85rem;
  transition: var(--gentox-transition);
}

/* Primary */

.gentox-btn-primary {
  color: var(--gentox-white);
  background: var(--gentox-primary);
  border-color: var(--gentox-primary);
}

.gentox-btn-primary:hover {
  color: var(--gentox-white);
  background: var(--gentox-primary-dark);
  border-color: var(--gentox-primary-dark);

  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(23, 107, 58, 0.22);
}

.gentox-btn-primary:hover i {
  transform: translateX(4px);
}

/* Outline */

.gentox-btn-outline {
  color: var(--gentox-primary);
  background: transparent;
  border-color: var(--gentox-primary);
}

.gentox-btn-outline:hover {
  color: var(--gentox-white);
  background: var(--gentox-primary);
  border-color: var(--gentox-primary);

  transform: translateY(-2px);
}

/* Red */

.gentox-btn-red {
  color: var(--gentox-white);
  background: var(--gentox-red);
  border-color: var(--gentox-red);
}

.gentox-btn-red:hover {
  color: var(--gentox-white);
  background: var(--gentox-red-dark);
  border-color: var(--gentox-red-dark);

  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(227, 6, 19, 0.2);
}

/* =========================================================
   8. GLOBAL CARD
========================================================= */

.gentox-card {
  background: var(--gentox-white);
  border: 1px solid var(--gentox-border);
  border-radius: var(--gentox-radius);

  box-shadow: var(--gentox-shadow-sm);

  transition: var(--gentox-transition);
}

.gentox-card:hover {
  transform: translateY(-6px);

  border-color: rgba(23, 107, 58, 0.2);

  box-shadow: var(--gentox-shadow);
}

/* =========================================================
   9. IMAGE HOVER
========================================================= */

.img-hover {
  overflow: hidden;
}

.img-hover img {
  transition: transform 0.6s ease;
}

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

/* =========================================================
   10. BADGE
========================================================= */

.gentox-badge {
  display: inline-flex;
  align-items: center;

  padding: 7px 13px;

  color: var(--gentox-primary);

  background: var(--gentox-primary-light);

  border-radius: 50px;

  font-size: 0.75rem;
  font-weight: 700;
}

/* =========================================================
   11. DIVIDER
========================================================= */

.gentox-divider {
  width: 60px;
  height: 3px;

  background: var(--gentox-secondary);

  border-radius: 10px;

  margin: 18px 0;
}

/* =========================================================
   12. FORM ELEMENTS
========================================================= */

.form-control,
.form-select {
  min-height: 52px;

  padding: 12px 16px;

  color: var(--gentox-heading);

  background: var(--gentox-white);

  border: 1px solid var(--gentox-border);

  border-radius: 8px;

  box-shadow: none;

  transition: var(--gentox-transition);
}

.form-control:focus,
.form-select:focus {
  color: var(--gentox-heading);

  background: var(--gentox-white);

  border-color: var(--gentox-primary);

  box-shadow: 0 0 0 4px rgba(23, 107, 58, 0.08);
}

/* =========================================================
   13. SCROLLBAR
========================================================= */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--gentox-primary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gentox-primary-dark);
}

/* =========================================================
   14. SELECTION
========================================================= */

::selection {
  color: var(--gentox-white);
  background: var(--gentox-primary);
}

/* =========================================================
   15. SWIPER GLOBAL
========================================================= */

.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;

  color: var(--gentox-primary);

  background: var(--gentox-white);

  border-radius: 50%;

  box-shadow: var(--gentox-shadow-sm);

  transition: var(--gentox-transition);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 15px;
  font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--gentox-white);
  background: var(--gentox-primary);

  transform: scale(1.05);
}

.swiper-pagination-bullet {
  width: 9px;
  height: 9px;

  background: var(--gentox-white);

  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  width: 25px;

  opacity: 1;

  border-radius: 20px;

  background: var(--gentox-secondary);
}

/* =========================================================
   16. WHATSAPP FLOATING BUTTON
========================================================= */

.gentox-whatsapp {
  position: fixed;

  right: 22px;
  bottom: 22px;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gentox-white);

  background: var(--gentox-whatsapp);

  border-radius: 50%;

  font-size: 27px;

  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);

  z-index: 999;

  transition: var(--gentox-transition);
}

.gentox-whatsapp:hover {
  color: var(--gentox-white);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.38);
}

/* =========================================================
   17. BACK TO TOP
========================================================= */
.gentox-back-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gentox-white);
  background: var(--gentox-primary);
  border: none;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 998;
  transition: var(--gentox-transition);
}

.gentox-back-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gentox-back-top:hover {
  background: var(--gentox-primary-dark);
}

/* =========================================================
   18. UTILITY
========================================================= */

.text-gradient {
  background: linear-gradient(
    90deg,
    var(--gentox-primary),
    var(--gentox-secondary)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gentox {
  background: var(--gentox-primary) !important;
}

.bg-gentox-light {
  background: var(--gentox-light) !important;
}

.bg-gentox-dark {
  background: var(--gentox-footer) !important;
}

/* =========================================================
   19. RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
  .section-pad {
    padding: 85px 0;
  }

  .section-pad-lg {
    padding: 100px 0;
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 75px 0;
  }

  .section-pad-sm {
    padding: 55px 0;
  }

  .section-pad-lg {
    padding: 85px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 65px 0;
  }

  .section-pad-sm {
    padding: 45px 0;
  }

  .section-pad-lg {
    padding: 75px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading p {
    font-size: 0.92rem;
  }

  .gentox-btn {
    min-height: 48px;
    padding: 0 21px;
    font-size: 0.86rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 55px 0;
  }

  .section-pad-sm {
    padding: 40px 0;
  }

  .section-pad-lg {
    padding: 65px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading .eyebrow {
    font-size: 0.7rem;
  }

  .gentox-whatsapp {
    width: 52px;
    height: 52px;

    right: 15px;
    bottom: 15px;

    font-size: 24px;
  }

  .gentox-back-top {
    right: 15px;
    bottom: 78px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------- */

/* header.php page styling starts from here */
/* =========================================================
   GENTOX HEADER & NAVBAR
========================================================= */

/* =========================================================
   TOP BAR
========================================================= */

.gentox-topbar {
  position: relative;

  width: 100%;

  background: var(--gentox-footer);

  color: rgba(255, 255, 255, 0.82);

  font-size: 0.78rem;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gentox-topbar-inner {
  min-height: 38px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.gentox-topbar-left,
.gentox-topbar-right {
  display: flex;
  align-items: center;

  gap: 18px;
}

.gentox-topbar-left span,
.gentox-topbar-left a {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  color: rgba(255, 255, 255, 0.82);

  white-space: nowrap;
}

.gentox-topbar-left a:hover,
.gentox-topbar-right a:hover {
  color: var(--gentox-lime);
}

.gentox-topbar i {
  color: var(--gentox-lime);

  font-size: 0.72rem;
}

.gentox-topbar-divider {
  width: 1px;
  height: 15px;

  background: rgba(255, 255, 255, 0.2);
}

.gentox-topbar-right {
  gap: 13px;
}

.gentox-topbar-right > span {
  margin-right: 3px;

  color: rgba(255, 255, 255, 0.6);

  font-size: 0.73rem;
}

.gentox-topbar-right a {
  width: 26px;
  height: 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.8);

  border: 1px solid rgba(255, 255, 255, 0.16);

  border-radius: 50%;

  transition: var(--gentox-transition);
}

.gentox-topbar-right a:hover {
  color: var(--gentox-white);

  background: var(--gentox-primary);

  border-color: var(--gentox-primary);

  transform: translateY(-2px);
}

/* =========================================================
   MAIN HEADER
========================================================= */

.gentox-header {
  position: sticky;

  top: 0;

  z-index: 1000;

  width: 100%;

  background: var(--gentox-white);

  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}

/*
   Add shadow automatically when header
   becomes sticky/when page scrolls.
*/

.gentox-header.scrolled {
  box-shadow: 0 8px 30px rgba(23, 107, 58, 0.1);
}

/* =========================================================
   NAVBAR
========================================================= */

.gentox-navbar {
  min-height: 82px;

  padding: 0;

  background: var(--gentox-white);
}

/* =========================================================
   LOGO
========================================================= */

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

  flex-shrink: 0;

  padding: 0;

  margin-left: 25px;
}

.gentox-logo img {
  width: 80px;
  height: auto;

  object-fit: contain;

  transition:
    width 0.3s ease,
    transform 0.3s ease;
}

.gentox-logo:hover img {
  transform: scale(1.02);
}

/* =========================================================
   NAVIGATION
========================================================= */

.gentox-nav {
  display: flex;

  align-items: center;

  gap: 4px;
}

.gentox-nav .nav-item {
  position: relative;
}

.gentox-nav-link {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 82px;

  padding: 0 13px !important;

  color: var(--gentox-heading) !important;

  font-size: 0.88rem;

  font-weight: 600;

  white-space: nowrap;
}

/*
   Bottom active indicator
*/

.gentox-nav-link::after {
  content: "";

  position: absolute;

  left: 12px;
  right: 13px;
  bottom: 24px;

  height: 3px;

  background: var(--gentox-primary);

  border-radius: 4px 4px 0 0;

  transform: scaleX(0);

  transform-origin: center;

  transition: transform 0.3s ease;
}

.gentox-nav-link:hover {
  color: var(--gentox-primary) !important;
}

.gentox-nav-link:hover::after,
.gentox-nav-link.active::after {
  transform: scaleX(1);
}

.gentox-nav-link.active {
  color: var(--gentox-primary) !important;
}

/* =========================================================
   PRODUCTS DROPDOWN
========================================================= */

.gentox-dropdown {
  min-width: 285px;

  margin-top: 0;

  padding: 10px;

  background: var(--gentox-white);

  border: 1px solid var(--gentox-border);

  border-radius: 0 0 14px 14px;

  box-shadow: 0 18px 45px rgba(23, 107, 58, 0.13);
}

.gentox-dropdown .dropdown-item {
  display: flex;
  align-items: center;

  gap: 12px;

  padding: 11px 12px;

  color: var(--gentox-heading);

  border-radius: 8px;

  font-size: 0.83rem;
  font-weight: 500;

  transition: var(--gentox-transition);
}

.gentox-dropdown .dropdown-item:hover {
  color: var(--gentox-primary);

  background: var(--gentox-primary-light);

  padding-left: 16px;
}

.gentox-dropdown-icon {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color: var(--gentox-primary);

  background: var(--gentox-primary-light);

  border-radius: 8px;

  font-size: 0.85rem;
}

.gentox-dropdown .dropdown-item:hover .gentox-dropdown-icon {
  color: var(--gentox-white);

  background: var(--gentox-primary);
}

.gentox-dropdown .gentox-view-all {
  justify-content: space-between;

  margin-top: 5px;

  padding-top: 14px;

  color: var(--gentox-primary);

  border-top: 1px solid var(--gentox-border);

  border-radius: 0;

  font-weight: 700;
}

.gentox-dropdown .gentox-view-all i {
  font-size: 0.72rem;

  transition: var(--gentox-transition);
}

.gentox-dropdown .gentox-view-all:hover {
  padding-left: 12px;

  background: transparent;
}

.gentox-dropdown .gentox-view-all:hover i {
  transform: translateX(4px);
}

/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

@media (min-width: 992px) {
  .gentox-nav .dropdown:hover > .gentox-dropdown {
    display: block;

    animation: gentoxDropdown 0.25s ease;
  }

  .gentox-nav .dropdown-toggle::after {
    margin-left: 7px;

    vertical-align: middle;

    border-top: 0.32em solid;

    border-right: 0.32em solid transparent;

    border-left: 0.32em solid transparent;
  }
}

@keyframes gentoxDropdown {
  from {
    opacity: 0;

    transform: translateY(8px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* =========================================================
   HEADER CTA
========================================================= */

.gentox-nav-cta {
  display: flex;
  align-items: center;

  margin-left: 22px;
}

.gentox-header-btn {
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 0 19px;

  color: var(--gentox-white);

  background: var(--gentox-primary);

  border: 2px solid var(--gentox-primary);

  border-radius: 8px;

  font-size: 0.82rem;

  font-weight: 700;

  white-space: nowrap;

  transition: var(--gentox-transition);
}

.gentox-header-btn i {
  font-size: 0.72rem;

  transition: var(--gentox-transition);
}

.gentox-header-btn:hover {
  color: var(--gentox-white);

  background: var(--gentox-primary-dark);

  border-color: var(--gentox-primary-dark);

  transform: translateY(-2px);

  box-shadow: 0 8px 22px rgba(23, 107, 58, 0.2);
}

.gentox-header-btn:hover i {
  transform: translateX(4px);
}

/* =========================================================
   MOBILE TOGGLER
========================================================= */

.gentox-navbar-toggler {
  width: 46px;
  height: 46px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  padding: 0;

  border: 1px solid var(--gentox-border) !important;

  border-radius: 8px;

  background: var(--gentox-white);

  box-shadow: none !important;
}

.gentox-navbar-toggler span {
  width: 21px;
  height: 2px;

  display: block;

  background: var(--gentox-primary);

  border-radius: 10px;

  transition: var(--gentox-transition);
}

.gentox-navbar-toggler:hover {
  background: var(--gentox-primary-light);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {
  .gentox-logo {
    margin-right: 25px;
  }

  .gentox-logo img {
    width: 160px;
  }

  .gentox-nav {
    gap: 0;
  }

  .gentox-nav-link {
    padding-left: 9px !important;
    padding-right: 9px !important;

    font-size: 0.82rem;
  }

  .gentox-nav-link::after {
    left: 9px;
    right: 9px;
  }

  .gentox-nav-cta {
    margin-left: 12px;
  }

  .gentox-header-btn {
    padding-left: 15px;
    padding-right: 15px;

    font-size: 0.78rem;
  }
}

/* =========================================================
   MOBILE / TABLET NAVIGATION
========================================================= */

@media (max-width: 991.98px) {
  .gentox-header {
    position: sticky;

    top: 0;
  }

  .gentox-navbar {
    min-height: 72px;

    padding: 10px 0;
  }

  .gentox-logo {
    margin-right: 0;
  }

  .gentox-logo img {
    width: 150px;
  }

  .gentox-navbar-toggler {
    margin-left: auto;
  }

  .gentox-navbar .navbar-collapse {
    margin-top: 12px;

    padding: 12px 0 18px;

    border-top: 1px solid var(--gentox-border);
  }

  .gentox-nav {
    width: 100%;

    display: flex;

    align-items: stretch;

    gap: 0;
  }

  .gentox-nav .nav-item {
    width: 100%;
  }

  .gentox-nav-link {
    width: 100%;

    min-height: 50px;

    justify-content: space-between;

    padding: 0 8px !important;

    border-bottom: 1px solid rgba(223, 232, 225, 0.7);
  }

  .gentox-nav-link::after {
    left: 0;
    right: auto;
    bottom: 10px;

    width: 3px;
    height: 25px;

    border-radius: 0 5px 5px 0;

    transform: scaleY(0);

    transform-origin: center;
  }

  .gentox-nav-link:hover::after,
  .gentox-nav-link.active::after {
    transform: scaleY(1);
  }

  .gentox-nav .dropdown-toggle::after {
    margin-left: auto;
  }

  .gentox-dropdown {
    width: 100%;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 6px;
    border: 1px solid var(--gentox-border);
    border-radius: 10px;
    box-shadow: none;
  }

  .gentox-dropdown .dropdown-item {
    padding: 10px;
  }

  .gentox-nav-cta {
    width: 100%;

    margin: 16px 0 0;
  }

  .gentox-header-btn {
    width: 100%;

    min-height: 50px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .gentox-topbar {
    display: none;
  }

  .gentox-navbar {
    min-height: 68px;
  }

  .gentox-logo img {
    width: 62px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .gentox-logo img {
    width: 128px;
  }

  .gentox-navbar-toggler {
    width: 42px;
    height: 42px;
  }
}

/* --------------------------------------------------------------------------------------------------------------------- */
/* footer.php page styling starts from here */
/* =========================================================
   GENTOX FOOTER
========================================================= */

/* =========================================================
   MAIN FOOTER
========================================================= */

.gentox-footer {
  position: relative;

  color: rgba(255, 255, 255, 0.72);

  background: var(--gentox-footer);

  overflow: hidden;
}

/*
   Subtle decorative green glow
*/

.gentox-footer::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: -220px;
  right: -160px;

  background: radial-gradient(circle, rgba(69, 168, 44, 0.13), transparent 70%);

  pointer-events: none;
}

.gentox-footer::after {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  bottom: -220px;
  left: -180px;

  background: radial-gradient(circle, rgba(23, 107, 58, 0.18), transparent 70%);

  pointer-events: none;
}

/* =========================================================
   FOOTER MAIN AREA
========================================================= */

.gentox-footer-main {
  position: relative;

  padding: 50px 0 50px;

  z-index: 1;
}

/* =========================================================
   BRAND
========================================================= */

.gentox-footer-brand {
  max-width: 360px;
}

.gentox-footer-logo {
  display: inline-flex;

  align-items: center;

  margin-bottom: 25px;

  background: #ffffff;

  border-radius: 10px;

  padding: 8px 14px;
}

.gentox-footer-logo img {
  width: 190px;
  height: auto;
}

.gentox-footer-description {
  max-width: 340px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 0.9rem;

  line-height: 1.8;
}

/* =========================================================
   SOCIAL
========================================================= */

.gentox-footer-social {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 25px;
}

.gentox-footer-social a {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.75);

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 50%;

  font-size: 0.8rem;

  transition: var(--gentox-transition);
}

.gentox-footer-social a:hover {
  color: var(--gentox-white);

  background: var(--gentox-primary);

  border-color: var(--gentox-primary);

  transform: translateY(-4px);
}

/* =========================================================
   FOOTER COLUMNS
========================================================= */

.gentox-footer-column h3 {
  position: relative;

  margin-bottom: 27px;

  padding-bottom: 13px;

  color: var(--gentox-white);

  font-size: 1.05rem;

  font-weight: 700;
}

/*
   Heading underline
*/

.gentox-footer-column h3::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 32px;
  height: 2px;

  background: var(--gentox-lime);

  border-radius: 10px;
}

.gentox-footer-column ul {
  display: flex;

  flex-direction: column;

  gap: 11px;
}

.gentox-footer-column ul li a {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: rgba(255, 255, 255, 0.67);

  font-size: 0.84rem;

  transition: var(--gentox-transition);
}

.gentox-footer-column ul li a i {
  width: 13px;

  color: var(--gentox-lime);

  font-size: 0.62rem;

  transition: var(--gentox-transition);
}

.gentox-footer-column ul li a:hover {
  color: var(--gentox-white);

  transform: translateX(4px);
}

.gentox-footer-column ul li a:hover i {
  color: var(--gentox-secondary);

  transform: translateX(2px);
}

/* =========================================================
   CONTACT ITEMS
========================================================= */

.gentox-contact-item {
  display: flex;

  align-items: flex-start;

  gap: 13px;

  margin-bottom: 20px;
}

.gentox-contact-icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color: var(--gentox-lime);

  background: rgba(69, 168, 44, 0.1);

  border: 1px solid rgba(69, 168, 44, 0.18);

  border-radius: 8px;

  font-size: 0.8rem;
}

.gentox-contact-item span {
  display: block;

  margin-bottom: 3px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 0.7rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.7px;
}

.gentox-contact-item p {
  color: rgba(255, 255, 255, 0.72);

  font-size: 0.82rem;

  line-height: 1.65;
}

.gentox-contact-item p a {
  color: rgba(255, 255, 255, 0.72);
}

.gentox-contact-item p a:hover {
  color: var(--gentox-lime);
}

/* =========================================================
   FOOTER CTA
========================================================= */

.gentox-footer-cta {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 46px;

  padding: 0 20px;

  color: var(--gentox-white);

  background: var(--gentox-primary);

  border: 1px solid var(--gentox-primary);

  border-radius: 7px;

  font-size: 0.8rem;

  font-weight: 700;

  transition: var(--gentox-transition);
}

.gentox-footer-cta i {
  font-size: 0.68rem;

  transition: var(--gentox-transition);
}

.gentox-footer-cta:hover {
  color: var(--gentox-white);

  background: var(--gentox-secondary);

  border-color: var(--gentox-secondary);

  transform: translateY(-2px);
}

.gentox-footer-cta:hover i {
  transform: translateX(4px);
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.gentox-footer-bottom {
  position: relative;

  border-top: 1px solid rgba(255, 255, 255, 0.09);

  z-index: 1;
}

.gentox-footer-bottom-inner {
  min-height: 72px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.gentox-footer-bottom p {
  color: rgba(255, 255, 255, 0.48);

  font-size: 0.75rem;
}

.gentox-footer-bottom p strong {
  color: rgba(255, 255, 255, 0.75);

  font-weight: 600;
}

.gentox-footer-legal {
  display: flex;

  align-items: center;

  gap: 13px;
}

.gentox-footer-legal a {
  color: rgba(255, 255, 255, 0.5);

  font-size: 0.73rem;
}

.gentox-footer-legal a:hover {
  color: var(--gentox-lime);
}

.gentox-footer-legal span {
  width: 3px;
  height: 3px;

  background: rgba(255, 255, 255, 0.25);

  border-radius: 50%;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .gentox-footer-main {
    padding: 70px 0 55px;
  }

  .gentox-footer-brand {
    max-width: 100%;
  }

  .gentox-footer-description {
    max-width: 480px;
  }

  .gentox-footer-column h3 {
    margin-bottom: 22px;
  }

  .gentox-footer-bottom-inner {
    min-height: 85px;

    flex-direction: column;

    justify-content: center;

    padding: 17px 0;

    text-align: center;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .gentox-footer-main {
    padding: 60px 0 40px;
  }

  .gentox-footer-logo {
    margin-bottom: 20px;
  }

  .gentox-footer-logo img {
    width: 170px;
  }

  .gentox-footer-description {
    font-size: 0.84rem;

    line-height: 1.75;
  }

  .gentox-footer-social {
    margin-top: 20px;
  }

  .gentox-footer-column {
    margin-top: 5px;
  }

  .gentox-footer-column h3 {
    font-size: 1rem;

    margin-bottom: 20px;
  }

  .gentox-footer-column ul {
    gap: 10px;
  }

  .gentox-footer-column ul li a {
    font-size: 0.82rem;
  }

  .gentox-contact-item {
    margin-bottom: 17px;
  }

  .gentox-footer-bottom-inner {
    align-items: center;

    gap: 10px;
  }

  .gentox-footer-bottom p {
    line-height: 1.6;
  }

  .gentox-footer-legal {
    flex-wrap: wrap;

    justify-content: center;

    gap: 9px;
  }
}

/* small mobile */
@media (max-width: 575.98px) {
  .gentox-footer-main {
    padding: 50px 0 35px;
  }

  .gentox-footer-logo img {
    width: 155px;
  }

  .gentox-footer-description {
    font-size: 0.81rem;
  }

  .gentox-footer-social a {
    width: 36px;
    height: 36px;
  }

  .gentox-contact-icon {
    width: 35px;
    height: 35px;
  }

  .gentox-contact-item {
    gap: 11px;
  }

  .gentox-footer-bottom {
    padding: 4px 0;
  }

  .gentox-footer-bottom p {
    font-size: 0.7rem;
  }

  .gentox-footer-legal a {
    font-size: 0.69rem;
  }

  .gentox-footer-legal span {
    display: none;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------------------- */
/* hero landing carousel section styling starts from here */

.gentox-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--gentox-footer);
}

/* =========================================================
   SWIPER
========================================================= */

.gentoxHeroSwiper {
  width: 100%;

  height: min(720px, calc(100vh - 120px));

  min-height: 590px;
}

.gentox-hero-slide {
  position: relative;

  display: flex;

  align-items: center;

  overflow: hidden;
}

/* =========================================================
   HERO IMAGE
========================================================= */

.gentox-hero-image {
  position: absolute;

  inset: 0;

  z-index: 0;
}

.gentox-hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transform: scale(1.02);

  transition: transform 7s ease;
}

.swiper-slide-active .gentox-hero-image img {
  transform: scale(1.08);
}

/* =========================================================
   HERO OVERLAY
========================================================= */

.gentox-hero-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(8, 35, 20, 0.9) 0%,
    rgba(8, 35, 20, 0.76) 32%,
    rgba(8, 35, 20, 0.35) 62%,
    rgba(8, 35, 20, 0.1) 100%
  );
}

/* =========================================================
   HERO CONTENT
========================================================= */

.gentox-hero .container {
  position: relative;

  z-index: 3;

  height: 100%;

  display: flex;

  align-items: center;
}

.gentox-hero-content {
  max-width: 720px;

  padding: 50px 0 70px;

  color: var(--gentox-white);
}

/* =========================================================
   EYEBROW
========================================================= */

.gentox-hero-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 20px;

  padding: 8px 14px;

  color: #d9f5c9;

  background: rgba(69, 168, 44, 0.16);

  border: 1px solid rgba(123, 203, 53, 0.28);

  border-radius: 50px;

  font-size: 0.76rem;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  backdrop-filter: blur(8px);
}

.gentox-hero-eyebrow i {
  color: var(--gentox-lime);

  font-size: 0.82rem;
}

/* =========================================================
   HERO HEADING
========================================================= */

.gentox-hero-content h1 {
  max-width: 750px;

  margin-bottom: 24px;

  color: var(--gentox-white);

  font-size: clamp(3rem, 5.2vw, 5.2rem);

  font-weight: 700;

  line-height: 1.08;

  letter-spacing: -1.5px;
}

.gentox-hero-content h1 span {
  color: var(--gentox-lime);
}

/* =========================================================
   HERO DESCRIPTION
========================================================= */

.gentox-hero-content p {
  max-width: 610px;

  margin-bottom: 32px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1rem;

  line-height: 1.8;
}

/* =========================================================
   HERO BUTTONS
========================================================= */

.gentox-hero-buttons {
  display: flex;

  align-items: center;

  gap: 13px;

  flex-wrap: wrap;
}

.gentox-hero-buttons .gentox-btn-primary {
  background: var(--gentox-secondary);

  border-color: var(--gentox-secondary);
}

.gentox-hero-buttons .gentox-btn-primary:hover {
  background: var(--gentox-primary);

  border-color: var(--gentox-primary);
}

.gentox-hero-outline-btn {
  color: var(--gentox-white);

  background: rgba(255, 255, 255, 0.08);

  border-color: rgba(255, 255, 255, 0.4);

  backdrop-filter: blur(5px);
}

.gentox-hero-outline-btn:hover {
  color: var(--gentox-primary);

  background: var(--gentox-white);

  border-color: var(--gentox-white);

  transform: translateY(-2px);
}

/* =========================================================
   HERO NAVIGATION
========================================================= */

.gentox-hero-navigation {
  position: absolute;

  right: 55px;

  bottom: 80px;

  z-index: 10;

  display: flex;

  gap: 9px;
}

.gentox-hero-navigation button {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: var(--gentox-white);

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.28);

  border-radius: 50%;

  backdrop-filter: blur(8px);

  transition: var(--gentox-transition);
}

.gentox-hero-navigation button:hover {
  color: var(--gentox-primary);

  background: var(--gentox-white);

  border-color: var(--gentox-white);

  transform: translateY(-2px);
}

.gentox-hero-navigation button i {
  font-size: 0.75rem;
}

/* =========================================================
   PAGINATION
========================================================= */

.gentox-hero-pagination {
  position: absolute !important;

  left: 0 !important;

  bottom: 35px !important;

  z-index: 10;

  width: auto !important;

  margin-left: max(20px, calc((100vw - var(--gentox-container)) / 2));

  text-align: left;
}

.gentox-hero-pagination .swiper-pagination-bullet {
  width: 28px;

  height: 3px;

  margin: 0 4px !important;

  background: rgba(255, 255, 255, 0.45);

  border-radius: 10px;

  opacity: 1;

  transition: var(--gentox-transition);
}

.gentox-hero-pagination .swiper-pagination-bullet-active {
  width: 50px;

  background: var(--gentox-lime);
}

/* =========================================================
   SLIDE COUNTER
========================================================= */

.gentox-hero-counter {
  position: absolute;

  right: 55px;

  bottom: 145px;

  z-index: 10;

  display: flex;

  align-items: center;

  gap: 10px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 0.72rem;

  font-weight: 600;

  letter-spacing: 1px;
}

.gentox-current-slide {
  color: var(--gentox-white);

  font-size: 1rem;
}

.gentox-counter-line {
  width: 32px;

  height: 1px;

  background: rgba(255, 255, 255, 0.35);
}

/* =========================================================
   SCROLL INDICATOR
========================================================= */

.gentox-scroll-indicator {
  position: absolute;

  right: 55px;

  bottom: 32px;

  z-index: 10;

  display: flex;

  align-items: center;

  gap: 12px;

  color: rgba(255, 255, 255, 0.6);

  font-size: 0.68rem;

  letter-spacing: 0.7px;

  text-transform: uppercase;

  transition: var(--gentox-transition);
}

.gentox-scroll-indicator i {
  width: 30px;
  height: 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: var(--gentox-white);

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  animation: gentoxScrollBounce 1.8s infinite;
}

.gentox-scroll-indicator:hover {
  color: var(--gentox-white);
}

@keyframes gentoxScrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* =========================================================
   SWIPER SLIDE ANIMATION
========================================================= */

.gentox-hero-content {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.8s ease 0.15s,
    transform 0.8s ease 0.15s;
}

.swiper-slide-active .gentox-hero-content {
  opacity: 1;

  transform: translateY(0);
}

/* =========================================================
   TEMPORARY SECTION
========================================================= */

.gentox-temp-section {
  padding: 100px 0;

  background: var(--gentox-bg);
}

/* =========================================================
   HERO TABLET
========================================================= */

@media (max-width: 1199.98px) {
  .gentoxHeroSwiper {
    height: 650px;

    min-height: 550px;
  }

  .gentox-hero-content {
    max-width: 650px;
  }

  .gentox-hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4.3rem);
  }

  .gentox-hero-navigation,
  .gentox-hero-counter,
  .gentox-scroll-indicator {
    right: 30px;
  }

  .gentox-hero-pagination {
    margin-left: 30px;
  }
}

/* =========================================================
   HERO MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .gentoxHeroSwiper {
    height: 680px;

    min-height: 680px;
  }

  .gentox-hero-slide {
    align-items: flex-end;
  }

  .gentox-hero-image img {
    object-position: 62% center;
  }

  .gentox-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 35, 20, 0.18) 0%,
      rgba(8, 35, 20, 0.48) 35%,
      rgba(8, 35, 20, 0.92) 70%,
      rgba(8, 35, 20, 0.98) 100%
    );
  }

  .gentox-hero .container {
    height: auto;

    width: 100%;
  }

  .gentox-hero-content {
    width: 100%;

    padding: 40px 0 105px;
  }

  .gentox-hero-eyebrow {
    margin-bottom: 15px;

    padding: 7px 11px;

    font-size: 0.65rem;
  }

  .gentox-hero-content h1 {
    margin-bottom: 17px;

    font-size: clamp(2.35rem, 10vw, 3.3rem);

    line-height: 1.08;

    letter-spacing: -0.8px;
  }

  .gentox-hero-content p {
    margin-bottom: 23px;

    font-size: 0.84rem;

    line-height: 1.7;
  }

  .gentox-hero-buttons {
    gap: 9px;
  }

  .gentox-hero-buttons .gentox-btn {
    min-height: 46px;

    padding: 0 17px;

    font-size: 0.78rem;
  }

  .gentox-hero-navigation {
    right: 18px;

    bottom: 55px;
  }

  .gentox-hero-navigation button {
    width: 40px;
    height: 40px;
  }

  .gentox-hero-counter {
    top: 30px;

    right: 20px;

    bottom: auto;
  }

  .gentox-hero-pagination {
    left: 18px !important;

    bottom: 27px !important;

    margin-left: 0;
  }

  .gentox-hero-pagination .swiper-pagination-bullet {
    width: 20px;
  }

  .gentox-hero-pagination .swiper-pagination-bullet-active {
    width: 35px;
  }

  .gentox-scroll-indicator {
    display: none;
  }

  .gentox-temp-section {
    padding: 70px 0;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .gentoxHeroSwiper {
    height: 650px;

    min-height: 650px;
  }

  .gentox-hero-content {
    padding-bottom: 100px;
  }

  .gentox-hero-content h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.8rem);
  }

  .gentox-hero-content p {
    font-size: 0.8rem;
  }

  .gentox-hero-buttons {
    flex-direction: column;

    align-items: stretch;
  }

  .gentox-hero-buttons .gentox-btn {
    width: 100%;
  }

  .gentox-hero-navigation {
    bottom: 48px;
  }

  .gentox-hero-counter {
    top: 22px;

    right: 16px;
  }
}

/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {
  .gentoxHeroSwiper {
    height: 620px;

    min-height: 620px;
  }

  .gentox-hero-content {
    padding-bottom: 95px;
  }

  .gentox-hero-content h1 {
    font-size: 2.05rem;
  }

  .gentox-hero-eyebrow {
    font-size: 0.58rem;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* about us sections styling starts from here */

.gentox-about-section {
  position: relative;

  background: var(--gentox-white);

  overflow: hidden;
}

/* =========================================================
   VISUAL
========================================================= */

.gentox-about-visual {
  position: relative;

  min-height: 560px;

  padding: 25px 45px 35px 20px;
}

.gentox-about-main-image {
  position: relative;

  width: 100%;
  height: 500px;

  overflow: hidden;

  border-radius: 24px 24px 24px 70px;

  box-shadow: 0 20px 55px rgba(23, 107, 58, 0.14);

  z-index: 2;
}

.gentox-about-main-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.gentox-about-main-image:hover img {
  transform: scale(1.04);
}

/* =========================================================
   DECORATIVE SHAPE
========================================================= */

.gentox-about-shape {
  position: absolute;

  left: 0;
  bottom: 5px;

  width: 220px;
  height: 220px;

  background: var(--gentox-primary-light);

  border-radius: 50%;

  z-index: 0;
}

.gentox-about-shape::before {
  content: "";

  position: absolute;

  inset: 25px;

  border: 2px dashed rgba(69, 168, 44, 0.35);

  border-radius: 50%;
}

/* =========================================================
   EXPERIENCE CARD
========================================================= */

.gentox-about-experience {
  position: absolute;

  left: 0;
  bottom: 55px;

  z-index: 4;

  display: flex;

  align-items: center;

  gap: 13px;

  min-width: 205px;

  padding: 16px 20px;

  color: var(--gentox-white);

  background: var(--gentox-primary);

  border-radius: 12px;

  box-shadow: 0 15px 35px rgba(23, 107, 58, 0.25);
}

.gentox-about-experience-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color: var(--gentox-lime);

  background: rgba(255, 255, 255, 0.12);

  border-radius: 50%;
}

.gentox-about-experience strong {
  display: block;

  margin-bottom: 2px;

  color: var(--gentox-white);

  font-family: "Poppins", sans-serif;

  font-size: 1rem;
}

.gentox-about-experience span {
  display: block;

  color: rgba(255, 255, 255, 0.7);

  font-size: 0.67rem;
}

/* =========================================================
   SMALL IMAGE
========================================================= */

.gentox-about-small-image {
  position: absolute;

  right: 0;
  bottom: 0;

  width: 190px;
  height: 145px;

  overflow: hidden;

  border: 7px solid var(--gentox-white);

  border-radius: 15px;

  z-index: 4;

  box-shadow: 0 15px 35px rgba(23, 107, 58, 0.15);
}

.gentox-about-small-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =========================================================
   ABOUT CONTENT
========================================================= */

.gentox-about-content {
  padding-left: 25px;
}

.section-eyebrow-left {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 15px;

  color: var(--gentox-primary);

  font-size: 0.75rem;

  font-weight: 700;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}

.eyebrow-line {
  width: 30px;
  height: 2px;

  background: var(--gentox-secondary);

  border-radius: 10px;
}

.gentox-about-content h2 {
  max-width: 650px;

  margin-bottom: 22px;

  font-size: clamp(2rem, 3.4vw, 3rem);
}

.gentox-about-content h2 span {
  display: block;

  color: var(--gentox-primary);
}

.gentox-about-content p {
  max-width: 620px;

  margin-bottom: 15px;

  color: var(--gentox-text);

  font-size: 0.93rem;

  line-height: 1.85;
}

.gentox-about-content .gentox-about-lead {
  color: var(--gentox-heading);

  font-size: 1rem;

  font-weight: 500;
}

/* =========================================================
   FOUNDER
========================================================= */

.gentox-founder-box {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin: 8px 0 22px;

  padding: 10px 17px 10px 10px;

  background: var(--gentox-light);

  border: 1px solid var(--gentox-border);

  border-radius: 50px;
}

.gentox-founder-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gentox-white);

  background: var(--gentox-primary);

  border-radius: 50%;

  font-size: 0.85rem;
}

.gentox-founder-box span {
  display: block;

  margin-bottom: 1px;

  color: var(--gentox-muted);

  font-size: 0.65rem;

  text-transform: uppercase;

  letter-spacing: 0.7px;
}

.gentox-founder-box strong {
  display: block;

  color: var(--gentox-heading);

  font-family: "Poppins", sans-serif;

  font-size: 0.82rem;
}

/* =========================================================
   FEATURES
========================================================= */

.gentox-about-features {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 12px 25px;

  margin-bottom: 27px;
}

.gentox-about-feature {
  display: flex;

  align-items: center;

  gap: 9px;

  color: var(--gentox-heading);

  font-size: 0.79rem;

  font-weight: 500;
}

.feature-check {
  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color: var(--gentox-primary);

  background: var(--gentox-primary-light);

  border-radius: 50%;

  font-size: 0.58rem;
}

/* =========================================================
   ACTIONS
========================================================= */

.gentox-about-actions {
  display: flex;

  align-items: center;

  gap: 25px;

  flex-wrap: wrap;
}

.gentox-about-contact {
  display: flex;

  align-items: center;

  gap: 10px;
}

.gentox-about-contact-icon {
  width: 43px;
  height: 43px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gentox-primary);

  background: var(--gentox-primary-light);

  border-radius: 50%;
}

.gentox-about-contact small {
  display: block;

  color: var(--gentox-muted);

  font-size: 0.64rem;
}

.gentox-about-contact strong {
  display: block;

  color: var(--gentox-heading);

  font-family: "Poppins", sans-serif;

  font-size: 0.8rem;
}

/* =========================================================
   COMPANY STATS
========================================================= */

.gentox-about-stats {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin-top: 50px;

  padding: 28px 35px;

  background: var(--gentox-bg);

  border: 1px solid var(--gentox-border);

  border-radius: 16px;
}

.gentox-stat {
  display: flex;

  align-items: center;

  gap: 13px;
}

.gentox-stat-icon {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color: var(--gentox-primary);

  background: var(--gentox-primary-light);

  border-radius: 10px;
}

.gentox-stat strong {
  display: block;

  color: var(--gentox-heading);

  font-family: "Poppins", sans-serif;

  font-size: 1rem;
}

.gentox-stat span {
  display: block;

  color: var(--gentox-muted);

  font-size: 0.68rem;
}

.gentox-stat-divider {
  width: 1px;
  height: 42px;

  background: var(--gentox-border);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {
  .gentox-about-visual {
    min-height: 520px;

    padding-right: 25px;
  }

  .gentox-about-main-image {
    height: 460px;
  }

  .gentox-about-small-image {
    width: 165px;
    height: 125px;
  }

  .gentox-about-content {
    padding-left: 5px;
  }

  .gentox-about-content h2 {
    font-size: 2.45rem;
  }

  .gentox-about-stats {
    padding: 25px 20px;
  }
}

/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991.98px) {
  .gentox-about-visual {
    max-width: 650px;

    margin: 0 auto 20px;

    min-height: 530px;

    padding: 20px 35px 35px 15px;
  }

  .gentox-about-main-image {
    height: 490px;
  }

  .gentox-about-content {
    padding-left: 0;

    max-width: 700px;

    margin: auto;
  }

  .gentox-about-content h2 {
    font-size: clamp(2rem, 5vw, 2.7rem);
  }

  .gentox-about-stats {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px 25px;

    margin-top: 55px;
  }

  .gentox-stat-divider {
    display: none;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .gentox-about-visual {
    min-height: 430px;

    padding: 10px 25px 25px 8px;
  }

  .gentox-about-main-image {
    height: 400px;

    border-radius: 18px 18px 18px 50px;
  }

  .gentox-about-experience {
    left: 0;

    bottom: 35px;

    min-width: 185px;

    padding: 12px 15px;
  }

  .gentox-about-experience-icon {
    width: 37px;
    height: 37px;
  }

  .gentox-about-experience strong {
    font-size: 0.85rem;
  }

  .gentox-about-experience span {
    font-size: 0.6rem;
  }

  .gentox-about-small-image {
    width: 145px;
    height: 105px;

    border-width: 5px;
  }

  .gentox-about-content h2 {
    margin-bottom: 18px;

    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .gentox-about-content p {
    font-size: 0.86rem;

    line-height: 1.75;
  }

  .gentox-about-content .gentox-about-lead {
    font-size: 0.9rem;
  }

  .gentox-founder-box {
    margin-bottom: 20px;
  }

  .gentox-about-features {
    grid-template-columns: 1fr;

    gap: 10px;

    margin-bottom: 24px;
  }

  .gentox-about-actions {
    align-items: flex-start;

    flex-direction: column;

    gap: 17px;
  }

  .gentox-about-stats {
    grid-template-columns: 1fr 1fr;

    padding: 20px 17px;

    margin-top: 45px;
  }

  .gentox-stat {
    gap: 9px;
  }

  .gentox-stat-icon {
    width: 38px;
    height: 38px;

    font-size: 0.75rem;
  }

  .gentox-stat strong {
    font-size: 0.85rem;
  }

  .gentox-stat span {
    font-size: 0.6rem;

    line-height: 1.4;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .gentox-about-visual {
    min-height: 365px;

    padding-right: 18px;
  }

  .gentox-about-main-image {
    height: 340px;

    border-radius: 16px 16px 16px 40px;
  }

  .gentox-about-small-image {
    width: 115px;
    height: 85px;
  }

  .gentox-about-experience {
    bottom: 20px;

    min-width: 165px;

    padding: 10px 12px;
  }

  .gentox-about-experience-icon {
    width: 33px;
    height: 33px;

    font-size: 0.7rem;
  }

  .gentox-about-experience strong {
    font-size: 0.76rem;
  }

  .gentox-about-experience span {
    font-size: 0.55rem;
  }

  .gentox-about-stats {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .gentox-stat {
    padding-bottom: 12px;

    border-bottom: 1px solid var(--gentox-border);
  }

  .gentox-stat:last-child {
    padding-bottom: 0;

    border-bottom: none;
  }
}

/* --------------------------------------------------------------------------------------------------------------------------- */
/* product categories section styling starts from here */
/* =========================================================
   GENTOX PRODUCT CATEGORIES
========================================================= */

/* =========================================================
   SECTION
========================================================= */

.gentox-products-section {
  position: relative;
  overflow: hidden;
}

/* =========================================================
   CATEGORY CARD
========================================================= */

.gentox-category-card {
  position: relative;

  display: block;

  height: 100%;

  background: var(--gentox-white);

  border: 1px solid var(--gentox-border);

  border-radius: var(--gentox-radius);

  overflow: hidden;

  box-shadow: var(--gentox-shadow-sm);

  transition: var(--gentox-transition);
}

.gentox-category-card:hover {
  color: inherit;

  transform: translateY(-7px);

  border-color: rgba(23, 107, 58, 0.2);

  box-shadow: var(--gentox-shadow);
}

/* =========================================================
   IMAGE
========================================================= */

.gentox-category-image {
  position: relative;

  height: 220px;

  overflow: hidden;
}

.gentox-category-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;
}

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

/* =========================================================
   IMAGE OVERLAY
========================================================= */

.gentox-category-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(13, 43, 27, 0.02) 15%,
    rgba(13, 43, 27, 0.58) 100%
  );

  transition: var(--gentox-transition);
}

.gentox-category-card:hover .gentox-category-overlay {
  background: linear-gradient(
    180deg,
    rgba(13, 43, 27, 0.08) 10%,
    rgba(13, 43, 27, 0.7) 100%
  );
}

/* =========================================================
   CATEGORY ICON
========================================================= */

.gentox-category-icon {
  position: absolute;

  left: 20px;
  bottom: 20px;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gentox-primary);

  background: var(--gentox-white);

  border-radius: 12px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.13);

  font-size: 1.05rem;

  transition: var(--gentox-transition);
}

.gentox-category-card:hover .gentox-category-icon {
  color: var(--gentox-white);

  background: var(--gentox-primary);

  transform: translateY(-4px) rotate(-3deg);
}

/* =========================================================
   CONTENT
========================================================= */

.gentox-category-content {
  position: relative;

  padding: 22px 22px 24px;
}

.gentox-category-number {
  display: block;

  margin-bottom: 7px;

  color: var(--gentox-secondary);

  font-family: "Poppins", sans-serif;

  font-size: 0.68rem;

  font-weight: 700;

  letter-spacing: 1px;
}

.gentox-category-content h3 {
  margin-bottom: 10px;

  color: var(--gentox-heading);

  font-size: 1.08rem;

  line-height: 1.35;

  transition: var(--gentox-transition);
}

.gentox-category-card:hover .gentox-category-content h3 {
  color: var(--gentox-primary);
}

.gentox-category-content p {
  min-height: 55px;

  margin-bottom: 18px;

  color: var(--gentox-text);

  font-size: 0.79rem;

  line-height: 1.65;
}

/* =========================================================
   CATEGORY LINK
========================================================= */

.gentox-category-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--gentox-primary);

  font-size: 0.75rem;

  font-weight: 700;
}

.gentox-category-link i {
  font-size: 0.65rem;

  transition: var(--gentox-transition);
}

.gentox-category-card:hover .gentox-category-link i {
  transform: translateX(5px);
}

/* =========================================================
   BOTTOM CTA
========================================================= */

.gentox-categories-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin-top: 55px;

  padding: 25px 30px;

  background: var(--gentox-white);

  border: 1px solid var(--gentox-border);

  border-radius: var(--gentox-radius);

  box-shadow: var(--gentox-shadow-sm);
}

.gentox-categories-bottom > div {
  display: flex;

  flex-direction: column;

  gap: 3px;
}

.gentox-categories-bottom span {
  color: var(--gentox-muted);

  font-size: 0.76rem;
}

.gentox-categories-bottom strong {
  color: var(--gentox-heading);

  font-family: "Poppins", sans-serif;

  font-size: 0.95rem;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .gentox-category-image {
    height: 230px;
  }

  .gentox-category-content {
    padding: 20px 20px 22px;
  }

  .gentox-categories-bottom {
    margin-top: 45px;

    padding: 22px 24px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .gentox-category-image {
    height: 240px;
  }

  .gentox-category-content {
    padding: 20px;
  }

  .gentox-category-content h3 {
    font-size: 1rem;
  }

  .gentox-category-content p {
    min-height: auto;

    font-size: 0.78rem;
  }

  .gentox-categories-bottom {
    flex-direction: column;

    align-items: flex-start;

    margin-top: 35px;

    padding: 22px 20px;
  }

  .gentox-categories-bottom .gentox-btn {
    width: 100%;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .gentox-category-image {
    height: 210px;
  }

  .gentox-category-icon {
    left: 16px;
    bottom: 16px;

    width: 45px;
    height: 45px;

    font-size: 0.9rem;
  }

  .gentox-category-content {
    padding: 18px;
  }

  .gentox-category-number {
    font-size: 0.62rem;
  }

  .gentox-category-content h3 {
    margin-bottom: 8px;

    font-size: 0.96rem;
  }

  .gentox-category-content p {
    margin-bottom: 15px;

    font-size: 0.76rem;
  }

  .gentox-category-link {
    font-size: 0.72rem;
  }

  .gentox-categories-bottom span {
    font-size: 0.7rem;
  }

  .gentox-categories-bottom strong {
    font-size: 0.87rem;
  }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* featured products section styling starts from here */
/* =========================================================
   FEATURED PRODUCTS SECTION
========================================================= */

.gentox-featured-section {
  background: var(--gentox-white);
  overflow: hidden;
}

/* ---------------------------------------------------------
   SECTION HEADER
--------------------------------------------------------- */

.gentox-featured-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}

.gentox-featured-head .section-heading {
  max-width: 760px;
}

/* Navigation */

.gentox-featured-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.gentox-product-prev,
.gentox-product-next {
  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--gentox-border);
  border-radius: 50%;

  background: var(--gentox-white);
  color: var(--gentox-heading);

  font-size: 15px;

  cursor: pointer;
  transition: var(--gentox-transition);
}

.gentox-product-prev:hover,
.gentox-product-next:hover {
  background: var(--gentox-primary);
  border-color: var(--gentox-primary);
  color: var(--gentox-white);
  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   PRODUCT SLIDER
--------------------------------------------------------- */

.gentox-products-slider {
  width: 100%;
  overflow: visible;
}

.gentox-products-slider .swiper-wrapper {
  align-items: stretch;
}

.gentox-products-slider .swiper-slide {
  height: auto;
}

/* ---------------------------------------------------------
   PRODUCT CARD
--------------------------------------------------------- */

.gentox-product-card {
  height: 100%;

  background: var(--gentox-white);

  border: 1px solid var(--gentox-border);
  border-radius: var(--gentox-radius-lg);

  overflow: hidden;

  box-shadow: var(--gentox-shadow-sm);

  transition: var(--gentox-transition);

  display: flex;
  flex-direction: column;
}

.gentox-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gentox-shadow-lg);
  border-color: rgba(23, 107, 58, 0.2);
}

/* ---------------------------------------------------------
   PRODUCT IMAGE
--------------------------------------------------------- */

.gentox-product-image {
  position: relative;

  height: 285px;

  background: var(--gentox-light);

  overflow: hidden;
}

.gentox-product-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

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

/* Badge */

.gentox-product-badge {
  position: absolute;
  top: 18px;
  left: 18px;

  display: inline-flex;
  align-items: center;

  padding: 7px 13px;

  background: var(--gentox-primary);
  color: var(--gentox-white);

  border-radius: 50px;

  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.3px;

  z-index: 2;
}

/* Image Overlay */

.gentox-product-image-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(13, 43, 27, 0.35);

  opacity: 0;

  transition: var(--gentox-transition);
}

.gentox-product-card:hover .gentox-product-image-overlay {
  opacity: 1;
}

.gentox-product-image-overlay a {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--gentox-white);
  color: var(--gentox-primary);

  border-radius: 50%;

  font-size: 16px;

  transform: translateY(15px) scale(0.85);

  transition: var(--gentox-transition);
}

.gentox-product-card:hover .gentox-product-image-overlay a {
  transform: translateY(0) scale(1);
}

.gentox-product-image-overlay a:hover {
  background: var(--gentox-red);
  color: var(--gentox-white);
}

/* ---------------------------------------------------------
   PRODUCT CONTENT
--------------------------------------------------------- */

.gentox-product-content {
  padding: 25px 24px 22px;

  display: flex;
  flex-direction: column;

  flex: 1;
}

.gentox-product-category {
  display: inline-block;

  margin-bottom: 9px;

  color: var(--gentox-secondary);

  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.gentox-product-content h3 {
  margin: 0 0 10px;

  color: var(--gentox-heading);

  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;

  line-height: 1.35;
}

.gentox-product-content p {
  margin: 0 0 22px;

  color: var(--gentox-text);

  font-size: 14px;
  line-height: 1.7;

  flex: 1;
}

/* ---------------------------------------------------------
   PRODUCT FOOTER
--------------------------------------------------------- */

.gentox-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding-top: 18px;

  border-top: 1px solid var(--gentox-border);
}

.gentox-product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--gentox-primary);

  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;

  text-decoration: none;

  transition: var(--gentox-transition);
}

.gentox-product-link i {
  font-size: 11px;

  transition: transform 0.3s ease;
}

.gentox-product-link:hover {
  color: var(--gentox-red);
}

.gentox-product-link:hover i {
  transform: translateX(4px);
}

/* WhatsApp */

.gentox-product-whatsapp {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #eaf9ef;
  color: var(--gentox-whatsapp);

  font-size: 17px;

  text-decoration: none;

  transition: var(--gentox-transition);
}

.gentox-product-whatsapp:hover {
  background: var(--gentox-whatsapp);
  color: var(--gentox-white);

  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   PAGINATION
--------------------------------------------------------- */

.gentox-products-pagination {
  display: none;

  margin-top: 28px;

  position: relative !important;
}

.gentox-products-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;

  background: var(--gentox-border);

  opacity: 1;

  transition: var(--gentox-transition);
}

.gentox-products-pagination .swiper-pagination-bullet-active {
  width: 22px;

  border-radius: 10px;

  background: var(--gentox-primary);
}

/* ---------------------------------------------------------
   BOTTOM CTA
--------------------------------------------------------- */

.gentox-products-cta {
  margin-top: 55px;

  padding: 24px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  border-radius: var(--gentox-radius);

  background: linear-gradient(110deg, var(--gentox-light-green), #f8fbf6);

  border: 1px solid var(--gentox-border);
}

.gentox-products-cta-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 5px;

  color: var(--gentox-primary);

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.gentox-products-cta-content span i {
  font-size: 12px;
}

.gentox-products-cta-content h3 {
  margin: 0;

  color: var(--gentox-heading);

  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1199.98px) {
  .gentox-product-image {
    height: 255px;
  }

  .gentox-product-content {
    padding: 22px 20px;
  }
}

@media (max-width: 991.98px) {
  .gentox-featured-head {
    align-items: flex-start;

    margin-bottom: 35px;
  }

  .gentox-featured-nav {
    margin-top: 5px;
  }

  .gentox-product-prev,
  .gentox-product-next {
    width: 44px;
    height: 44px;
  }

  .gentox-product-image {
    height: 270px;
  }

  .gentox-products-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .gentox-featured-head {
    display: block;

    margin-bottom: 30px;
  }

  .gentox-featured-head .section-heading {
    max-width: 100%;
  }

  .gentox-featured-nav {
    display: none;
  }

  .gentox-products-slider {
    overflow: hidden;
  }

  .gentox-products-pagination {
    display: block;
  }

  .gentox-product-image {
    height: 290px;
  }

  .gentox-product-content {
    padding: 22px 20px 20px;
  }

  .gentox-product-content h3 {
    font-size: 19px;
  }

  .gentox-product-content p {
    font-size: 13.5px;
  }

  .gentox-products-cta {
    margin-top: 40px;

    padding: 22px 20px;
  }

  .gentox-products-cta-content h3 {
    font-size: 17px;
  }

  .gentox-products-cta .gentox-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .gentox-product-image {
    height: 250px;
  }

  .gentox-product-content {
    padding: 20px 18px 18px;
  }

  .gentox-product-category {
    font-size: 10px;
  }

  .gentox-product-content h3 {
    font-size: 18px;
  }

  .gentox-product-content p {
    font-size: 13px;
    line-height: 1.65;
  }

  .gentox-product-footer {
    padding-top: 15px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------- */
/* why choose gentox section styling starts from here */
/* =========================================================
   WHY CHOOSE GENTOX
========================================================= */

.gentox-why-section {
  position: relative;
  background: var(--gentox-light);
  overflow: hidden;
}

/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.gentox-why-content {
  max-width: 620px;
}

.gentox-why-content h2 {
  margin-bottom: 20px;
}

.gentox-why-intro {
  max-width: 580px;

  margin-bottom: 32px;

  color: var(--gentox-text);

  font-size: 15px;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   WHY ITEMS
--------------------------------------------------------- */

.gentox-why-item {
  display: flex;
  align-items: flex-start;

  gap: 17px;

  margin-bottom: 21px;
}

.gentox-why-icon {
  width: 48px;
  height: 48px;

  flex: 0 0 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: var(--gentox-white);
  color: var(--gentox-primary);

  border: 1px solid var(--gentox-border);

  font-size: 17px;

  box-shadow: var(--gentox-shadow-sm);

  transition: var(--gentox-transition);
}

.gentox-why-item:hover .gentox-why-icon {
  background: var(--gentox-primary);
  color: var(--gentox-white);

  transform: translateY(-3px);
}

.gentox-why-text {
  padding-top: 1px;
}

.gentox-why-text h3 {
  margin: 0 0 5px;

  color: var(--gentox-heading);

  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.gentox-why-text p {
  margin: 0;

  color: var(--gentox-text);

  font-size: 13.5px;
  line-height: 1.65;
}

/* ---------------------------------------------------------
   ACTIONS
--------------------------------------------------------- */

.gentox-why-actions {
  display: flex;
  align-items: center;

  gap: 28px;

  margin-top: 32px;
}

.gentox-why-contact {
  display: flex;
  align-items: center;

  gap: 11px;

  color: var(--gentox-heading);

  text-decoration: none;

  transition: var(--gentox-transition);
}

.gentox-why-contact-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--gentox-white);
  color: var(--gentox-primary);

  border: 1px solid var(--gentox-border);

  font-size: 13px;

  transition: var(--gentox-transition);
}

.gentox-why-contact small {
  display: block;

  margin-bottom: 2px;

  color: var(--gentox-muted);

  font-size: 10px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gentox-why-contact strong {
  display: block;

  color: var(--gentox-heading);

  font-family: "Poppins", sans-serif;
  font-size: 13px;
}

.gentox-why-contact:hover {
  color: var(--gentox-primary);
}

.gentox-why-contact:hover .gentox-why-contact-icon {
  background: var(--gentox-primary);
  color: var(--gentox-white);
}

/* ---------------------------------------------------------
   RIGHT VISUAL
--------------------------------------------------------- */

.gentox-why-visual {
  position: relative;

  min-height: 590px;

  padding: 25px;
}

/* Main Image */

.gentox-why-image-main {
  position: relative;

  width: 82%;
  height: 510px;

  margin-left: auto;

  border-radius: var(--gentox-radius-xl);

  overflow: hidden;

  background: var(--gentox-light-green);

  box-shadow: var(--gentox-shadow-lg);

  z-index: 2;
}

.gentox-why-image-main::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(180deg, transparent 55%, rgba(13, 43, 27, 0.25));

  pointer-events: none;
}

.gentox-why-image-main img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.gentox-why-visual:hover .gentox-why-image-main img {
  transform: scale(1.04);
}

/* ---------------------------------------------------------
   EXPERIENCE CARD
--------------------------------------------------------- */

.gentox-why-experience {
  position: absolute;

  left: 0;
  bottom: 75px;

  z-index: 5;

  display: flex;
  align-items: center;

  gap: 13px;

  min-width: 225px;

  padding: 17px 20px;

  background: var(--gentox-white);

  border-radius: 16px;

  box-shadow: var(--gentox-shadow-lg);

  border: 1px solid var(--gentox-border);
}

.gentox-why-experience-icon {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 45px;

  border-radius: 12px;

  background: var(--gentox-light-green);
  color: var(--gentox-primary);

  font-size: 17px;
}

.gentox-why-experience strong {
  display: block;

  color: var(--gentox-heading);

  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.gentox-why-experience span {
  display: block;

  margin-top: 2px;

  color: var(--gentox-muted);

  font-size: 11px;
}

/* ---------------------------------------------------------
   MINI CARD
--------------------------------------------------------- */

.gentox-why-mini-card {
  position: absolute;

  right: 0;
  top: 45px;

  z-index: 5;

  display: flex;
  align-items: center;

  gap: 11px;

  padding: 13px 17px;

  background: var(--gentox-white);

  border-radius: 14px;

  border: 1px solid var(--gentox-border);

  box-shadow: var(--gentox-shadow);

  transition: var(--gentox-transition);
}

.gentox-why-mini-icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: var(--gentox-light-green);
  color: var(--gentox-primary);

  font-size: 15px;
}

.gentox-why-mini-card strong {
  display: block;

  color: var(--gentox-heading);

  font-family: "Poppins", sans-serif;
  font-size: 12px;
}

.gentox-why-mini-card span {
  display: block;

  margin-top: 2px;

  color: var(--gentox-muted);

  font-size: 10px;
}

/* ---------------------------------------------------------
   DECORATIVE SHAPES
--------------------------------------------------------- */

.gentox-why-shape {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.gentox-why-shape-one {
  width: 145px;
  height: 145px;

  left: -5px;
  top: 5px;

  background: var(--gentox-primary);

  opacity: 0.08;

  z-index: 1;
}

.gentox-why-shape-two {
  width: 190px;
  height: 190px;

  right: -35px;
  bottom: 5px;

  background: var(--gentox-lime);

  opacity: 0.12;

  z-index: 1;
}

/* ---------------------------------------------------------
   LARGE TABLET
--------------------------------------------------------- */

@media (max-width: 1199.98px) {
  .gentox-why-visual {
    min-height: 550px;
    padding: 20px;
  }

  .gentox-why-image-main {
    width: 84%;
    height: 480px;
  }

  .gentox-why-experience {
    left: -5px;
    bottom: 60px;
  }
}

/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 991.98px) {
  .gentox-why-content {
    max-width: 100%;
  }

  .gentox-why-intro {
    max-width: 700px;
  }

  .gentox-why-visual {
    min-height: 560px;

    max-width: 680px;

    margin: 10px auto 0;
  }

  .gentox-why-image-main {
    width: 84%;
    height: 510px;
  }

  .gentox-why-experience {
    left: 0;
    bottom: 65px;
  }
}

/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767.98px) {
  .gentox-why-item {
    gap: 13px;

    margin-bottom: 19px;
  }

  .gentox-why-icon {
    width: 44px;
    height: 44px;

    flex-basis: 44px;

    border-radius: 11px;

    font-size: 15px;
  }

  .gentox-why-text h3 {
    font-size: 15px;
  }

  .gentox-why-text p {
    font-size: 13px;
  }

  .gentox-why-actions {
    align-items: flex-start;
    flex-direction: column;

    gap: 18px;

    margin-top: 27px;
  }

  .gentox-why-visual {
    min-height: 470px;

    margin-top: 10px;

    padding: 15px;
  }

  .gentox-why-image-main {
    width: 88%;
    height: 420px;

    border-radius: 24px;
  }

  .gentox-why-experience {
    left: 0;
    bottom: 35px;

    min-width: 205px;

    padding: 14px 16px;
  }

  .gentox-why-experience-icon {
    width: 40px;
    height: 40px;

    flex-basis: 40px;
  }

  .gentox-why-experience strong {
    font-size: 15px;
  }

  .gentox-why-mini-card {
    right: 0;
    top: 30px;

    padding: 11px 13px;
  }

  .gentox-why-mini-icon {
    width: 34px;
    height: 34px;
  }

  .gentox-why-shape-one {
    width: 100px;
    height: 100px;
  }

  .gentox-why-shape-two {
    width: 130px;
    height: 130px;
  }
}

/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 575.98px) {
  .gentox-why-intro {
    font-size: 14px;
    line-height: 1.7;
  }

  .gentox-why-item {
    align-items: flex-start;
  }

  .gentox-why-icon {
    width: 41px;
    height: 41px;

    flex-basis: 41px;
  }

  .gentox-why-text h3 {
    font-size: 14px;
  }

  .gentox-why-text p {
    font-size: 12.5px;
  }

  .gentox-why-actions .gentox-btn {
    width: 100%;
    justify-content: center;
  }

  .gentox-why-contact {
    padding-left: 3px;
  }

  .gentox-why-visual {
    min-height: 390px;

    padding: 10px;
  }

  .gentox-why-image-main {
    width: 91%;
    height: 350px;

    border-radius: 20px;
  }

  .gentox-why-experience {
    bottom: 20px;
    left: -2px;

    min-width: 190px;

    padding: 12px 13px;
  }

  .gentox-why-experience-icon {
    width: 36px;
    height: 36px;

    flex-basis: 36px;

    font-size: 14px;
  }

  .gentox-why-experience strong {
    font-size: 14px;
  }

  .gentox-why-experience span {
    font-size: 9px;
  }

  .gentox-why-mini-card {
    top: 20px;
    right: -2px;

    padding: 9px 11px;
  }

  .gentox-why-mini-icon {
    width: 31px;
    height: 31px;

    font-size: 12px;
  }

  .gentox-why-mini-card strong {
    font-size: 10px;
  }

  .gentox-why-mini-card span {
    font-size: 8px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------- */
/* gallery section styling starts from here */
/* =========================================================
   GALLERY / AGRICULTURE IN ACTION
========================================================= */

.gentox-gallery-section {
  background: var(--gentox-white);
  overflow: hidden;
}

/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.gentox-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;

  margin-bottom: 45px;
}

.gentox-gallery-head .section-heading {
  max-width: 720px;
}

/* ---------------------------------------------------------
   GALLERY GRID
--------------------------------------------------------- */

.gentox-gallery-grid {
  display: grid;

  grid-template-columns: 1.45fr 0.85fr 0.85fr;

  grid-template-rows: 255px 255px;

  gap: 18px;
}

/* Main image */

.gentox-gallery-large {
  grid-row: span 2;
}

/* ---------------------------------------------------------
   GALLERY ITEM
--------------------------------------------------------- */

.gentox-gallery-item {
  position: relative;

  display: block;

  min-height: 0;

  overflow: hidden;

  border-radius: var(--gentox-radius);

  background: var(--gentox-light);

  text-decoration: none;

  box-shadow: var(--gentox-shadow-sm);
}

.gentox-gallery-item img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.7s ease,
    filter 0.5s ease;
}

.gentox-gallery-item:hover img {
  transform: scale(1.07);
}

/* ---------------------------------------------------------
   OVERLAY
--------------------------------------------------------- */

.gentox-gallery-overlay {
  position: absolute;

  inset: 0;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 15px;

  padding: 22px;

  background: linear-gradient(
    180deg,
    rgba(13, 43, 27, 0) 35%,
    rgba(13, 43, 27, 0.82) 100%
  );

  color: var(--gentox-white);
}

.gentox-gallery-overlay span {
  display: block;

  margin-bottom: 5px;

  font-family: "Poppins", sans-serif;

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1px;

  color: #b9e88d;
}

.gentox-gallery-overlay h3 {
  margin: 0;

  color: var(--gentox-white);

  font-family: "Poppins", sans-serif;

  font-size: 17px;
  font-weight: 700;

  line-height: 1.3;
}

/* Main gallery title */

.gentox-gallery-large .gentox-gallery-overlay {
  padding: 28px;
}

.gentox-gallery-large .gentox-gallery-overlay h3 {
  font-size: 25px;
}

/* Arrow */

.gentox-gallery-arrow {
  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.14);

  border: 1px solid rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(5px);

  color: var(--gentox-white);

  font-size: 12px;

  transform: translateY(10px);

  opacity: 0;

  transition: var(--gentox-transition);
}

.gentox-gallery-item:hover .gentox-gallery-arrow {
  transform: translateY(0);

  opacity: 1;
}

.gentox-gallery-item:hover .gentox-gallery-arrow {
  background: var(--gentox-primary);
  border-color: var(--gentox-primary);
}

/* ---------------------------------------------------------
   BOTTOM STRIP
--------------------------------------------------------- */

.gentox-gallery-bottom {
  display: flex;
  align-items: center;

  gap: 16px;

  margin-top: 24px;

  padding: 18px 22px;

  border: 1px solid var(--gentox-border);

  border-radius: var(--gentox-radius);

  background: var(--gentox-light);
}

.gentox-gallery-bottom-icon {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: var(--gentox-white);

  color: var(--gentox-primary);

  border: 1px solid var(--gentox-border);

  font-size: 15px;
}

.gentox-gallery-bottom-text {
  flex: 1;
}

.gentox-gallery-bottom-text strong {
  display: block;

  color: var(--gentox-heading);

  font-family: "Poppins", sans-serif;

  font-size: 14px;
  font-weight: 700;
}

.gentox-gallery-bottom-text span {
  display: block;

  margin-top: 2px;

  color: var(--gentox-muted);

  font-size: 12px;
}

.gentox-gallery-bottom-link {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: var(--gentox-primary);

  font-family: "Poppins", sans-serif;

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;

  white-space: nowrap;

  transition: var(--gentox-transition);
}

.gentox-gallery-bottom-link i {
  font-size: 10px;

  transition: transform 0.3s ease;
}

.gentox-gallery-bottom-link:hover {
  color: var(--gentox-red);
}

.gentox-gallery-bottom-link:hover i {
  transform: translateX(4px);
}

/* ---------------------------------------------------------
   LARGE TABLET
--------------------------------------------------------- */

@media (max-width: 1199.98px) {
  .gentox-gallery-grid {
    grid-template-rows: 230px 230px;

    gap: 15px;
  }

  .gentox-gallery-large .gentox-gallery-overlay h3 {
    font-size: 22px;
  }
}

/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 991.98px) {
  .gentox-gallery-head {
    align-items: flex-start;

    margin-bottom: 35px;
  }

  .gentox-gallery-grid {
    grid-template-columns: 1.4fr 1fr;

    grid-template-rows: 260px 220px 220px;
  }

  .gentox-gallery-large {
    grid-row: span 2;
  }

  /* Last two images */
  .gentox-gallery-item:nth-child(4),
  .gentox-gallery-item:nth-child(5) {
    grid-row: auto;
  }

  .gentox-gallery-bottom {
    margin-top: 20px;
  }
}

/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767.98px) {
  .gentox-gallery-head {
    display: block;

    margin-bottom: 28px;
  }

  .gentox-gallery-head .gentox-btn {
    margin-top: 20px;
  }

  .gentox-gallery-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    grid-template-rows:
      280px
      200px
      200px;

    gap: 12px;
  }

  .gentox-gallery-large {
    grid-column: span 2;
    grid-row: auto;
  }

  .gentox-gallery-overlay {
    padding: 16px;
  }

  .gentox-gallery-overlay h3 {
    font-size: 14px;
  }

  .gentox-gallery-large .gentox-gallery-overlay {
    padding: 20px;
  }

  .gentox-gallery-large .gentox-gallery-overlay h3 {
    font-size: 20px;
  }

  .gentox-gallery-arrow {
    width: 34px;
    height: 34px;

    flex-basis: 34px;

    opacity: 1;

    transform: none;
  }

  .gentox-gallery-bottom {
    align-items: flex-start;

    flex-wrap: wrap;

    gap: 12px;

    padding: 17px;
  }

  .gentox-gallery-bottom-text {
    min-width: calc(100% - 60px);
  }

  .gentox-gallery-bottom-link {
    width: 100%;

    justify-content: flex-end;

    padding-top: 5px;
  }
}

/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 575.98px) {
  .gentox-gallery-head .gentox-btn {
    width: 100%;
    justify-content: center;
  }

  .gentox-gallery-grid {
    grid-template-rows:
      245px
      175px
      175px;

    gap: 10px;
  }

  .gentox-gallery-item {
    border-radius: 12px;
  }

  .gentox-gallery-overlay {
    padding: 13px;
  }

  .gentox-gallery-overlay span {
    font-size: 8px;
  }

  .gentox-gallery-overlay h3 {
    font-size: 12px;
  }

  .gentox-gallery-large .gentox-gallery-overlay {
    padding: 16px;
  }

  .gentox-gallery-large .gentox-gallery-overlay h3 {
    font-size: 18px;
  }

  .gentox-gallery-arrow {
    width: 30px;
    height: 30px;

    flex-basis: 30px;

    font-size: 9px;
  }

  .gentox-gallery-bottom-icon {
    width: 40px;
    height: 40px;

    flex-basis: 40px;
  }

  .gentox-gallery-bottom-text strong {
    font-size: 12px;
  }

  .gentox-gallery-bottom-text span {
    font-size: 10px;
  }
}

/* --------------------------------------------------------------------------------------------------------------- */
/* testimonial section styling starts from here */
/* =========================================================
   TESTIMONIALS
========================================================= */

.gentox-testimonials-section {
  background: var(--gentox-light);
  overflow: hidden;
}

/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.gentox-testimonials-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;

  margin-bottom: 42px;
}

.gentox-testimonials-head .section-heading {
  max-width: 720px;
}

/* ---------------------------------------------------------
   NAVIGATION
--------------------------------------------------------- */

.gentox-testimonial-nav {
  display: flex;
  align-items: center;

  gap: 10px;

  flex-shrink: 0;
}

.gentox-testimonial-prev,
.gentox-testimonial-next {
  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--gentox-border);

  border-radius: 50%;

  background: var(--gentox-white);
  color: var(--gentox-heading);

  font-size: 14px;

  cursor: pointer;

  transition: var(--gentox-transition);
}

.gentox-testimonial-prev:hover,
.gentox-testimonial-next:hover {
  background: var(--gentox-primary);
  border-color: var(--gentox-primary);
  color: var(--gentox-white);

  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   SLIDER
--------------------------------------------------------- */

.gentox-testimonials-slider {
  overflow: visible;
}

.gentox-testimonials-slider .swiper-slide {
  height: auto;
}

/* ---------------------------------------------------------
   TESTIMONIAL CARD
--------------------------------------------------------- */

.gentox-testimonial-card {
  height: 100%;

  padding: 30px;

  display: flex;
  flex-direction: column;

  background: var(--gentox-white);

  border: 1px solid var(--gentox-border);

  border-radius: var(--gentox-radius-lg);

  box-shadow: var(--gentox-shadow-sm);

  transition: var(--gentox-transition);
}

.gentox-testimonial-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--gentox-shadow);

  border-color: rgba(23, 107, 58, 0.18);
}

/* ---------------------------------------------------------
   TOP
--------------------------------------------------------- */

.gentox-testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 22px;
}

.gentox-quote-icon {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: var(--gentox-light-green);

  color: var(--gentox-primary);

  font-size: 16px;
}

.gentox-testimonial-stars {
  display: flex;
  align-items: center;

  gap: 3px;

  color: #f5b942;

  font-size: 11px;
}

/* ---------------------------------------------------------
   TESTIMONIAL TEXT
--------------------------------------------------------- */

.gentox-testimonial-text {
  margin: 0;

  color: var(--gentox-text);

  font-size: 14px;

  line-height: 1.8;

  min-height: 125px;
}

/* ---------------------------------------------------------
   AUTHOR
--------------------------------------------------------- */

.gentox-testimonial-author {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 25px;

  padding-top: 20px;

  border-top: 1px solid var(--gentox-border);
}

.gentox-testimonial-avatar {
  width: 45px;
  height: 45px;

  flex: 0 0 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--gentox-primary);

  color: var(--gentox-white);

  font-size: 14px;
}

.gentox-testimonial-author h3 {
  margin: 0;

  color: var(--gentox-heading);

  font-family: "Poppins", sans-serif;

  font-size: 14px;
  font-weight: 700;
}

.gentox-testimonial-author span {
  display: block;

  margin-top: 3px;

  color: var(--gentox-muted);

  font-size: 11px;
}

/* ---------------------------------------------------------
   PAGINATION
--------------------------------------------------------- */

.gentox-testimonials-pagination {
  display: none;

  margin-top: 28px;

  position: relative !important;
}

.gentox-testimonials-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;

  background: var(--gentox-border);

  opacity: 1;

  transition: var(--gentox-transition);
}

.gentox-testimonials-pagination .swiper-pagination-bullet-active {
  width: 22px;

  border-radius: 10px;

  background: var(--gentox-primary);
}

/* =========================================================
   FINAL CTA
========================================================= */

.gentox-final-cta {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 35px;

  margin-top: 60px;

  padding: 30px 34px;

  overflow: hidden;

  border-radius: var(--gentox-radius-lg);

  background: linear-gradient(
    115deg,
    var(--gentox-primary-dark),
    var(--gentox-footer)
  );

  box-shadow: var(--gentox-shadow-lg);
}

.gentox-final-cta::before {
  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  right: 15%;

  top: -150px;

  border-radius: 50%;

  border: 35px solid rgba(255, 255, 255, 0.04);

  pointer-events: none;
}

/* ---------------------------------------------------------
   CTA CONTENT
--------------------------------------------------------- */

.gentox-final-cta-content {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;

  gap: 17px;
}

.gentox-final-cta-icon {
  width: 55px;
  height: 55px;

  flex: 0 0 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: rgba(255, 255, 255, 0.1);

  color: #b9e88d;

  font-size: 21px;
}

.gentox-final-cta-content span {
  display: block;

  margin-bottom: 3px;

  color: #a9d97e;

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.gentox-final-cta-content h3 {
  margin: 0;

  color: var(--gentox-white);

  font-family: "Poppins", sans-serif;

  font-size: 20px;
  font-weight: 700;
}

.gentox-final-cta-content p {
  margin: 5px 0 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 12px;
}

/* ---------------------------------------------------------
   CTA ACTIONS
--------------------------------------------------------- */

.gentox-final-cta-actions {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;

  gap: 12px;

  flex-shrink: 0;
}

.gentox-final-cta .gentox-btn {
  white-space: nowrap;
}

.gentox-final-whatsapp {
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 0 20px;

  border-radius: 8px;

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.16);

  color: var(--gentox-white);

  font-family: "Poppins", sans-serif;

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;

  transition: var(--gentox-transition);
}

.gentox-final-whatsapp i {
  color: var(--gentox-whatsapp);

  font-size: 17px;
}

.gentox-final-whatsapp:hover {
  background: var(--gentox-white);

  color: var(--gentox-primary);
}

/* ---------------------------------------------------------
   LARGE TABLET
--------------------------------------------------------- */

@media (max-width: 1199.98px) {
  .gentox-testimonial-card {
    padding: 25px;
  }

  .gentox-final-cta {
    padding: 28px;
  }
}

/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 991.98px) {
  .gentox-testimonials-head {
    align-items: flex-start;

    margin-bottom: 32px;
  }

  .gentox-testimonial-prev,
  .gentox-testimonial-next {
    width: 44px;
    height: 44px;
  }

  .gentox-final-cta {
    align-items: flex-start;

    flex-direction: column;
  }

  .gentox-final-cta-actions {
    width: 100%;
  }
}

/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767.98px) {
  .gentox-testimonials-head {
    display: block;

    margin-bottom: 28px;
  }

  .gentox-testimonial-nav {
    display: none;
  }

  .gentox-testimonials-slider {
    overflow: hidden;
  }

  .gentox-testimonials-pagination {
    display: block;
  }

  .gentox-testimonial-card {
    padding: 23px 20px;
  }

  .gentox-testimonial-text {
    min-height: auto;

    font-size: 13.5px;
  }

  .gentox-final-cta {
    margin-top: 40px;

    padding: 24px 20px;

    border-radius: 18px;

    gap: 25px;
  }

  .gentox-final-cta-content {
    align-items: flex-start;
  }

  .gentox-final-cta-icon {
    width: 47px;
    height: 47px;

    flex-basis: 47px;

    border-radius: 12px;

    font-size: 18px;
  }

  .gentox-final-cta-content h3 {
    font-size: 17px;

    line-height: 1.4;
  }

  .gentox-final-cta-content p {
    line-height: 1.6;
  }

  .gentox-final-cta-actions {
    flex-direction: column;

    gap: 10px;
  }

  .gentox-final-cta-actions .gentox-btn,
  .gentox-final-whatsapp {
    width: 100%;

    justify-content: center;
  }
}

/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 575.98px) {
  .gentox-testimonial-card {
    padding: 20px 18px;

    border-radius: 18px;
  }

  .gentox-quote-icon {
    width: 40px;
    height: 40px;

    border-radius: 10px;
  }

  .gentox-testimonial-author {
    margin-top: 20px;

    padding-top: 17px;
  }

  .gentox-testimonial-avatar {
    width: 40px;
    height: 40px;

    flex-basis: 40px;
  }

  .gentox-final-cta-content {
    gap: 12px;
  }

  .gentox-final-cta-icon {
    width: 42px;
    height: 42px;

    flex-basis: 42px;

    font-size: 16px;
  }

  .gentox-final-cta-content span {
    font-size: 8px;
  }

  .gentox-final-cta-content h3 {
    font-size: 15px;
  }

  .gentox-final-cta-content p {
    font-size: 11px;
  }
}
