html {
  scroll-behavior: smooth;
}

@media (max-width: 991px) {

  .hero-section.heroMain,
  .heroMain {
    height: 100vh !important;
  }
}

@media (max-width: 767px) {

  .hero-section.heroMain,
  .heroMain {
    height: 100vh !important;
  }
}

@media (max-width: 575px) {

  .hero-section.heroMain,
  .heroMain {
    height: 100vh !important;
  }
}

/* ===== Offcanvas Logo Fix ===== */
.offcanvas__logo img {
  max-width: 150px !important;
  height: auto !important;
  width: auto !important;
}

/* ================================ */

@charset "UTF-8";
/*======================================================================================
  >> TABLE OF CONTENTS <<
========================================================================================
01. Mixins & Variables
02. Base
03. Components
04. Layouts
05. Sections
======================================================================================*/
/*---------------------------------------
01. Mixins & Variables
---------------------------------------*/
/* @import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap");

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #C8433A;
  --theme2: #F5D83E;
  --theme3: #11A21B;
  --header: #2F2F2F;
  --text: #50624A;
  --border: #02060A;
  --bg: #F5F6F4;
  --bg2: #50624A;
  --bg3: #F5F6F4;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

/*---------------------------------------
02. Base
---------------------------------------*/
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  /* font-family: "Inter", sans-serif; */
  font-family: "Jost", sans-serif;

  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text);
  background-color: var(--bg);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "Instrument Sans", sans-serif; */
  font-family: "Jost", sans-serif;

  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
}

h1 {
  font-size: 75px;
  font-weight: 700;
  line-height: 120%;
}

@media (max-width: 1899px) {
  h1 {
    font-size: 70px;
  }
}

@media (max-width: 1600px) {
  h1 {
    font-size: 60px;
  }
}

@media (max-width: 1399px) {
  h1 {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 45px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 130% !important;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
}

@media (max-width: 470px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 50px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  h2 {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  h2 {
    font-size: 33px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 26px;
  }
}

@media (max-width: 470px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 600;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}

span {
  margin: 0px;
  text-transform: capitalize;
}

.theme-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  border: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  padding: 15px 30px 15px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  gap: 5px;
  text-align: center;
  background-color: var(--theme);
  z-index: 1;
  /* border-radius: 8px; */
}

@media (max-width: 1399px) {
  .theme-btn {
    padding: 15px 25px 15px;
  }
}

.theme-btn::before {
  content: "";
  background-color: var(--header);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.theme-btn:hover::before {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
  transition-delay: 200ms;
}

.theme-btn::after {
  content: "";
  background-color: rgba(47, 47, 47, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.theme-btn:hover::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.theme-btn:hover {
  color: var(--white);
}

.theme-btn:hover img {
  filter: brightness(0);
}

.theme-btn.theme-btn-3 {
  background-color: var(--theme3);
}

.link-btn {
  color: var(--theme);
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  font-family: "Instrument Sans", sans-serif;
}

.link-btn i {
  margin-left: 5px;
  color: var(--theme);
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  border: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--header);
  padding: 10px 30px 10px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  gap: 0px;
  text-align: center;
  background-color: var(--theme2);
  z-index: 1;
  border-radius: 0px;
  text-transform: uppercase;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.cta-button::before {
  content: "";
  background-color: var(--header);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.cta-button:hover::before {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
  transition-delay: 200ms;
}

.cta-button::after {
  content: "";
  background-color: rgba(47, 47, 47, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.cta-button:hover::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.cta-button:hover {
  color: var(--white);
}

.cta-button:hover img {
  filter: brightness(0);
}

.cta-button.style-btns {
  border: 1px solid var(--theme2);
}

.cta-button.style-btns:hover {
  color: var(--theme2);
}

.link-btn-2 {
  color: var(--theme2);
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  font-family: "Instrument Sans", sans-serif;
  text-decoration: underline;
  text-transform: capitalize;
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.link-btn-2:hover {
  color: var(--theme2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme2) 0%, var(--theme2) 100%);
}

/*---------------------------------------
03. Components
---------------------------------------*/
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: var(--black);
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  border: none;
  text-transform: uppercase;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li .submenu li a {
  border-bottom: none !important;
  font-size: 14px;
  padding: 6px 0;
  color: var(--header);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

/* ── mean-expand: absolutely positioned chevron on the right ── */
.mean-container .mean-nav ul li {
  position: relative;
}

.mean-container .mean-nav ul li a.mean-expand {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
  font-size: 16px;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

/* Preloader Wrapper */
#agri-preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  /* dark green */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Content */
.preloader-content {
  text-align: center;
  color: #fff;
}

/* Leaf Shape */
.leaf {
  width: 60px;
  height: 60px;
  background: #4CAF50;
  border-radius: 0 100% 0 100%;
  transform: rotate(45deg);
  margin: 0 auto 15px;
  animation: leafSpin 1.2s linear infinite;
}

/* Text */
.preloader-content h4 {
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--header);
  margin: 0;
}

.farmer-loader {
  width: 90px;
  animation: float 1.2s ease-in-out infinite;
}

@keyframes float {

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

  50% {
    transform: translateY(-8px);
  }
}

.back-to-top {
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-radius: 100px;
  color: var(--white);
  font-size: 16px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.theme-bg-2 {
  background-color: var(--theme2);
  color: var(--header);
}

.back-to-top.theme-bg-2:hover {
  color: var(--theme2);
}

.back-to-top.theme-bg-3 {
  background-color: var(--theme3);
  color: var(--white);
}

.back-to-top.theme-bg-3:hover {
  color: var(--theme3);
}

@media (max-width: 575px) {
  .back-to-top {
    display: none;
  }
}

.back-to-top:hover {
  background-color: var(--white);
  color: var(--theme);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  pointer-events: none;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.cursor-outer.cursor-big {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
  pointer-events: none;
}

.cursor-inner span {
  color: var(--text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

.search_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--header);
  z-index: 100;
  padding-top: 70px;
  padding-bottom: 100px;
  opacity: 0;
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: all 0.6s ease;
}

.search_popup.search-opened {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 0s;
  z-index: 999999;
}

.search_popup.search-opened .search_form .search_input {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.search_popup.search-opened .search_form .search_input::after {
  width: 100%;
  transition-delay: 0.5s;
}

@media (max-width: 575px) {
  .search_popup {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}

.search_wrapper .search_top {
  margin-bottom: 80px;
}

.search_wrapper .search_top .search_logo {
  max-width: 200px;
}

.search_wrapper .search_top .search_logo a {
  display: block;
}

@media (max-width: 575px) {
  .search_wrapper .search_top .search_logo {
    max-width: 150px;
  }
}

.search_wrapper .search_top .search_close {
  margin-left: auto;
  margin-top: 10px;
}

.search_wrapper .search_top .search_close .search_close_btn {
  display: inline-block;
  width: 35px;
  height: 35px;
  font-size: 35px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
}

.search_wrapper .search_top .search_close .search_close_btn svg {
  width: 30px;
  height: 30px;
}

.search_wrapper .search_top .search_close .search_close_btn:hover {
  color: var(--white);
  transform: rotate(90deg);
}

@media (max-width: 575px) {
  .search_wrapper .search_top {
    margin-bottom: 50px;
  }
}

@media (max-width: 500px) {
  .search_wrapper .search_top {
    margin-bottom: 40px;
  }
}

.search_wrapper .search_form .search_input {
  position: relative;
  height: 80px;
  transform: translateY(-40px);
  transition: all 0.4s ease-in-out;
  transition-delay: 0.5s;
  opacity: 0;
}

.search_wrapper .search_form .search_input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  transition-delay: 0.3s;
  transition: all 0.4s ease-in-out;
}

.search_wrapper .search_form .search_input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--text);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}

.search_wrapper .search_form .search_input input::placeholder {
  font-size: 24px;
}

.search_wrapper .search_form .search_input input~.search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: all 0.5s;
}

.search_wrapper .search_form .search_input input:focus~.search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.5s;
}

@media (max-width: 575px) {
  .search_wrapper .search_form .search_input input {
    font-size: 20px;
  }

  .search_wrapper .search_form .search_input input::placeholder {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .search_wrapper .search_form .search_input input {
    font-size: 18px;
  }

  .search_wrapper .search_form .search_input input::placeholder {
    font-size: 18px;
  }
}

.search_wrapper .search_form .search_input button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--white);
}

.search-popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  cursor: zoom-out;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.search-popup-overlay.bg-theme-2 {
  background-color: var(--theme2);
}

.search-popup-overlay.bg-theme-3 {
  background-color: var(--theme3);
}

.search-popup-overlay.search-popup-overlay-open {
  opacity: 0.8;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.35s;
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes gelatine {

  from,
  to {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(0.7, 1.1);
  }

  50% {
    transform: scale(1.1, 0.7);
  }

  75% {
    transform: scale(0.95, 1.05);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: pulse-bob;
  animation-name: pulse-bob;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes pulse-bob {

  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
    opacity: 0.85;
  }
}

@keyframes pulse-bob {

  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
    opacity: 0.85;
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes zoom {
  0% {
    transform: scale(0.5);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.5);
  }
}

@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }

  20% {
    transform: translateX(-50px);
  }

  50% {
    transform: translatey(-40px);
  }

  100% {
    transform: translatey(0px);
  }
}

/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

@keyframes scale {
  0% {
    top: -1000px;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.animation-infinite {
  animation: ShapeAnim 50s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }

  100% {
    background-position: top left 3000px;
  }
}

.splt-txt .whitespace {
  width: 8px;
}

.splt-txt.animated .char {
  -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
  width: 20px;
}

@media (max-width: 991px) {
  .splt-txt-bounce .whitespace {
    width: 10px;
  }
}

.splt-txt-bounce.animated .char {
  -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

@keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

/* CSS */
.text-anims {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.text-anims.show {
  opacity: 1;
  transform: scale(1);
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@-webkit-keyframes borderanimate2 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.5);
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes borderanimate2 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.5);
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes waterFall {
  0% {
    transform: translateY(-40px) scaleY(0.6);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateY(430px) scaleY(1);
    opacity: 0;
  }
}

@keyframes drone-fly-real {
  0% {
    transform: translate(-50%, -50%) translate(0, 0) rotate(0deg);
  }

  20% {
    transform: translate(-50%, -50%) translate(-40px, -40px) rotate(-2deg);
  }

  40% {
    transform: translate(-50%, -50%) translate(40px, -90px) rotate(2deg);
  }

  60% {
    transform: translate(-50%, -50%) translate(-30px, -130px) rotate(-2deg);
  }

  80% {
    transform: translate(-50%, -50%) translate(30px, -70px) rotate(1.5deg);
  }

  100% {
    transform: translate(-50%, -50%) translate(0, 0) rotate(0deg);
  }
}

/*---------------------------------------
04. Layouts
---------------------------------------*/
.header-top-section {
  position: relative;
  margin-bottom: 30px !important;
  border-radius: 10px;
  margin: 0 30px;
}

.header-top-section .container-fluid {
  padding: 0 20px;
}

@media (max-width: 575px) {
  .header-top-section .container-fluid {
    padding: 0 15px;
  }
}

@media (max-width: 1399px) {
  .header-top-section {
    display: none;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
  z-index: 999;
}

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

.header-top-wrapper .header-left .list li {
  color: var(--white);
}

.header-top-wrapper .header-left .list li a {
  color: var(--white);
}

.header-top-wrapper p {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

.header-top-wrapper p span {
  font-weight: 700;
}

.header-top-wrapper .header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-top-wrapper .header-right span {
  color: var(--white);
}

.header-top-wrapper .header-right .social-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  text-transform: capitalize;
}

.header-top-wrapper .header-right .social-icon a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.header-top-wrapper .header-right .social-icon a:hover {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 45px;
}

@media (max-width: 1199px) {
  .header-main .main-menu ul li {
    margin-inline-end: 30px;
  }
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: rgb(80, 98, 74);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
}

.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.header-main .main-menu ul li:hover>a i {
  transform: rotate(180deg);
}

.header-main .main-menu ul li a:hover {
  color: var(--theme);
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 110%;
  inset-inline-start: 0;
  min-width: 220px;
  padding: 8px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-8px) scaleY(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0.25s;
  border-top: 3px solid var(--theme2);
  background-color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 6px 6px;
}

/* Chevron icon on parent link — pure CSS, no icon font dependency */
.header-main .main-menu ul li a .nav-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  transition: transform 0.25s ease;
  font-size: 0;
  /* hide any icon font character */
}

.header-main .main-menu ul li:hover>a .nav-chevron {
  transform: rotate(180deg);
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--header);
  line-height: 1;
  padding: 11px 22px 11px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease, border-color 0.2s ease;
  border-left: 3px solid transparent;
}

.header-main .main-menu ul li .submenu li a::before {
  display: none;
}

.header-main .main-menu ul li .submenu li a:hover {
  background: rgba(245, 216, 62, 0.08);
  color: var(--header);
  padding-left: 26px;
  border-left-color: var(--theme2);
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  /* handled by a:hover rule above */
}

.header-main .main-menu ul li .submenu li:hover>a::before {
  /* disabled */
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  /* disabled */
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
  width: 1000px;
  /* padding: 10px 10px 10px 10px; */
  padding: 0px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  background-color: var(--white);
  border-radius: 0px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 0px;
  justify-content: space-between;
  border: 5px solid #FFF;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
  overflow: hidden;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
  border: 5px solid #FFF;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  width: 100%;
  padding: 0 12px;
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    font-size: 14px;
    min-width: 140px;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: initial;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  border: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  padding: 15px 40px 15px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  gap: 5px;
  text-align: center;
  background-color: var(--theme);
  z-index: 1;
  border-radius: 8px;
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 15px 25px 15px;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::after {
  content: "";
  background-color: var(--header);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover img {
  filter: brightness(0);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn.theme-btn-3 {
  background-color: var(--theme3);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn.theme-btn-3:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  border: none;
  line-height: initial;
  font-weight: 700;
  font-size: 16px;
  color: var(--header);
  padding: 15px 40px 15px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  gap: 5px;
  text-align: center;
  background-color: var(--theme2);
  z-index: 1;
  border-radius: 8px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .cta-button::after {
  background-color: var(--header) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .cta-button:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .cta-button:hover img {
  filter: brightness(0);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  /* background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.45); */
  margin: 0 !important;
  padding: 0 !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 0 !important;
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 8px 6px;
}

.header-main .main-menu ul li:hover>a {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scaleY(1);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0s;
}

.header-main .header-right {
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-main .header-right.style-1 {
  gap: 200px !important;
}

@media (max-width: 1399px) {
  .header-main .header-right.style-1 {
    gap: 40px !important;
  }
}

.header-main .header-right.style-1 .icon-items {
  margin-right: -110px !important;
}

@media (max-width: 1399px) {
  .header-main .header-right.style-1 .icon-items {
    margin-right: 0 !important;
  }
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .header-right .icon-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-main .header-right .icon-items .menu_search .search_btn {
  color: var(--white);
}

.header-main .header-right .icon-items a i {
  color: var(--white);
}

.header-main .header-right .header-btn {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-main .header-right .header-btn span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px 20px;
  display: inline-block;
  font-weight: 700;
}

.header-main .header-right .header-btn span i {
  color: var(--white);
  margin-right: 5px;
}

@media (max-width: 1399px) {
  .header-main .header-right .header-btn span {
    display: none;
  }
}

.header-main .header-right .header-btn span a {
  color: var(--white);
}

@media (max-width: 1399px) {
  .header-main .header-right .header-btn {
    gap: 16px;
  }
}

@media (max-width: 1399px) {
  .header-main .header-right .header-btn .header-button {
    display: none;
  }
}

.header-main .header-right .header-btn .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--white);
}

.header-1 {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  margin-top: 45px;
  margin-top: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1399px) {
  .header-1 {
    top: 0;
    margin-top: 0;
  }
}

.header-1 .container-fluid {
  padding: 0 120px;
}

@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 60px;
  }
}

@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}

.header-1 .header-main .main-menu ul li a {
  color: var(--white);
}

.header-1 .header-main .main-menu ul li a:hover {
  color: var(--theme2);
}

.header-1 .header-main .main-menu ul li .submenu {
  /* border-top: 6px solid var(--theme2); */
  border-top: 0px;
}

.header-1 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme2) !important;
}

.header-1 .header-main .main-menu ul li .submenu li a:hover::before {
  background-color: var(--theme2);
}

@media (max-width: 1899px) {
  .header-1 .header-main .main-menu ul li {
    margin-inline-end: 28px;
  }
}

.header-1 .header-main .header-left .logo .header-logo-2 {
  display: none;
}

@media (max-width: 1899px) {
  .header-1 .header-main .header-left .logo .header-logo-2 {
    gap: 40px;
  }
}

@media (max-width: 1899px) {
  .header-1 .header-main .header-right {
    gap: 40px;
  }
}

@media (max-width: 1899px) {
  .header-1 .header-main .header-right .icon-items {
    gap: 40px;
  }
}

@media (max-width: 1600px) {
  .header-1 .header-main .header-right .header-btn span {
    padding: 15px;
  }
}

.header-1.header-2 {
  border-bottom: none;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .header-1.header-2 {
    margin-top: 0;
  }
}

.header-1.header-2 .header-main {
  position: relative;
  padding: 14px;
  border-radius: 20px;
}

.header-1.header-2 .header-main.header-inner {
  padding: 15px 20px;
}

@media (max-width: 1600px) {
  .header-1.header-2 .header-main.header-inner {
    padding: 10px 20px;
  }
}

@media (max-width: 575px) {
  .header-1.header-2 .header-main.header-inner {
    padding: 10px 0px;
  }
}

.header-1.header-2 .header-main.header-inner .main-menu ul li a:hover {
  color: var(--white);
}

@media (max-width: 1600px) {
  .header-1.header-2 .header-main {
    padding: 10px 20px;
  }
}

@media (max-width: 1399px) {
  .header-1.header-2 .header-main {
    padding: 10px 0;
  }
}

.header-1.header-2 .header-main .overlay-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1899px) {
  .header-1.header-2 .header-main .overlay-shape img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1399px) {
  .header-1.header-2 .header-main .overlay-shape {
    display: none;
  }
}

.header-1.header-2 .header-main .overlay-shape img {
  border-radius: 20px;
}

.header-1.header-2 .header-main .main-menu ul li a:hover {
  color: var(--theme3);
}

.header-1.header-2 .header-main .main-menu ul li .submenu {
  border-top: 6px solid var(--theme3);
}

.header-1.header-2 .header-main .main-menu ul li .submenu li a::before {
  background-color: var(--theme3) !important;
}

.header-1.header-2 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme3) !important;
}

.header-1.header-2 .header-main .main-menu ul li .submenu li a:hover::before {
  background-color: var(--theme3) !important;
}

@media (max-width: 1899px) {
  .header-1.header-2 .header-main .main-menu ul li {
    margin-inline-end: 28px;
  }
}

.header-1.header-2 .header-main .header-right {
  gap: 100px;
}

@media (max-width: 1399px) {
  .header-1.header-2 .header-main .header-right {
    gap: 30px;
  }
}

.header-1.header-2 .header-main .header-right .icon-items {
  margin-right: -50px;
}

@media (max-width: 1399px) {
  .header-1.header-2 .header-main .header-right .icon-items {
    margin-right: 0;
  }
}

.header-1.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3::before {
  background-color: var(--white);
}

.header-1.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.header-1.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3:hover {
  color: var(--theme3);
}

.header-1.header-2 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}

.header-1.header-2.header-4 {
  margin-top: 20px;
}

.header-1.header-2.header-4 .header-main .main-menu ul li a {
  color: var(--white);
}

.header-1.header-2.header-4 .header-main .main-menu ul li a:hover {
  color: var(--theme3);
}

.header-1.header-2.header-4 .header-main .main-menu ul li .theme-btn {
  color: var(--white) !important;
}

.header-1.header-2.header-4 .header-main .main-menu ul li .submenu {
  border-top: 6px solid var(--theme3);
}

.header-1.header-2.header-4 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme3) !important;
}

.header-1.header-2.header-4 .header-main .main-menu ul li .submenu li a:hover::before {
  background-color: var(--theme3);
}

@media (max-width: 1899px) {
  .header-1.header-2.header-4 .header-main .main-menu ul li {
    margin-inline-end: 28px;
  }
}

.header-1.header-2.header-4 .header-main .header-right .icon-items .menu_search .search_btn {
  color: var(--white);
}

.header-1.header-2.header-4 .header-main .header-right .icon-items a i {
  color: var(--white);
}

.header-1.header-3 {
  margin-top: 60px;
}

@media (max-width: 1600px) {
  .header-1.header-3 {
    margin-top: 70px;
  }
}

@media (max-width: 1399px) {
  .header-1.header-3 {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .header-1.header-3 {
    margin-top: 10px;
  }
}

.header-1.header-3 .container-fluid {
  padding: 0 40px;
}

@media (max-width: 1399px) {
  .header-1.header-3 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .header-1.header-3 .container-fluid {
    padding: 0 15px;
  }
}

.header-1.header-3 .header-main {
  position: relative;
}

@media (max-width: 575px) {
  .header-1.header-3 .header-main .logo .header-logo {
    display: none !important;
  }
}

.header-1.header-3 .header-main .logo .header-logo-2 {
  display: none;
}

@media (max-width: 575px) {
  .header-1.header-3 .header-main .logo .header-logo-2 {
    display: block !important;
  }
}

.header-1.header-3 .header-main .main-menu ul li a {
  color: rgb(80, 98, 74);
}

.header-1.header-3 .header-main .main-menu ul li a:hover {
  color: var(--theme);
}

.header-1.header-3 .header-main .main-menu ul li .submenu {
  border-top: 6px solid var(--theme);
}

.header-1.header-3 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}

.header-1.header-3 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme) !important;
}

.header-1.header-3 .header-main .main-menu ul li .submenu li a:hover::before {
  background-color: var(--theme) !important;
}

@media (max-width: 1899px) {
  .header-1.header-3 .header-main .main-menu ul li {
    margin-inline-end: 28px;
  }
}

.header-1.header-3 .header-main .header-right {
  gap: 50px;
}

@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right {
    gap: 30px;
  }
}

.header-1.header-3 .header-main .header-right .icon-items .menu_search .search_btn {
  color: rgb(80, 98, 74);
}

@media (max-width: 575px) {
  .header-1.header-3 .header-main .header-right .icon-items .menu_search .search_btn {
    color: rgb(47, 47, 47);
    font-size: 16px;
  }
}

.header-1.header-3 .header-main .header-right .icon-items a i {
  color: rgb(80, 98, 74);
}

@media (max-width: 575px) {
  .header-1.header-3 .header-main .header-right .icon-items a i {
    color: rgb(47, 47, 47);
  }
}

.header-1.header-3 .header-main .header-right .header-btn .header-button .theme-btn {
  border: 1px solid var(--theme);
  background-color: transparent;
  color: rgb(200, 67, 58);
}

.header-1.header-3 .header-main .header-right .header-btn .header-button .theme-btn::before {
  background-color: var(--theme);
}

.header-1.header-3 .header-main .header-right .header-btn .header-button .theme-btn::after {
  background-color: rgba(200, 67, 58, 0.3);
}

.header-1.header-3 .header-main .header-right .header-btn .header-button .theme-btn:hover {
  color: var(--white);
}

.header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
  background-color: rgb(255, 255, 255);
  border-radius: 6px;
  color: rgb(80, 98, 74);
  width: 52px;
  height: 52px;
  line-height: 52px;
}

@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
    display: none;
  }
}

.header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle.style-2 {
  display: none !important;
}

@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle.style-2 {
    display: block !important;
  }
}

@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid rgba(47, 47, 47, 0.2);
    color: rgb(47, 47, 47);
    background-color: transparent;
    border-radius: 100px;
  }

  .header-1.header-3 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle.style-2 {
    display: block !important;
  }
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 99999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-1 {
  margin-top: 0;
}

.sticky.header-1 .header-main .header-left .header-logo {
  display: none;
}

.sticky.header-1 .header-main .header-left .header-logo-2 {
  display: block;
}

.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--header);
}

.sticky.header-1 .header-main .header-right .icon-items .menu_search .search_btn {
  color: var(--header);
}

.sticky.header-1 .header-main .header-right .icon-items a i {
  color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn span {
  background-color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn .sidebar__toggle {
  color: var(--header);
}

.sticky.header-2 .header-main {
  padding: 10px;
}

.sticky.header-2 .header-main .overlay-shape {
  display: none;
}

.sticky.header-2 .header-main .main-menu ul li a:hover {
  color: var(--header) !important;
}

.sticky.header-2 .header-main .main-menu ul li a:hover::before {
  background-color: var(--theme3) !important;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme3) !important;
  margin-left: 10px;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li:hover>a::before {
  width: 10px;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme3);
}

.sticky.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3 {
  background-color: transparent;
  border: 1px solid var(--theme3);
  color: var(--theme3);
}

.sticky.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3::before {
  background-color: var(--theme3);
}

.sticky.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3::after {
  background-color: rgba(17, 162, 27, 0.3);
}

.sticky.header-2 .header-main .header-right .header-btn .header-button .theme-btn.theme-btn-3:hover {
  color: var(--white);
}

.sticky.header-2 .header-main .header-right .header-btn .header__hamburger .sidebar__toggle {
  border: 1px solid var(--header);
}

.sticky.header-3 {
  margin-top: 0;
}

.sticky.header-4 {
  margin-top: 0px !important;
}

.sticky.header-4 .header-main .main-menu ul li a {
  color: var(--header) !important;
}

.sticky.header-4 .header-main .main-menu ul li a:hover {
  color: var(--theme3);
}

.sticky.header-4 .header-main .main-menu ul li .submenu {
  border-top: 6px solid var(--theme3);
}

.sticky.header-4 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme3) !important;
}

.sticky.header-4 .header-main .main-menu ul li .submenu li a:hover::before {
  background-color: var(--theme3);
}

.sticky.header-4 .header-main .header-right .icon-items .menu_search .search_btn {
  color: var(--header) !important;
}

.sticky.header-4 .header-main .header-right .icon-items a i {
  color: var(--header) !important;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  /* border-left: 2px solid var(--theme2); */
  position: fixed;
  right: 0;
  top: 0;
  width: 450px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;

}

.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.style-2 {
  border-left: 2px solid var(--theme3) !important;
}

.offcanvas__info.style-3 {
  border-left: 2px solid var(--theme) !important;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
  color: var(--black);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme2);
  position: relative;
  z-index: 9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-2 {
  background-color: var(--theme3);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-2 i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-3 {
  background-color: var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-3 i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--header);
  font-size: 16px;
  line-height: 1;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}


.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
  display: none;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 0;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 14px;
  }
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 16px;
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 12px;
  }
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--black);
  text-transform: none;
  font-size: 14px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme3);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon.style-1 {
  color: var(--theme) !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon.style-2 {
  color: var(--theme2) !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: none;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 20px;
  gap: 4px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #50624a;
  font-size: 22px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background: #3a5c20;
  color: #fff;
  transform: translateY(-2px);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 60%;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
  background-color: rgba(17, 162, 27, 0.1);
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper {
    margin-top: 0;
  }
}

.breadcrumb-wrapper .top-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.breadcrumb-wrapper .top-image img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .top-image {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper.bg-cover {
    background-image: none !important;
  }
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 325px 0 50px;
  z-index: 9;
  text-align: center;
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 150px;
    padding-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 115px;
    padding-bottom: 80px;
  }
}

.breadcrumb-wrapper .page-heading h1 {
  color: var(--header) !important;
  font-size: 50px;
  position: relative;
  text-transform: capitalize;
  z-index: 9;
  font-weight: 700;
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
    color: var(--white) !important;
  }
}

@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 8px;
  justify-content: center;
  border: 1px solid rgba(47, 47, 47, 0.2);
  display: inline-flex;
  border-radius: 6px;
  padding: 2px 10px;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: rgb(17, 162, 27);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: var(--white);
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: var(--white);
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--header);
  margin-right: 9px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: rgb(17, 162, 27);
  opacity: 1;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: rgb(17, 162, 27);
  margin-right: 5px;
}

.error-items {
  text-align: center;
  position: relative;
  margin-top: -40px;
}

@media (max-width: 1399px) {
  .error-items {
    margin-top: 0;
  }
}

.error-items .error-image {
  background-size: cover;
  background-position: 50%;
  -webkit-background-clip: text;
  color: transparent;
  background-image: url(../img/404.png);
  background-position: -85% 811px;
  background-size: 91% auto;
  font-size: 330px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -9.6px;
  animation-duration: 1500ms;
  -webkit-animation-duration: 1500ms;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .error-items .error-image {
    font-size: 300px;
    text-align: center;
    letter-spacing: initial;
    background-size: 58% auto;
  }
}

@media (max-width: 1199px) {
  .error-items .error-image {
    font-size: 250px;
    text-align: center;
    letter-spacing: initial;
    background-size: 76% auto;
  }
}

@media (max-width: 991px) {
  .error-items .error-image {
    font-size: 180px;
    background-size: 92% auto;
  }
}

@media (max-width: 767px) {
  .error-items .error-image {
    font-size: 130px;
    background-size: 90% auto;
  }
}

@media (max-width: 575px) {
  .error-items .error-image {
    font-size: 90px;
    background-size: 83% auto;
  }
}

.error-items h2 {
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -2px;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .error-items h2 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .error-items h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .error-items h2 {
    font-size: 30px;
  }
}

.error-items p {
  max-width: 722px;
  margin: 0 auto 40px;
}

@media (max-width: 767px) {
  .error-items p {
    margin-bottom: 30px;
  }
}



.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }

  .section-title br {
    display: none;
  }
}

.section-title .sub-title {
  font-size: 16px;
  font-weight: 600;
  color: rgb(200, 67, 58);
  border: 1px solid rgba(200, 67, 58, 0.2);
  padding: 6px 9px;
  display: inline-block;
  border-radius: 6px;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
}

.section-title .sub-title.style-2 {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1399px) {
  .section-title h2 br {
    display: none;
  }
}

.section-title .sub-title-2 {
  color: var(--theme2);
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  display: inline-block;
  text-transform: capitalize;
}

.section-title .sub-title-2 img {
  margin-right: 8px;
}

.section-title .sub-title-2.style-2 {
  color: var(--header);
}

.section-title .sub-title-3 {
  border: 1px solid rgba(17, 162, 27, 0.2);
  color: var(--theme3);
  border-radius: 6px;
  text-transform: uppercase;
  padding: 2px 9px;
  font-family: "Inter", sans-serif;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
}

.section-title .sub-title-3.style-border {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }

  .section-title-area br {
    display: none;
  }
}

@media (max-width: 1399px) {
  .section-title-area p br {
    display: none;
  }
}

.section-title-area .section-title {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

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

.section-bg-3 {
  background-color: var(--bg3);
}

.header-bg {
  background-color: var(--header);
}

.theme-bg-2 {
  background-color: var(--theme2);
}

.section-bg-2 {
  background-color: var(--bg2);
}

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

@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}


/*---------------------------------------
05. Sections
---------------------------------------*/
.about-wrapper .about-image {
  max-width: 640px;
  position: relative;
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-image {
    max-width: initial;
  }
}

.about-wrapper .about-image .about-image-item {
  display: grid;
  align-items: center;
  gap: 30px;
  position: absolute;
  right: -100px;
  top: 125px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-image .about-image-item {
    right: 0;
    top: 0;
    flex-wrap: wrap;
    top: 100px;
  }
}

@media (max-width: 991px) {
  .about-wrapper .about-image .about-image-item {
    top: 250px;
  }
}

@media (max-width: 767px) {
  .about-wrapper .about-image .about-image-item {
    top: 80px;
  }
}

.about-wrapper .about-image .about-image-item .about-thumb {
  max-width: 234px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-image .about-image-item .about-thumb {
    max-width: 160px;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-image .about-image-item .about-thumb {
    max-width: 120px;
  }
}

.about-wrapper .about-image .about-image-item .about-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 4px solid var(--white);
}

.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about-wrapper .about-content {
  margin-left: 84px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}

.about-wrapper .about-content .text {
  margin-top: 15px;
  max-width: 609px;
}

.about-wrapper .about-content .about-box-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  background-color: var(--white);
  padding: 0 0 0 20px;
  margin-top: 30px;
  margin-bottom: 50px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-box-item {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px;
  }
}

.about-wrapper .about-content .about-box-item .left-item h3 {
  font-weight: 600;
  font-size: 18px;
}

.about-wrapper .about-content .about-box-item .left-item .list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-box-item .left-item .list-item {
    gap: 10px;
  }
}

.about-wrapper .about-content .about-box-item .left-item .list-item .list li {
  color: rgb(47, 47, 47);
  font-weight: 500;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-box-item .left-item .list-item .list li {
    font-size: 14px;
  }
}

.about-wrapper .about-content .about-box-item .left-item .list-item .list li i {
  margin-right: 8px;
  color: rgb(200, 67, 58);
}

.about-wrapper .about-content .about-box-item .left-item .list-item .list li:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .about-wrapper .about-content .about-box-item .right-image {
    display: none;
  }
}

.about-wrapper .about-content .about-box-item .right-image img {
  width: 100%;
  height: 100%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-box-item .right-image img {
    border-radius: 20px;
  }
}

.about-wrapper .about-content .about-box-item .right-image-2 {
  opacity: 0;
  visibility: hidden;
  display: none;
}

@media (max-width: 575px) {
  .about-wrapper .about-content .about-box-item .right-image-2 {
    opacity: 1;
    visibility: visible;
    max-width: 100%;
    display: block;
  }
}

.about-wrapper .about-content .about-box-item .right-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about-wrapper .about-content .about-button {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-button {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper .about-content .about-button .theme-btn.style-2 {
  background-color: transparent;
  border: 1px solid var(--theme);
  color: var(--theme);
}

.about-wrapper .about-content .about-button .theme-btn.style-2::before {
  background-color: var(--theme);
}

.about-wrapper .about-content .about-button .theme-btn.style-2::after {
  background-color: rgba(200, 67, 58, 0.3);
}

.about-wrapper .about-content .about-button .theme-btn.style-2:hover {
  color: var(--white);
}

.about-section {
  position: relative;
}

.about-section .left-shape {
  position: absolute;
  top: 490px;
  left: 0;
}

@media (max-width: 1600px) {
  .about-section .left-shape {
    display: none;
  }
}

.about-section .right-shape {
  position: absolute;
  right: 75px;
  bottom: 70px;
}

@media (max-width: 1399px) {
  .about-section .right-shape {
    display: none;
  }
}

.about-section .right-shape img {
  animation: rotateCircle 10s linear infinite;
}

.about-section-2 {
  z-index: 9;
}

.about-section-2 .section-title-area {
  border-top: 1px solid rgba(47, 47, 47, 0.2);
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding: 60px 0;
  margin-bottom: 48px;
}

@media (max-width: 1399px) {
  .about-section-2 .section-title-area {
    padding: 30px 0;
    margin-bottom: 30px;
  }
}

.about-section-2 .section-title-area p {
  margin-bottom: 30px;
}

.about-section-2 .left-shape {
  position: absolute;
  left: 0;
  top: 10.5%;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-section-2 .left-shape {
    display: none;
  }
}

.about-section-2 .left-shape-2 {
  position: absolute;
  left: 30px;
  top: 44%;
  z-index: -1;
}

@media (max-width: 1600px) {
  .about-section-2 .left-shape-2 {
    display: none;
  }
}

.about-section-2 .right-shape {
  position: absolute;
  right: 0;
  top: 10.5%;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-section-2 .right-shape {
    display: none;
  }
}

.about-section-2 .right-shape-2 {
  position: absolute;
  right: 30px;
  top: 32%;
  z-index: -1;
}

@media (max-width: 1600px) {
  .about-section-2 .right-shape-2 {
    display: none;
  }
}

.about-section-2 .maize-shape {
  position: absolute;
  top: 19.5%;
  left: 30px;
}

@media (max-width: 1600px) {
  .about-section-2 .maize-shape {
    display: none;
  }
}

.about-section-2 .maize-shape-2 {
  position: absolute;
  top: 14%;
  right: 30px;
}

@media (max-width: 1600px) {
  .about-section-2 .maize-shape-2 {
    display: none;
  }
}

.about-wrapper-2 .count-wrap {
  display: flex;
  align-items: center;
  align-items: start;
  justify-content: space-between;
  margin-top: 130px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .count-wrap {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .count-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.about-wrapper-2 .count-wrap .count-item-2 h2 {
  font-weight: 600;
  font-size: 200px;
  color: transparent;
  line-height: 94%;
  -webkit-text-stroke: 1px rgb(245, 216, 62);
}

@media (max-width: 1399px) {
  .about-wrapper-2 .count-wrap .count-item-2 h2 {
    font-size: 90px;
  }
}

.about-wrapper-2 .count-wrap .count-item-2 p {
  font-size: 24px;
  font-weight: 400;
  color: rgb(47, 47, 47);
  max-width: 318px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .count-wrap .count-item-2 p {
    font-size: 18px;
  }
}

.about-wrapper-2 .count-wrap .count-item-2.active h2 {
  color: var(--theme2);
}

@media (max-width: 1399px) {
  .about-wrapper-2 .count-wrap .count-item-2.style-top {
    margin-top: 0;
  }
}

.about-wrapper-2 .trac-wrap {
  margin-top: -60px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .trac-wrap {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .trac-wrap {
    margin-top: 0;
  }
}

.about-wrapper-2 .trac-wrap .tractor-image {
  text-align: center;
  max-width: 491px;
  margin: 0 auto;
}

@media (max-width: 575px) {
  .about-wrapper-2 .trac-wrap .tractor-image {
    max-width: 190px;
    margin-left: 68px;
  }
}

.about-wrapper-2 .trac-wrap .tractor-image img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 4px 150px rgba(245, 216, 62, 0.5));
}

.about-wrapper-2 .paddy-image {
  margin-top: -180px;
  position: relative;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .paddy-image {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .about-wrapper-2 .paddy-image {
    margin-top: -16px;
  }
}

.about-wrapper-2 .paddy-image .video-btn {
  width: 120px;
  height: 120px;
  line-height: 120px;
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--theme2);
  position: absolute;
  z-index: 9;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 17px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .paddy-image .video-btn.ripple-2::before {
    display: none;
  }

  .about-wrapper-2 .paddy-image .video-btn.ripple-2::after {
    display: none;
  }
}

@media (max-width: 1399px) {
  .about-wrapper-2 .paddy-image .video-btn {
    bottom: 60px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .paddy-image .video-btn {
    width: 100px;
    height: 100px;
    line-height: 100px;
    bottom: 40px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-2 .paddy-image .video-btn {
    width: 65px;
    height: 65px;
    line-height: 65px;
    bottom: 13px;
  }
}

.about-wrapper-2 .paddy-image .video-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 198px;
  height: 198px;
  border-radius: 100px;
}

.about-wrapper-2 .paddy-image .video-btn::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 154px;
  height: 154px;
  border-radius: 100px;
}

.about-wrapper-2 .paddy-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about-wrapper-3 .about-content .text {
  max-width: 690px;
  margin-top: 15px;
}

.about-wrapper-3 .about-content .about-image-item {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .about-image-item {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-content .about-image-item {
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-content .about-image-item {
    flex-wrap: initial;
    gap: 0;
  }
}

.about-wrapper-3 .about-content .about-image-item .about-image {
  position: relative;
  width: 313px;
  height: 175px;
  max-width: 100%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 313 175'%3E%3Cpath d='M2.56509 29.7474C-4.8756 16.4161 4.76189 0 20.029 0H249.183C256.013 0 262.371 3.48579 266.045 9.24437L309.101 76.7444C313.286 83.3043 313.286 91.6957 309.101 98.2556L266.045 165.756C262.371 171.514 256.013 175 249.183 175H20.029C4.76185 175 -4.87562 158.584 2.56507 145.253L29.3587 97.2473C32.7401 91.189 32.7401 83.811 29.3588 77.7527L2.56509 29.7474Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 313 175'%3E%3Cpath d='M2.56509 29.7474C-4.8756 16.4161 4.76189 0 20.029 0H249.183C256.013 0 262.371 3.48579 266.045 9.24437L309.101 76.7444C313.286 83.3043 313.286 91.6957 309.101 98.2556L266.045 165.756C262.371 171.514 256.013 175 249.183 175H20.029C4.76185 175 -4.87562 158.584 2.56507 145.253L29.3587 97.2473C32.7401 91.189 32.7401 83.811 29.3588 77.7527L2.56509 29.7474Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .about-image-item .about-image {
    height: 150px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-content .about-image-item .about-image {
    height: 175px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-content .about-image-item .about-image {
    width: 200px;
    height: 98px;
  }
}

.about-wrapper-3 .about-content .about-image-item .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about-wrapper-3 .about-content .about-image-item .about-image .count-content {
  position: absolute;
  top: 30px;
  left: 50px;
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-content .about-image-item .about-image .count-content {
    top: 18px;
    left: 30px;
  }
}

.about-wrapper-3 .about-content .about-image-item .about-image .count-content h2 {
  font-size: 100px;
  color: var(--white);
  line-height: 90%;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .about-image-item .about-image .count-content h2 {
    font-size: 75px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-content .about-image-item .about-image .count-content h2 {
    font-size: 40px;
    text-align: center;
  }
}

.about-wrapper-3 .about-content .about-image-item .about-image .count-content p {
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-content .about-image-item .about-image .count-content p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-content .about-image-item .about-image .count-content p {
    font-size: 10px;
  }
}

.about-wrapper-3 .about-box {
  border-radius: 20px;
  padding: 70px;
  width: 100%;
  max-width: 590px;
  position: relative;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-box {
    padding: 30px;
    max-width: initial;
    width: initial;
  }
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-box {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-3 .about-box {
    padding: 30px;
  }
}

.about-wrapper-3 .about-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  height: 95%;
  background-color: rgba(47, 47, 47, 0.2);
  top: 13px;
  left: initial;
  right: -10px;
  border-radius: 10px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-box::before {
    display: none;
  }
}

.about-wrapper-3 .about-box::after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 90%;
  content: "";
  background-color: rgba(47, 47, 47, 0.1);
  top: 25px;
  left: initial;
  right: -20px;
  border-radius: 10px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-box::after {
    display: none;
  }
}

.about-wrapper-3 .about-box .about-right-item h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.about-wrapper-3 .about-box .about-right-item .list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-box .about-right-item .list-item {
    gap: 10px;
  }
}

.about-wrapper-3 .about-box .about-right-item .list-item .list li {
  color: var(--white);
  font-weight: 500;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-box .about-right-item .list-item .list li {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-box .about-right-item .list-item .list li {
    font-size: 13px;
  }
}

.about-wrapper-3 .about-box .about-right-item .list-item .list li i {
  margin-right: 8px;
  color: rgb(17, 162, 27);
}

.about-wrapper-3 .about-box .about-right-item .list-item .list li:not(:last-child) {
  margin-bottom: 10px;
}

.about-wrapper-3 .about-box .about-right-item .info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.about-wrapper-3 .about-box .about-right-item .info-item .content h4 {
  font-weight: 600;
  color: var(--white);
}

.about-wrapper-3 .about-box .about-right-item .info-item .content span {
  color: rgb(131, 131, 131);
  font-weight: 400;
  font-size: 15px;
}

.about-wrapper-3 .about-box .about-right-item .about-button {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-box .about-right-item .about-button {
    gap: 10px;
  }
}

@media (max-width: 1399px) {
  .about-wrapper-3 .about-box .about-right-item .about-button .theme-btn {
    padding: 13px 20px 13px;
  }
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.theme-btn-3::before {
  background-color: var(--white);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.theme-btn-3::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.theme-btn-3:hover {
  color: var(--theme3);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.style-2 {
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
  color: var(--white);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.style-2::before {
  background-color: var(--theme3);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.style-2::after {
  background-color: rgba(17, 162, 27, 0.3);
}

.about-wrapper-3 .about-box .about-right-item .about-button .theme-btn.style-2:hover {
  color: var(--white);
  border: 1px solid var(--theme3);
}

.about-section-3 {
  position: relative;
}

.about-section-3 .chili-shape {
  position: absolute;
  left: 30px;
  top: 120px;
}

@media (max-width: 1600px) {
  .about-section-3 .chili-shape {
    display: none;
  }
}

.about-section-3 .tree-shape {
  position: absolute;
  right: 30px;
  bottom: 120px;
}

@media (max-width: 1600px) {
  .about-section-3 .tree-shape {
    display: none;
  }
}

.about-us-two-wrapper .about-us-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.about-us-two-wrapper .about-us-content .text {
  margin-top: 15px;
  max-width: 690px;
}

.about-us-two-wrapper .about-us-content .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .about-us-two-wrapper .about-us-content .client-info-item {
    flex-wrap: wrap;
    gap: 25px;
  }
}

.about-us-two-wrapper .about-us-content .client-info-item .client-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .about-us-two-wrapper .about-us-content .client-info-item .client-item {
    gap: 20px;
  }
}

.about-us-two-wrapper .about-us-content .client-info-item .client-item h3 {
  font-size: 20px;
  font-weight: 600;
}

.about-us-two-wrapper .about-us-content .list li {
  color: var(--header);
  font-weight: 500;
}

@media (max-width: 1399px) {
  .about-us-two-wrapper .about-us-content .list li {
    font-size: 14px;
  }
}

.about-us-two-wrapper .about-us-content .list li i {
  margin-right: 8px;
  color: rgb(200, 67, 58);
}

.about-us-two-wrapper .about-us-content .list li:not(:last-child) {
  margin-bottom: 10px;
}

.about-us-two-wrapper .about-us-content .about-us-btn-item {
  display: flex;
  align-items: center;
  gap: 44px;
  position: relative;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .about-us-two-wrapper .about-us-content .about-us-btn-item {
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
  }
}

@media (max-width: 470px) {
  .about-us-two-wrapper .about-us-content .about-us-btn-item {
    flex-wrap: initial;
    gap: 10px;
  }
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn {
  border: 1px solid var(--theme3);
  background-color: transparent;
  color: var(--theme3);
}

@media (max-width: 470px) {
  .about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn {
    padding: 10px 25px 10px;
  }
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn::before {
  background-color: var(--theme3);
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn::after {
  background-color: rgba(17, 162, 27, 0.3);
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .theme-btn:hover {
  border: 1px solid var(--theme3);
  color: var(--white);
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 470px) {
  .about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item {
    gap: 8px;
  }
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item .icon {
  width: 52px;
  height: 52px;
  line-height: 48px;
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--theme3);
  border-radius: 100px;
  color: var(--theme3);
}

@media (max-width: 470px) {
  .about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item h3 {
  font-weight: 600;
}

@media (max-width: 470px) {
  .about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item h3 {
    font-size: 16px;
  }
}

.about-us-two-wrapper .about-us-content .about-us-btn-item .icon-item h3 a {
  color: var(--header);
}

.about-wrapper-4 .about-image {
  position: relative;
  max-width: 460px;
  z-index: 9;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-image {
    max-width: initial;
  }
}

.about-wrapper-4 .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.about-wrapper-4 .about-image .about-image-2 {
  position: absolute;
  bottom: -320px;
  right: -150px;
  max-width: 470px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-image .about-image-2 {
    right: 0;
    bottom: 0;
    max-width: 170px;
    z-index: 1;
  }
}

@media (max-width: 991px) {
  .about-wrapper-4 .about-image .about-image-2 {
    max-width: 370px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-4 .about-image .about-image-2 {
    max-width: 170px;
  }
}

.about-wrapper-4 .about-content .text {
  max-width: 690px;
  margin-top: 15px;
}

.about-wrapper-4 .about-content .about-icon-item {
  display: flex;
  align-items: center;
  gap: 150px;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-content .about-icon-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.about-wrapper-4 .about-content .about-icon-item .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-wrapper-4 .about-content .about-icon-item .icon-item img {
  width: 64px;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-content .about-icon-item .icon-item h3 {
    font-size: 20px;
  }
}

.about-wrapper-4 .about-content .list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  border-bottom: 1px solid rgba(200, 67, 58, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-content .list-item {
    gap: 10px;
  }
}

.about-wrapper-4 .about-content .list-item .list li {
  color: var(--theme3);
  font-weight: 500;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-content .list-item .list li {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-4 .about-content .list-item .list li {
    font-size: 13px;
  }
}

.about-wrapper-4 .about-content .list-item .list li i {
  margin-right: 8px;
  color: var(--theme3);
}

.about-wrapper-4 .about-content .list-item .list li:not(:last-child) {
  margin-bottom: 10px;
}

.brand-box-1 {
  height: 120px;
  line-height: 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-box-1 .brand-img-1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-box-1 .brand-img-1 img {
  transition: all 0.6s ease;
  transform: translateY(0);
  opacity: 0.4;
}

.brand-box-1 .brand-img-1:last-child img {
  transform: translateY(-350%);
  opacity: 0;
}

.brand-box-1:hover .brand-img-1:first-child img {
  transform: translateY(100%);
  opacity: 0;
}

.brand-box-1:hover .brand-img-1:last-child img {
  transform: translateY(0);
  opacity: 1;
}

.brand-slider.style-border {
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 120px;
}

@media (max-width: 1399px) {
  .brand-slider.style-border {
    padding-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .brand-slider.style-border {
    padding-bottom: 80px;
  }
}

.brand-section-2 .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:first-child img {
  transform: translateY(100%);
  opacity: 0;
}

.brand-section-2 .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:last-child img {
  transform: translateY(0);
  opacity: 1;
}

.brand-section-3 h2 {
  color: var(--header);
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

@media (max-width: 1399px) {
  .brand-section-3 h2 {
    margin-bottom: 30px;
  }
}

.brand-section-3 h2::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 638px;
  background-color: rgba(47, 47, 47, 0.2);
  left: 0;
  top: 10px;
}

@media (max-width: 1399px) {
  .brand-section-3 h2::before {
    display: none;
  }
}

.brand-section-3 h2::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 638px;
  background-color: rgba(47, 47, 47, 0.2);
  right: 0;
  top: 10px;
}

@media (max-width: 1399px) {
  .brand-section-3 h2::after {
    display: none;
  }
}

.brand-section-3 .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:first-child img {
  transform: translateY(100%);
  opacity: 0;
}

.brand-section-3 .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:last-child img {
  transform: translateY(0);
  opacity: 1;
}

.brand-section .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:first-child img {
  transform: translateY(100%);
  opacity: 0;
}

.brand-section .swiper-slide.swiper-slide-active .brand-box-1 .brand-img-1:last-child img {
  transform: translateY(0);
  opacity: 1;
}

.contact-info-wrapper {
  display: flex;
  align-items: center;
  align-items: end;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .contact-info-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.contact-info-wrapper .contact-info-left-content .info-icon-item {
  display: flex;
  align-items: center;
  gap: 78px;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .contact-info-wrapper .contact-info-left-content .info-icon-item {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 470px) {
  .contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item {
    gap: 8px;
  }
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: var(--theme3);
  border-radius: 100px;
  color: var(--header);
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .icon img {
  filter: brightness(0) invert(1);
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .cont span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: rgb(142, 142, 142);
  text-transform: capitalize;
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .cont h3 {
  font-size: 20px;
  font-weight: 700;
}

.contact-info-wrapper .contact-info-left-content .info-icon-item .icon-item .cont h3 a {
  color: var(--header);
}

.contact-info-wrapper .info-right-content p {
  max-width: 420px;
  color: rgb(80, 98, 74);
  margin-bottom: 50px;
  font-weight: 400;
}

@media (max-width: 1399px) {
  .contact-info-wrapper .info-right-content p {
    margin-bottom: 30px;
  }
}

.contact-info-wrapper .info-right-content .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 470px) {
  .contact-info-wrapper .info-right-content .icon-item {
    gap: 8px;
    flex-wrap: wrap;
  }
}

.contact-info-wrapper .info-right-content .icon-item .icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: var(--theme3);
  border-radius: 100px;
  color: var(--white);
  font-size: 20px;
}

.contact-info-wrapper .info-right-content .icon-item .cont span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: rgb(142, 142, 142);
  text-transform: capitalize;
}

.contact-info-wrapper .info-right-content .icon-item .cont h3 {
  font-size: 20px;
  font-weight: 700;
}

.contact-info-wrapper .info-right-content .icon-item .cont h3 a {
  color: var(--header);
}

.contact-wrapper .contact-content {
  border-radius: 10px;
  padding: 57px;
  background-color: var(--white);
}

@media (max-width: 1399px) {
  .contact-wrapper .contact-content {
    padding: 30px;
  }
}

.contact-wrapper .contact-content .contact-form .form-clt span {
  color: var(--header);
  margin-bottom: 10px;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 500;
}

.contact-wrapper .contact-content .contact-form .form-clt input,
.contact-wrapper .contact-content .contact-form .form-clt textarea {
  border-radius: 10px;
  border: none;
  background-color: var(--white);
  border: 1px solid rgba(47, 47, 47, 0.1);
  line-height: 1;
  padding: 18px 25px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
  outline: none;
}

.contact-wrapper .contact-content .contact-form .form-clt textarea {
  padding-bottom: 0px;
  resize: none;
}

.contact-wrapper .contact-map iframe {
  width: 100%;
  height: 862px;
  border-radius: 10px;
}

@media (max-width: 1399px) {
  .contact-wrapper .contact-map iframe {
    height: 800px;
  }
}

@media (max-width: 991px) {
  .contact-wrapper .contact-map iframe {
    height: 450px;
  }
}

@media (max-width: 575px) {
  .contact-wrapper .contact-map iframe {
    height: 350px;
  }
}

.contact-section {
  position: relative;
}

.contact-section .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 1600px) {
  .contact-section .left-shape {
    display: none;
  }
}

.contact-section .maize-shape {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1600px) {
  .contact-section .maize-shape {
    display: none;
  }
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 75px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: -140px;
  z-index: 999;
}

@media (max-width: 1399px) {
  .cta-wrapper {
    margin-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .cta-wrapper {
    margin-bottom: 80px;
  }
}

.cta-wrapper .tomato {
  position: absolute;
  top: 0;
  right: 360px;
}

.cta-wrapper .tomato img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1399px) {
  .cta-wrapper .tomato {
    display: none;
  }
}

.cta-wrapper .cta-shape {
  position: absolute;
  right: 478px;
  bottom: 25px;
}

@media (max-width: 1399px) {
  .cta-wrapper .cta-shape {
    display: none;
  }
}

@media (max-width: 1399px) {
  .cta-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px;
  }
}

@media (max-width: 991px) {
  .cta-wrapper {
    padding: 50px;
  }
}

@media (max-width: 767px) {
  .cta-wrapper {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .cta-wrapper {
    padding: 20px;
  }
}

.cta-wrapper .cta-content {
  max-width: 670px;
  width: 100%;
}

.cta-wrapper .cta-content h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-wrapper .cta-content form {
  max-width: 691px;
  width: 100%;
}

.cta-wrapper .cta-content .form-clt {
  position: relative;
}

.cta-wrapper .cta-content .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  color: rgb(80, 98, 74);
  line-height: 1;
  padding: 25px 50px;
  border-radius: 10px;
  max-width: 691px;
}

@media (max-width: 470px) {
  .cta-wrapper .cta-content .form-clt input {
    padding: 25px 30px;
  }
}

.cta-wrapper .cta-content .form-clt input::placeholder {
  color: rgb(80, 98, 74);
}

.cta-wrapper .cta-content .form-clt i {
  position: absolute;
  left: 25px;
  top: 28px;
}

@media (max-width: 470px) {
  .cta-wrapper .cta-content .form-clt i {
    left: 10px;
  }
}

.cta-wrapper .cta-content .form-clt .theme-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgb(47, 47, 47);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

@media (max-width: 470px) {
  .cta-wrapper .cta-content .form-clt .theme-btn {
    padding: 10px 20px 10px;
  }
}

.cta-wrapper .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta-wrapper .icon-item .icon {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  background-color: var(--white);
  border-radius: 100px;
  color: rgb(200, 67, 58);
}

.cta-wrapper .icon-item h3 {
  font-weight: 600;
}

.cta-wrapper .icon-item h3 a {
  color: var(--white);
}

.cta-section {
  position: relative;
  z-index: 99999;
}

@media (max-width: 1399px) {
  .cta-section {
    overflow: hidden;
  }
}

.faq-wrapper-2 .faq-content .progress-wrap {
  margin-top: 30px;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items {
  width: 100%;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 30px;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .pro-head .title {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  font-family: "Instrument Sans", sans-serif;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  font-weight: 700;
  color: var(--theme2);
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .progress {
  background-color: var(--white);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 10px;
  width: 100%;
  border-radius: 100px;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 100px;
  background: var(--theme2);
  height: 10px;
  width: 0;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

.faq-wrapper-2 .faq-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 69%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 80%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 98%;
  }
}

.faq-wrapper-2 .faq-box {
  margin-left: 20px;
  position: relative;
  z-index: 9;
}

.faq-wrapper-2 .faq-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(250, 247, 240, 0.2);
  top: 20px;
  left: initial;
  right: -20px;
  border-radius: 10px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-box::before {
    display: none;
  }
}

.faq-wrapper-2 .faq-box::after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(250, 247, 240, 0.2);
  top: 10px;
  left: initial;
  right: -10px;
  border-radius: 10px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-box::after {
    display: none;
  }
}

@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-box {
    margin-left: 0;
  }
}

.faq-wrapper-2 .faq-box .faq-items {
  background-color: rgb(250, 247, 240);
  border-radius: 10px;
  padding: 30px;
}

@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-box .faq-items {
    padding: 20px;
  }
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: var(--white);
  padding: 0;
  border-radius: 6px !important;
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item h2 button {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  box-shadow: none;
  padding: 24px 20px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--header);
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item h2 button {
    font-size: 18px;
    padding: 24px 16px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item h2 button {
    font-size: 16px;
    padding: 24px 16px;
  }
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item .accordion-body {
  background-color: var(--theme2);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top: 1px solid rgba(47, 47, 47, 0.2);
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item .accordion-body p {
  color: rgb(80, 98, 74);
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
}

@media (max-width: 575px) {
  .faq-wrapper-2 .faq-box .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button {
  background-color: var(--theme2);
  color: var(--header) !important;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button::after {
  display: none;
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "+";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 13px;
  right: 22px;
  font-size: 14px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--theme2);
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 100px;
  text-align: center;
  background-color: rgb(47, 47, 47);
}

@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button::before {
    right: 8px;
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header) !important;
}

.faq-wrapper-2 .faq-box .faq-items .accordion .accordion-button.collapsed::before {
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  color: var(--header);
  background-color: rgba(245, 216, 62, 0.2);
}

.faq-wrapper-3 .faq-content {
  margin-left: 60px;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-content {
    margin-left: 0;
  }
}

.faq-wrapper-3 .faq-content .text {
  max-width: 604px;
  margin-top: 15px;
  margin-bottom: 40px;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-content .text {
    margin-bottom: 30px;
  }
}

.faq-wrapper-3 .faq-content .theme-btn {
  border: 1px solid rgb(17, 162, 27);
  color: var(--theme3);
  background-color: transparent;
}

.faq-wrapper-3 .faq-content .theme-btn::before {
  background-color: var(--theme3);
}

.faq-wrapper-3 .faq-content .theme-btn::after {
  background-color: rgba(17, 162, 27, 0.3);
}

.faq-wrapper-3 .faq-content .theme-btn:hover {
  color: var(--white);
}

.faq-wrapper-3 .faq-contentt {
  margin-left: 40px;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-contentt {
    margin-left: 0;
  }
}

.faq-wrapper-3 .faq-contentt .faq-image-item {
  display: flex;
  align-items: start;
  gap: 55px;
  margin-top: 50px;
  margin-left: 48px;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-contentt .faq-image-item {
    margin-left: 0;
    margin-top: 30px;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .faq-wrapper-3 .faq-contentt .faq-image-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.faq-wrapper-3 .faq-contentt .faq-image-item .faq-image {
  margin-top: 0;
}

@media (max-width: 991px) {
  .faq-wrapper-3 .faq-contentt .faq-image-item .faq-image {
    flex-basis: 100%;
  }
}

.faq-wrapper-3 .faq-contentt .faq-image-item .faq-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.faq-wrapper-3 .faq-contentt .faq-image-item .faq-image.style-2 {
  margin-top: 70px;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-contentt .faq-image-item .faq-image.style-2 {
    margin-top: 0;
  }
}

.faq-wrapper-3 .faq-box {
  margin-left: 20px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-box {
    margin-left: 0;
  }
}

.faq-wrapper-3 .faq-box.style-inner {
  background-color: rgba(47, 47, 47, 0.2);
  border: 1px solid rgba(47, 47, 47, 0.2);
  border-radius: 10px;
}

.faq-wrapper-3 .faq-box .faq-items {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 30px 30px 20px;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-box .faq-items {
    padding: 20px;
  }
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item.border-none {
  border-bottom: none;
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item h2 button {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  box-shadow: none;
  padding: 24px 20px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--header);
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item h2 button {
    font-size: 18px;
    padding: 24px 16px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item h2 button {
    font-size: 16px;
    padding: 24px 16px;
    line-height: 130%;
  }
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item .accordion-body {
  background-color: rgb(47, 47, 47);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item .accordion-body p {
  color: rgb(255, 255, 255);
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
}

@media (max-width: 575px) {
  .faq-wrapper-3 .faq-box .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button {
  background-color: rgb(47, 47, 47);
  color: var(--white) !important;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom: none;
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button::after {
  display: none;
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 13px;
  right: 22px;
  font-size: 14px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--theme3);
}

@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button::before {
    right: 8px;
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header) !important;
}

.faq-wrapper-3 .faq-box .faq-items .accordion .accordion-button.collapsed::before {
  content: "+";
  font-family: "Font Awesome 6 Pro";
  color: rgb(17, 162, 27);
  background-color: rgba(17, 162, 27, 0.1);
}

.faq-section-2 {
  position: relative;
}

.faq-section-2 .faq-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

.faq-section-3 {
  position: relative;
  margin: 0 60px;
  border-radius: 20px;
  margin-top: 120px;
}

@media (max-width: 1399px) {
  .faq-section-3 {
    margin: 0 15px;
    margin-top: 100px;
  }
}

@media (max-width: 991px) {
  .faq-section-3 {
    margin-top: 80px;
  }
}

.faq-section-3 .faq-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1399px) {
  .faq-section-3 .faq-shape {
    display: none;
  }
}

.faq-section-3 .drone-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1600px) {
  .faq-section-3 .drone-shape {
    max-width: 500px;
  }

  .faq-section-3 .drone-shape img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1399px) {
  .faq-section-3 .drone-shape {
    display: none;
  }
}

.faq-inner-section {
  position: relative;
  z-index: 9;
}

.faq-inner-section .faq-shape {
  position: absolute;
  left: -70px;
  z-index: -1;
  bottom: 120px;
}

@media (max-width: 1600px) {
  .faq-inner-section .faq-shape {
    display: none;
  }
}

.faq-itemss {
  margin-top: 30px;
  text-align: center;
}

.faq-itemss .accordion .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: var(--bg3);
  padding: 0;
  border-radius: 8px !important;
}

.faq-itemss .accordion .accordion-item h2 button {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
  padding: 24px 20px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--header);
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .faq-itemss .accordion .accordion-item h2 button {
    font-size: 20px;
    padding: 24px 16px;
  }
}

@media (max-width: 575px) {
  .faq-itemss .accordion .accordion-item h2 button {
    font-size: 16px;
    padding: 24px 16px;
  }
}

.faq-itemss .accordion .accordion-item .accordion-body p {
  color: var(--text);
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
}

@media (max-width: 575px) {
  .faq-itemss .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}

.faq-itemss .accordion .accordion-button {
  background-color: var(--theme3);
  color: var(--white) !important;
}

.faq-itemss .accordion .accordion-button::after {
  display: none;
}

.faq-itemss .accordion .accordion-button::before {
  position: absolute;
  content: "+";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 13px;
  right: 22px;
  font-size: 14px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--theme3);
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--white);
}

@media (max-width: 1399px) {
  .faq-itemss .accordion .accordion-button::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

.faq-itemss .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header) !important;
}

.faq-itemss .accordion .accordion-button.collapsed::before {
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  color: var(--white);
  background-color: var(--theme3);
}

.feature-card-item {
  background-color: var(--white);
  border-radius: 20px;
  padding: 30px;
}

.feature-card-item.inner-page {
  background-color: rgb(243, 250, 243);
}

.feature-card-item.inner-page .content .plus-icon::before {
  background-color: var(--white);
}

.feature-card-item .feature-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.feature-card-item .feature-image::before {
  position: absolute;
  top: 0;
  left: -85%;
  z-index: 99;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.feature-card-item .feature-image .icon {
  width: 94px;
  height: 94px;
  line-height: 94px;
  text-align: center;
  border-radius: 100%;
  background-color: var(--white);
  position: absolute;
  left: 30px;
  bottom: 30px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.feature-card-item .feature-image .icon img {
  width: initial;
  height: initial;
  display: initial;
}

.feature-card-item .feature-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: block;
  transform: scale(1);
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.feature-card-item .content {
  margin-top: 30px;
}

.feature-card-item .content h3 {
  margin-bottom: 10px;
}

.feature-card-item .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.feature-card-item .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.feature-card-item .content p {
  max-width: 384px;
  margin-bottom: 30px;
}

.feature-card-item .content .plus-icon {
  position: relative;
  margin-left: 15px;
  color: var(--theme);
}

.feature-card-item .content .plus-icon i {
  position: relative;
  z-index: 999;
}

.feature-card-item .content .plus-icon span {
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  margin-left: 5px;
}

.feature-card-item .content .plus-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 8%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(200, 67, 58, 0.1);
  color: var(--theme);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.feature-card-item .content .plus-icon:hover {
  color: var(--white);
}

.feature-card-item .content .plus-icon:hover span {
  opacity: 1;
  visibility: visible;
  color: var(--white);
  position: relative;
  z-index: 999;
}

.feature-card-item .content .plus-icon:hover::before {
  width: 150px;
  left: 51%;
  background-color: var(--theme3);
}

.feature-card-item .content .plus-icon.style-theme {
  color: var(--theme3);
}

.feature-card-item .content .plus-icon.style-theme:hover {
  color: var(--white);
}

.feature-card-item:hover .feature-image img {
  transform: scale(1.18);
}

.feature-card-item:hover .feature-image::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.feature-card-item:hover .feature-image .icon {
  transform: rotateY(180deg);
  display: inline-block;
}

.feature-card-item:hover .feature-image .icon img {
  transform: scale(initial);
}

.why-choose-us-section {
  position: relative;
  margin: 0 30px;
  border-radius: 20px;
}

.why-choose-us-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(79, 127, 58, 0.8);
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .why-choose-us-section {
    overflow: hidden;
    margin: 0 0;
  }
}

.why-choose-us-section .choose-us-slider {
  margin-right: -410px;
  margin-top: 48px;
  padding-bottom: 60px;
}

@media (max-width: 1399px) {
  .why-choose-us-section .choose-us-slider {
    padding-bottom: 30px;
    margin-top: 30px;
    margin-right: 0;
  }
}

.why-choose-us-section .content-item .content {
  text-align: center;
  margin: 0 auto;
  max-width: 983px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
  position: relative;
}

.why-choose-us-section .content-item .content span {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  text-align: center;
  margin: 0 auto;
  font-style: italic;
}

@media (max-width: 1399px) {
  .why-choose-us-section .content-item .content span {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .why-choose-us-section .content-item .content span {
    font-size: 16px;
  }
}

.why-choose-us-section .content-item .choose-us-btn-item {
  display: flex;
  align-items: center;
  gap: 44px;
  position: relative;
  justify-content: center;
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .why-choose-us-section .content-item .choose-us-btn-item {
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
  }
}

@media (max-width: 470px) {
  .why-choose-us-section .content-item .choose-us-btn-item {
    flex-wrap: initial;
    gap: 10px;
  }
}

.why-choose-us-section .content-item .choose-us-btn-item .theme-btn {
  border: 1px solid rgb(255, 255, 255);
  background-color: transparent;
}

@media (max-width: 470px) {
  .why-choose-us-section .content-item .choose-us-btn-item .theme-btn {
    padding: 10px 25px 10px;
  }
}

.why-choose-us-section .content-item .choose-us-btn-item .theme-btn::before {
  background-color: var(--white);
}

.why-choose-us-section .content-item .choose-us-btn-item .theme-btn::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.why-choose-us-section .content-item .choose-us-btn-item .theme-btn:hover {
  border: 1px solid var(--white);
  color: var(--theme);
}

.why-choose-us-section .content-item .choose-us-btn-item .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 470px) {
  .why-choose-us-section .content-item .choose-us-btn-item .icon-item {
    gap: 8px;
  }
}

.why-choose-us-section .content-item .choose-us-btn-item .icon-item .icon {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  background-color: var(--white);
  border-radius: 100px;
  color: rgb(200, 67, 58);
}

@media (max-width: 470px) {
  .why-choose-us-section .content-item .choose-us-btn-item .icon-item .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
}

.why-choose-us-section .content-item .choose-us-btn-item .icon-item h3 {
  font-weight: 600;
}

@media (max-width: 470px) {
  .why-choose-us-section .content-item .choose-us-btn-item .icon-item h3 {
    font-size: 16px;
  }
}

.why-choose-us-section .content-item .choose-us-btn-item .icon-item h3 a {
  color: var(--white);
}

.why-choose-us-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}

.why-choose-us-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme);
  border-radius: 10px;
  z-index: -1;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

@media (max-width: 1600px) {
  .why-choose-us-card h3 {
    font-size: 20px;
  }
}

.why-choose-us-card p {
  max-width: 330px;
  margin-top: 10px;
}

.why-choose-us-card .shape-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.why-choose-us-card .shape-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.why-choose-us-card:hover::after {
  transform: scale(1, 1);
  transform-origin: top center;
}

.why-choose-us-card:hover h3 {
  color: var(--white);
}

.why-choose-us-card:hover p {
  color: var(--white);
}

.why-choose-us-card:hover .shape-image {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.why-choose-us-wrapper-2 .why-choose-us-image {
  position: relative;
  z-index: 9;
  max-width: 628px;
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-2 .why-choose-us-image {
    max-width: initial;
  }
}

.why-choose-us-wrapper-2 .why-choose-us-image .circle-shape {
  position: absolute;
  left: -80px;
  top: 0;
  z-index: -1;
}

.why-choose-us-wrapper-2 .why-choose-us-image .circle-shape img {
  animation: rotateCircle 10s linear infinite;
}

@media (max-width: 1600px) {
  .why-choose-us-wrapper-2 .why-choose-us-image .circle-shape {
    left: 0;
  }
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-2 .why-choose-us-image .circle-shape {
    display: none;
  }
}

.why-choose-us-wrapper-2 .why-choose-us-image img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 4px 80px rgba(47, 47, 47, 0.3));
}

.why-choose-us-wrapper-2 .why-choose-us-content .text {
  margin-top: 15px;
  max-width: 690px;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0px;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 50px;
  border: 1px solid var(--white);
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
  }
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box .content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  text-transform: capitalize;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box .content span {
  max-width: 290px;
  display: inline-block;
  margin-top: 5px;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box .content.style-2 {
  border-left: 1px solid rgba(47, 47, 47, 0.2);
  padding-left: 30px;
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-2 .why-choose-us-content .choose-us-box .content.style-2 {
    padding-left: 0;
    border: none;
  }
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item {
  display: flex;
  align-items: center;
  gap: 44px;
  position: relative;
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item {
    flex-wrap: wrap;
    gap: 25px;
  }
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .theme-btn {
  background-color: transparent;
  color: var(--header);
  border: 1.5px solid var(--header);
  text-transform: uppercase;
  border-radius: 0;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .theme-btn:hover {
  background-color: var(--header);
  color: var(--theme2);
  border: 1.5px solid var(--header);
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 470px) {
  .why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item {
    gap: 8px;
  }
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item .icon {
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
  background-color: var(--white);
  border-radius: 100px;
  color: var(--theme2);
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item .cont h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item .cont h5 {
  font-weight: 700;
  font-size: 16px;
}

.why-choose-us-wrapper-2 .why-choose-us-content .choose-us-btn-item .icon-item .cont h5 a {
  color: var(--header);
}

.why-choose-us-section-2 {
  position: relative;
}

.why-choose-us-section-2 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1399px) {
  .why-choose-us-section-2 .left-shape {
    display: none;
  }
}

.why-choose-us-section-2 .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 1399px) {
  .why-choose-us-section-2 .right-shape {
    display: none;
  }
}

.why-choose-us-section-2 .maize-3 {
  position: absolute;
  bottom: 0;
  left: 430px;
  z-index: 999;
}

@media (max-width: 1600px) {
  .why-choose-us-section-2 .maize-3 {
    left: 205px;
  }
}

@media (max-width: 1399px) {
  .why-choose-us-section-2 .maize-3 {
    display: none;
  }
}

.feature-box-item-2 {
  background: var(--white);
  box-shadow: 0px 4px 60px rgba(79, 127, 58, 0.15);
  border-radius: 0px;
  padding: 30px;
  position: relative;
  z-index: 9;
  transition: all 0.5s ease;
  overflow: hidden;
}

.feature-box-item-2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: scale(1, 0.3);
  background-color: var(--theme2);
  transition: all 0.5s ease;
  z-index: -1;
  border-radius: 0px;
}

.feature-box-item-2.active::before {
  opacity: 1;
  transform: scale(1, 1);
}

.feature-box-item-2.active .maize-shape img {
  filter: initial;
}

.feature-box-item-2.active .masking-shape>img {
  opacity: 0;
  visibility: hidden;
}

.feature-box-item-2.active .masking-shape .masking-2 {
  opacity: 1;
  visibility: visible;
}

.feature-box-item-2.active .masking-shape .icon img {
  filter: brightness(0) invert(1);
}

.feature-box-item-2 .maize-shape {
  position: absolute;
  right: 0;
  top: 0;
}

.feature-box-item-2 .maize-shape img {
  filter: blur(5px);
  transition: all 0.5s ease;
}

@media (max-width: 1399px) {
  .feature-box-item-2 .maize-shape img {
    width: 160px;
  }
}

.feature-box-item-2 .masking-shape {
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  z-index: 5;
}

.feature-box-item-2 .masking-shape>img {
  display: block;
  position: relative;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.feature-box-item-2 .masking-shape .masking-2 {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.feature-box-item-2 .masking-shape .masking-2 img {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-box-item-2 .masking-shape .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.feature-box-item-2 .content p {
  max-width: 390px;
  margin-top: 10px;
}

.feature-section-2 {
  margin-bottom: 60px;
}

@media (max-width: 1399px) {
  .feature-section-2 {
    margin-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .feature-section-2 {
    margin-bottom: 80px;
  }
}

.drone-video-wrapper {
  padding: 435px 60px 60px;
  border-radius: 20px;
  position: relative;
}

@media (max-width: 1399px) {
  .drone-video-wrapper {
    padding: 60px;
  }
}

@media (max-width: 991px) {
  .drone-video-wrapper {
    padding: 50px;
  }
}

@media (max-width: 767px) {
  .drone-video-wrapper {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .drone-video-wrapper {
    padding: 30px 30px 30px;
  }
}

.drone-video-wrapper .video-btn {
  width: 71px;
  height: 71px;
  line-height: 71px;
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme3);
  color: var(--white);
  position: absolute;
  z-index: 9;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 17px;
}

@media (max-width: 1399px) {
  .drone-video-wrapper .video-btn {
    display: none;
  }
}

@media (max-width: 1399px) {
  .drone-video-wrapper .video-btn.ripple-2::before {
    display: none;
  }

  .drone-video-wrapper .video-btn.ripple-2::after {
    display: none;
  }
}

.drone-video-wrapper .video-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 118px;
  height: 118px;
  border-radius: 100px;
}

.drone-video-wrapper .video-btn::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 91px;
  height: 91px;
  border-radius: 100px;
}

.drone-video-wrapper .drone-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.drone-video-wrapper .drone-video video {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 20px;
}

.drone-video-wrapper .drone-video-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .drone-video-wrapper .drone-video-content {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.drone-video-wrapper .drone-video-content .tag-list-item {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  padding: 19px 14px;
  z-index: 9;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .drone-video-wrapper .drone-video-content .tag-list-item {
    flex-wrap: wrap;
    padding: 0;
  }
}

@media (max-width: 1399px) {
  .drone-video-wrapper .drone-video-content .tag-list-item {
    margin-top: 0;
  }
}

.drone-video-wrapper .drone-video-content .tag-list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(17, 162, 27);
  border-radius: 100px 0px 0px 100px;
  z-index: -1;
  width: 461px;
}

@media (max-width: 1399px) {
  .drone-video-wrapper .drone-video-content .tag-list-item::before {
    display: none;
  }
}

.drone-video-wrapper .drone-video-content .tag-list-item span {
  background-color: var(--white);
  color: var(--theme3);
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 500;
}

.process-card {
  border-radius: 10px;
  padding: 30px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0px 4px 60px rgba(17, 162, 27, 0.12);
  background-color: var(--white);
  margin-top: 30px;
}

.process-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme3);
  border-radius: 10px;
  z-index: -1;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

.process-card.active::after {
  transform: scale(1, 1);
  transform-origin: top center;
  z-index: 9;
}

.process-card.active .card-icon {
  position: relative;
  z-index: 999;
}

.process-card.active .card-title {
  color: var(--white);
  position: relative;
  z-index: 999;
}

.process-card.active .card-description {
  color: var(--white);
  position: relative;
  z-index: 999;
}

.process-card.card-style {
  margin-top: 120px;
}

@media (max-width: 1399px) {
  .process-card.card-style {
    margin-top: 30px;
  }
}

.process-card .card-icon {
  width: 164px;
  height: 164px;
  line-height: 164px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(17, 162, 27);
  background-color: var(--white);
  margin: 0 auto;
  position: relative;
}

@media (max-width: 1399px) {
  .process-card .card-icon {
    width: 140px;
    height: 140px;
    line-height: 140px;
  }
}

.process-card .card-icon span {
  color: rgb(17, 162, 27);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid rgb(17, 162, 27);
  position: absolute;
  left: 8px;
  bottom: 5px;
  background: var(--white);
}

.process-card .card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 20px;
  color: var(--header);
  font-weight: 700;
  font-family: "Instrument Sans", sans-serif;
}

.process-card .card-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgb(80, 98, 74);
  margin: 0;
}

.process-card:hover {
  transform: translateY(-10px);
}

.drone-specification-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 60px;
  padding-top: 48px;
  margin-top: 48px;
  height: 570px;
  overflow: hidden;
}

.drone-specification-wrapper .swiper-slide-next .drone-specification-item {
  transform: translateY(160px);
  transition: all 0.4s ease-in-out;
}

.drone-specification-wrapper .swiper-slide-prev .drone-specification-item {
  transform: translateY(160px);
  transition: all 0.4s ease-in-out;
}

.drone-specification-wrapper .arrow-button {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}

.drone-specification-wrapper .arrow-button .array-prev,
.drone-specification-wrapper .arrow-button .array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--white);
}

.drone-specification-wrapper .arrow-button .array-prev img,
.drone-specification-wrapper .arrow-button .array-next img {
  transition: all 0.4s ease-in-out;
}

.drone-specification-wrapper .arrow-button .array-prev:hover,
.drone-specification-wrapper .arrow-button .array-next:hover {
  background-color: var(--theme3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.drone-specification-wrapper .arrow-button .array-prev:hover img,
.drone-specification-wrapper .arrow-button .array-next:hover img {
  filter: brightness(0) invert(1);
}

.drone-specification-wrapper .drone-specification-item {
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.drone-specification-wrapper .drone-specification-item .drone-image {
  max-width: 390px;
}

.drone-specification-wrapper .drone-specification-item .drone-image img {
  width: 100%;
  height: 100%;
}

.drone-specification-wrapper .drone-specification-item .drone-content {
  margin-top: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  height: 0;
}

.drone-specification-wrapper .drone-specification-item .drone-content h3 {
  color: var(--white);
  margin-bottom: 5px;
}

.drone-specification-wrapper .drone-specification-item .drone-content span {
  font-size: 15px;
  color: var(--white);
}

.drone-specification-wrapper .drone-specification-item .drone-content p {
  color: var(--white);
  margin-top: 10px;
  font-weight: 400;
  max-width: 390px;
}

.drone-specification-section .drone-specification-wrapper .swiper-slide.swiper-slide-active .drone-specification-item {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.drone-specification-section .drone-specification-wrapper .swiper-slide.swiper-slide-active .drone-specification-item .drone-content {
  opacity: 1;
  visibility: visible;
  height: initial;
}

.drone-specification-section .section-title-area .right-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drone-specification-section .section-title-area .right-item .group-image-item {
  display: flex;
  align-items: center;
}

.drone-specification-section .section-title-area .right-item .group-image-item .group-image img {
  margin-left: 0;
  width: initial;
  height: initial;
  border: 3px solid rgb(17, 162, 27);
  border-radius: 100px;
}

.drone-specification-section .section-title-area .right-item .group-image-item .group-image.style-2 {
  margin-left: -30px;
}

.drone-specification-section .section-title-area .right-item .group-image-item .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  border-radius: 100px;
  color: var(--white);
  border: 3px solid var(--theme3);
  margin-left: -30px;
  background-color: var(--white);
  position: relative;
}

.drone-specification-section .section-title-area .right-item .group-image-item .icon h3 {
  color: rgb(17, 162, 27);
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.drone-specification-section .section-title-area .right-item p {
  color: var(--white);
  font-weight: 500;
  max-width: 136px;
}

.drone-specification-section .gallery-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: none;
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .drone-specification-section .gallery-wrapper {
    margin-top: 30px;
  }
}

.drone-specification-section .gallery-wrapper .gallery-track {
  display: flex;
  width: max-content;
  transition: transform 0.2s ease-out;
}

@media (max-width: 1399px) {
  .drone-specification-section .gallery-wrapper .gallery-track {
    width: initial;
  }
}

.drone-specification-section .gallery-wrapper .gallery-track .gallery-item {
  min-width: 250px;
  margin: 0 10px;
}

.drone-specification-section .gallery-wrapper .gallery-track .gallery-item img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.drone-specification-section .gallery-wrapper .drag-circle {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--white);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: var(--theme3);
}

@media (max-width: 1399px) {
  .drone-specification-section .gallery-wrapper .drag-circle {
    width: 100px;
    height: 100px;
  }
}

.drone-specification-section .gallery-wrapper .drag-circle .arrow {
  position: absolute;
  font-size: 20px;
}

.drone-specification-section .gallery-wrapper .drag-circle .arrow.left {
  left: 15px;
  color: var(--theme3);
}

.drone-specification-section .gallery-wrapper .drag-circle .arrow.right {
  right: 15px;
  color: var(--theme3);
}

.drone-specification-section .gallery-wrapper .drag-circle .text {
  user-select: none;
}

.letter-image {
  background-size: cover;
  background-position: 50%;
  -webkit-background-clip: text;
  color: transparent;
  background-image: url(../img/home-3/text.jpg);
  background-position: 8% 836px;
  background-size: 106% auto;
  font-size: 513px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -9.6px;
  animation-duration: 1500ms;
  -webkit-animation-duration: 1500ms;
  margin-bottom: 30px;
}

@media (max-width: 1899px) {
  .letter-image {
    font-size: 440px;
  }
}

@media (max-width: 1600px) {
  .letter-image {
    font-size: 380px;
  }
}

@media (max-width: 1399px) {
  .letter-image {
    font-size: 250px;
    text-align: center;
    letter-spacing: initial;
  }
}

@media (max-width: 991px) {
  .letter-image {
    font-size: 180px;
  }
}

@media (max-width: 575px) {
  .letter-image {
    font-size: 90px;
  }
}

.letter-image-section {
  margin: 0 50px;
  margin-bottom: -50px;
  position: relative;
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .letter-image-section {
    margin: 0 30px;
    margin-top: 50px;
    margin-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .letter-image-section {
    margin: 0 15px;
    margin-top: 50px;
    margin-bottom: 70px;
  }
}

.letter-image-section .drone-shape {
  position: absolute;
  left: 50%;
  top: 150%;
  transform: translate(-50%, -50%);
  max-width: 856px;
  margin-top: -220px;
  animation: drone-fly-real 4.5s ease-in-out infinite;
}

@media (max-width: 1600px) {
  .letter-image-section .drone-shape {
    top: 173%;
  }
}

@media (max-width: 1399px) {
  .letter-image-section .drone-shape {
    display: none;
  }
}

.letter-image-section .drone-shape img {
  width: 100%;
  height: 100%;
}

.letter-image-section-2 {
  margin: 0 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 1600px) {
  .letter-image-section-2 {
    margin-top: 65px;
    margin-bottom: 65px;
  }
}

@media (max-width: 1399px) {
  .letter-image-section-2 {
    margin: 0 30px;
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .letter-image-section-2 {
    margin: 0 15px;
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

.counter-inner-wrapper .count-wrap {
  display: flex;
  align-items: center;
  align-items: start;
  justify-content: space-between;
  margin-top: 130px;
}

@media (max-width: 1399px) {
  .counter-inner-wrapper .count-wrap {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .counter-inner-wrapper .count-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.counter-inner-wrapper .count-wrap .count-item-2 h2 {
  font-weight: 600;
  font-size: 200px;
  color: transparent;
  line-height: 94%;
  -webkit-text-stroke: 1px rgb(17, 162, 27);
}

@media (max-width: 1399px) {
  .counter-inner-wrapper .count-wrap .count-item-2 h2 {
    font-size: 90px;
  }
}

.counter-inner-wrapper .count-wrap .count-item-2 p {
  font-size: 24px;
  font-weight: 400;
  color: rgb(47, 47, 47);
  max-width: 318px;
}

@media (max-width: 1399px) {
  .counter-inner-wrapper .count-wrap .count-item-2 p {
    font-size: 18px;
  }
}

.counter-inner-wrapper .count-wrap .count-item-2:hover h2 {
  color: var(--theme3);
}

.counter-inner-wrapper .count-wrap .count-item-2.style-top {
  margin-top: -100px;
}

@media (max-width: 1399px) {
  .counter-inner-wrapper .count-wrap .count-item-2.style-top {
    margin-top: 0;
  }
}

.counter-inner-wrapper .trac-wrap {
  margin-top: -60px;
}

@media (max-width: 1399px) {
  .counter-inner-wrapper .trac-wrap {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .counter-inner-wrapper .trac-wrap {
    margin-top: 0;
  }
}

.counter-inner-wrapper .trac-wrap .tractor-image {
  text-align: center;
  max-width: 491px;
  margin: 0 auto;
}

@media (max-width: 1399px) {
  .counter-inner-wrapper .trac-wrap .tractor-image {
    display: none;
  }
}

@media (max-width: 575px) {
  .counter-inner-wrapper .trac-wrap .tractor-image {
    max-width: 300px;
    margin-left: -10px;
  }
}

.counter-inner-wrapper .trac-wrap .tractor-image img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 4px 100px rgba(17, 162, 27, 0.1));
}

.counter-inner-section {
  position: relative;
}

.counter-inner-section .chili-shape {
  position: absolute;
  bottom: 120px;
  left: 60px;
}

@media (max-width: 1399px) {
  .counter-inner-section .chili-shape {
    display: none;
  }
}

.our-history-wrapper {
  background-color: rgb(245, 246, 244);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .our-history-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
  }
}

.our-history-wrapper .history-image {
  position: relative;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .our-history-wrapper .history-image {
    flex-basis: 100%;
  }
}

.our-history-wrapper .history-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.our-history-wrapper .history-image .year-list {
  position: absolute;
  right: 0px;
  top: 80px;
  display: grid;
  gap: 135px;
}

@media (max-width: 1600px) {
  .our-history-wrapper .history-image .year-list {
    gap: 105px;
  }
}

@media (max-width: 1399px) {
  .our-history-wrapper .history-image .year-list {
    display: none;
  }
}

.our-history-wrapper .history-image .year-list h2 {
  color: transparent;
  line-height: 94%;
  -webkit-text-stroke: 1px var(--white);
  transform: rotate(-90deg);
}

.our-history-wrapper .history-image .year-list h2:hover {
  color: var(--white);
}

.our-history-wrapper .history-image .year-list h2.active {
  color: var(--white);
  -webkit-text-stroke: 1px var(--white);
}

.our-history-wrapper .history-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

@media (max-width: 1399px) {
  .our-history-wrapper .history-image img {
    border-radius: 20px;
  }
}

.our-history-wrapper .history-image:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

@media (max-width: 1600px) {
  .our-history-wrapper .our-history-content .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 1399px) {
  .our-history-wrapper .our-history-content .section-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  .our-history-wrapper .our-history-content .section-title h2 {
    font-size: 33px;
  }
}

@media (max-width: 991px) {
  .our-history-wrapper .our-history-content .section-title h2 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .our-history-wrapper .our-history-content .section-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .our-history-wrapper .our-history-content .section-title h2 {
    font-size: 26px;
  }
}

@media (max-width: 470px) {
  .our-history-wrapper .our-history-content .section-title h2 {
    font-size: 26px;
  }
}

.our-history-wrapper .our-history-content .nav {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
}

@media (max-width: 991px) {
  .our-history-wrapper .our-history-content .nav {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.our-history-wrapper .our-history-content .nav li {
  font-size: 16px;
  font-weight: 700;
}

.our-history-wrapper .our-history-content .nav li .nav-link {
  color: rgb(17, 162, 27);
  transition: all 0.4s ease-in-out;
  padding: 18px 32px;
  background-color: var(--white);
  border-radius: 30px;
  font-family: "Instrument Sans", sans-serif;
  line-height: 1;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .our-history-wrapper .our-history-content .nav li .nav-link {
    padding: 15px 24px;
  }
}

.our-history-wrapper .our-history-content .nav li .nav-link.active {
  position: relative;
  background-color: rgb(17, 162, 27);
  color: var(--white);
}

.our-history-wrapper .our-history-content .tab-content .content h3 {
  font-size: 16px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin-bottom: 25px;
}

.our-history-wrapper .our-history-content .tab-content .content p {
  color: rgb(80, 98, 74);
  line-height: 175%;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 690px;
}

.our-history-section-3 {
  position: relative;
}

@media (max-width: 1399px) {
  .our-history-section-3 {
    overflow: hidden;
  }
}

.our-history-section-3 .cabage-shape {
  position: absolute;
  right: 50px;
  top: -50px;
  z-index: 999;
}

@media (max-width: 1399px) {
  .our-history-section-3 .cabage-shape {
    display: none;
  }
}

.our-statistics-wrapper .our-statistics-image {
  position: relative;
  overflow: hidden;
}

.our-statistics-wrapper .our-statistics-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.our-statistics-wrapper .our-statistics-image:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.our-statistics-wrapper .our-statistics-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.our-statistics-wrapper .our-statistics-content .text {
  max-width: 690px;
  margin-top: 15px;
}

.our-statistics-wrapper .our-statistics-content .our-statistics-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .our-statistics-wrapper .our-statistics-content .our-statistics-card {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .our-statistics-wrapper .our-statistics-content .our-statistics-card {
    flex-wrap: wrap;
  }
}

.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 28px;
  margin-top: 20px;
}

@media (max-width: 1399px) {
  .our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card {
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card {
    width: 100%;
  }
}

.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card h3 {
  font-size: 60px;
  font-weight: 700;
  color: transparent;
  line-height: 94%;
  -webkit-text-stroke: 1px rgb(17, 162, 27);
}

.our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card p {
  margin-top: 10px;
  max-width: 270px;
  color: rgb(80, 98, 74);
  font-weight: 400;
}

@media (max-width: 1399px) {
  .our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card p {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .our-statistics-wrapper .our-statistics-content .our-statistics-card .statistics-card p {
    font-size: 16px;
  }
}

.mask-image-section {
  margin: 0 60px;
}

@media (max-width: 1399px) {
  .mask-image-section {
    margin: 0 30px;
  }
}

@media (max-width: 575px) {
  .mask-image-section {
    margin: 0 15px;
  }
}

.mask-image-section .mask-image img {
  width: 100%;
  height: 100%;
}

.our-impact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .our-impact-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.our-impact-wrapper h2 {
  font-size: 40px;
  color: var(--white);
}

@media (max-width: 1399px) {
  .our-impact-wrapper h2 {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .our-impact-wrapper h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .our-impact-wrapper h2 {
    font-size: 25px;
  }
}

.our-impact-wrapper .imapct-item {
  display: flex;
  align-items: center;
  gap: 90px;
}

@media (max-width: 1399px) {
  .our-impact-wrapper .imapct-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.our-impact-wrapper .imapct-item .icon-items {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 90px;
}

@media (max-width: 1399px) {
  .our-impact-wrapper .imapct-item .icon-items {
    border-left: none;
    padding-left: 0;
  }
}

.our-impact-wrapper .imapct-item .icon-items .content {
  margin-top: 15px;
}

.our-impact-wrapper .imapct-item .icon-items .content h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}

.our-impact-wrapper .imapct-item .icon-items .content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme3);
}

.our-imapact-section {
  position: relative;
  z-index: 9;
}

.our-imapact-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(47, 47, 47, 0.9);
  z-index: -1;
}

.why-choose-us-wrapper-4 .why-choose-us-box {
  border: 1px solid var(--header);
  padding: 30px;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  position: relative;
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-4 .why-choose-us-box {
    padding: 22px;
  }
}

@media (max-width: 991px) {
  .why-choose-us-wrapper-4 .why-choose-us-box {
    padding: 30px;
  }
}

.why-choose-us-wrapper-4 .why-choose-us-box::before {
  content: "";
  position: absolute;
  right: 0;
  width: 0;
  height: 100%;
  transition: all ease 0.5s;
  z-index: -1;
  top: 0;
  background: linear-gradient(90deg, var(--theme3) 2.34%, var(--theme3) 100%);
  border-radius: 8px;
}

.why-choose-us-wrapper-4 .why-choose-us-box .top-content {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover {
  transform: translateY(-10px);
  border: 1px solid var(--theme3);
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover .top-content .icon img {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(0) invert(1);
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover .top-content h3 {
  color: var(--white);
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover p {
  color: var(--white);
}

.why-choose-us-wrapper-4 .why-choose-us-box:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}


.heroMain {
  position: relative;
  height: 100vh;
}

@media (max-width: 1899px) {
  .heroMain {
    height: 950px;
  }
}

@media (max-width: 1600px) {
  .heroMain {
    height: 900px;
  }
}

@media (max-width: 1399px) {
  .heroMain {
    height: 670px;
  }
}

@media (max-width: 991px) {
  .heroMain {
    height: 610px;
  }
}

@media (max-width: 767px) {
  .heroMain {
    height: 590px;
  }
}

@media (min-width: 400px) and (max-width: 575px) {
  .heroMain {
    height: 685px;
  }
}

@media (min-width: 320px) and (max-width: 400px) {
  .heroMain {
    height: 685px;
  }
}

.heroMain .hero-border-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0px;
  right: 0;
  bottom: 25px;
  padding-left: 120px;
  padding-right: 120px;
  padding-top: 25px;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1399px) {
  .heroMain .hero-border-item {
    display: none;
  }
}

.heroMain .hero-border-item .hero-bottom-item {
  display: flex;
  align-items: center;
  gap: 60px;
}

.heroMain .hero-border-item .hero-bottom-item h2 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.heroMain .hero-border-item .hero-bottom-item .hero-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.heroMain .hero-border-item .hero-bottom-item .hero-list span {
  color: var(--white);
  position: relative;
}

.heroMain .hero-border-item .hero-bottom-item .hero-list span::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.3);
  top: 8px;
  left: -20px;
}

.heroMain .hero-border-item .hero-bottom-item .hero-list span i {
  margin-right: 10px;
}

@media (max-width: 1399px) {
  .heroMain .hero-border-item .pagi-item {
    display: none;
  }
}

.heroMain .hero-border-item .pagi-item .dot-number {
  display: flex;
  gap: 20px;
}

.heroMain .hero-border-item .pagi-item .dot-number .swiper-pagination-bullet {
  background: none !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  transition: all 0.4s ease-in-out;
  color: var(--white);
}

.heroMain .hero-border-item .pagi-item .dot-number .swiper-pagination-bullet-active .dot-num span {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.heroMain .hero-border-item .pagi-item .dot-number .dot-num {
  transition: all 0.4s ease-in-out;
}

.heroMain .hero-border-item .pagi-item .dot-number .dot-num span {
  font-size: 16px;
  font-weight: 600;
  color: var(--white) !important;
  transition: all 0.4s ease-in-out;
  opacity: 9 !important;
  display: inline-block;
}

.heroMain .hero-border-item .pagi-item .dot-number .dot-num span.style-2 {
  position: relative;
}

.heroMain .hero-border-item .pagi-item .dot-number .dot-num span.style-2::before {
  position: absolute;
  content: "";
  top: 14px;
  left: -18px;
  background: rgba(255, 255, 255, 0.5);
  width: 16px;
  height: 1px;
  transform: rotate(-126deg);
}

.heroMain .hero-portfolio-revealing-slider {
  position: relative;
  height: 100%;
}

/* .heroMain .hero-portfolio-revealing-slider::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  left: 100px;
  width: 1px;
  z-index: 999;
} */

@media (max-width: 1600px) {
  .heroMain .hero-portfolio-revealing-slider::before {
    left: 75px;
  }
}

@media (max-width: 1399px) {
  .heroMain .hero-portfolio-revealing-slider::before {
    display: none;
  }
}

/* .heroMain .hero-portfolio-revealing-slider::after {
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  right: 100px;
  width: 1px;
  z-index: 999;
} */

@media (max-width: 1600px) {
  .heroMain .hero-portfolio-revealing-slider::after {
    right: 82px;
  }
}

@media (max-width: 1399px) {
  .heroMain .hero-portfolio-revealing-slider::after {
    display: none;
  }
}

.heroMain .hero-portfolio-revealing-slider-control {
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1600px) {
  .heroMain .hero-portfolio-revealing-slider-control {
    left: 4.5%;
  }
}

@media (max-width: 1399px) {
  .heroMain .hero-portfolio-revealing-slider-control {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 767px) {
  .heroMain .hero-portfolio-revealing-slider-control {
    left: 14px;
  }
}

@media (max-width: 575px) {
  .heroMain .hero-portfolio-revealing-slider-control {
    left: 10px;
    width: 40px;
    height: 40px;
  }
}

.heroMain .hero-portfolio-revealing-slider-control:hover {
  background-color: var(--theme2);
  border: 1px solid var(--theme2);
}

.heroMain .hero-portfolio-revealing-slider-control:hover img {
  filter: invert(1) brightness(0);
}

.heroMain .hero-portfolio-revealing-slider-control-right {
  left: auto;
  right: 4%;
}

@media (max-width: 1600px) {
  .heroMain .hero-portfolio-revealing-slider-control-right {
    right: 4.5%;
  }
}

@media (max-width: 767px) {
  .heroMain .hero-portfolio-revealing-slider-control-right {
    left: auto;
    right: 14px;
  }
}

@media (max-width: 575px) {
  .heroMain .hero-portfolio-revealing-slider-control-right {
    left: auto;
    right: 10px;
  }
}

.heroMain .hero-portfolio-revealing-slider-control-right .hero-portfolio-revealing-slider-control-line {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.heroMain .hero-portfolio-revealing-slider-control-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
}

.heroMain .hero-portfolio-revealing-slide {
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150vmax;
  height: 150vmax;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: clip-path 0s calc(var(--slidingAT) * 0.7);
  clip-path: circle(calc(var(--controlSize) / 2) at 120vw 50%);
}

.heroMain .hero-portfolio-revealing-slide-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 100vh;
  margin-left: -50vw;
  margin-top: -50vh;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 260px 0 260px;
  pointer-events: none;
}

.heroMain .hero-portfolio-revealing-slide-inner>* {
  pointer-events: auto;
}

.heroMain .hero-portfolio-revealing-slide-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 999;
  pointer-events: none;
}

/* @media (max-width: 1600px) {
  .heroMain .hero-portfolio-revealing-slide-inner {
    padding: 280px 0 330px;
  }
} */
@media (max-width: 1899px) {
  .heroMain .hero-portfolio-revealing-slide-inner {
    height: 950px;
    margin-top: -475px;
  }
}

@media (max-width: 1600px) {
  .heroMain .hero-portfolio-revealing-slide-inner {
    height: 900px;
    margin-top: -450px;
  }
}

@media (max-width: 1399px) {
  .heroMain .hero-portfolio-revealing-slide-inner {
    height: 670px;
    margin-top: -335px;
    padding: 180px 0 130px;
  }
}

@media (max-width: 991px) {
  .heroMain .hero-portfolio-revealing-slide-inner {
    height: 610px;
    margin-top: -305px;
    padding: 150px 0 100px;
  }
}

@media (max-width: 767px) {
  .heroMain .hero-portfolio-revealing-slide-inner {
    height: 590px;
    margin-top: -295px;
  }
}

.heroMain .hero-portfolio-revealing-slide-content {
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
}

.heroMain .hero-portfolio-revealing-slide span {
  color: var(--white);
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  font-family: "Instrument Sans", sans-serif;
}

.heroMain .hero-portfolio-revealing-slide-heading {
  color: var(--white);
  line-height: 120%;
}

.heroMain .hero-portfolio-revealing-slide p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
  text-transform: capitalize;
}

.heroMain .hero-portfolio-revealing-slide .hero-button {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 40px;
  justify-content: center;
}

@media (max-width: 1199px) {
  .heroMain .hero-portfolio-revealing-slide .hero-button {
    margin-top: 30px;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .heroMain .hero-portfolio-revealing-slide .hero-button {
    justify-content: center;
    align-items: center;
    margin-bottom: 112px;
    flex-direction: column;
    gap: 10px;
  }

  .heroMain .hero-portfolio-revealing-slide .hero-button .cta-button {
    width: 55%;
    text-align: center;
    justify-content: center;
    padding: 13px 12px;
    font-size: 12px;
    border-radius: 0 !important;
  }
}

@media (min-width: 320px) and (max-width: 400px) {
  .heroMain .hero-portfolio-revealing-slide .hero-button {
    margin-bottom: 90px;
  }
}

@media (max-width: 575px) {
  .heroMain .hero-portfolio-revealing-slide .hero-button .cta-button {
    padding: 13px 24px 13px;
  }
}

.heroMain .hero-portfolio-revealing-slide .hero-button .cta-button.border-btn {
  background-color: rgba(245, 216, 62, 0.12);
  border: 1px solid rgb(245, 216, 62);
  color: rgb(245, 216, 62);
}

.heroMain .hero-portfolio-revealing-slide .hero-button .cta-button.border-btn::before {
  background-color: var(--theme2);
}

.heroMain .hero-portfolio-revealing-slide .hero-button .cta-button.border-btn::after {
  background-color: rgba(245, 216, 62, 0.12);
}

.heroMain .hero-portfolio-revealing-slide .hero-button .cta-button.border-btn:hover {
  color: var(--header);
}

.heroMain .hero-portfolio-revealing-slide.s-prev {
  clip-path: circle(calc(var(--controlSize) / 2) at 30vw 50%);
}

.heroMain .hero-portfolio-revealing-slide.s-active {
  z-index: 1;
  transition: clip-path var(--slidingAT);
  clip-path: circle(120vmax at 50% 50%);
}

.heroMain .hero-portfolio-revealing-slide.s-active.s-active-prev {
  clip-path: circle(120vmax at 50% 50%);
}

.hero-3 {
  padding: 430px 0 160px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 575px) {
  .hero-3 {
    height: 945px;
  }
}

.hero-3 .drone-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-3 .drone-video video {
  width: 100%;
  height: 1000px;
  object-fit: cover;
}

@media (max-width: 575px) {
  .hero-3 .drone-video {
    display: none;
  }
}

.hero-3 .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: -1;
  padding: 0 30px;
}

.hero-3 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, #2F2F2F 0%, rgba(47, 47, 47, 0) 100%);
}

@media (max-width: 1399px) {
  .hero-3 .hero-image {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-image {
    display: block;
  }
}

.hero-3 .hero-image .leafs {
  text-align: center;
  position: relative;
  margin-top: 125px;
}

.hero-3 .hero-image p {
  font-weight: 600;
  color: var(--white);
  font-family: "Instrument Sans", sans-serif;
  position: relative;
  margin-top: 7px;
  text-align: center;
}

.hero-3 .hero-image p b {
  font-weight: 600;
  color: var(--theme3);
}

.hero-3 .hero-image .hero-boxs {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 30px 0;
  position: relative;
  margin-bottom: 50px;
  margin-top: 160px;
}

.hero-3 .hero-image .hero-boxs p {
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 20px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 15px;
}

.hero-3 .hero-image .hero-boxs .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 30px;
}

.hero-3 .hero-image .hero-boxs .icon-item .icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: var(--white);
  border-radius: 100px;
}

.hero-3 .hero-image .hero-boxs .icon-item .cont span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--white);
  text-transform: capitalize;
}

.hero-3 .hero-image .hero-boxs .icon-item .cont h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.hero-3 .hero-image .hero-boxs .icon-item .cont h2 a {
  color: var(--white);
}

.hero-3 .hero-image h1 {
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  text-align: center;
}

@media (max-width: 1399px) {
  .hero-3 {
    padding: 180px 0 100px;
  }
}

@media (max-width: 991px) {
  .hero-3 {
    padding: 120px 0 80px;
  }
}

.hero-3 .container-fluid {
  padding: 0 120px;
}

@media (max-width: 1600px) {
  .hero-3 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .hero-3 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .hero-3 .container-fluid {
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content {
    display: none;
  }
}

.hero-3 .hero-content p {
  font-weight: 600;
  color: var(--white);
  font-family: "Instrument Sans", sans-serif;
}

.hero-3 .hero-content p b {
  font-weight: 600;
  color: var(--theme3);
}

.hero-3 .hero-content h1 {
  font-size: 100px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 35px;
}

@media (max-width: 1899px) {
  .hero-3 .hero-content h1 {
    font-size: 66px;
  }
}

@media (max-width: 1399px) {
  .hero-3 .hero-content h1 {
    font-size: 85px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 65px;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 34px;
  }
}

.hero-3 .hero-content h1.text {
  margin-left: 650px;
  margin-top: 5px;
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content h1.text {
    margin-left: 0;
  }
}

.hero-3 .hero-content span {
  font-size: 200px;
  font-weight: 700;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-text-stroke: 2px #fff;
  color: transparent;
  color: transparent;
  display: inline-block;
  margin-left: 370px;
  text-transform: uppercase;
}

@media (max-width: 1899px) {
  .hero-3 .hero-content span {
    font-size: 115px;
    margin-left: 250px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content span {
    font-size: 90px;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-content span {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content span {
    font-size: 50px;
  }
}

.hero-3 .hero-content span img {
  border-radius: 100%;
  border: 2.5px solid var(--white);
  margin-top: -30px;
  margin-left: -30px;
  margin-right: -30px;
}

@media (max-width: 1899px) {
  .hero-3 .hero-content span img {
    width: 105px;
  }
}

@media (max-width: 1399px) {
  .hero-3 .hero-content span img {
    margin-top: -15px;
    margin-left: -30px;
    margin-right: -30px;
    width: 90px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content span img {
    margin-top: -15px;
    margin-left: -15px;
    margin-right: -15px;
    width: 80px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content span img {
    margin-top: -15px;
    margin-left: -5px;
    margin-right: -5px;
    width: 40px;
  }
}

.hero-3 .hero-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 30px 0;
  position: absolute;
  right: 120px;
  top: 288px;
  max-width: 341px;
  width: 100%;
}

@media (max-width: 1399px) {
  .hero-3 .hero-box {
    display: none;
  }
}

.hero-3 .hero-box p {
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 30px;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.hero-3 .hero-box .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 30px;
}

.hero-3 .hero-box .icon-item .icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: var(--white);
  border-radius: 100px;
}

.hero-3 .hero-box .icon-item .cont span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--white);
  text-transform: capitalize;
}

.hero-3 .hero-box .icon-item .cont h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.hero-3 .hero-box .icon-item .cont h2 a {
  color: var(--white);
}

.hero-4 {
  padding: 120px 0 0px;
  position: relative;
}

.hero-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(2, 2, 2, 0.8);
}

@media (max-width: 1399px) {
  .hero-4 {
    padding-top: 150px;
    padding-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .hero-4 {
    padding-top: 150px;
    padding-bottom: 0;
  }
}

.hero-4 .container-fluid {
  padding: 0 120px;
}

@media (max-width: 1600px) {
  .hero-4 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .hero-4 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .hero-4 .container-fluid {
    padding: 0 15px;
  }
}

.hero-4 .hero-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1600px) {
  .hero-4 .hero-shape {
    right: -166px;
    bottom: -153px;
  }
}

@media (max-width: 1399px) {
  .hero-4 .hero-shape {
    display: none;
  }
}

.hero-4 .hero-content {
  position: relative;
}

@media (max-width: 767px) {
  .hero-4 .hero-content {
    text-align: center;
  }
}

.hero-4 .hero-content span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--white);
  display: inline-block;
  border-radius: 6px;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Instrument Sans", sans-serif;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .hero-4 .hero-content span {
    letter-spacing: initial;
  }
}

.hero-4 .hero-content h1 {
  font-size: 75px;
  margin-bottom: 20px;
  text-transform: initial;
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 1899px) {
  .hero-4 .hero-content h1 {
    font-size: 62px;
  }
}

@media (max-width: 1600px) {
  .hero-4 .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 1399px) {
  .hero-4 .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .hero-4 .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .hero-4 .hero-content h1 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .hero-4 .hero-content h1 {
    font-size: 30px;
  }
}

@media (min-width: 320px) and (max-width: 400px) {
  .hero-4 .hero-content h1 {
    font-size: 27px;
  }
}

.hero-4 .hero-content p {
  max-width: 660px;
  font-size: 18px;
  line-height: 30px;
  color: var(--white);
  margin-bottom: 40px;
}

.hero-4 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .hero-4 .hero-content .hero-button {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .hero-4 .hero-content .hero-button {
    justify-content: center;
  }
}

.hero-4 .hero-content .hero-button .theme-btn.style-2 {
  background: rgba(245, 216, 62, 0.12);
  border: 1px solid #11A21B;
  color: rgb(17, 162, 27);
}

.hero-4 .hero-content .hero-button .theme-btn.style-2::before {
  background-color: var(--theme3);
}

.hero-4 .hero-content .hero-button .theme-btn.style-2::after {
  background-color: rgba(200, 67, 58, 0.3);
}

.hero-4 .hero-content .hero-button .theme-btn.style-2:hover {
  color: var(--white);
  border: 1px solid var(--theme3);
}

.hero-4 .hero-image {
  position: relative;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .hero-4 .hero-image {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .hero-4 .hero-image {
    margin-top: 0;
    max-width: 320px;
    text-align: center;
    margin: 0 auto;
  }
}

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

.hero-4 .cabage-shape {
  position: absolute;
  left: -40px;
  bottom: -70px;
}

@media (max-width: 1600px) {
  .hero-4 .cabage-shape {
    left: -53px;
    bottom: -115px;
  }
}

@media (max-width: 1399px) {
  .hero-4 .cabage-shape {
    display: none;
  }
}

.hero-4 .chili-shape {
  position: absolute;
  right: 50px;
  top: 330px;
}

.hero-4 .chili-shape img {
  width: 150px;
}

@media (max-width: 1600px) {
  .hero-4 .chili-shape {
    right: 40px;
    top: 220px;
  }
}

@media (max-width: 1399px) {
  .hero-4 .chili-shape {
    display: none;
  }
}

.hero-4 .hero-shape-2 {
  position: absolute;
  left: 0;
  top: 227px;
}

@media (max-width: 1600px) {
  .hero-4 .hero-shape-2 {
    display: none;
  }
}

.hero-4 .hero-shape-3 {
  position: absolute;
  left: 50%;
  top: 345px;
  z-index: 999;
}

@media (max-width: 1600px) {
  .hero-4 .hero-shape-3 {
    display: none;
  }
}

.hero-4 .radius {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
}

@media (max-width: 575px) {
  .hero-4 .radius {
    display: block;
  }
}

@media (min-width: 320px) and (max-width: 400px) {
  .hero-4 .radius {
    right: -60px;
  }
}

.hero-4 .shape-5 {
  position: absolute;
  bottom: -30px;
  right: 20px;
}

@media (max-width: 1600px) {
  .hero-4 .shape-5 img {
    width: 100px;
  }
}

@media (max-width: 1399px) {
  .hero-4 .shape-5 {
    display: none;
  }
}

@media (max-width: 991px) {
  .hero-4 .shape-5 {
    width: initial;
    display: block;
    right: 0;
    bottom: 0;
  }

  .hero-4 .shape-5 img {
    width: 75px;
  }
}

@media (min-width: 320px) and (max-width: 400px) {
  .hero-4 .shape-5 {
    display: block;
  }

  .hero-4 .shape-5 img {
    width: 58px;
  }
}


.cards-wrapper {
  overflow: hidden;
  margin-top: 48px;
}

.cards-wrapper .blog-card {
  background: rgb(245, 246, 244);
  border-radius: 10px;
  padding: 25px;
}

.cards-wrapper .blog-card .card-image {
  width: 100%;
  overflow: hidden;
  height: 170px;
  transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-radius: 10px;
}

.cards-wrapper .blog-card .card-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.cards-wrapper .card-content {
  margin-top: 30px;
}

.cards-wrapper .card-content .card-meta {
  margin-bottom: 20px;
}

.cards-wrapper .card-content .card-meta span {
  border: 1px solid rgba(17, 162, 27, 0.2);
  color: var(--theme3);
  padding: 0px 10px;
  border-radius: 6px;
  display: inline-block;
}

.cards-wrapper .card-content .card-meta i {
  margin-right: 5px;
}

.cards-wrapper .card-content .card-meta.style-2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cards-wrapper .card-content .card-meta.style-2 h3 {
  border: 1px solid rgba(17, 162, 27, 0.2);
  color: var(--theme3);
  padding: 5px 10px;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.cards-wrapper .card-content h3 {
  margin-top: 10px;
}

.cards-wrapper .card-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.cards-wrapper .card-content h3 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.cards-wrapper .card-content p {
  color: rgb(80, 98, 74);
  margin-top: 10px;
  margin-bottom: 30px;
}

.cards-wrapper .card-content .theme-btns {
  position: relative;
  margin-left: 15px;
}

.cards-wrapper .card-content .theme-btns span {
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  margin-left: 5px;
  color: rgb(245, 246, 244);
}

.cards-wrapper .card-content .theme-btns::before {
  position: absolute;
  content: "";
  top: 54%;
  left: 10%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background-color: rgba(17, 162, 27, 0.1);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.cards-wrapper .card-content .theme-btns:hover {
  color: var(--white);
}

.cards-wrapper .card-content .theme-btns:hover img {
  filter: brightness(0) invert(1);
}

.cards-wrapper .card-content .theme-btns:hover span {
  opacity: 1;
  visibility: visible;
  color: var(--white);
  position: relative;
  z-index: 999;
}

.cards-wrapper .card-content .theme-btns:hover::before {
  width: 150px;
  left: 54%;
  background-color: var(--theme3);
}

.news-section-3 .section-title-area .theme-btn {
  border: 1px solid rgb(17, 162, 27);
  color: var(--theme3);
  background-color: transparent;
}

.news-section-3 .section-title-area .theme-btn::before {
  background-color: var(--theme3);
}

.news-section-3 .section-title-area .theme-btn::after {
  background-color: rgba(17, 162, 27, 0.3);
}

.news-section-3 .section-title-area .theme-btn:hover {
  color: var(--white);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 {
  margin-bottom: 30px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-image {
  overflow: hidden;
  border-radius: 12px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
  border-radius: 12px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list li i {
  margin-right: 10px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
    font-size: 25px;
  }
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .theme-btn {
  margin-top: 24px;
  background-color: transparent;
  color: var(--theme3);
  border: 1px solid var(--theme3);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .theme-btn::before {
  background-color: var(--theme3);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .theme-btn::after {
  background-color: rgba(17, 162, 27, 0.3);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .theme-btn:hover {
  color: var(--white);
}

.news-standard-wrapper .news-standard-items .news-card-items-4:hover .news-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.main-sideber .single-sideber-widget {
  margin-bottom: 30px;
  background-color: var(--bg3);
  padding: 30px;
  border-radius: 8px;
}

@media (max-width: 1399px) {
  .main-sideber .single-sideber-widget {
    padding: 25px;
  }
}

.main-sideber .single-sideber-widget .search-widget form {
  width: 100%;
  position: relative;
}

.main-sideber .single-sideber-widget .search-widget form input {
  background-color: var(--white);
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border-radius: 6px;
}

.main-sideber .single-sideber-widget .search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  border-radius: 6px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme3);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.main-sideber .single-sideber-widget .search-widget form button:hover {
  background-color: var(--header);
}

.main-sideber .single-sideber-widget .widget-title {
  margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .widget-title h3 {
  font-weight: 600;
  font-size: 22px;
}

.main-sideber .single-sideber-widget .amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.main-sideber .single-sideber-widget .amenities-list li:not(:last-child) {
  margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  padding: 22px 25px;
  font-family: "Instrument Sans", sans-serif;
  line-height: 1;
  text-transform: capitalize;
  border-radius: 8px;
}

.main-sideber .single-sideber-widget .category-list li a {
  color: var(--header);
}

.main-sideber .single-sideber-widget .category-list li i {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}

.main-sideber .single-sideber-widget .category-list li:not(:last-child) {
  margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .category-list li span b {
  font-weight: 400;
  color: var(--theme);
}

.main-sideber .single-sideber-widget .category-list li:hover {
  background-color: var(--theme3);
}

.main-sideber .single-sideber-widget .category-list li:hover a {
  color: var(--white);
}

.main-sideber .single-sideber-widget .category-list li:hover i,
.main-sideber .single-sideber-widget .category-list li:hover span {
  color: var(--white);
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-thumb img {
  border-radius: 8px;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  font-family: "Inter", sans-serif;
}

@media (max-width: 1399px) {
  .main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 {
    font-size: 16px;
  }
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 a:hover {
  color: var(--theme3);
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--text);
  font-weight: 500;
}

.main-sideber .single-sideber-widget .tagcloud a {
  display: inline-block;
  padding: 12px 18px;
  line-height: 1;
  font-weight: 600;
  background: var(--white);
  font-family: "Instrument Sans", sans-serif;
  margin-right: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-radius: 4px;
}

.main-sideber .single-sideber-widget .tagcloud a:last-child {
  margin-right: 0;
}

.main-sideber .single-sideber-widget .tagcloud a:hover {
  background-color: var(--theme3);
  color: var(--white);
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
  border-radius: 10px;
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.news-details-area .blog-post-details .single-blog-post .post-content {
  margin-top: 30px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list {
  gap: 30px;
  margin-bottom: 10px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
  font-size: 14px;
  font-weight: 500;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
  color: var(--theme3);
  margin-right: 5px;
}

.news-details-area .blog-post-details .single-blog-post .post-content h2 {
  margin-bottom: 20px;
  font-size: 42px;
}

@media (max-width: 1399px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h2 {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h2 {
    font-size: 21px;
  }
}

.news-details-area .blog-post-details .single-blog-post .post-content h2 a:hover {
  color: var(--theme);
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
  border-left: 4px solid var(--theme3);
  padding: 40px;
  background-color: var(--bg3);
  border-radius: 8px;
}

@media (max-width: 1399px) {
  .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
    padding: 30px;
  }
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
  max-width: 700px;
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text .icon {
  float: right;
  margin-top: -30px;
  color: var(--theme3);
  font-size: 40px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.news-details-area .blog-post-details .tag-share-wrap {
  border-top: 1px solid rgba(2, 6, 10, 0.08);
  border-bottom: 1px solid rgba(2, 6, 10, 0.08);
  padding: 30px 0;
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: var(--bg3);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 4px;
}

@media (max-width: 1399px) {
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    padding: 12px 20px;
  }
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
  }
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme3);
  color: var(--white);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share span {
  font-size: 18px;
  color: var(--header);
  font-weight: 600;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a {
  font-size: 18px;
  color: var(--header);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
  color: var(--theme3);
}

.news-details-area .blog-post-details .comments-area {
  margin-top: 40px;
  padding: 50px 40px;
  background-color: var(--bg3);
  border-radius: 8px;
}

@media (max-width: 1399px) {
  .news-details-area .blog-post-details .comments-area {
    padding: 50px 30px;
  }
}

.news-details-area .blog-post-details .comments-area .comments-heading {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}

.news-details-area .blog-post-details .comments-area .comments-heading h3 {
  font-size: 32px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 28px;
  }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment {
  border-bottom: 1px solid #e5e5e5;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment.bb-none {
  border: none;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h4 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 20px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
  color: var(--theme3);
  font-size: 14px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
  border-radius: 30px;
  padding: 5px 15px;
  font-weight: 400;
  background-color: var(--white);
  color: var(--theme3);
}

.news-details-area .blog-post-details .comment-form-wrap {
  background-color: var(--bg3);
  border-radius: 8px;
  padding: 50px 40px;
  margin-top: 40px;
}

.news-details-area .blog-post-details .comment-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  border: none;
  padding: 16px 20px;
  font-weight: 500;
  border-radius: 5px;
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}

.news-card-wrapper {
  margin-top: 18px;
}

.news-card-wrapper .news-card-items-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(47, 47, 47, 0.2);
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding: 30px 0;
  margin-top: 30px;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .news-card-wrapper .news-card-items-5 {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 1399px) {
  .news-card-wrapper .news-card-items-5 .news-image {
    flex-basis: 100%;
  }
}

.news-card-wrapper .news-card-items-5 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.news-card-wrapper .news-card-items-5 .post-date {
  width: 180px;
  height: 150px;
  background-color: var(--theme3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.news-card-wrapper .news-card-items-5 .post-date h3 {
  font-size: 50px;
  font-weight: 600;
  color: var(--white);
}

.news-card-wrapper .news-card-items-5 .post-date p {
  color: var(--white);
}

.news-card-wrapper .news-card-items-5 .content span {
  color: var(--theme3);
}

.news-card-wrapper .news-card-items-5 .content h4 {
  font-size: 30px;
}

@media (max-width: 991px) {
  .news-card-wrapper .news-card-items-5 .content h4 {
    font-size: 20px;
  }

  .news-card-wrapper .news-card-items-5 .content h4 br {
    display: none;
  }
}

.news-card-wrapper .news-card-items-5 .content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-card-wrapper .news-card-items-5 .content h4 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.news-card-wrapper .news-card-items-5 .arrow-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--header);
  color: var(--white);
  font-size: 25px;
  transition: all 0.4s ease-in-out;
}

.news-card-wrapper .news-card-items-5 .arrow-icon:hover {
  background-color: var(--theme3);
}

.pricing-box-items {
  margin-top: 30px;
  border-radius: 8px;
  background-color: var(--bg3);
  padding: 50px 30px;
  position: relative;
  z-index: 9;
}

.pricing-box-items .nexella-hover-bx {
  background: var(--theme3);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: -1;
}

.pricing-box-items .hover-bx {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.pricing-box-items .hover-bx2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.pricing-box-items .hover-bx3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.pricing-box-items .hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.pricing-box-items .pricing-header {
  margin-bottom: 30px;
}

.pricing-box-items .pricing-header span {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 20px;
  color: var(--white);
}

.pricing-box-items .pricing-header h3 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  margin-bottom: 25px;
}

@media (max-width: 1399px) {
  .pricing-box-items .pricing-header h3 {
    font-size: 55px;
  }
}

.pricing-box-items .pricing-header h3 sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: initial;
  margin-left: -12px;
}

.pricing-box-items .pricing-header p {
  color: var(--white);
}

.pricing-box-items .theme-btn {
  background-color: var(--theme3);
  width: 100%;
  color: var(--white);
  display: inline-block;
  border-radius: 8px;
}

@media (max-width: 1399px) {
  .pricing-box-items .theme-btn {
    margin-top: 30px;
  }
}

.pricing-box-items .theme-btn::before {
  background-color: var(--white);
  border-radius: 8px;
}

.pricing-box-items .theme-btn:after {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.pricing-box-items .theme-btn:hover {
  color: var(--theme3);
}

.pricing-box-items .pricing-list {
  margin-top: 30px;
}

.pricing-box-items .pricing-list span {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

@media (max-width: 1199px) {
  .pricing-box-items .pricing-list span {
    letter-spacing: inherit;
  }
}

.pricing-box-items .pricing-list ul {
  margin-top: 20px;
}

.pricing-box-items .pricing-list ul li {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-box-items .pricing-list ul li i {
  font-size: 18px;
  color: var(--theme3);
}

.pricing-box-items .pricing-list ul li:not(:last-child) {
  margin-bottom: 15px;
}

.pricing-box-items:hover .nexella-hover-bx {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.pricing-box-items:hover .pricing-header span {
  color: var(--white);
}

.pricing-box-items:hover .pricing-header h3 {
  color: var(--white);
}

.pricing-box-items:hover .pricing-header h3 sub {
  color: var(--white);
}

.pricing-box-items:hover .pricing-header p {
  color: var(--white);
}

.pricing-box-items:hover .theme-btn {
  background-color: var(--header);
}

.pricing-box-items:hover .pricing-list span {
  color: var(--white);
}

.pricing-box-items:hover .pricing-list ul li {
  color: var(--white);
}

.pricing-box-items:hover .pricing-list ul li i {
  color: var(--white);
}

.marquee {
  position: relative;
  --duration: 30s;
  --gap: 0px;
  display: flex;
  overflow: visible;
  user-select: none;
  gap: 0;
  margin-bottom: 120px;
}

.marquee .image-trail-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.marquee .image-trail-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 230px;
  aspect-ratio: 1;
  opacity: 0;
  pointer-events: none;
  border-radius: 10px;
  will-change: transform, opacity;
}

@media (max-width: 1399px) {
  .marquee {
    margin-bottom: 100px;
    margin-top: -20px;
  }
}

@media (max-width: 991px) {
  .marquee {
    margin-bottom: 80px;
    margin-top: 0;
  }
}

.marquee .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
}

.marquee .text {
  color: rgb(80, 98, 74);
  font-size: 200px;
  font-weight: 700;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 50px;
  line-height: 75%;
}

@media (max-width: 1399px) {
  .marquee .text {
    gap: 30px;
    font-size: 150px;
    line-height: 115%;
  }
}

@media (max-width: 575px) {
  .marquee .text {
    gap: 20px;
    font-size: 100px;
  }
}

.marquee.style-2 {
  margin-top: 120px;
}

@media (max-width: 1399px) {
  .marquee.style-2 {
    margin-top: 100px;
  }
}

@media (max-width: 991px) {
  .marquee.style-2 {
    margin-top: 80px;
  }
}

.marquee.style-2 .text {
  font-size: 100px;
  font-weight: 700;
  color: rgb(218, 218, 218);
  text-transform: uppercase;
}

.marquee-section {
  position: relative;
}

.marquee-section .image-trail-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.marquee-section .image-trail-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 230px;
  aspect-ratio: 1;
  opacity: 0;
  pointer-events: none;
  border-radius: 10px;
  will-change: transform, opacity;
}

.project-section {
  margin: 0 30px;
}

@media (max-width: 1399px) {
  .project-section {
    margin: 0 15px;
  }
}

.project-wrapper {
  margin-top: 48px;
}

.project-wrapper .main-box {
  padding: 0;
  gap: 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 1399px) {
  .project-wrapper .main-box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}

.project-wrapper .main-box .box-2 {
  background-image: url(../img/home-1/project/04.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  width: 210px !important;
  height: 641px;
  position: relative;
  overflow: hidden;
  list-style: none;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  border-radius: 10px;
}

@media (max-width: 1399px) {
  .project-wrapper .main-box .box-2 {
    width: 570px !important;
  }
}

@media (max-width: 575px) {
  .project-wrapper .main-box .box-2 {
    height: 350px;
    object-fit: cover;
  }

  .project-wrapper .main-box .box-2 .project-content {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
  }
}

.project-wrapper .main-box .box-2 .project-content {
  position: absolute;
  bottom: -100px;
  left: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  padding: 20px 25px;
  right: 30px;
  border-radius: 10px;
}

@media (max-width: 1600px) {
  .project-wrapper .main-box .box-2 .project-content {
    left: 20px;
    right: 20px;
    padding: 20px 20px;
  }
}

@media (max-width: 1600px) {
  .project-wrapper .main-box .box-2 .project-content h3 {
    font-size: 20px;
  }
}

.project-wrapper .main-box .box-2 .project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.project-wrapper .main-box .box-2 .project-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-wrapper .main-box .box-2 .project-content .tag-list {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}

@media (max-width: 1600px) {
  .project-wrapper .main-box .box-2 .project-content .tag-list {
    font-size: 15px;
    gap: 10px;
  }
}

@media (max-width: 1399px) {
  .project-wrapper .main-box .box-2 .project-content .tag-list {
    font-size: 16px;
  }
}

@media (max-width: 1399px) {
  .project-wrapper .main-box .box-2 .project-content .tag-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.project-wrapper .main-box .box-2 .project-content .tag-list span {
  border: 1px solid rgba(200, 67, 58, 0.2);
  color: rgb(200, 67, 58);
  padding: 2px 10px;
  border-radius: 6px;
}

.project-wrapper .main-box .box-2.bg-1 {
  background-image: url(../img/home-1/project/01.jpg);
}

.project-wrapper .main-box .box-2.bg-2 {
  background-image: url(../img/home-1/project/02.jpg);
}

.project-wrapper .main-box .box-2.bg-3 {
  background-image: url(../img/home-1/project/03.jpg);
}

.project-wrapper .main-box .box-2.bg-4 {
  background-image: url(../img/home-1/project/05.jpg);
}

.project-wrapper .main-box .box-2.bg-5 {
  background-image: url(../img/home-1/project/06.jpg);
}

.project-wrapper .main-box .box-2.active {
  width: 690px !important;
}

.project-wrapper .main-box .box-2.active .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.project-wrapper-2 {
  margin-top: 48px;
}

@media (max-width: 575px) {
  .project-wrapper-2 {
    margin-top: 30px;
  }
}

.project-wrapper-2 .project-left-item {
  position: relative;
}

.project-wrapper-2 .project-left-item .project-image {
  position: relative;
  border-radius: 10px;
  margin-bottom: 20px;
}

.project-wrapper-2 .project-left-item .project-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(47, 47, 47, 0.7);
  border-radius: 10px;
}

.project-wrapper-2 .project-left-item .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.project-wrapper-2 .project-left-item .project-image .project-content {
  position: absolute;
  left: 30px;
  bottom: 30px;
}

@media (max-width: 1399px) {
  .project-wrapper-2 .project-left-item .project-image .project-content {
    left: 20px;
    bottom: 20px;
  }
}

.project-wrapper-2 .project-left-item .project-image .project-content span {
  display: inline-block;
  background-color: var(--white);
  border-radius: 100px;
  width: 10px;
  height: 10px;
}

.project-wrapper-2 .project-left-item .project-image .project-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
}

@media (max-width: 1399px) {
  .project-wrapper-2 .project-left-item .project-image .project-content h3 {
    font-size: 20px;
  }
}

.project-wrapper-2 .project-left-item .project-image .project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.project-wrapper-2 .project-left-item .project-image .project-content h3 a:hover {
  color: var(--theme2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme2) 0%, var(--theme2) 100%);
}

.project-wrapper-2 .project-left-item .project-image .project-content .tag {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.project-wrapper-2 .project-left-item .project-image .project-content .tag h4 {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
}

.project-wrapper-2 .project-thumb-item {
  position: relative;
}

.project-wrapper-2 .project-thumb-item .project-thumb {
  position: relative;
  max-width: 930px;
  height: 735px;
  overflow: visible;
  border-radius: 10px;
  width: 100%;
}

@media (max-width: 1399px) {
  .project-wrapper-2 .project-thumb-item .project-thumb {
    height: 608px;
  }
}

@media (max-width: 1199px) {
  .project-wrapper-2 .project-thumb-item .project-thumb {
    height: 635px;
  }
}

@media (max-width: 991px) {
  .project-wrapper-2 .project-thumb-item .project-thumb {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .project-wrapper-2 .project-thumb-item .project-thumb {
    height: 400px;
  }
}

.project-wrapper-2 .project-thumb-item .project-thumb h2 {
  font-size: 50px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgb(79, 127, 58);
  position: absolute;
  right: 40px;
  top: 40px;
}

@media (max-width: 1399px) {
  .project-wrapper-2 .project-thumb-item .project-thumb h2 {
    display: none;
  }
}

.project-wrapper-2 .project-thumb-item .project-thumb .thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 10px;
}

.project-wrapper-2 .project-thumb-item .project-thumb .thumb-img.active {
  opacity: 1;
}

.project-card-items-4 .project-image {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.project-card-items-4 .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.project-card-items-4 .project-image .content {
  border-radius: 4px;
  background: var(--theme3);
  padding: 20px 24px;
  display: inline-block;
  position: absolute;
  bottom: -100px;
  left: 20px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .project-card-items-4 .project-image .content {
    text-align: center;
    right: 0;
    width: calc(100% - 40px);
  }
}

.project-card-items-4 .project-image .content p {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.project-card-items-4 .project-image .content h2 {
  font-weight: 700;
  font-size: 24px;
  margin-top: 5px;
}

.project-card-items-4 .project-image .content h2 a {
  color: var(--white);
}

.project-card-items-4:hover .project-image .content {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.project-details-wrapper .project-details-image {
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
}

.project-details-wrapper .project-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.project-details-wrapper .project-details-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .project-details-wrapper .project-details-content h2 {
    font-size: 28px;
  }
}

.project-details-wrapper .project-details-content .thumb {
  border-radius: 10px;
  overflow: hidden;
}

.project-details-wrapper .project-details-content .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.project-details-wrapper .project-information {
  background-color: var(--bg3);
  padding: 30px;
  border-radius: 10px;
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-information {
    padding: 22px;
  }
}

.project-details-wrapper .project-information .information-list {
  margin-top: 20px;
}

.project-details-wrapper .project-information .information-list li {
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
}

@media (max-width: 1199px) {
  .project-details-wrapper .project-information .information-list li {
    gap: 14px;
  }
}

.project-details-wrapper .project-information .information-list li:not(:last-child) {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 15px;
}

.project-details-wrapper .project-information .information-list li span {
  color: var(--header);
  font-size: 18px;
}

@media (max-width: 1199px) {
  .project-details-wrapper .project-information .information-list li span {
    font-size: 16px;
  }
}

.our-project-wrapper .project-thumb {
  position: relative;
}

.our-project-wrapper .project-thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(17, 162, 27, 0) 50%, #11A21B 90%);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.our-project-wrapper .project-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.our-project-wrapper .project-thumb .content {
  position: absolute;
  left: 25px;
  bottom: -25px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.our-project-wrapper .project-thumb .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.our-project-wrapper .project-thumb .content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.our-project-wrapper .project-thumb .content p {
  color: var(--white);
  max-width: 400px;
  margin-top: 10px;
}

.our-project-wrapper .project-thumb:hover::before {
  opacity: 1;
  visibility: visible;
}

.our-project-wrapper .project-thumb:hover .content {
  opacity: 1;
  visibility: visible;
  bottom: 25px;
}

.our-project-wrapper .drone-thumb img {
  width: 100%;
  height: 100%;
}

.service-top-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 60px;
  margin-bottom: 60px;
}

@media (max-width: 1399px) {
  .service-top-item {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

.service-top-item .count-item h2 {
  font-weight: 600;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 94%;
}

@media (max-width: 1399px) {
  .service-top-item .count-item h2 {
    font-size: 90px;
  }
}

.service-top-item .count-item p {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  max-width: 318px;
}

@media (max-width: 1399px) {
  .service-top-item .count-item p {
    font-size: 18px;
  }
}

.service-top-item .count-item.style-2 {
  margin-top: 90px;
}

@media (max-width: 1399px) {
  .service-top-item .count-item.style-2 {
    margin-top: 0;
  }
}

.service-top-item .count-item.active h2 {
  color: var(--white);
}

.service-top-item .count-item.active p {
  color: var(--white);
}

.service-top-item .tomato-image {
  margin-top: -120px;
}

@media (max-width: 1399px) {
  .service-top-item .tomato-image {
    display: none;
  }
}

.service-top-item .tomato-image img {
  width: 100%;
  height: 100%;
}

.service-main-box {
  background-color: var(--white);
  border-radius: 20px;
}

.service-main-box .service-item {
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding: 40px 0;
  position: relative;
}

.service-main-box .service-item .text {
  display: flex;
  gap: 40px;
  align-items: start;
  margin-left: 40px;
}

@media (max-width: 1399px) {
  .service-main-box .service-item .text {
    gap: 20px;
    margin-left: 20px;
  }
}

.service-main-box .service-item .text span {
  font-weight: 600;
  color: var(--theme);
  font-size: 20px;
  font-family: "Instrument Sans", sans-serif;
  display: inline-block;
}

.service-main-box .service-item .text h3 {
  font-size: 100px;
}

@media (max-width: 1399px) {
  .service-main-box .service-item .text h3 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .service-main-box .service-item .text h3 {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .service-main-box .service-item .text h3 {
    font-size: 30px;
  }
}

.service-main-box .service-item .hover-image {
  width: 287px;
  height: 228px;
  position: absolute;
  top: 50%;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  border-radius: 30px;
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  margin: -200px 0 0 -50px;
  overflow: hidden;
  pointer-events: none;
  z-index: 99;
  visibility: hidden;
  will-change: transform;
  filter: drop-shadow(0px 4px 150px #C8433A);
}

@media (max-width: 991px) {
  .service-main-box .service-item .hover-image {
    display: none !important;
  }
}

.service-main-box .service-item:hover .text h3 a {
  color: var(--theme);
}

.service-section {
  position: relative;
  z-index: 9;
}

.service-section .section-title-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 60px;
  margin-bottom: 60px !important;
}

@media (max-width: 1399px) {
  .service-section .section-title-area {
    padding-bottom: 30px;
    margin-bottom: 30px !important;
  }
}

@media (max-width: 1399px) {
  .service-section .section-title-area p {
    max-width: 600px;
  }
}

@media (max-width: 1199px) {
  .service-section .section-title-area p {
    max-width: 415px;
  }
}

@media (max-width: 991px) {
  .service-section .section-title-area p {
    max-width: initial;
  }
}

.service-section .tree-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.service-section .tree-image img {
  width: 100%;
  height: 100%;
}

.service-bg-item {
  position: relative;
  border-radius: 10px;
  height: 487px;
}

@media (max-width: 767px) {
  .service-bg-item {
    height: 430px;
  }
}

@media (max-width: 991px) {
  .service-bg-item {
    height: 506px;
  }
}

.service-bg-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(47, 47, 47, 0) 0%, #2F2F2F 100%);
  border-radius: 10px;
}

.service-bg-item .service-cont {
  position: absolute;
  left: 40px;
  bottom: 40px;
}

@media (max-width: 1399px) {
  .service-bg-item .service-cont {
    left: 30px;
    bottom: 30px;
  }
}

.service-bg-item .service-cont .cta-button {
  margin-top: 30px;
  border: 1px solid var(--theme2);
}

.service-bg-item .service-cont .cta-button:hover {
  color: var(--theme2);
}

.service-card-items-2 {
  border-radius: 10px;
  background-color: rgb(250, 247, 240);
  padding: 30px;
  position: relative;
}

@media (max-width: 1399px) {
  .service-card-items-2 {
    padding: 24px;
  }
}

.service-card-items-2.style-2 {
  background-color: #F3FAF3;
}

.service-card-items-2.style-2::before {
  background-color: var(--theme3);
}

.service-card-items-2.style-2 h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .service-card-items-2.style-2 h2 {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .service-card-items-2.style-2 h2 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .service-card-items-2.style-2 h2 {
    font-size: 20px;
  }
}

.service-card-items-2.style-2:hover .top-content .tag-list span {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card-items-2.style-2:hover .top-content p {
  color: var(--white);
}

.service-card-items-2.style-2:hover h2 {
  position: relative;
}

.service-card-items-2.style-2:hover h2 a {
  color: var(--white);
}

.service-card-items-2::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 31px;
  background-color: var(--theme2);
  border-radius: 0px 100px 100px 0px;
  bottom: 30px;
  left: 0;
  transition: all 0.4s ease-in-out;
}

.service-card-items-2 .top-content .tag-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .service-card-items-2 .top-content .tag-list {
    flex-wrap: wrap;
  }
}

.service-card-items-2 .top-content .tag-list span {
  border: 1px solid rgba(47, 47, 47, 0.2);
  font-weight: 500;
  color: rgb(47, 47, 47);
  border-radius: 100px;
  padding: 3px 10px;
}

.service-card-items-2 .top-content p {
  max-width: 376px;
}

.service-card-items-2 .service-image {
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

.service-card-items-2 .service-image img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.service-card-items-2 .service-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

@media (max-width: 1399px) {
  .service-card-items-2 h3 {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .service-card-items-2 h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .service-card-items-2 h3 {
    font-size: 20px;
  }
}

.service-card-items-2 h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.service-card-items-2 h3 a:hover {
  color: var(--header);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--header) 0%, var(--header) 100%);
}

.service-card-items-2:hover::before {
  width: 100%;
  height: 100%;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  border-radius: 10px;
}

.service-card-items-2:hover .service-image {
  position: relative;
  z-index: 999;
}

.service-card-items-2:hover .service-image::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.service-card-items-2:hover .top-content {
  position: relative;
  z-index: 999;
}

.service-card-items-2:hover h3 {
  position: relative;
  z-index: 999;
}

.service-image-item {
  position: relative;
}

.service-image-item .slider-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.service-image-item .swiper-dot4 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.service-section-2 {
  position: relative;
  padding-top: 460px;
}

@media (max-width: 1600px) {
  .service-section-2 {
    padding-top: 400px;
  }
}

@media (max-width: 1399px) {
  .service-section-2 {
    padding-top: 100px;
  }
}

@media (max-width: 991px) {
  .service-section-2 {
    padding-top: 80px;
  }
}

.service-section-2 .mask-image {
  position: absolute;
  left: 60px;
  right: 60px;
  top: 110px;
}

@media (max-width: 1399px) {
  .service-section-2 .mask-image {
    display: none;
  }
}

.service-section-2 .mask-image img {
  width: 100%;
  height: 100%;
}

.service-box-itemss-3 {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white);
  border: none;
}

@media (max-width: 1399px) {
  .service-box-itemss-3 {
    padding: 25px;
  }
}

.service-box-itemss-3 .service-image {
  position: relative;
  overflow: hidden;
}

.service-box-itemss-3 .service-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: inline-block;
  transition: all 500ms ease;
}

.service-box-itemss-3 .service-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.service-box-itemss-3 .content {
  margin-top: 30px;
}

.service-box-itemss-3 .content h3 {
  margin-bottom: 15px;
}

@media (max-width: 1399px) {
  .service-box-itemss-3 .content h3 {
    font-size: 20px;
  }
}

.service-box-itemss-3 .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.service-box-itemss-3 .content h3 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.service-box-itemss-3 .content p {
  margin-bottom: 30px;
}

.service-box-itemss-3 .content .theme-btns {
  position: relative;
  margin-left: 15px;
}

.service-box-itemss-3 .content .theme-btns span {
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  margin-left: 5px;
}

.service-box-itemss-3 .content .theme-btns::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 8%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background-color: rgba(17, 162, 27, 0.1);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.service-box-itemss-3 .content .theme-btns:hover {
  color: var(--white);
}

.service-box-itemss-3 .content .theme-btns:hover img {
  filter: brightness(0) invert(1);
}

.service-box-itemss-3 .content .theme-btns:hover span {
  opacity: 1;
  visibility: visible;
  color: var(--white);
  position: relative;
  z-index: 999;
}

.service-box-itemss-3 .content .theme-btns:hover::before {
  width: 189px;
  left: 51%;
  background-color: var(--theme3);
}

.service-box-itemss-3 .content .tag-list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 35px;
}

@media (max-width: 1399px) {
  .service-box-itemss-3 .content .tag-list {
    flex-wrap: wrap;
  }
}

.service-box-itemss-3 .content .tag-list span {
  border: 1px solid rgba(47, 47, 47, 0.2);
  font-weight: 500;
  color: rgb(142, 142, 142);
  border-radius: 100px;
  padding: 3px 15px;
  font-size: 15px;
  line-height: 1.6;
  white-space: nowrap;
}

.service-box-itemss-3:hover {
  border: none;
}

.service-box-itemss-3:hover .service-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.service-box-itemss-3:hover .service-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.service-content-3 {
  margin-left: 15px;
}

@media (max-width: 1399px) {
  .service-content-3 {
    margin-left: 0;
  }
}

.service-content-3 .text {
  max-width: 450px;
  margin-top: 15px;
}

.service-content-3 .arrow-button {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.service-content-3 .arrow-button .array-prev,
.service-content-3 .arrow-button .array-next {
  width: 48px;
  height: 48px;
  line-height: 35px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}

.service-content-3 .arrow-button .array-prev img,
.service-content-3 .arrow-button .array-next img {
  transition: all 0.4s ease-in-out;
}

.service-content-3 .arrow-button .array-prev:hover,
.service-content-3 .arrow-button .array-next:hover {
  background-color: var(--theme3);
}

.service-content-3 .arrow-button .array-prev:hover img,
.service-content-3 .arrow-button .array-next:hover img {
  filter: brightness(0) invert(1);
}

.service-section-3 {
  position: relative;
}

.service-section-3 .service-slider {
  margin-left: -520px;
}

@media (max-width: 1399px) {
  .service-section-3 .service-slider {
    margin-left: 0;
  }
}

.service-section-3 .drone {
  position: absolute;
  bottom: 240px;
  right: 45px;
}

@media (max-width: 1600px) {
  .service-section-3 .drone {
    width: 280px;
  }
}

@media (max-width: 1399px) {
  .service-section-3 .drone {
    display: none;
  }
}

.service-box-items-3 {
  border-radius: 10px;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  position: relative;
  padding: 30px;
}

.service-box-items-3 h2 {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 60px;
  font-weight: 700;
  color: transparent;
  line-height: 94%;
  -webkit-text-stroke: 1px rgb(217, 217, 217);
  transition: all 0.4s ease-in-out;
  font-family: "Inter", sans-serif;
}

.service-box-items-3 .icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme3);
  margin-bottom: 20px;
}

.service-box-items-3 h3 {
  font-size: 24px;
  font-weight: 700;
}

.service-box-items-3 h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.service-box-items-3 h3 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.service-box-items-3 p {
  max-width: 270px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.service-box-items-3 .plus-icon {
  position: relative;
  margin-left: 15px;
  color: var(--theme);
}

.service-box-items-3 .plus-icon i {
  position: relative;
  z-index: 999;
}

.service-box-items-3 .plus-icon span {
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  margin-left: 5px;
}

.service-box-items-3 .plus-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 8%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  background-color: rgb(255, 246, 245);
  color: rgb(200, 67, 58);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.service-box-items-3 .plus-icon:hover {
  color: var(--white);
}

.service-box-items-3 .plus-icon:hover span {
  opacity: 1;
  visibility: visible;
  color: var(--white);
  position: relative;
  z-index: 999;
}

.service-box-items-3 .plus-icon:hover::before {
  width: 150px;
  left: 51%;
  background-color: var(--theme3);
}

.service-box-items-3:hover {
  box-shadow: 0px 4px 55px rgba(75, 175, 71, 0.15);
  border: 1px solid var(--white);
}

.service-box-items-3:hover .icon img {
  animation: jello 1s;
}

.service-box-items-3:hover h2 {
  -webkit-text-stroke: 1px var(--theme3);
  color: var(--theme3);
}

.service-details-wrapper .service-top-img {
  border-radius: 12px;
}

.service-details-wrapper .service-top-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.service-details-wrapper .service-details-content {
  margin-top: 30px;
}

.service-details-wrapper .service-details-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 30px;
}

.service-details-wrapper .service-details-content .service-list-items {
  display: flex;
  gap: 60px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .service-details-wrapper .service-details-content .service-list-items {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.service-details-wrapper .service-details-content .service-list-items ul li {
  font-weight: 500;
}

.service-details-wrapper .service-details-content .service-list-items ul li i {
  color: var(--theme3);
  margin-right: 10px;
}

.service-details-wrapper .service-details-content .service-list-items ul li:not(:last-child) {
  margin-bottom: 15px;
}

.service-details-wrapper .service-details-content .service-box-area {
  margin-top: 40px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items {
  background-color: var(--bg3);
  border-radius: 10px;
  padding: 30px 20px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items .number {
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  background-color: var(--theme3);
  color: var(--white);
  font-size: 16px;
  display: block;
  text-align: center;
  font-weight: 700;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items h4 {
  font-size: 18px;
  font-weight: 500;
  max-width: 190px;
  margin-top: 20px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items p {
  margin-top: 10px;
}

.service-details-wrapper .service-details-sidebar {
  margin-top: 30px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget {
  padding: 40px 35px;
  border-radius: 10px;
  background-color: var(--bg3);
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-details-sidebar .sidebar-widget {
    padding: 30px;
  }
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title {
  margin-bottom: 25px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h3 {
  font-size: 24px;
  font-weight: 500;
  display: inline-block;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h3 i {
  color: var(--theme3);
  font-size: 16px;
  margin-right: 7px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image {
  position: relative;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(2, 2, 2, 0.4);
  border-radius: 8px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content {
  position: absolute;
  padding: 25px;
  bottom: 25px;
  left: 25px;
  right: 25px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-details-sidebar .sidebar-widget-image .content {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
  }
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .icon {
  font-size: 70px;
  color: var(--white);
  margin-bottom: 35px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content h4 {
  margin-top: 15px;
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-details-sidebar .sidebar-widget-image .content h4 {
    font-size: 24px;
  }
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn {
  margin-top: 30px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn::before {
  background-color: var(--white);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn::after {
  background: rgba(255, 255, 255, 0.3);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn:hover {
  color: var(--theme3);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .white-logo {
  position: absolute;
  top: 50px;
  left: 50px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li {
  font-size: 16px;
  font-weight: 600;
  font-family: "Instrument Sans", sans-serif;
}

.service-details-wrapper .service-details-sidebar .service-list-item li:not(:last-child) {
  margin-bottom: 10px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li a {
  color: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  padding: 20px 24px;
  line-height: 1;
  border-radius: 8px;
}

.service-details-wrapper .service-details-sidebar .service-list-item li a:hover {
  background-color: var(--theme3);
  color: var(--white);
}

.services-card-items-4 {
  background-color: var(--white);
  margin-top: 30px;
  border-radius: 12px;
  border-top: 6px solid var(--theme3);
}

.services-card-items-4 .service-content {
  padding: 40px 40px 60px;
}

.services-card-items-4 .service-content h3 {
  margin-bottom: 15px;
}

@media (max-width: 1399px) {
  .services-card-items-4 .service-content h3 {
    font-size: 20px;
  }
}

.services-card-items-4 .service-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.services-card-items-4 .service-content h3 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.services-card-items-4 .service-content p {
  margin-bottom: 30px;
}

.services-card-items-4 .service-content .plus-icon {
  position: relative;
  margin-left: 15px;
  color: var(--white);
}

.services-card-items-4 .service-content .plus-icon i {
  position: relative;
  z-index: 999;
}

.services-card-items-4 .service-content .plus-icon span {
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  margin-left: 5px;
}

.services-card-items-4 .service-content .plus-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 8%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme3);
  color: var(--white);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.services-card-items-4 .service-content .plus-icon:hover {
  color: var(--white);
}

.services-card-items-4 .service-content .plus-icon:hover span {
  opacity: 1;
  visibility: visible;
  color: var(--white);
  position: relative;
  z-index: 999;
}

.services-card-items-4 .service-content .plus-icon:hover::before {
  width: 150px;
  left: 51%;
  background-color: var(--theme3);
}

.services-card-items-4 .service-image {
  position: relative;
  overflow: hidden;
}

.services-card-items-4 .service-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.services-card-items-4 .service-image img {
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.services-card-items-4:hover .service-image::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.shop-card-items {
  margin-top: 30px;
  background-color: var(--bg3);
  border-radius: 10px;
}

.shop-card-items .shop-image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.shop-card-items .shop-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.shop-card-items .shop-image .shop-icon {
  gap: 10px;
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  visibility: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease-in-out;
}

.shop-card-items .shop-image .shop-icon li a,
.shop-card-items .shop-image .shop-icon li button {
  background-color: var(--white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100px;
  display: inline-block;
  color: var(--theme3);
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.shop-card-items .shop-image .shop-icon li a:hover,
.shop-card-items .shop-image .shop-icon li button:hover {
  background-color: var(--theme3);
  color: var(--white);
}

.shop-card-items .shop-image .discount {
  display: inline-block;
  padding: 6px 8px;
  line-height: 1;
  background-color: var(--theme3);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  font-family: "Instrument Sans", sans-serif;
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 4px;
}

.shop-card-items .shop-content {
  padding: 30px 24px;
  padding-top: 24px;
  text-align: center;
}

.shop-card-items .shop-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.shop-card-items .shop-content h3 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.shop-card-items .shop-content .price {
  font-weight: 500;
  color: var(--theme3);
}

.shop-card-items .shop-content .price .prev-price {
  color: var(--header);
  text-decoration: line-through;
  margin-right: 5px;
}

.shop-card-items:hover .shop-image .shop-icon {
  top: 50%;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.shop-card-items:hover .shop-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.shop-section .shop-notices-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .shop-section .shop-notices-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.shop-section .shop-notices-wrapper .shop-showing p {
  color: var(--header);
  text-transform: uppercase;
}

.shop-section .shop-notices-wrapper .form .single-select {
  padding: 16px 20px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
  line-height: 1;
  height: initial;
  border: 1px solid rgba(47, 47, 47, 0.2);
  background: var(--bg);
  color: var(--header);
  border-radius: 6px;
}

.shop-section .shop-notices-wrapper .form .single-select::after {
  right: 20px;
  border-bottom: 2px solid var(--border);
  border-right: 2px solid var(--border);
  margin-top: -5px;
  width: 8px;
  height: 8px;
}

.shop-section .shop-notices-wrapper .form .single-select .option {
  color: var(--text);
}

.shop-section .shop-notices-wrapper .form .list {
  width: 100%;
}

.shop-section .shop-notices-wrapper .form-clt {
  max-width: 300px;
  width: 100%;
}

.shop-details-wrapper .shop-details-image {
  position: relative;
}

.shop-details-wrapper .shop-details-image .nav {
  display: flex;
  align-items: center;
  gap: 33px;
  margin-top: 20px;
}

.shop-details-wrapper .shop-details-image .nav img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.shop-details-wrapper .shop-details-image .nav .nav-link {
  padding: 0;
  max-width: 109px;
}

.shop-details-wrapper .shop-details-image .shop-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.shop-details-wrapper .product-details-content {
  margin-left: 60px;
}

@media (max-width: 1399px) {
  .shop-details-wrapper .product-details-content {
    margin-left: 30px;
  }
}

@media (max-width: 991px) {
  .shop-details-wrapper .product-details-content {
    margin-left: 0;
  }
}

.shop-details-wrapper .product-details-content h2 {
  font-size: 30px;
  font-weight: 500;
}

.shop-details-wrapper .product-details-content .star a {
  color: var(--theme3);
  font-size: 16px;
  font-weight: 600;
}

.shop-details-wrapper .product-details-content .star span {
  margin-left: 10px;
}

.shop-details-wrapper .product-details-content .price-list {
  gap: 20px;
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 30px;
}

.shop-details-wrapper .product-details-content .price-list h3 {
  font-size: 22px;
  font-weight: 500;
}

.shop-details-wrapper .product-details-content .cart-wrp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity {
  padding-right: 15px;
  margin-right: 15px;
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity input {
  width: 50px;
  height: 38px;
  text-align: center;
  background-color: transparent;
  border: 1px solid rgba(47, 47, 47, 0.2);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  margin-top: 2px;
  border-radius: 4px;
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity input:hover {
  background: var(--theme3);
  color: var(--white);
  border-color: var(--theme3);
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .minus {
  color: var(--header);
  font-weight: 700;
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .plus {
  color: var(--header);
}

.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .qty {
  color: var(--header);
}

.shop-details-wrapper .product-details-content .cart-wrp .icon {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid rgba(47, 47, 47, 0.2);
  color: var(--header);
  line-height: 40px;
  border-radius: 4px;
}

.shop-details-wrapper .product-details-content .cart-wrp .icon:hover {
  background: var(--theme3);
  color: var(--white);
  border-color: var(--theme3);
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile {
  z-index: 2;
  display: flex;
  overflow: hidden;
  align-items: center;
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile ul {
  transform: translateX(-100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  display: flex;
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile ul li a {
  width: 50px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  background: transparent;
  border: 1px solid rgba(47, 47, 47, 0.2);
  border-left: 0 px solid var(--border);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  font-size: 12px;
  border-radius: 4px;
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile ul li a:hover {
  color: var(--white);
  background-color: var(--theme3);
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile .plus-btn {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid rgba(47, 47, 47, 0.2);
  color: var(--header);
  line-height: 40px;
  cursor: pointer;
  border-radius: 4px;
}

.shop-details-wrapper .product-details-content .cart-wrp .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.shop-details-wrapper .product-details-content .cart-wrp .theme-btn {
  padding: 20px 35px;
}

@media (max-width: 575px) {
  .shop-details-wrapper .product-details-content .cart-wrp .theme-btn {
    padding: 15px 40px;
  }
}

.shop-details-wrapper .product-details-content .shop-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.shop-details-wrapper .product-details-content .shop-btn .theme-btn {
  padding: 14px 35px;
}

.shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2) {
  background-color: transparent;
  background-color: transparent;
  color: var(--theme3);
  border: 1px solid var(--theme3);
}

.shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2)::before,
.shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2)::after {
  background-color: var(--theme3);
}

.shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2):hover {
  color: var(--white);
}

.shop-details-wrapper .product-details-content .details-info {
  position: relative;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
}

.shop-details-wrapper .product-details-content .details-info span {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin-right: 5px;
  font-family: "Inter", sans-serif;
}

.shop-details-wrapper .product-details-content .details-info a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  text-transform: capitalize;
}

.shop-details-wrapper .product-details-content .details-info.style-2 a b {
  border: 1px solid #e6e6e6;
  padding: 4px 12px 6px;
  font-weight: 400;
  font-size: 14px;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
}

.shop-details-wrapper .product-details-content .details-info.style-2 a b:hover {
  background-color: var(--theme3);
  color: var(--white);
}

.single-tab {
  padding-top: 80px;
}

@media (max-width: 575px) {
  .single-tab {
    padding-top: 50px;
  }
}

.single-tab .nav {
  justify-content: center;
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 20px;
}

.single-tab .nav .nav-link h3 {
  font-size: 16px;
  font-weight: 600;
}

.single-tab .nav .nav-link.active {
  position: relative;
}

.single-tab .nav .nav-link.active h3 {
  color: var(--theme3);
  font-size: 16px;
  font-weight: 600;
}

.single-tab .nav .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: var(--theme3);
  transition: 0.3s;
}

@media (max-width: 575px) {
  .single-tab .nav .nav-link.active::before {
    display: none;
  }
}

.single-tab .description-items .description-content {
  margin-right: 50px;
}

@media (max-width: 1399px) {
  .single-tab .description-items .description-content {
    margin-right: 30px;
  }
}

@media (max-width: 991px) {
  .single-tab .description-items .description-content {
    margin-right: 0;
  }
}

.single-tab .description-items .description-content h3 {
  margin-bottom: 15px;
}

.single-tab .description-items .description-content .description-list-items {
  margin-top: 30px;
}

@media (max-width: 575px) {
  .single-tab .description-items .description-content .description-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.single-tab .description-items .description-content .description-list-items .description-list li {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--theme3);
  font-weight: 500;
}

.single-tab .description-items .description-content .description-list-items .description-list li span {
  color: var(--text);
  font-weight: 400;
}

.single-tab .description-items .description-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .single-tab .review-items .admin-items {
    justify-content: center;
    gap: 30px;
  }
}

.single-tab .review-items .admin-items .admin-img {
  width: 100px;
  height: 100px;
}

.single-tab .review-items .admin-items .admin-img img {
  border-radius: 50%;
}

.single-tab .review-items .admin-items .content {
  position: relative;
  border: 1px solid rgba(47, 47, 47, 0.2);
}

.single-tab .review-items .admin-items .content::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-left: 1px solid rgba(47, 47, 47, 0.2);
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  transform: rotate(45deg);
  top: 40%;
  left: -16px;
}

@media (max-width: 575px) {
  .single-tab .review-items .admin-items .content::before {
    display: none;
  }
}

.single-tab .review-items .admin-items .content .head-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: start;
}

@media (max-width: 1399px) {
  .single-tab .review-items .admin-items .content .head-content {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.single-tab .review-items .admin-items .content .head-content .content1 {
  margin-bottom: 10px;
}

.single-tab .review-items .admin-items .content .head-content .content1 h4 {
  font-size: 18px;
  font-weight: 700;
}

.single-tab .review-items .admin-items .content .head-content .content1 .star {
  margin-top: 5px;
}

.single-tab .review-items .admin-items .content .head-content .content1 .star i {
  font-size: 16px;
  color: var(--theme3);
}

.single-tab .review-items .admin-items .content .head-content span {
  font-size: 14px;
  margin-left: 30px;
}

.single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px;
}

.single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: uppercase;
}

.single-tab .review-title .rate-now i {
  font-size: 16px;
  color: #ff9200;
}

.single-tab .review-form {
  margin-top: 40px;
}

.single-tab .review-form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 35px;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .single-tab .review-form .form-clt input {
    padding: 15px 20px;
  }
}

.single-tab .review-form .form-clt-big textarea {
  padding: 18px 35px 170px;
  width: 100%;
  outline: none;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  border: none;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .single-tab .review-form .form-clt-big textarea {
    padding: 15px 20px;
  }
}

.cart-list-area .coupon-items input {
  background: #F5F6FA;
  border: none;
  padding: 18px 30px;
  color: var(--text);
  line-height: 1;
  border-radius: 6px;
}

.cart-list-area .top-content {
  margin-bottom: 60px;
}

.cart-list-area .top-content .list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}

.cart-list-area .top-content .list li {
  position: relative;
}

.cart-list-area .top-content .list li:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  left: 50px;
  top: 13px;
  border-radius: 30px;
  background-color: #A8ACB0;
}

.cart-list-area .common-table {
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.cart-list-area .common-table .cart-item-thumb {
  width: 86px;
}

@media (max-width: 1399px) {
  .cart-list-area .common-table .cart-item-thumb {
    flex-wrap: wrap;
  }
}

.cart-list-area .common-table .cart-item-thumb .head {
  color: var(--header);
  font-size: 20px;
  text-transform: capitalize;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
}

.cart-list-area .common-table .price-usd {
  font-size: 16px;
  font-weight: 500;
  color: #666C78;
}

.cart-list-area .common-table tr {
  border-bottom: 1px solid #E4E4E5;
}

.cart-list-area .common-table thead,
.cart-list-area .common-table tbody {
  width: 100%;
}

.cart-list-area .common-table thead tr,
.cart-list-area .common-table tbody tr {
  width: 100%;
  display: flex;
  box-sizing: border-box;
}

.cart-list-area .common-table thead tr th,
.cart-list-area .common-table thead tr td,
.cart-list-area .common-table tbody tr th,
.cart-list-area .common-table tbody tr td {
  width: 100%;
  box-sizing: border-box;
}

.cart-list-area .common-table thead tr {
  color: #1B1F2A;
  border-bottom: unset;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #E4E4E5;
}

.cart-list-area .common-table thead tr th {
  background: unset;
  color: unset;
  border: unset;
  font-size: 16px;
  padding-bottom: 16px;
  text-transform: capitalize;
}

.cart-list-area .common-table tbody tr td {
  background: transparent;
  color: unset;
  box-sizing: border-box;
  border-bottom: unset;
}

.cart-list-area .quantity button i {
  font-size: 16px;
}

.cart-list-area .quantity .quantityValue {
  width: 40px;
  text-align: center;
  padding: 0;
  color: #000;
  border: unset;
}

.checkout-single-wrapper .checkout-single h2 {
  color: var(--header);
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 20px;
}

.checkout-single-wrapper .checkout-single h3 {
  font-size: 20px;
  font-weight: 700;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
  width: 100%;
  outline: none;
  box-shadow: none;
  border: 1px solid rgba(47, 47, 47, 0.2);
  padding: 12px 24px;
  color: var(--header);
  text-transform: capitalize;
  font-weight: 400;
  background-color: transparent;
  border-radius: 6px;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
  color: var(--text);
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
  color: var(--text);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .single-select {
  border: 1px solid rgba(47, 47, 47, 0.2);
  border-radius: 6px;
  color: var(--text);
  background-color: transparent;
  padding: 4px 15px;
  height: 50px;
  font-weight: 400;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .single-select .list {
  width: 100%;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
  color: var(--header);
  margin-bottom: 12px;
  text-transform: capitalize;
}

.checkout-single-wrapper .boxshado-single {
  margin-bottom: 24px;
}

.checkout-single-wrapper .checkout-single-bg .theme-btn {
  border-radius: 8px;
}

.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
  border: 1px solid rgba(47, 47, 47, 0.2);
  background: transparent;
  text-transform: capitalize;
}

.checkout-single-wrapper .checkout-single-bg .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.checkout-single-wrapper .checkout-single-bg .payment-save .form-check-input {
  width: 24px;
  height: 24px;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid rgba(47, 47, 47, 0.2);
}

.checkout-single-wrapper .checkout-single-bg .payment-save .form-check-input:checked {
  background-color: var(--theme3);
}

.checkout-single-wrapper .checkout-single-bg .payment-save .form-check-input {
  transition: background-color 0.3s ease;
}

.checkout-single-wrapper .checkout-single-bg .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.checkout-radio .primary-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
  color: var(--header);
  text-transform: capitalize;
}

.checkout-radio h4 {
  color: var(--header);
  margin-bottom: 16px;
  font-weight: 600;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
  background-color: transparent;
  border: 1px solid rgba(47, 47, 47, 0.2);
  border-radius: 100px;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input:checked {
  background-color: var(--theme3);
  border-color: var(--theme3);
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input:focus {
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
  color: var(--text);
  text-transform: capitalize;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
  margin-bottom: 12px;
}

.shop-grid-section .shop-notices-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .shop-grid-section .shop-notices-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.shop-grid-section .shop-notices-wrapper .shop-showing p {
  color: var(--header);
  text-transform: uppercase;
}

.shop-grid-section .shop-notices-wrapper .form .single-select {
  padding: 16px 20px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
  line-height: 1;
  height: initial;
  border: 1px solid var(--theme);
  background: var(--bg);
  color: var(--header);
  border-radius: 0;
}

.shop-grid-section .shop-notices-wrapper .form .single-select::after {
  right: 20px;
  border-bottom: 2px solid var(--border);
  border-right: 2px solid var(--border);
  margin-top: -5px;
  width: 8px;
  height: 8px;
}

.shop-grid-section .shop-notices-wrapper .form .single-select .option {
  color: var(--text);
}

.shop-grid-section .shop-notices-wrapper .form .list {
  width: 100%;
}

.shop-grid-section .shop-notices-wrapper .form-clt {
  max-width: 300px;
  width: 100%;
}

.team-section {
  position: relative;
}

.team-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(47, 47, 47, 0.9);
}

.team-section .section-title-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 48px;
  margin-bottom: 48px !important;
}

@media (max-width: 1399px) {
  .team-section .section-title-area {
    padding-bottom: 30px;
    padding-bottom: 30px !important;
  }
}

.team-section .section-title-area .arrow-button {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-section .section-title-area .arrow-button .array-prev,
.team-section .section-title-area .arrow-button .array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}

.team-section .section-title-area .arrow-button .array-prev img,
.team-section .section-title-area .arrow-button .array-next img {
  transition: all 0.4s ease-in-out;
}

.team-section .section-title-area .arrow-button .array-prev:hover,
.team-section .section-title-area .arrow-button .array-next:hover {
  background-color: var(--theme3);
}

.team-section .section-title-area .arrow-button .array-prev:hover img,
.team-section .section-title-area .arrow-button .array-next:hover img {
  filter: brightness(0) invert(1);
}

.team-section .team-slider {
  margin-right: -450px;
}

@media (max-width: 1600px) {
  .team-section .team-slider {
    margin-right: -200px;
  }
}

@media (max-width: 1399px) {
  .team-section .team-slider {
    margin-right: 0;
  }
}

.team-card-item .team-image {
  position: relative;
  overflow: hidden;
}

.team-card-item .team-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(17, 162, 27, 0) 50%, #11A21B 90%);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-card-item .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.team-card-item .team-image .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: -150px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-card-item .team-image .social-icon a {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 100px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.team-card-item .team-image .social-icon a:hover {
  background-color: var(--theme3);
  border: 1px solid var(--theme3);
}

.team-card-item .team-image .team-content {
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: -30px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-card-item .team-image .team-content h3 {
  margin-bottom: 5px;
}

@media (max-width: 1399px) {
  .team-card-item .team-image .team-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .team-card-item .team-image .team-content h3 {
    font-size: 20px;
  }
}

.team-card-item .team-image .team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.team-card-item .team-image .team-content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.team-card-item .team-image .team-content p {
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.team-card-item:hover .team-image::before {
  opacity: 1;
  visibility: visible;
}

.team-card-item:hover .team-image .social-icon {
  bottom: 150px;
  opacity: 1;
  visibility: visible;
}

.team-card-item:hover .team-image .team-content {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}

.team-card-items-2 {
  border: 1px solid #D9D9D9;
  text-align: center;
  padding: 30px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 10px;
}

.team-card-items-2 .team-image {
  position: relative;
  overflow: hidden;
}

.team-card-items-2 .team-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(17, 162, 27, 0) 50%, #11A21B 90%);
  border-radius: 1000px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-card-items-2 .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.team-card-items-2 .team-image .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: -100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-card-items-2 .team-image .social-icon a {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 100px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.team-card-items-2 .team-image .social-icon a:hover {
  background-color: var(--theme3);
  border: 1px solid var(--theme3);
}

.team-card-items-2 .team-content {
  margin-top: 30px;
  text-align: center;
}

.team-card-items-2 .team-content h3 {
  margin-bottom: 5px;
}

@media (max-width: 1399px) {
  .team-card-items-2 .team-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .team-card-items-2 .team-content h3 {
    font-size: 20px;
  }
}

.team-card-items-2 .team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.team-card-items-2 .team-content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.team-card-items-2 .team-content p {
  font-weight: 500;
}

.team-card-items-2:hover .team-image::before {
  opacity: 1;
  visibility: visible;
}

.team-card-items-2:hover .team-image .social-icon {
  bottom: 100px;
  opacity: 1;
  visibility: visible;
}

.team-details-wrapper .team-details-image {
  overflow: hidden;
  border-radius: 12px;
}

.team-details-wrapper .team-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.team-details-wrapper .team-details-content {
  margin-left: 30px;
  background-color: var(--bg3);
  border-radius: 10px;
  padding: 45px 40px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-details-content {
    margin-left: 0;
  }
}

.team-details-wrapper .team-details-content .offer {
  background-color: var(--theme3);
  color: var(--white);
  padding: 8px 10px;
  border-radius: 6px;
}

.team-details-wrapper .team-details-content h2 {
  margin-top: 30px;
}

.team-details-wrapper .team-details-content .team-infrom {
  margin-top: 30px;
}

.team-details-wrapper .team-details-content .team-infrom li {
  display: flex;
  gap: 100px;
  align-items: center;
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-details-content .team-infrom li {
    display: grid;
    gap: 20px;
  }
}

.team-details-wrapper .team-details-content .team-infrom li span {
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
  flex-basis: 28%;
}

.team-details-wrapper .team-details-content .team-infrom li:not(:last-child) {
  margin-bottom: 12px;
}

.team-details-wrapper .team-details-content h3 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 60px;
}

.team-details-wrapper .team-details-content .social-icon {
  display: flex;
  margin-top: 30px;
  gap: 15px;
}

.team-details-wrapper .team-details-content .social-icon a {
  color: var(--theme);
  background: var(--white);
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
}

.team-details-wrapper .team-details-content .social-icon a:hover {
  background-color: var(--theme3);
  color: var(--white);
}

.team-details-wrapper .team-middle-items .team-skill-area {
  margin-top: 60px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content {
  margin-right: 60px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-middle-items .team-skill-area .skill-content {
    margin-right: 0;
  }
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items {
  width: 100%;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 30px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head .title {
  color: var(--header);
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .progress {
  background-color: rgba(17, 162, 27, 0.5);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme3);
  height: 6px;
  width: 0;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 69%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 80%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 98%;
  }
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content ul li {
  display: flex;
  gap: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content ul li:not(:last-child) {
  margin-bottom: 20px;
}

.team-details-wrapper .team-bottom-items {
  margin-top: 120px;
  border-radius: 10px;
  background: var(--bg3);
  padding: 80px 60px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-bottom-items {
    margin-top: 100px;
    padding: 50px;
  }
}

@media (max-width: 991px) {
  .team-details-wrapper .team-bottom-items {
    margin-top: 80px;
  }
}

@media (max-width: 767px) {
  .team-details-wrapper .team-bottom-items {
    padding: 40px 30px;
  }
}

@media (max-width: 575px) {
  .team-details-wrapper .team-bottom-items {
    padding: 30px;
  }
}

.team-details-wrapper .team-bottom-items .team-left-items p {
  margin-top: 20px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon {
  display: flex;
  gap: 10px;
  border-radius: 70px;
  border: 1px solid #3D4857;
  display: inline-flex;
  padding: 20px;
  font-weight: 600;
  line-height: 1;
  margin-top: 30px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon .icon {
  color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items {
  margin-left: 80px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-bottom-items .team-right-items {
    margin-left: 0;
  }
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box {
  margin-top: 30px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input,
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: var(--header);
  padding-bottom: 20px;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  text-transform: capitalize;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input::placeholder,
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea::placeholder {
  color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
  padding-bottom: 120px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select {
  border: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  background-color: transparent;
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: var(--header);
  padding-bottom: 20px;
  border-radius: 0;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .current {
  color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select::after {
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  width: 8px;
  height: 8px;
  right: 12px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .list {
  width: 100%;
}

.team-card-items-4 {
  margin-top: 30px;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
  padding-bottom: 50px;
}

.team-card-items-4::before {
  position: absolute;
  content: "";
  border: 1px solid var(--theme3);
  border-radius: 10px;
  top: -15px;
  left: -12px;
  width: 100%;
  height: 80%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .team-card-items-4::before {
    display: none;
  }
}

.team-card-items-4 .team-image {
  position: relative;
  overflow: hidden;
}

.team-card-items-4 .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.team-card-items-4 .team-image .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: -50px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-card-items-4 .team-image .social-icon a {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 100px;
  color: var(--white);
  background-color: var(--header);
  text-align: center;
}

.team-card-items-4 .team-image .social-icon a:hover {
  background-color: var(--theme3);
}

.team-card-items-4 .team-content {
  margin-top: 30px;
  text-align: center;
}

.team-card-items-4 .team-content h3 {
  margin-bottom: 5px;
}

@media (max-width: 1399px) {
  .team-card-items-4 .team-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .team-card-items-4 .team-content h3 {
    font-size: 20px;
  }
}

.team-card-items-4 .team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.team-card-items-4 .team-content h3 a:hover {
  color: var(--theme3);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
}

.team-section-4 {
  border-radius: 20px;
  margin: 0 80px;
  position: relative;
}

@media (max-width: 1600px) {
  .team-section-4 {
    margin: 0 50px;
  }
}

@media (max-width: 1399px) {
  .team-section-4 {
    margin: 0 30px;
  }
}

@media (max-width: 575px) {
  .team-section-4 {
    margin: 0 15px;
  }
}

.team-section-4 .arrow-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 100px;
  right: 100px;
  transform: translateY(-50%);
  z-index: 99;
}

@media (max-width: 1399px) {
  .team-section-4 .arrow-button {
    display: none;
  }
}

.team-section-4 .arrow-button .array-prev,
.team-section-4 .arrow-button .array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid var(--theme3);
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 999;
  display: inline-block;
}

.team-section-4 .arrow-button .array-prev img,
.team-section-4 .arrow-button .array-next img {
  transition: all 0.4s ease-in-out;
}

.team-section-4 .arrow-button .array-prev:hover,
.team-section-4 .arrow-button .array-next:hover {
  background-color: var(--theme3);
}

.team-section-4 .arrow-button .array-prev:hover img,
.team-section-4 .arrow-button .array-next:hover img {
  filter: brightness(0) invert(1);
}

.team-section-4 .swiper-slide.swiper-slide-active .team-card-items-4 {
  transform: translateY(50px);
}

.team-section-4 .swiper-slide.swiper-slide-active .team-card-items-4::before {
  opacity: 1;
  visibility: visible;
}

.team-section-4 .swiper-slide.swiper-slide-active .team-card-items-4 .team-image .social-icon {
  opacity: 1;
  visibility: visible;
  bottom: 50px;
}

.testimonial-box-item {
  background-color: var(--bg);
  position: relative;
  text-align: center;
  padding: 30px;
  border-radius: 24px;
}

@media (max-width: 1600px) {
  .testimonial-box-item {
    padding: 20px;
  }
}

@media (max-width: 1399px) {
  .testimonial-box-item {
    padding: 30px;
  }
}

.testimonial-box-item::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  transform: scale(0.1, 1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: var(--theme);
  border-radius: 12px;
}

.testimonial-box-item .content {
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.testimonial-box-item .content .client-image {
  transition: all 0.4s ease-in-out;
}

.testimonial-box-item .content h4 {
  margin-top: 10px;
}

.testimonial-box-item .content span {
  font-weight: 500;
  color: rgb(80, 98, 74);
}

.testimonial-box-item p {
  margin: 0 auto;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
}

@media (max-width: 1600px) {
  .testimonial-box-item p {
    font-size: 16px;
  }
}

@media (max-width: 1399px) {
  .testimonial-box-item p {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .testimonial-box-item p {
    font-size: 16px;
  }
}

.testimonial-box-item .star {
  color: rgb(255, 127, 34);
  margin-top: 10px;
  font-size: 20px;
}

.testimonial-box-item .star i {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-box-item:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.testimonial-box-item:hover .content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.testimonial-box-item:hover .content .client-image {
  transform: rotateY(180deg);
  display: inline-block;
}

.testimonial-box-item:hover .content h4 {
  color: var(--white);
}

.testimonial-box-item:hover .content span {
  color: var(--white);
}

.testimonial-box-item:hover p {
  color: var(--white);
  position: relative;
}

.testimonial-box-item:hover .star {
  color: var(--white);
  position: relative;
}

.testimonial-box-item-bg {
  background-color: rgb(79, 127, 58);
  padding: 25px;
  border-radius: 24px;
}

@media (max-width: 1600px) {
  .testimonial-box-item-bg .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 1399px) {
  .testimonial-box-item-bg .section-title h2 {
    font-size: 35px !important;
  }
}

@media (max-width: 991px) {
  .testimonial-box-item-bg .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .testimonial-box-item-bg .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .testimonial-box-item-bg .section-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 470px) {
  .testimonial-box-item-bg .section-title h2 {
    font-size: 30px;
  }
}

.testimonial-box-item-bg .text {
  max-width: 340px;
  margin-top: 10px;
}

.testimonial-box-item-bg .test-button {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

@media (max-width: 1600px) {
  .testimonial-box-item-bg .test-button {
    gap: 9px;
  }
}

@media (max-width: 1199px) {
  .testimonial-box-item-bg .test-button {
    flex-wrap: wrap;
  }
}

.testimonial-box-item-bg .test-button .theme-btn {
  background-color: rgb(200, 67, 58);
}

@media (max-width: 1600px) {
  .testimonial-box-item-bg .test-button .theme-btn {
    padding: 15px 20px 15px;
  }
}

@media (max-width: 1399px) {
  .testimonial-box-item-bg .test-button .theme-btn {
    padding: 15px 10px 15px;
  }
}

@media (max-width: 1199px) {
  .testimonial-box-item-bg .test-button .theme-btn {
    padding: 15px 20px 15px;
  }
}

.testimonial-box-item-bg .test-button .theme-btn::before {
  background-color: var(--white);
}

.testimonial-box-item-bg .test-button .theme-btn::after {
  background: rgba(255, 255, 255, 0.3);
}

.testimonial-box-item-bg .test-button .theme-btn:hover {
  color: var(--theme);
}

.testimonial-box-item-bg .test-button .theme-btn.style-2 {
  background-color: var(--white);
  color: var(--theme);
}

.testimonial-box-item-bg .test-button .theme-btn.style-2::before {
  background-color: var(--theme);
}

.testimonial-box-item-bg .test-button .theme-btn.style-2::after {
  background-color: var(--theme);
}

.testimonial-box-item-bg .test-button .theme-btn.style-2:hover {
  color: var(--white);
}

.testimonial-section {
  position: relative;
}

.testimonial-section .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1600px) {
  .testimonial-section .right-shape {
    right: -115px;
  }
}

@media (max-width: 1399px) {
  .testimonial-section .right-shape {
    display: none;
  }
}

.testimonial-wrapper-2 {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  margin-top: 48px;
}

@media (max-width: 575px) {
  .testimonial-wrapper-2 {
    margin-top: 30px;
  }
}

.testimonial-wrapper-2 .testimonial-card-item-2 {
  position: relative;
  text-align: center;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgb(245, 216, 62);
}

@media (max-width: 1600px) {
  .testimonial-wrapper-2 .testimonial-card-item-2 {
    padding: 20px;
  }
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-card-item-2 {
    padding: 30px;
  }
}

.testimonial-wrapper-2 .testimonial-card-item-2::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  transform: scale(0.1, 1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: var(--theme2);
  border-radius: 20px;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .content {
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .content .client-image {
  transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .content h3 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  text-transform: capitalize;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .content span {
  font-weight: 500;
  color: rgb(80, 98, 74);
}

.testimonial-wrapper-2 .testimonial-card-item-2 p {
  margin: 0 auto;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
}

@media (max-width: 1600px) {
  .testimonial-wrapper-2 .testimonial-card-item-2 p {
    font-size: 18px;
  }
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-card-item-2 p {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-card-item-2 p {
    font-size: 16px;
  }
}

.testimonial-wrapper-2 .testimonial-card-item-2 .star {
  color: rgb(255, 127, 34);
  margin-top: 10px;
  font-size: 20px;
}

.testimonial-wrapper-2 .testimonial-card-item-2 .star i {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover .content {
  position: relative;
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover .content .client-image {
  transform: rotateY(180deg);
  display: inline-block;
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover p {
  position: relative;
}

.testimonial-wrapper-2 .testimonial-card-item-2:hover .star {
  position: relative;
  color: var(--header);
}

.testimonial-section-2 {
  position: relative;
  z-index: 9;
  padding-top: 240px !important;
}

@media (max-width: 1399px) {
  .testimonial-section-2 {
    padding-top: 100px !important;
  }
}

@media (max-width: 991px) {
  .testimonial-section-2 {
    padding-top: 80px !important;
  }
}

.testimonial-section-2 .client-man {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1600px) {
  .testimonial-section-2 .client-man {
    height: 885px;
  }

  .testimonial-section-2 .client-man img {
    object-fit: cover;
  }
}

@media (max-width: 1399px) {
  .testimonial-section-2 .client-man {
    display: none;
    height: 885px;
  }
}

.testimonial-section-2 .client-man img {
  width: 100%;
  height: 100%;
}

.testimonial-section-2 .testimonial-top-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .testimonial-section-2 .testimonial-top-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.testimonial-section-2 .testimonial-top-item .right-item {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 1199px) {
  .testimonial-section-2 .testimonial-top-item .right-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button {
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 1px solid rgba(47, 47, 47, 0.2);
  padding-left: 50px;
}

@media (max-width: 1199px) {
  .testimonial-section-2 .testimonial-top-item .right-item .arrow-button {
    padding-left: 0;
    border-left: none;
  }
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-prev {
  background-color: var(--header);
  width: 60px;
  height: 60px;
  border-radius: 100px;
  line-height: 60px;
  color: var(--theme);
  font-size: 18px;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-prev img {
  transition: all 0.4s ease-in-out;
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-prev:hover {
  color: var(--header);
  background-color: var(--theme2);
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-prev:hover img {
  filter: grayscale(100%) brightness(0.3) contrast(1.2);
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-next {
  z-index: 999;
  transition: all 0.4s ease-in-out;
  background-color: var(--header);
  width: 60px;
  height: 60px;
  border-radius: 100px;
  line-height: 60px;
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-next img {
  filter: brightness(0) invert(1);
  transition: all 0.4s ease-in-out;
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-next:hover {
  background-color: var(--theme2);
}

.testimonial-section-2 .testimonial-top-item .right-item .arrow-button .array-next:hover img {
  filter: grayscale(100%) brightness(0.3) contrast(1.2);
}

.testimonial-wrapper-3 {
  margin-top: 48px;
}

@media (max-width: 575px) {
  .testimonial-wrapper-3 {
    margin-top: 30px;
  }
}

.testimonial-wrapper-3 .testimonial-bg-box {
  padding: 30px 70px 0;
  border-radius: 10px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-bg-box {
    padding: 30px 30px 0;
  }
}

.testimonial-wrapper-3 .testimonial-bg-box .testimonial-man img {
  width: 100%;
  height: 100%;
}

.testimonial-wrapper-3 .testimonial-bg-box .shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-bg-box .shape {
    display: none;
  }
}

.testimonial-wrapper-3 .testimonial-box {
  border-radius: 10px;
  background-color: var(--white);
  padding: 30px;
  position: relative;
}

.testimonial-wrapper-3 .testimonial-box .arrow-button {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  right: 30px;
  bottom: 25px;
  z-index: 9999;
  background-color: var(--white);
}

.testimonial-wrapper-3 .testimonial-box .arrow-button .array-prev,
.testimonial-wrapper-3 .testimonial-box .arrow-button .array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  background-color: rgba(17, 162, 27, 0.1);
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 999;
}

.testimonial-wrapper-3 .testimonial-box .arrow-button .array-prev img,
.testimonial-wrapper-3 .testimonial-box .arrow-button .array-next img {
  transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-3 .testimonial-box .arrow-button .array-prev:hover,
.testimonial-wrapper-3 .testimonial-box .arrow-button .array-next:hover {
  background-color: var(--theme3);
}

.testimonial-wrapper-3 .testimonial-box .arrow-button .array-prev:hover img,
.testimonial-wrapper-3 .testimonial-box .arrow-button .array-next:hover img {
  filter: brightness(0) invert(1);
}

.testimonial-wrapper-3 .testimonial-box .content .info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-wrapper-3 .testimonial-box .content .info-item .info-text .client-image {
  max-width: 100%;
  margin-bottom: 10px;
}

.testimonial-wrapper-3 .testimonial-box .content .info-item .info-text h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  text-transform: capitalize;
}

.testimonial-wrapper-3 .testimonial-box .content p {
  border-top: 1px solid rgba(47, 47, 47, 0.2);
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  margin-bottom: 35px;
  padding-bottom: 28px;
  padding-top: 25px;
  margin-top: 25px;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--header);
  max-width: 630px;
  line-height: 190%;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-box .content p {
    font-size: 16px;
  }
}

.testimonial-wrapper-3 .testimonial-box .content .star {
  color: rgb(255, 127, 34);
}

.testimonial-section-3 {
  background-color: rgba(17, 162, 27, 0.05);
  position: relative;
}

.testimonial-section-3 .cabage-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1399px) {
  .testimonial-section-3 .cabage-shape {
    display: none;
  }
}

.testimonial-wrapper-4 {
  margin-top: 48px;
}

.testimonial-wrapper-4 .testimonial-image {
  position: relative;
  z-index: 9;
}

.testimonial-wrapper-4 .testimonial-image::before {
  position: absolute;
  content: "";
  border: 1px solid var(--theme3);
  border-radius: 10px;
  top: -8px;
  right: -12px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-image::before {
    display: none;
  }
}

.testimonial-wrapper-4 .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.testimonial-wrapper-4 .testimonial-box-items-4 {
  background-color: var(--bg3);
  padding: 70px 60px;
  border-radius: 10px;
  margin-left: 30px;
  position: relative;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-box-items-4 {
    margin-left: 0;
    padding: 30px;
  }
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: -20px;
  right: -20px;
  transform: translateY(-50%);
  z-index: 99;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button {
    display: none;
  }
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-prev,
.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--bg);
  border: 1px solid var(--theme3);
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 999;
  display: inline-block;
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-prev img,
.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-next img {
  transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-prev:hover,
.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-next:hover {
  background-color: var(--theme3);
}

.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-prev:hover img,
.testimonial-wrapper-4 .testimonial-box-items-4 .arrow-button .array-next:hover img {
  filter: brightness(0) invert(1);
}

.testimonial-wrapper-4 .testimonial-box-items-4 .content h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-box-items-4 .content h3 {
    font-size: 25px;
  }
}

.testimonial-wrapper-4 .testimonial-box-items-4 .content p {
  margin: 0;
  font-size: 20px;
  line-height: 2;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-box-items-4 .content p {
    font-size: 16px;
  }
}

.testimonial-wrapper-4 .testimonial-box-items-4 .content .testi-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  align-items: center;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-box-items-4 .content .testi-bottom {
    flex-wrap: wrap;
    gap: 25px;
  }
}

.testimonial-wrapper-4 .testimonial-box-items-4 .content .testi-bottom .cont h4 {
  font-size: 28px;
  margin-bottom: 5px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-box-items-4 .content .testi-bottom .cont h4 {
    font-size: 22px;
  }
}

.array-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
}

.array-button .array-prev {
  border-radius: 100px;
  border: 1px solid #E6E8EB;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}

.array-button .array-next {
  border-radius: 100px;
  background-color: var(--theme);
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.array-button .array-next:hover {
  background-color: var(--header);
}

.swiper-dot {
  position: relative;
  text-align: center;
  margin-top: 45px;
}

@media (max-width: 1399px) {
  .swiper-dot {
    margin-top: 30px;
  }
}

.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: var(--header);
  opacity: 1;
  border-radius: 10px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 100px;
  border: 1px solid var(--theme);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--bg);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.fix {
  overflow: hidden;
}

/* Allow fixed-position overlays (video modal) to escape .fix clipping */
body.vmodal-open .fix {
  overflow: visible;
}

.ralt {
  position: relative;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.p-relative {
  position: relative;
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple-2 {
  position: relative;
}

.ripple-2::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 60%;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-animation: borderanimate2 2s linear infinite;
  animation: borderanimate2 2s linear infinite;
  z-index: -1;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.ripple-2::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 60%;
  height: 60%;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-animation: borderanimate2 2s linear infinite;
  animation: borderanimate2 2s linear infinite;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.page-nav-wrap {
  margin-top: 60px;
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme3);
  color: var(--white);
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: var(--header);
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-family: "Instrument Sans", sans-serif;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme3);
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme3);
  color: var(--white);
}

.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

.actually-area .bg-area {
  position: absolute;
  top: 40%;
  left: 51%;
  transform: translate(-50%, -50%) scale(0);
  background-color: var(--header);
  width: 250px;
  height: 250px;
  border-radius: 50%;
}

.tilt_scale {
  transition: transform 0.2s ease;
  display: inline-block;
}

.no-break {
  white-space: nowrap;
  /* Keeps "My Background and Expertise" together */
}

/* Optional: styling for words split animation */
.split-word {
  display: inline-block;
  /* Required for animation */
  opacity: 0;
}

.reveal-img {
  opacity: 0;
  /* start invisible */
  transform: translateX(-600px);
  /* start left */
}

.arrow-path {
  width: 220px;
  height: 130px;
  color: black;
  stroke-dasharray: 1000;
  animation: draw 10s linear infinite;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.image-wrapper {
  position: relative;
  transition: all 0.8s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.animated-image {
  display: block;
  transform: translateY(100%);
  opacity: 0;
}

/* preloader শেষ হলে active class যোগ হবে */
.image-wrapper.active .animated-image {
  transform: translateY(0);
  opacity: 1;
}

/* Ensure the link inherits styles from its parent */
.wt-about-title2 a {
  display: inline-block;
  /* Needed for transform animations */
  color: inherit;
  text-decoration: inherit;
}

.project-section-3 .line-ani {
  margin-top: -25px;
}

@media (max-width: 1399px) {
  .project-section-3 .line-ani {
    display: none;
  }
}

.brand-container {
  max-width: 1660px;
  margin: 0 auto;
}

.gt-text-scale-anim {
  white-space: pre-wrap;
  transform-origin: top left;
}

.gt-letter-span {
  display: inline-block;
}

.gt-word-span {
  display: inline-block;
}

.p-relative {
  position: relative;
  z-index: 99;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.custom-container {
  max-width: 1800px;
  margin: 0 auto;
}

.custom-container-2 {
  max-width: 1752px;
  margin: 0 auto;
}

.custom-container-3 {
  max-width: 1635px;
  margin: 0 auto;
}

.p-relative {
  position: relative;
}

.tp-clip-anim {
  position: relative;
  overflow: hidden;
}

.tp-clip-anim .mask {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  opacity: 0;
  animation: reveal 1s forwards;
}

.tp-clip-anim .mask-1 {
  clip-path: inset(0 88.8% 0 0%);
  animation-delay: 0.1s;
}

.tp-clip-anim .mask-2 {
  clip-path: inset(0 77.7% 0 11.1%);
  animation-delay: 0.2s;
}

.tp-clip-anim .mask-3 {
  clip-path: inset(0 66.6% 0 22.2%);
  animation-delay: 0.3s;
}

.tp-clip-anim .mask-4 {
  clip-path: inset(0 55.5% 0 33.3%);
  animation-delay: 0.4s;
}

.tp-clip-anim .mask-5 {
  clip-path: inset(0 44.4% 0 44.4%);
  animation-delay: 0.5s;
}

.tp-clip-anim .mask-6 {
  clip-path: inset(0 33.3% 0 55.5%);
  animation-delay: 0.6s;
}

.tp-clip-anim .mask-7 {
  clip-path: inset(0 22.2% 0 66.6%);
  animation-delay: 0.7s;
}

.tp-clip-anim .mask-8 {
  clip-path: inset(0 11.1% 0 77.7%);
  animation-delay: 0.8s;
}

.tp-clip-anim .mask-9 {
  clip-path: inset(0 0% 0 88.8%);
  animation-delay: 0.9s;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(1.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.swiper-dot4 {
  text-align: center;
}

.swiper-dot4 .swiper-pagination-bullet {
  width: 22px;
  height: 10px;
  transition: 0.6s;
  background-color: var(--theme2);
  border-radius: 100px !important;
  position: relative;
  opacity: 1;
}

.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme2);
  transition: 0.6s;
  position: relative;
  width: 47px;
  border-radius: 100px !important;
}

.drone-water {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 650px;
  pointer-events: none;
  z-index: 1;
}

.drone-water .spray {
  position: absolute;
  top: 90px;
  width: 6px;
  height: 480px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  filter: blur(1px);
  animation: waterFall 1.5s linear infinite;
  opacity: 0.85;
}

.drone-water .spray::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -14px;
  width: 35px;
  height: 35px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 70%);
  filter: blur(6px);
}

.drone-water .spray.left {
  left: 150px;
}

.drone-water .spray.left-2 {
  left: 190px;
  animation-delay: 0.3s;
}

.drone-water .spray.right {
  right: 150px;
}

.drone-water .spray.right-2 {
  right: 190px;
  animation-delay: 0.5s;
}

.hero-portfolio-revealing-slider {
  --controlSize: 120px;
  --slidingAT: 1.3s;
}

.image-trail-animation {
  width: 100%;
  position: relative;
}

.bg-2-color {
  color: var(--bg2);
}

.radius {
  border-radius: 4px;
}

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



.logo img {
  height: 45px;
  width: auto;
  display: block;
}

.header-main {
  align-items: center;
}


/* Hero text & spacing */
.hero-portfolio-revealing-slide-heading {
  font-size: clamp(34px, 4.5vw, 68px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
}

.hero-portfolio-revealing-slide-content span {
  margin-bottom: 8px;
}

.hero-portfolio-revealing-slide-content p {
  margin-top: 10px;
}

.hero-button {
  margin-top: 20px;
}

.hero-portfolio-revealing-slide-content {
  /* max-width: 720px; */
  max-width: 900px;
}


/* ============================================================
   HERO COMPLETE FIX
   ============================================================ */

/* ============================================================
   HERO COMPLETE FIX
   ============================================================ */

.hero-section.heroMain {
  position: relative !important;
  width: 100% !important;
  overflow: visible !important;
  display: block !important;
}

/* Desktop height */
@media (min-width: 768px) {
  .hero-section.heroMain {
    height: 100vh !important;
    min-height: 600px !important;
  }
}

/* Mobile height — explicit px so controls can anchor correctly */
@media (max-width: 767px) {
  .hero-section.heroMain {
    height: 590px !important;
    min-height: unset !important;
  }
}

@media (max-width: 575px) {
  .hero-section.heroMain {
    height: 685px !important;
  }
}

.heroMain .hero-portfolio-revealing-slider {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: visible !important;
}

.heroMain .hero-portfolio-revealing-slider-slides {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

/* All slides: stacked, hidden */
.heroMain .hero-portfolio-revealing-slide {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  transform: none !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: 1 !important;
  overflow: hidden !important;
  transition: opacity 0.9s ease, visibility 0s 0.9s !important;
  pointer-events: none !important;
}

/* Active slide: visible, pointer-events:none so arrow buttons are clickable */
.heroMain .hero-portfolio-revealing-slide.s-active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  transition: opacity 0.9s ease !important;
  pointer-events: none !important;
}

/* Slide inner */
.heroMain .hero-portfolio-revealing-slide-inner {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background-attachment: scroll !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
}

/* Dark overlay */
.heroMain .hero-portfolio-revealing-slide-inner::before {
  position: absolute !important;
  inset: 0 !important;
  content: "" !important;
  background: rgba(0, 0, 0, 0.25) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* Re-enable pointer events only for the actual content/buttons */
.heroMain .hero-portfolio-revealing-slide-content,
.heroMain .hero-portfolio-revealing-slide-inner .container {
  position: relative !important;
  z-index: 2 !important;
  pointer-events: auto !important;
}

/* Bottom bar */
.heroMain .hero-border-item {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 30 !important;
  display: flex !important;
  pointer-events: auto !important;
}

/* Nav controls: highest z-index, fixed position, always clickable */
.heroMain .hero-portfolio-revealing-slider-control {
  position: absolute !important;
  top: 50% !important;
  left: 30px !important;
  right: auto !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
  z-index: 30 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  background: rgba(0, 0, 0, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.3s ease, border-color 0.3s ease !important;
}

.heroMain .hero-portfolio-revealing-slider-control:hover {
  background: var(--theme2, #F5D83E) !important;
  border-color: var(--theme2, #F5D83E) !important;
}

.heroMain .hero-portfolio-revealing-slider-control-right {
  left: auto !important;
  right: 30px !important;
}

/* Header contact icons (phone + email) */
.header-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white, #fff);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 6px;
  transition: color 0.2s ease;
  white-space: nowrap;
  text-transform: none;
}

.header-contact-item span,
.header-contact-item * {
  text-transform: none;
}

.header-contact-item i {
  font-size: 18px;
  flex-shrink: 0;
}

.header-contact-item:hover {
  color: #F5D83E;
}

.header-1.sticky .header-contact-item {
  color: var(--heading, #1a1a1a);
}

.header-1.sticky .header-contact-item:hover {
  color: #F5D83E;
}

/* ── Floating WhatsApp + Back-to-top stack ── */
.whatsapp-float,
.back-to-top {
  position: fixed !important;
  right: 30px !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
}

/* WhatsApp always visible at bottom-right */
.whatsapp-float {
  bottom: 30px !important;
  background-color: #25D366 !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

.whatsapp-float:hover {
  background-color: #1da851 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
}

/* Back-to-top: above WhatsApp, hidden until .show is added by JS */
.back-to-top {
  bottom: 90px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(20px) !important;
}

.back-to-top.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

@media (max-width: 575px) {
  .whatsapp-float {
    display: flex !important;
  }

  .back-to-top {
    display: flex !important;
  }
}

* {
  cursor: default !important;
}

a,
button {
  cursor: pointer !important;
}

/* Hide custom cursor elements */
.mouseCursor,
.cursor-outer,
.cursor-inner {
  display: none !important;
}

/* Preloader hard fallback */
@keyframes forceHidePreloader {

  0%,
  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

#agri-preloader {
  animation: forceHidePreloader 0.6s forwards !important;
}



/* Default state — dark stroke on white/yellow card */
.feature-box-item-2 .icon svg {
  stroke: #1a1a1a;
  transition: stroke 0.3s ease;
}

/* Hover & active state — white stroke on dark card */
.feature-box-item-2.active .icon svg,
.feature-box-item-2:hover .icon svg {
  stroke: yellowgreen;
}




/* ── Scroll-hijack shell ── */
.ps-scroll-shell {
  height: calc(100vh + var(--extra-height, 660px));
  position: relative;
}

.ps-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* ── Section ── */
.ps-section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding: 60px 40px; */
  padding: 40px;
  background: #f5f6f4;
  position: relative;
}

/* ── Heading ── */
.ps-heading {
  text-align: center;
  margin-bottom: 40px;
  flex-shrink: 0;
}

.ps-heading .ps-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  color: #50624a;
  margin-bottom: 16px;
}

.ps-heading h2 {
  font-size: clamp(32px, 3vw, 54px) !important;
  font-weight: 500 !important;
  color: #464646 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.3px !important;
}

/* ── Two-column grid ── */
.ps-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  min-height: 0;
}

/* ── Left: cards ── */
.ps-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.ps-card {
  position: relative;
  /* border-radius: 8px; */
  overflow: hidden;
  cursor: pointer;
  flex: 1;
  min-height: 0;
  text-decoration: none;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ps-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.ps-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.ps-card:hover .ps-card-bg {
  transform: scale(1.04);
}

.ps-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 40, 28, 0.65);
  /* border-radius: 8px; */
  z-index: 1;
  transition: background 0.3s ease;
}

.ps-card.is-active::before {
  background: rgba(20, 30, 18, 0.46);
}

.ps-card-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 24px;
}

.ps-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
  transition: background 0.3s ease;
}

.ps-card.is-active .ps-card-dot {
  background: #f5d83e;
}

.ps-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.ps-card.is-active .ps-card-title {
  color: #f5d83e;
}

.ps-card-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ps-card-tags span {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  /* border-radius: 100px; */
  padding: 3px 12px;
  transition: border-color 0.3s ease;
}

.ps-card.is-active .ps-card-tags span {
  border-color: rgba(245, 216, 62, 0.55);
}

/* ── Right: preview ── */
.ps-preview {
  position: relative;
  /* border-radius: 10px; */
  overflow: hidden;
}

.ps-preview-link {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.ps-preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
  /* border-radius: 14px; */
}

.ps-preview-img.is-active {
  opacity: 1;
}

.ps-preview-num {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 48px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(80, 127, 58, 0.7);
  z-index: 2;
  pointer-events: none;
  line-height: 1;
}

/* Progress bar */
.ps-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 3;
  border-radius: 0 0 14px 14px;
}

.ps-progress-bar {
  height: 100%;
  background: #f5d83e;
  border-radius: 0 0 0 14px;
  transition: width 0.4s ease;
  width: 25%;
}

/* ── Scroll hint ── */
.ps-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 10;
}

.ps-scroll-hint.is-hidden {
  opacity: 0;
}

.ps-scroll-hint span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #50624a;
}

.ps-scroll-hint-arrow {
  width: 16px;
  height: 16px;
  border-right: 2px solid #50624a;
  border-bottom: 2px solid #50624a;
  transform: rotate(45deg);
  animation: psHintBounce 1.1s ease infinite;
}

@keyframes psHintBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 1;
  }

  50% {
    transform: rotate(45deg) translateY(4px);
    opacity: 0.4;
  }
}

/* ── Mobile / tablet: disable hijack, stack cards ── */
@media (max-width: 991px) {
  .ps-scroll-shell {
    height: auto !important;
  }

  .ps-sticky {
    position: relative;
    height: auto;
  }

  .ps-section {
    height: auto;
    padding: 50px 20px;
  }

  .ps-preview {
    display: none !important;
  }

  .ps-layout {
    grid-template-columns: 1fr;
  }

  .ps-cards {
    height: auto;
  }

  .ps-card {
    flex: none;
    height: 150px;
  }

  .ps-scroll-hint {
    display: none;
  }
}

@media (max-width: 575px) {
  .ps-heading h2 {
    font-size: 24px !important;
  }

  .ps-card {
    height: 130px;
  }

  .ps-card-title {
    font-size: 16px;
  }
}










.cert-slider-outer {
  overflow: hidden;
  width: 100%;
  padding: 0px 0;
}

.cert-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: certScroll 12s linear infinite;
}

.cert-track:hover {
  animation-play-state: paused;
}

.cert-slide {
  flex-shrink: 0;
  width: 220px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0px;
  /* padding: 5px; */
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 0px;
}

@keyframes certScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}



@media (max-width: 768px) {
  .cert-slide {
    width: 140px;
    padding: 12px;
    margin-top: 30px;
  }

  .cert-slide img {
    height: auto;
  }

  .cert-track {
    gap: 16px;
  }
}















/* ── Container alignment – mirrors .header-1 .container-fluid exactly ── */
.new-cta-banner .container-fluid,
.new-footer .container-fluid {
  padding-left: 120px;
  padding-right: 120px;
}

/* ============================================================
   FOOTER STYLES – Light Mode · Devgad Agro Foods
   ============================================================ */

/* ── CTA Banner ── */
.new-cta-banner {
  background: #3a5c20;
  padding: 0;
}

.new-cta-inner {
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  min-height: 110px;
}

.new-cta-text h2 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 4px;
  text-transform: none;
  line-height: 1.25;
  text-transform: uppercase;
}

.new-cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  text-transform: none;
  margin: 0;
}

.new-cta-actions {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-shrink: 0;
}

.new-cta-actions .new-cta-phone,
.new-cta-actions .cta-button {
  flex: 1 1 0% !important;
  min-width: 0 !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 16px 28px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  white-space: nowrap;
  box-sizing: border-box !important;
  border-radius: 0 !important;
}

.new-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 13px 22px;
  /* border-radius: 8px; */
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;


  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 600;
  font-size: 14px;

  padding: 10px 30px 10px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  gap: 0px;
  text-align: center;

  z-index: 1;
  border-radius: 0px;
  text-transform: uppercase;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;


}

.new-cta-phone i {
  font-size: 17px;
  color: #F5D83E;
}

.new-cta-phone:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}



/* ── Main Footer ── */
.new-footer {
  background: #ffffff !important;
  color: #2f2f2f;
  /* border-top: 1px solid #e8ede4; */
  padding: 0;
}

.new-footer-inner {
  padding: 64px 0 52px;
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 60px;
  align-items: start;
}

/* ── Brand Column ── */
.new-footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1;
}

.new-footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.new-footer-tagline {
  font-size: 16px;
  color: #6b7a62;
  line-height: 28px;
  margin-bottom: 24px;
  text-transform: none;
  font-weight: 400;
  max-width: 260px;
}

.new-footer-socials {
  display: flex;
  gap: 8px;
}

.new-footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  /*background: #f0f4ec;
  border: 1px solid #dde8d5; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #50624a;
  font-size: 24px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.new-footer-socials a:hover {
  background: #3a5c20;
  border-color: #3a5c20;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Nav Columns ── */
.new-footer-col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #9aab90;
  margin-bottom: 20px;
  line-height: 1;
}

.new-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-footer-links li {
  margin-bottom: 12px;
}

.new-footer-links li a {
  font-size: 14px;
  line-height: 28px;
  color: #6c6c6c;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.new-footer-links li a:hover {
  color: #3a5c20;
}

/* ── Contact List ── */
.new-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
}

.new-footer-contact-list li i {
  font-size: 14px;
  color: #6c6c6c;
  margin-top: 8px;
  flex-shrink: 0;
}

.new-footer-contact-list li a,
.new-footer-contact-list li span {
  color: #6c6c6c;
  text-decoration: none;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  line-height: 28px;
  transition: color 0.2s ease;
}

.new-footer-contact-list li a:hover {
  color: #3a5c20;
}

/* ── Footer Bottom Bar ── */
.new-footer-bottom {
  padding: 18px 0;
  border-top: 1px solid #e8ede4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.new-footer-bottom p {
  font-size: 14px;
  color: #9aab90;
  text-transform: none;
  font-weight: 400;
  margin: 0;
}

.new-footer-bottom a {
  font-size: 14px;
  color: #9aab90;
  text-transform: none;
  font-weight: 400;
  margin: 0;
}




/* ── Responsive ── */
@media (max-width: 1600px) {

  .new-cta-banner .container-fluid,
  .new-footer .container-fluid {
    padding-left: 90px;
    padding-right: 90px;
  }

  .new-footer-inner {
    padding-top: 64px;
    padding-bottom: 52px;
  }
}

@media (max-width: 1399px) {

  .new-cta-banner .container-fluid,
  .new-footer .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }

  .new-footer-inner {
    padding-top: 56px;
    padding-bottom: 44px;
    grid-template-columns: 240px repeat(3, 1fr);
    gap: 44px;
  }
}

@media (max-width: 1199px) {

  .new-cta-banner .container-fluid,
  .new-footer .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }

  .new-footer-inner {
    padding-top: 50px;
    padding-bottom: 40px;
    grid-template-columns: 220px repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 991px) {

  .new-cta-banner .container-fluid,
  .new-footer .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }

  .new-cta-inner {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .new-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding-top: 44px;
    padding-bottom: 36px;
  }

  .new-footer-brand {
    grid-column: 1 / -1;
  }

  .new-footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 575px) {

  .new-cta-banner .container-fluid,
  .new-footer .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .new-cta-inner {
    padding-top: 24px;
    padding-bottom: 24px;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    gap: 16px;
  }

  .new-cta-actions {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: stretch;
  }

  .new-cta-phone,
  .new-cta-btn {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: 0 !important;
    justify-content: center !important;
    text-align: center;
    border-radius: 0 !important;
    white-space: nowrap;
    font-size: 11px !important;
    padding: 12px 6px !important;
    letter-spacing: 0 !important;
  }

  .new-footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 36px;
    padding-bottom: 28px;
    gap: 28px 24px;
  }

  /* Brand: full width row 1 — left aligned */
  .new-footer-brand {
    grid-column: 1 / -1;
    text-align: left;
    align-items: flex-start;
  }

  .new-footer-socials {
    justify-content: flex-start;
  }

  .new-footer-tagline {
    text-align: left;
    max-width: 100%;
  }

  /* Company col: left half row 2 — left aligned */
  .new-footer-col:nth-child(2) {
    grid-column: 1;
    text-align: left;
  }

  /* Products col: right half row 2 — left aligned */
  .new-footer-col:nth-child(3) {
    grid-column: 2;
    text-align: left;
  }

  /* Contact col: full width row 3 — left aligned */
  .new-footer-col:nth-child(4) {
    grid-column: 1 / -1;
    text-align: left;
  }

  /* Left-align the contact list items */
  .new-footer-contact-list li {
    justify-content: flex-start;
  }

  .new-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 4px;
  }
}




.hero-portfolio-revealing-slide-inner {
  position: relative;
}

.hero-portfolio-revealing-slide-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(16, 70, 35, 0.9) 0%,
      rgba(40, 120, 60, 0.65) 50%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.hero-portfolio-revealing-slide-content {
  position: relative;
  z-index: 2;
}



.hero-portfolio-revealing-slide-heading {
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.hero-portfolio-revealing-slide-content p {
  color: #f1f1f1;
}


.hero-portfolio-revealing-slider-control i {
  font-size: 22px;
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

/* ============================================================
   EQUAL CTA FIXES
   ============================================================ */

/* ── Hero: both CTAs equal size ── */
.heroMain .hero-portfolio-revealing-slide .hero-button .cta-button {
  min-width: 220px !important;
  width: 270px !important;
  padding: 16px 24px !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 13px !important;
  letter-spacing: 1px !important;
  box-sizing: border-box !important;
}

/* ── Footer CTA: phone + button equal size ── */
.new-cta-phone {
  min-width: 0 !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

.new-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  background: #F5D83E !important;
  color: #1e300a !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 16px 24px !important;
  min-width: 0 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  letter-spacing: 0.15px !important;
  transition: background 0.25s ease, transform 0.2s ease !important;
  box-sizing: border-box !important;
}

.new-cta-btn:hover {
  background: #e8cc2a !important;
  color: #1e300a !important;
}


@media (max-width: 575px) {
  .heroMain .hero-portfolio-revealing-slider-control {
    top: auto !important;
    bottom: 40px !important;
    left: 20px !important;
    right: auto !important;
    transform: none !important;
    margin: 0 !important;
    display: flex !important;
  }

  .heroMain .hero-portfolio-revealing-slider-control-right {
    top: auto !important;
    bottom: 40px !important;
    left: auto !important;
    right: 20px !important;
    transform: none !important;
    margin: 0 !important;
  }
}

/* ============================================================
   PAGE-SPECIFIC STYLES
   Each block scoped to its page via body class (body.page-*)
   ============================================================ */

/* ──────────────────────────────────────────────────────────────
   INNER PAGE HERO — shared base (all pages except index)
   Fixed height so every page is identical in size regardless of title length.
   ────────────────────────────────────────────────────────────── */
.page-about .pg-hero,
.page-mango .pg-hero,
.page-sweet-corn .pg-hero,
.page-baby-corn .pg-hero,
.page-exports .pg-hero,
.page-infrastructure .pg-hero,
.page-contact .pg-hero,
.page-products .pg-hero {
  height: 82vh;
  min-height: 560px;
  max-height: 780px;
  position: relative;
  overflow: hidden;
}

/* Gradient overlay — neutral black fade left-to-right, same on all inner pages.
   Black-based (not tinted green) so photo colours and textures show through. */
.page-about .pg-hero::before,
.page-mango .pg-hero::before,
.page-sweet-corn .pg-hero::before,
.page-baby-corn .pg-hero::before,
.page-exports .pg-hero::before,
.page-infrastructure .pg-hero::before,
.page-contact .pg-hero::before,
.page-products .pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.45) 50%,
      rgba(0, 0, 0, 0.10) 100%);
  z-index: 1;
}

/* Hero background images — one per page */
.page-about .pg-hero {
  background: url('../img/hero/products.jpg') center/cover no-repeat;
}

.page-mango .pg-hero {
  background: url('../img/hero/prd_mango.jpg') center/cover no-repeat;
}

.page-sweet-corn .pg-hero {
  background: url('../img/hero/prd_sweet-corn.jpg') center/cover no-repeat;
}

.page-baby-corn .pg-hero {
  background: url('../img/hero/prd_baby-corn.jpg') center/cover no-repeat;
}

.page-beetroot .pg-hero {
  background: url('../img/hero/prd_beetroot.jpg') center/cover no-repeat;
}

.page-exports .pg-hero {
  background: url('../img/hero/products.jpg') center/cover no-repeat;
}

.page-infrastructure .pg-hero {
  background: url('../img/hero/infra.jpg') center/cover no-repeat;
}

.page-contact .pg-hero {
  background: url('../img/hero/products.jpg') center/cover no-repeat;
}

.page-products .pg-hero {
  background: url('../img/hero/products.jpg') center/cover no-repeat;
}

/* Inner wrapper — full width, sits above overlay */
.page-about .pg-hero-inner,
.page-mango .pg-hero-inner,
.page-sweet-corn .pg-hero-inner,
.page-baby-corn .pg-hero-inner,
.page-exports .pg-hero-inner,
.page-infrastructure .pg-hero-inner,
.page-contact .pg-hero-inner,
.page-products .pg-hero-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 48px;
}

/* Content block — left aligned, consistent padding */
.page-about .pg-hero-content,
.page-mango .pg-hero-content,
.page-sweet-corn .pg-hero-content,
.page-baby-corn .pg-hero-content,
.page-exports .pg-hero-content,
.page-infrastructure .pg-hero-content,
.page-contact .pg-hero-content,
.page-products .pg-hero-content {
  /* max-width: 640px; */
  max-width: 80%;
  text-align: left;
}

/* Sub-label above h1 */
.page-about .pg-hero-content span,
.page-mango .pg-hero-content span,
.page-sweet-corn .pg-hero-content span,
.page-baby-corn .pg-hero-content span,
.page-exports .pg-hero-content span,
.page-infrastructure .pg-hero-content span,
.page-contact .pg-hero-content span,
.page-products .pg-hero-content span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 16px;
}

/* H1 */
.page-about .pg-hero-content h1,
.page-mango .pg-hero-content h1,
.page-sweet-corn .pg-hero-content h1,
.page-baby-corn .pg-hero-content h1,
.page-exports .pg-hero-content h1,
.page-infrastructure .pg-hero-content h1,
.page-contact .pg-hero-content h1,
.page-products .pg-hero-content h1 {
  font-size: clamp(34px, 4.5vw, 68px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
}

/* Accent colour on <em> inside h1 */
.page-about .pg-hero-content h1 em,
.page-mango .pg-hero-content h1 em,
.page-sweet-corn .pg-hero-content h1 em,
.page-baby-corn .pg-hero-content h1 em,
.page-exports .pg-hero-content h1 em,
.page-infrastructure .pg-hero-content h1 em,
.page-contact .pg-hero-content h1 em,
.page-products .pg-hero-content h1 em {
  font-style: normal;
  color: var(--theme2);
}

/* Body copy */
.page-about .pg-hero-content p,
.page-mango .pg-hero-content p,
.page-sweet-corn .pg-hero-content p,
.page-baby-corn .pg-hero-content p,
.page-exports .pg-hero-content p,
.page-infrastructure .pg-hero-content p,
.page-contact .pg-hero-content p,
.page-products .pg-hero-content p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  text-transform: none;
  margin-bottom: 0;
}

/* CTA row — left aligned, consistent gap */
.page-about .pg-hero-content .hero-button,
.page-mango .pg-hero-content .hero-button,
.page-sweet-corn .pg-hero-content .hero-button,
.page-baby-corn .pg-hero-content .hero-button,
.page-exports .pg-hero-content .hero-button,
.page-infrastructure .pg-hero-content .hero-button,
.page-contact .pg-hero-content .hero-button,
.page-products .pg-hero-content .hero-button {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  justify-content: flex-start;
}



/* ── Mobile hero — balanced spacing ── */
@media (max-width: 767px) {

  /* Reduced height — content-driven, not full viewport */
  .page-about .pg-hero,
  .page-mango .pg-hero,
  .page-sweet-corn .pg-hero,
  .page-baby-corn .pg-hero,
  .page-exports .pg-hero,
  .page-infrastructure .pg-hero,
  .page-contact .pg-hero,
  .page-products .pg-hero {
    height: auto;
    min-height: 65vh;
    max-height: none;
  }

  /* Inner: clears mobile header, centred vertically, safe side padding */
  .page-about .pg-hero-inner,
  .page-mango .pg-hero-inner,
  .page-sweet-corn .pg-hero-inner,
  .page-baby-corn .pg-hero-inner,
  .page-exports .pg-hero-inner,
  .page-infrastructure .pg-hero-inner,
  .page-contact .pg-hero-inner,
  .page-products .pg-hero-inner {
    padding-top: 80px;
    padding-bottom: 48px;
    padding-left: 16px;
    padding-right: 16px;
    justify-content: center;
  }

  /* Stronger overlay on mobile so text stays readable regardless of image */
  .page-about .pg-hero::before,
  .page-mango .pg-hero::before,
  .page-sweet-corn .pg-hero::before,
  .page-baby-corn .pg-hero::before,
  .page-exports .pg-hero::before,
  .page-infrastructure .pg-hero::before,
  .page-contact .pg-hero::before,
  .page-products .pg-hero::before {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.30) 100%);
  }

  /* Content: constrained width, comfortable spacing */
  .page-about .pg-hero-content,
  .page-mango .pg-hero-content,
  .page-sweet-corn .pg-hero-content,
  .page-baby-corn .pg-hero-content,
  .page-exports .pg-hero-content,
  .page-infrastructure .pg-hero-content,
  .page-contact .pg-hero-content,
  .page-products .pg-hero-content {
    max-width: 100%;
  }

  /* Sub-label: smaller on mobile */
  .page-about .pg-hero-content span,
  .page-mango .pg-hero-content span,
  .page-sweet-corn .pg-hero-content span,
  .page-baby-corn .pg-hero-content span,
  .page-exports .pg-hero-content span,
  .page-infrastructure .pg-hero-content span,
  .page-contact .pg-hero-content span,
  .page-products .pg-hero-content span {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  /* H1: tighter line-height, less bottom margin */
  .page-about .pg-hero-content h1,
  .page-mango .pg-hero-content h1,
  .page-sweet-corn .pg-hero-content h1,
  .page-baby-corn .pg-hero-content h1,
  .page-exports .pg-hero-content h1,
  .page-infrastructure .pg-hero-content h1,
  .page-contact .pg-hero-content h1,
  .page-products .pg-hero-content h1 {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  /* Body copy: tighter */
  .page-about .pg-hero-content p,
  .page-mango .pg-hero-content p,
  .page-sweet-corn .pg-hero-content p,
  .page-baby-corn .pg-hero-content p,
  .page-exports .pg-hero-content p,
  .page-infrastructure .pg-hero-content p,
  .page-contact .pg-hero-content p,
  .page-products .pg-hero-content p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 100%;
  }

  /* CTA row: inline, equal width, compact */
  .page-about .pg-hero-content .hero-button,
  .page-mango .pg-hero-content .hero-button,
  .page-sweet-corn .pg-hero-content .hero-button,
  .page-baby-corn .pg-hero-content .hero-button,
  .page-exports .pg-hero-content .hero-button,
  .page-infrastructure .pg-hero-content .hero-button,
  .page-contact .pg-hero-content .hero-button,
  .page-products .pg-hero-content .hero-button {
    margin-top: 24px;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .page-about .pg-hero-content .hero-button .cta-button,
  .page-mango .pg-hero-content .hero-button .cta-button,
  .page-sweet-corn .pg-hero-content .hero-button .cta-button,
  .page-baby-corn .pg-hero-content .hero-button .cta-button,
  .page-exports .pg-hero-content .hero-button .cta-button,
  .page-infrastructure .pg-hero-content .hero-button .cta-button,
  .page-contact .pg-hero-content .hero-button .cta-button,
  .page-products .pg-hero-content .hero-button .cta-button {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 10px;
    font-size: 12px;
    justify-content: center;
    text-align: center;
  }
}


/* ──────────────────────────────────────────
   ABOUT.HTML — non-hero styles
   ────────────────────────────────────────── */
.page-about .pg-hero h1 {
  font-size: clamp(34px, 4.5vw, 68px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
}

.page-about .pg-hero h1 em {
  font-style: normal;
  color: var(--theme2);
}

.page-about .pg-hero p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .72);
  max-width: 500px;
  text-transform: none;
}

/* Story section left — image container */
.page-about .story-founded-card {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid rgba(80, 98, 74, .1);
}

/* Image placeholder shown until real image is dropped in */
.page-about .story-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(80, 98, 74, .3);
}

.page-about .story-img-placeholder i {
  font-size: 56px;
}

.page-about .story-img-placeholder span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.page-about .story-year-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  padding: 14px 22px;
  box-shadow: var(--box-shadow);
}

.page-about .story-year-badge .year {
  font-size: 28px;
  font-weight: 800;
  color: var(--header);
  line-height: 1;
  display: block;
}

.page-about .story-year-badge .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  display: block;
  margin-top: 4px;
}

/* Story info cards */
.page-about .story-card {
  background: var(--bg);
  border: 1px solid rgba(80, 98, 74, .12);
  padding: 20px;
  height: 100%;
  transition: border-color .25s, box-shadow .25s;
}

.page-about .story-card:hover {
  border-color: var(--theme2);
  box-shadow: var(--box-shadow);
}

.page-about .story-card-icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
  color: #3a5c20;
}

.page-about .story-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.page-about .story-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  text-transform: none;
}

/* ── ALTERNATING VERTICAL TIMELINE ── */
.page-about .v-timeline {
  position: relative;
  padding: 8px 0;
}

/* Central spine */
.page-about .v-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(80, 98, 74, .15);
  transform: translateX(-50%);
}

.page-about .v-item {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0 32px;
  align-items: start;
  margin-bottom: 64px;
  position: relative;
}

.page-about .v-item:last-child {
  margin-bottom: 0;
}

/* Left card (odd items) */
.page-about .v-left {
  grid-column: 1;
  text-align: right;
  padding-right: 8px;
  padding-top: 10px;
}

.page-about .v-right {
  grid-column: 3;
  text-align: left;
  padding-left: 8px;
  padding-top: 10px;
}

.page-about .v-empty {
  /* placeholder on the opposite side */
}

/* Centre dot */
.page-about .v-dot {
  grid-column: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(80, 98, 74, .2);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  transition: border-color .3s, background .3s, color .3s, box-shadow .3s;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  justify-self: center;
}

.page-about .v-item.highlight .v-dot {
  border-color: var(--theme2);
  background: var(--theme2);
  color: var(--header);
  box-shadow: 0 4px 20px rgba(245, 216, 62, .4);
}

/* Content card */
.page-about .v-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .1);
  padding: 24px 28px;
  position: relative;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}

.page-about .v-card:hover {
  box-shadow: var(--box-shadow);
  border-color: rgba(80, 98, 74, .2);
  transform: translateY(-2px);
}

/* Arrow pointing toward spine */
.page-about .v-left .v-card::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid rgba(80, 98, 74, .1);
}

.page-about .v-right .v-card::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid rgba(80, 98, 74, .1);
}

/* Highlight items get yellow left border on card */
.page-about .v-item.highlight .v-card {
  border-top: 3px solid var(--theme2);
}

.page-about .v-era {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}

.page-about .v-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 8px;
  text-transform: uppercase;
  line-height: 1.3;
}

.page-about .v-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  text-transform: none;
}

/* Connecting horizontal line from card to dot */
.page-about .v-left::after {
  content: '';
  position: absolute;
  right: calc(50% - 28px - 32px + 8px);
  top: 38px;
  width: 32px;
  height: 1px;
  background: rgba(80, 98, 74, .15);
}

/* ── RESPONSIVE ── */
/* Tablet: keep alternating but tighten gap */
@media (max-width: 991px) {
  .page-about .v-item {
    grid-template-columns: 1fr 48px 1fr;
    gap: 0 20px;
    margin-bottom: 48px;
  }

  .page-about .v-dot {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

/* Mobile: single column, dot on left */
@media (max-width: 575px) {
  .page-about .v-timeline::before {
    left: 24px;
    transform: none;
  }

  .page-about .v-item {
    grid-template-columns: 48px 1fr;
    gap: 0 16px;
    margin-bottom: 36px;
    align-items: start;
  }

  .page-about .v-dot {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    font-size: 17px;
  }

  .page-about .v-left {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 0;
  }

  .page-about .v-right {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 0;
  }

  .page-about .v-empty {
    display: none;
  }

  .v-left .v-card::after,
  .page-about .v-right .v-card::before {
    display: none;
  }

  .page-about .v-left::after {
    display: none;
  }

  .page-about .v-card {
    padding: 18px 20px;
  }
}

/* Location banner */
.page-about .about-location {
  background: var(--header);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about .about-location::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 216, 62, .06) 0%, transparent 65%);
  pointer-events: none;
}

.page-about .about-location .container {
  position: relative;
  z-index: 2;
}

.page-about .about-location h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-about .about-location p {
  color: rgba(255, 255, 255, .6);
  text-transform: none;
}

/* Principle cards */
.page-about .principle-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  border-top: 4px solid transparent;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.page-about .principle-card:hover {
  box-shadow: var(--box-shadow);
  transform: translateY(-4px);
  border-top-color: var(--theme2);
}

.page-about .principle-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  color: #3a5c20;
  line-height: 1;
}

.page-about .principle-icon i {
  font-size: 36px;
}

.page-about .principle-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.page-about .principle-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
  text-transform: none;
}

/* location icon */
.page-about .about-location-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245, 216, 62, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--theme2);
  font-size: 28px;
}

/* ──────────────────────────────────────────
   CONTACT.HTML — non-hero styles
   ────────────────────────────────────────── */
/* Hero */
.page-contact .contact-hero {
  position: relative;
  overflow: hidden;
}

.page-contact .contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 40%, rgba(100, 145, 40, .25) 0%, transparent 60%);
  pointer-events: none;
}

.page-contact .contact-hero .container {
  position: relative;
  z-index: 2;
}

/* Contact info list — properly inline icon + text */
.page-contact .contact-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-contact .contact-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(80, 98, 74, .1);
}

.page-contact .contact-icon-list li:last-child {
  border-bottom: none;
}

.page-contact .ci-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme2);
  font-size: 22px;
  margin-top: 1px;
}

.page-contact .ci-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  display: block;
  margin-bottom: 3px;
}

.page-contact .ci-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--header);
  text-transform: none;
  line-height: 1.55;
}

.page-contact .ci-value a {
  color: var(--header);
  transition: color .25s;
}

.page-contact .ci-value a:hover {
  color: #3a5c20;
}

/* Map embed full-width */
.page-contact .contact-map-embed {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

/* Mobile */
@media (max-width: 767px) {
  .page-contact .contact-map-embed {
    height: 320px;
  }
}

/* ── Contact fold layout ── */
.page-contact .contact-fold {
  background: var(--white);
}

.page-contact .contact-fold-left {
  padding: 60px 48px 60px 0;
  border-right: 1px solid rgba(80, 98, 74, .1);
}

.page-contact .contact-fold-right {
  padding: 60px 0 60px 48px;
}

.page-contact .cf-header {
  margin-bottom: 32px;
}

.page-contact .ci-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.page-contact .ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(80, 98, 74, .08);
}

.page-contact .ci-item--wide {
  grid-column: 1 / -1;
}

.page-contact .ci-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-contact .cf-form-wrap {
  padding: 40px;
  background: var(--bg);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-contact .cf-form-wrap h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--header);
  margin-bottom: 28px;
}

.page-contact .cf-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-contact .cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.page-contact .cf-field input,
.page-contact .cf-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(80, 98, 74, .2);
  background: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: var(--header);
  outline: none;
  transition: border-color .2s;
  resize: none;
}

.page-contact .cf-field input:focus,
.page-contact .cf-field textarea:focus {
  border-color: #3a5c20;
}

.page-contact .cf-submit {
  align-self: flex-start;
  background: var(--theme);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  text-transform: none;
}

.page-contact .cf-submit:hover {
  background: #3a5c20;
}

@media (max-width: 991px) {
  .page-contact .contact-fold-left {
    padding: 40px 0 32px;
    border-right: none;
    border-bottom: 1px solid rgba(80, 98, 74, .1);
  }

  .page-contact .contact-fold-right {
    padding: 32px 0 40px;
  }

  .page-contact .cf-form-wrap {
    padding: 28px 0;
    background: transparent;
  }
}

@media (max-width: 575px) {
  .page-contact .ci-grid {
    grid-template-columns: 1fr;
  }

  .page-contact .cf-row {
    grid-template-columns: 1fr;
  }
}


/* ──────────────────────────────────────────
   EXPORTS.HTML — non-hero styles
   ────────────────────────────────────────── */
/* stat bar at hero bottom */

/* ── MARKET CARDS ── */
.page-exports .market-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 32px;
}

.page-exports .market-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  padding: 24px 22px;
  border-top: 4px solid transparent;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.page-exports .market-card:hover {
  border-top-color: var(--theme2);
  box-shadow: var(--box-shadow);
  transform: translateY(-3px);
}

.page-exports .market-card.more {
  background: var(--bg);
}

.page-exports .market-code {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}

.page-exports .market-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--header);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: .5px;
}

.page-exports .market-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
  text-transform: none;
  margin: 0;
}

/* presence box — plain CSS grid so sticky actually works */
.page-exports .exp-markets-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
  /* critical: prevents stretching that breaks sticky */
}

.page-exports .exp-sticky-col {
  position: sticky;
  top: 100px;
  /* sits just below the fixed header */
}

.page-exports .exp-map-box {
  background: var(--header);
  padding: 40px 36px;
}

@media (max-width: 1199px) {
  .page-exports .exp-markets-layout {
    grid-template-columns: 1fr;
  }

  .page-exports .exp-sticky-col {
    position: static;
  }
}

.page-exports .exp-map-globe {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.page-exports .exp-map-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-exports .exp-map-box>p {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  text-transform: none;
  margin-bottom: 28px;
}

.page-exports .exp-presence-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.page-exports .exp-presence-stat {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 16px;
  text-align: center;
}

.page-exports .exp-presence-num {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--theme2);
  line-height: 1;
  margin-bottom: 6px;
}

.page-exports .exp-presence-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

/* ── PROCESS SECTION — light bg ── */
.page-exports #processSticky {
  background: #f5f6f4 !important;
}

.page-exports .exp-process-inner {
  padding: 50px 0 60px;
}

/* section title overrides for light bg */
.page-exports #processSticky .section-title h2 {
  color: var(--header) !important;
}

.page-exports #processSticky .content p {
  color: var(--text) !important;
}

/* ── STEPS GRID ── */
.page-exports .exp-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: 48px;
  overflow: visible;
}

.page-exports .exp-process-steps::before {
  display: none;
}

/* grey base track */
.page-exports .exp-process-track {
  position: absolute;
  height: 2px;
  background: rgba(80, 98, 74, .15);
  z-index: 0;
  pointer-events: none;
}

/* yellow fill segments */
.page-exports .process-seg-fill {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, #F5D83E, #e6b800);
  z-index: 1;
  width: 0;
  pointer-events: none;
  transition: width .05s linear;
}

.page-exports .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 6px;
  position: relative;
  z-index: 2;
  overflow: visible;
}

/* circle — smaller, light bg */
.page-exports .process-step-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid rgba(80, 98, 74, .18);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  margin-bottom: 16px;
  transition: border-color .35s, background .35s, box-shadow .35s;
  flex-shrink: 0;
  z-index: 3;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

/* number badge */
.page-exports .process-step-num {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(80, 98, 74, .12);
  color: rgba(80, 98, 74, .5);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s, color .35s;
}

/* DONE */
.page-exports .process-step.is-done .process-step-icon {
  border-color: #e6b800;
  background: #fffbe6;
  box-shadow: 0 2px 16px rgba(245, 216, 62, .25);
}

.page-exports .process-step.is-done .process-step-num {
  background: var(--theme2);
  color: #5a4200;
}

/* ACTIVE — yellow border + pulse */
.page-exports .process-step.is-active .process-step-icon {
  border-color: var(--theme2);
  border-width: 3px;
  background: #fffbe6;
  box-shadow: 0 2px 20px rgba(245, 216, 62, .35);
  overflow: visible;
}

.page-exports .process-step.is-active .process-step-num {
  background: var(--theme2);
  color: #5a4200;
}

.process-step.is-active .process-step-icon::before,
.page-exports .process-step.is-active .process-step-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--theme2);
  opacity: 0;
  animation: iconPulse 1.6s ease-out infinite;
  pointer-events: none;
}

.page-exports .process-step.is-active .process-step-icon::after {
  inset: -17px;
  border-width: 1.5px;
  animation-delay: 0.55s;
}

@keyframes iconPulse {
  .page-exports 0% {
    opacity: 0.6;
    transform: scale(0.94);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* text — dark on light bg */
.page-exports .process-step h5 {
  font-size: 12px;
  font-weight: 800;
  color: rgba(47, 47, 47, .4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  transition: color .3s;
}

.page-exports .process-step p {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(47, 47, 47, .35);
  text-transform: none;
  max-width: 150px;
  margin: 0 auto;
  transition: color .3s;
}

.process-step.is-done h5,
.page-exports .process-step.is-active h5 {
  color: var(--header);
}

.process-step.is-done p,
.page-exports .process-step.is-active p {
  color: var(--text);
}

/* hint */
.page-exports .exp-process-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: rgba(47, 47, 47, .35);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity .5s;
}

.page-exports .exp-process-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.page-exports .exp-process-hint-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme2);
  flex-shrink: 0;
  animation: dotblink 1.2s ease-in-out infinite;
}

@keyframes dotblink {

  0%,
  .page-exports 100% {
    opacity: 1
  }

  50% {
    opacity: .15
  }
}

/* ── RESPONSIVE ── */
/* Tablet: 3-col horizontal, hide line */
@media (max-width: 991px) {
  .page-exports .exp-process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 8px;
    margin-top: 36px;
  }

  .exp-process-track,
  .page-exports .process-seg-fill {
    display: none !important;
  }

  .page-exports .process-step-icon {
    width: 76px;
    height: 76px;
    font-size: 30px;
  }

  .page-exports .exp-process-inner {
    padding: 36px 0 48px;
  }
}

/* Mobile: 1-col vertical with a simple left line */
@media (max-width: 575px) {
  .page-exports .exp-process-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 56px;
    /* indent for line */
    position: relative;
  }

  /* vertical grey track */
  .page-exports .exp-process-steps::after {
    content: '';
    position: absolute;
    left: 43px;
    /* centre of icon */
    top: 44px;
    bottom: 44px;
    width: 2px;
    background: rgba(80, 98, 74, .12);
    z-index: 0;
    display: block;
  }

  .page-exports .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 32px 0;
    gap: 16px;
  }

  .page-exports .process-step:last-child {
    padding-bottom: 0;
  }

  .page-exports .process-step-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-left: -56px;
    /* pull back over the line */
    position: relative;
    z-index: 3;
    width: 72px;
    height: 72px;
    font-size: 28px;
  }

  .page-exports .process-step h5 {
    text-align: left;
    margin-bottom: 4px;
  }

  .page-exports .process-step p {
    text-align: left;
    max-width: none;
  }
}

/* ── COUNTING BANNER ── */
.page-exports .exp-cta {
  background: var(--header);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-exports .exp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 216, 62, .06) 0%, transparent 65%);
  pointer-events: none;
}

.page-exports .exp-cta h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}

.page-exports .exp-cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  position: relative;
}

.page-exports .exp-cta-badge {
  background: rgba(245, 216, 62, .12);
  color: var(--theme2);
  border: 1px solid rgba(245, 216, 62, .25);
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── PARTNER CTA ── */
.page-exports .exp-partner {
  background: var(--bg);
  padding: 100px 0;
  text-align: center;
}

.page-exports .exp-partner-tag {
  color: var(--theme2);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.page-exports .exp-partner h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--header);
  text-transform: uppercase;
  margin-bottom: 0;
}

.page-exports .exp-partner h2 em {
  font-style: normal;
  color: #3a5c20;
}

.page-exports .exp-partner-rule {
  width: 44px;
  height: 3px;
  background: #3a5c20;
  margin: 18px auto 24px;
}

.page-exports .exp-partner>.container>p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 36px;
  text-transform: none;
}

.page-exports .exp-partner-btns {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.page-exports .exp-partner-btns .theme-btn,
.page-exports .exp-partner-btns .cta-button {
  font-size: 15px;
  padding: 15px 30px;
  align-items: center;
  border-radius: 0 !important;
  text-transform: uppercase !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .page-exports .exp-process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-exports .exp-process-steps::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .page-exports .exp-process-inner {
    padding: 40px 24px;
  }

}

@media (max-width: 767px) {
  .page-exports .market-cards {
    grid-template-columns: 1fr;
  }

  .page-exports .exp-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 575px) {
  .page-exports .exp-process-steps {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────
   INFRASTRUCTURE.HTML — non-hero styles
   ────────────────────────────────────────── */
/* stat bar */

/* ── FACILITY CARDS ── */
.page-infrastructure .facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.page-infrastructure .facility-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  padding: 32px 24px;
  border-top: 4px solid transparent;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.page-infrastructure .facility-card:hover {
  border-top-color: var(--theme2);
  box-shadow: var(--box-shadow);
  transform: translateY(-4px);
}

.page-infrastructure .facility-card.muted {
  background: var(--bg);
}

.page-infrastructure .facility-card-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
}

.page-infrastructure .facility-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--header);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: .5px;
}

.page-infrastructure .facility-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
  text-transform: none;
  margin: 0;
}

/* ── CAPACITY BANNER ── */
.page-infrastructure .infra-capacity-bar {
  background: var(--header);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-infrastructure .infra-capacity-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 216, 62, .07) 0%, transparent 65%);
  pointer-events: none;
}

.page-infrastructure .infra-capacity-bar h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}

.page-infrastructure .infra-capacity-bar h2 span {
  color: var(--theme2);
}

.page-infrastructure .infra-capacity-bar p {
  color: rgba(255, 255, 255, .5);
  font-size: 15px;
  text-transform: none;
  position: relative;
}

/* ── TECH CARDS ── */
.page-infrastructure .tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.page-infrastructure .tech-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  padding: 30px 24px;
  border-left: 4px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

.page-infrastructure .tech-card:hover {
  border-left-color: var(--theme2);
  box-shadow: var(--box-shadow);
}

.page-infrastructure .tech-card-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 14px;
}

.page-infrastructure .tech-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--header);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: .5px;
}

.page-infrastructure .tech-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
  text-transform: none;
  margin: 0;
}

/* ── SUMMARY STATS ── */
.page-infrastructure .summary-box {
  background: var(--header);
  padding: 60px;
}

.page-infrastructure .summary-box-header {
  margin-bottom: 48px;
}

.page-infrastructure .summary-box-header h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-infrastructure .summary-box-header p {
  color: rgba(255, 255, 255, .5);
  text-transform: none;
}

.page-infrastructure .summary-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  overflow: hidden;
}

.page-infrastructure .summary-stat {
  background: rgba(255, 255, 255, .04);
  border-right: 1px solid rgba(255, 255, 255, .1);
  padding: 48px 24px 40px;
  text-align: center;
  position: relative;
  transition: background .3s;
}

.page-infrastructure .summary-stat:last-child {
  border-right: none;
}

.page-infrastructure .summary-stat:hover {
  background: rgba(255, 255, 255, .08);
}

.page-infrastructure .stat-number {
  display: block;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 700;
  color: var(--theme2, #F5D83E);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.page-infrastructure .stat-suffix {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  color: var(--theme2, #F5D83E);
}

.page-infrastructure .stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .page-infrastructure .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-infrastructure .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-infrastructure .summary-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .page-infrastructure .summary-box {
    padding: 40px 24px;
  }
}

@media (max-width: 767px) {
  .page-infrastructure .facility-grid {
    grid-template-columns: 1fr;
  }

  .page-infrastructure .tech-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 575px) {
  .page-infrastructure .summary-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-infrastructure .summary-stat {
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .page-infrastructure .summary-stat:nth-child(2n) {
    border-right: none;
  }
}

/* ── MOBILE HERO — centred, matches homepage hero alignment ── */
@media (max-width: 767px) {
  .page-infrastructure .pg-hero-content .hero-button {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }
}
}


/* ── Timeline dot pulse animation ── */
@keyframes dotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 216, 62, .5);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(245, 216, 62, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 216, 62, 0);
  }
}

.page-about .v-item.v-active .v-dot {
  animation: dotPulse 1.2s ease-out;
}

.page-about .v-dot {
  transition: border-color .4s ease, background .4s ease, color .4s ease,
    box-shadow .4s ease, transform .4s ease !important;
}

.page-about .v-card {
  transition: box-shadow .35s ease, border-color .35s ease, transform .35s ease !important;
}

/* ══════════════════════════════
           FACILITY GALLERY + LIGHTBOX
        ══════════════════════════════ */

/* Masonry-style grid: first tile is hero (2col × 2row), rest fill in */
.page-infrastructure .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 380px 280px;
  gap: 6px;
  margin-top: 40px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.page-infrastructure .gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.page-infrastructure .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg);
}

/* Placeholder until real images are added */
.page-infrastructure .gallery-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(80, 98, 74, .28);
  transition: background .3s;
}

.page-infrastructure .gallery-ph i {
  font-size: 36px;
}

.page-infrastructure .gallery-ph span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Real image */
.page-infrastructure .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.page-infrastructure .gallery-item:hover img {
  transform: scale(1.06);
}

/* Dark overlay on hover */
.page-infrastructure .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 70, 35, 0);
  transition: background .3s;
  z-index: 1;
}

.page-infrastructure .gallery-item:hover::after {
  background: rgba(16, 70, 35, .42);
}

.page-infrastructure .gallery-item:hover .gallery-ph {
  background: rgba(80, 98, 74, .06);
}

/* Zoom icon */
.page-infrastructure .gallery-zoom {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}

.page-infrastructure .gallery-zoom i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

.page-infrastructure .gallery-item:hover .gallery-zoom {
  opacity: 1;
}

/* Caption on hero tile */
.page-infrastructure .gallery-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(0, 0, 0, .52);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}

.page-infrastructure .gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── LIGHTBOX — full screen, blurred bg, no side peeks ── */
.page-infrastructure #lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  overflow: hidden;
}

.page-infrastructure #lb-overlay.lb-open {
  opacity: 1;
  pointer-events: all;
}

/* Blurred version of the current image fills the bg */
.page-infrastructure #lb-bg-blur {
  position: absolute;
  inset: -40px;
  background: #0a120a center/cover no-repeat;
  filter: blur(30px) brightness(.3) saturate(1.4);
  transform: scale(1.1);
  z-index: 0;
  transition: background-image .25s;
}

/* Extra dark scrim over blur */
.page-infrastructure #lb-bg-blur::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}

/* Close — top right */
.page-infrastructure #lb-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .25s;
}

.page-infrastructure #lb-close:hover {
  background: rgba(245, 216, 62, .25);
  transform: rotate(90deg) scale(1.1);
}

/* Nav arrows */
.page-infrastructure .lb-nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}

.page-infrastructure .lb-nav-btn:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-50%) scale(1.1);
}

.page-infrastructure #lb-prev {
  left: 24px;
}

.page-infrastructure #lb-next {
  right: 24px;
}

/* Main image stage — takes all remaining space between top and thumb strip */
.page-infrastructure #lb-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  padding: 56px 100px 12px;
  box-sizing: border-box;
}

.page-infrastructure #lb-img {
  max-width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  display: none;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .7);
}

.page-infrastructure #lb-ph {
  width: min(600px, 80vw);
  height: min(400px, 55vh);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, .3);
}

.page-infrastructure #lb-ph i {
  font-size: 52px;
}

.page-infrastructure #lb-ph span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Title + counter below image */
.page-infrastructure #lb-info {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8px 16px 6px;
}

.page-infrastructure #lb-caption-bar {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 3px;
}

.page-infrastructure #lb-counter {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
}

/* Thumbnail strip — pinned to bottom */
.page-infrastructure #lb-thumbs {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(14px);
  overflow-x: auto;
  flex-shrink: 0;
}

.page-infrastructure .lb-thumb {
  width: 56px;
  height: 42px;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .45;
  transition: opacity .2s, border-color .2s;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .3);
  font-size: 14px;
}

.page-infrastructure .lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lb-thumb.active,
.page-infrastructure .lb-thumb:hover {
  opacity: 1;
  border-color: var(--theme2);
}

/* Responsive gallery grid */
@media (max-width: 991px) {
  .page-infrastructure .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px 200px;
  }

  .page-infrastructure .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
}

@media (max-width: 575px) {
  .page-infrastructure .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 160px 160px 160px;
  }

  .page-infrastructure .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .page-infrastructure .lb-nav-btn {
    display: none;
  }

  .page-infrastructure #lb-stage {
    padding: 52px 12px 8px;
  }
}

/* ──────────────────────────────────────────
   PRODUCTS.HTML — non-hero styles
   ────────────────────────────────────────── */
/* H1 size tuned so title stays on 1-2 lines */
.page-products .pg-hero-content h1 {
  font-size: clamp(30px, 4vw, 58px);
}

/* ── Category Filter Tabs ── */
.page-products .filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}

.page-products .filter-tab {
  padding: 8px 24px;
  border: 1.5px solid rgba(47, 47, 47, .2);
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  background: transparent;
  color: var(--header);
  transition: all .35s ease;
}

.filter-tab.active,
.page-products .filter-tab:hover {
  background: var(--theme2);
  border-color: var(--theme2);
  color: var(--header);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 216, 62, .35);
}

/* ── Product Card ── */
.page-products .product-card {
  background: var(--white);
  box-shadow: 0 4px 60px rgba(79, 127, 58, .12);
  overflow: hidden;
  transition: transform .45s ease, box-shadow .45s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-products .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(79, 127, 58, .22);
}

/* image wrapper */
.page-products .product-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: var(--bg);
}

.page-products .product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.page-products .product-card:hover .product-card-img img {
  transform: scale(1.07);
}

/* badge */
.page-products .product-badge {
  position: absolute;
  top: 16px;
  left: 0;
  background: var(--theme2);
  color: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 14px;
}

/* hover overlay */
.page-products .product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 47, 47, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s ease;
}

.page-products .product-card:hover .product-card-overlay {
  opacity: 1;
}

.page-products .product-card-overlay .cta-button {
  transform: translateY(10px);
  transition: transform .4s ease .1s;
}

.page-products .product-card:hover .product-card-overlay .cta-button {
  transform: translateY(0);
}

/* body */
.page-products .product-card-body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-products .product-card-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--theme);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 8px;
}

.page-products .product-card-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.3;
}

.page-products .product-card-body p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}

/* variants chips */
.page-products .product-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
}

.page-products .variant-chip {
  font-size: 11px;
  font-weight: 600;
  color: var(--bg2);
  border: 1px solid rgba(80, 98, 74, .3);
  padding: 3px 10px;
  text-transform: uppercase;
  border-radius: 2px;
  letter-spacing: .4px;
}

/* footer of card */
.page-products .product-card-footer {
  padding: 0 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-products .product-card-footer .cta-button {
  font-size: 12px;
  padding: 9px 20px;
  flex: 1;
  text-align: center;
}

.page-products .product-enquire {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(47, 47, 47, .2);
  color: var(--header);
  transition: all .35s ease;
  font-size: 18px;
  flex-shrink: 0;
}

.page-products .product-enquire:hover {
  background: var(--theme);
  border-color: var(--theme);
  color: var(--white);
}

/* ── Category Header rows ── */
.page-products .category-row-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}

.page-products .category-row-title h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--header);
  white-space: nowrap;
  text-transform: uppercase;
}

.page-products .category-row-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--theme2) 0%, transparent 100%);
}

/* ── Stats strip ── */
.page-products .stats-strip {
  background: var(--header);
  padding: 30px 0;
}

.page-products .stat-item .num {
  font-size: 40px;
  font-weight: 700;
  color: var(--theme2);
  line-height: 1;
}

.page-products .stat-item p {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 6px;
}

/* ── Hidden for filter JS ── */
.page-products .product-col.hidden {
  display: none;
}

/* ── Fade in animation ── */
.page-products .product-col {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
}

.page-products .product-col.animate-in {
  opacity: 0;
  transform: translateY(30px);
}

.page-products .product-col.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 767px) {

  .page-products .filter-tabs {
    gap: 8px;
  }

  .page-products .filter-tab {
    font-size: 12px;
    padding: 7px 16px;
  }
}

/* ──────────────────────────────────────────
   MANGO.HTML — non-hero styles
   ────────────────────────────────────────── */

.page-mango .pg-section-rule {
  width: 44px;
  height: 3px;
  background: #3a5c20;
  margin: 14px 0 18px;
}

.page-mango .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.page-mango .product-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  text-decoration: none;
  display: block;
  color: inherit;
  position: relative;
}

.page-mango .product-card:hover {
  box-shadow: var(--box-shadow);
  transform: translateY(-4px);
  border-color: var(--theme2);
  color: inherit;
  z-index: 2;
}

.page-mango .product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--theme2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.page-mango .product-card:hover::before {
  transform: scaleX(1);
}

.page-mango .product-card-thumb {
  /* height: 220px; */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.page-mango .product-card-thumb img {
  width: 100%;
  /* height: 100%; */
  height: auto;
  object-fit: cover;
  display: block;
}

.page-mango .product-card-thumb .ph-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(80, 98, 74, .35);
}

.page-mango .product-card-thumb .ph-wrap i {
  font-size: 40px;
}

.page-mango .product-card-thumb .ph-wrap span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.page-mango .product-card-body {
  padding: 22px 24px 24px;
}

.page-mango .product-card-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.page-mango .product-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 14px;
  text-transform: none;
}

.page-mango .product-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-mango .product-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  padding: 4px 12px;
  border: 1px solid rgba(80, 98, 74, .15);
}

.page-mango .product-tag.yellow {
  background: rgba(245, 216, 62, .18);
  color: #6b5500;
  border-color: rgba(245, 216, 62, .4);
}

.page-mango .product-table-wrap {
  background: var(--white);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .07);
  margin-top: 8px;
}

.page-mango .product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.page-mango .product-table thead tr {
  background: var(--header);
}

.page-mango .product-table thead th {
  padding: 20px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  text-align: left;
}

.page-mango .product-table thead th:first-child {
  border-left: 4px solid var(--theme2);
}

.page-mango .product-table tbody tr {
  border-bottom: 1px solid rgba(80, 98, 74, .08);
  transition: background .2s;
}

.page-mango .product-table tbody tr:last-child {
  border-bottom: none;
}

.page-mango .product-table tbody tr:hover {
  background: rgba(245, 216, 62, .06);
}

.page-mango .product-table tbody td {
  padding: 18px 24px;
  color: var(--text);
  vertical-align: middle;
  text-transform: none;
}

.page-mango .product-table tbody td:first-child {
  font-weight: 700;
  color: var(--header);
  border-left: 4px solid transparent;
  transition: border-color .2s;
}

.page-mango .product-table tbody tr:hover td:first-child {
  border-left-color: var(--theme2);
}

.page-mango .capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(17, 162, 27, .08);
  color: var(--theme3);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
}

.page-mango .pg-cta {
  background: var(--header);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-mango .pg-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 216, 62, .06) 0%, transparent 65%);
  pointer-events: none;
}

.page-mango .pg-cta h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
}

.page-mango .pg-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, .68);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  position: relative;
}

.page-mango .pg-other-products {
  padding-top: 60px;
}

.page-mango .pg-other-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--header);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.page-mango .pg-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.page-mango .pg-other-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: border-color .25s, box-shadow .25s;
}

.page-mango .pg-other-card:hover {
  border-color: var(--theme2);
  box-shadow: var(--box-shadow);
}

.page-mango .pg-other-card-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.page-mango .pg-other-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 2px;
  text-transform: uppercase;
}

.page-mango .pg-other-card span {
  font-size: 12px;
  color: var(--text);
  text-transform: none;
}

@media (max-width: 991px) {
  .page-mango .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-mango .pg-other-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 767px) {
  .page-mango .product-grid {
    grid-template-columns: 1fr;
  }

  /* ── Responsive card-stack table ── */
  .page-mango .product-table-wrap {
    overflow-x: unset;
    /* no horizontal scroll needed */
    box-shadow: none;
    background: transparent;
  }

  .page-mango .product-table,
  .page-mango .product-table tbody,
  .page-mango .product-table tr,
  .page-mango .product-table td {
    display: block;
    width: 100%;
  }

  /* Hide the original thead visually but keep it accessible */
  .page-mango .product-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* Each row becomes a card */
  .page-mango .product-table tbody tr {
    background: var(--white);
    border: 1px solid rgba(80, 98, 74, .10);
    margin-bottom: 14px;
    padding: 6px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  }

  .page-mango .product-table tbody tr:last-child {
    border-bottom: 1px solid rgba(80, 98, 74, .12);
    margin-bottom: 0;
  }

  /* Each cell: label on the left, value on the right */
  .page-mango .product-table tbody td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 18px;
    border-bottom: 1px dashed rgba(80, 98, 74, .1);
    font-size: 14px;
    text-align: right;
  }

  .page-mango .product-table tbody td:last-child {
    border-bottom: none;
  }

  /* Inject the column label from data-label */
  .page-mango .product-table tbody td::before {
    content: attr(data-label);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(80, 98, 74, .55);
    flex-shrink: 0;
    text-align: left;
    padding-top: 2px;
  }

  /* Product name cell — override first-child bold */
  .page-mango .product-table tbody td:first-child {
    font-weight: 700;
    color: var(--header);
    font-size: 14px;
  }

  /* Badge should stay inline on the right */
  .page-mango .capacity-badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

@media (max-width: 575px) {
  .page-mango .product-table tbody td {
    padding: 10px 14px;
  }

  .page-mango .pg-other-grid {
    grid-template-columns: 1fr;
  }
}


/* ──────────────────────────────────────────
   BEETROOT.HTML — non-hero styles
   ────────────────────────────────────────── */
.page-beetroot .pg-hero,
.page-sweet-corn .pg-hero,
.page-baby-corn .pg-hero,
.page-exports .pg-hero,
.page-infrastructure .pg-hero,
.page-contact .pg-hero,
.page-products .pg-hero {
  height: 82vh;
  min-height: 560px;
  max-height: 780px;
  position: relative;
  overflow: hidden;
}

/* Gradient overlay — neutral black fade left-to-right, same on all inner pages.
   Black-based (not tinted green) so photo colours and textures show through. */
.page-about .pg-hero::before,
.page-beetroot .pg-hero::before,
.page-sweet-corn .pg-hero::before,
.page-baby-corn .pg-hero::before,
.page-exports .pg-hero::before,
.page-infrastructure .pg-hero::before,
.page-contact .pg-hero::before,
.page-products .pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.45) 50%,
      rgba(0, 0, 0, 0.10) 100%);
  z-index: 1;
}

/* Hero background images — one per page */
.page-about .pg-hero {
  background: url('../img/hero/products.jpg') center/cover no-repeat;
}

.page-beetroot .pg-hero {
  background: url('../img/hero/mango.jpg') center/cover no-repeat;
}

.page-sweet-corn .pg-hero {
  background: url('../img/hero/prd_sweet-corn.jpg') center/cover no-repeat;
}

.page-baby-corn .pg-hero {
  background: url('../img/hero/prd_baby-corn.jpg') center/cover no-repeat;
}

.page-beetroot .pg-hero {
  background: url('../img/hero/prd_beetroot.jpg') center/cover no-repeat;
}

.page-exports .pg-hero {
  background: url('../img/hero/products.jpg') center/cover no-repeat;
}

.page-infrastructure .pg-hero {
  background: url('../img/hero/products.jpg') center/cover no-repeat;
}

.page-contact .pg-hero {
  background: url('../img/hero/products.jpg') center/cover no-repeat;
}

.page-products .pg-hero {
  background: url('../img/hero/products.jpg') center/cover no-repeat;
}

/* Inner wrapper — full width, sits above overlay */
.page-about .pg-hero-inner,
.page-beetroot .pg-hero-inner,
.page-sweet-corn .pg-hero-inner,
.page-baby-corn .pg-hero-inner,
.page-exports .pg-hero-inner,
.page-infrastructure .pg-hero-inner,
.page-contact .pg-hero-inner,
.page-products .pg-hero-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 48px;
}

/* Content block — left aligned, consistent padding */
.page-about .pg-hero-content,
.page-beetroot .pg-hero-content,
.page-sweet-corn .pg-hero-content,
.page-baby-corn .pg-hero-content,
.page-exports .pg-hero-content,
.page-infrastructure .pg-hero-content,
.page-contact .pg-hero-content,
.page-products .pg-hero-content {
  /* max-width: 640px; */
  max-width: 80%;
  text-align: left;
}

/* Sub-label above h1 */
.page-about .pg-hero-content span,
.page-beetroot .pg-hero-content span,
.page-sweet-corn .pg-hero-content span,
.page-baby-corn .pg-hero-content span,
.page-exports .pg-hero-content span,
.page-infrastructure .pg-hero-content span,
.page-contact .pg-hero-content span,
.page-products .pg-hero-content span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 16px;
}

/* H1 */
.page-about .pg-hero-content h1,
.page-beetroot .pg-hero-content h1,
.page-sweet-corn .pg-hero-content h1,
.page-baby-corn .pg-hero-content h1,
.page-exports .pg-hero-content h1,
.page-infrastructure .pg-hero-content h1,
.page-contact .pg-hero-content h1,
.page-products .pg-hero-content h1 {
  font-size: clamp(34px, 4.5vw, 68px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
}

/* Accent colour on <em> inside h1 */
.page-about .pg-hero-content h1 em,
.page-beetroot .pg-hero-content h1 em,
.page-sweet-corn .pg-hero-content h1 em,
.page-baby-corn .pg-hero-content h1 em,
.page-exports .pg-hero-content h1 em,
.page-infrastructure .pg-hero-content h1 em,
.page-contact .pg-hero-content h1 em,
.page-products .pg-hero-content h1 em {
  font-style: normal;
  color: var(--theme2);
}

/* Body copy */
.page-about .pg-hero-content p,
.page-beetroot .pg-hero-content p,
.page-sweet-corn .pg-hero-content p,
.page-baby-corn .pg-hero-content p,
.page-exports .pg-hero-content p,
.page-infrastructure .pg-hero-content p,
.page-contact .pg-hero-content p,
.page-products .pg-hero-content p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  text-transform: none;
  margin-bottom: 0;
}

/* CTA row — left aligned, consistent gap */
.page-about .pg-hero-content .hero-button,
.page-beetroot .pg-hero-content .hero-button,
.page-sweet-corn .pg-hero-content .hero-button,
.page-baby-corn .pg-hero-content .hero-button,
.page-exports .pg-hero-content .hero-button,
.page-infrastructure .pg-hero-content .hero-button,
.page-contact .pg-hero-content .hero-button,
.page-products .pg-hero-content .hero-button {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  justify-content: flex-start;
}



/* ── Mobile hero — balanced spacing ── */
@media (max-width: 767px) {

  /* Reduced height — content-driven, not full viewport */
  .page-about .pg-hero,
  .page-beetroot .pg-hero,
  .page-sweet-corn .pg-hero,
  .page-baby-corn .pg-hero,
  .page-exports .pg-hero,
  .page-infrastructure .pg-hero,
  .page-contact .pg-hero,
  .page-products .pg-hero {
    height: auto;
    min-height: 65vh;
    max-height: none;
  }

  /* Inner: clears mobile header, centred vertically, safe side padding */
  .page-about .pg-hero-inner,
  .page-beetroot .pg-hero-inner,
  .page-sweet-corn .pg-hero-inner,
  .page-baby-corn .pg-hero-inner,
  .page-exports .pg-hero-inner,
  .page-infrastructure .pg-hero-inner,
  .page-contact .pg-hero-inner,
  .page-products .pg-hero-inner {
    padding-top: 80px;
    padding-bottom: 48px;
    padding-left: 16px;
    padding-right: 16px;
    justify-content: center;
  }

  /* Stronger overlay on mobile so text stays readable regardless of image */
  .page-about .pg-hero::before,
  .page-beetroot .pg-hero::before,
  .page-sweet-corn .pg-hero::before,
  .page-baby-corn .pg-hero::before,
  .page-exports .pg-hero::before,
  .page-infrastructure .pg-hero::before,
  .page-contact .pg-hero::before,
  .page-products .pg-hero::before {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.30) 100%);
  }

  /* Content: constrained width, comfortable spacing */
  .page-about .pg-hero-content,
  .page-beetroot .pg-hero-content,
  .page-sweet-corn .pg-hero-content,
  .page-baby-corn .pg-hero-content,
  .page-exports .pg-hero-content,
  .page-infrastructure .pg-hero-content,
  .page-contact .pg-hero-content,
  .page-products .pg-hero-content {
    max-width: 100%;
  }

  /* Sub-label: smaller on mobile */
  .page-about .pg-hero-content span,
  .page-beetroot .pg-hero-content span,
  .page-sweet-corn .pg-hero-content span,
  .page-baby-corn .pg-hero-content span,
  .page-exports .pg-hero-content span,
  .page-infrastructure .pg-hero-content span,
  .page-contact .pg-hero-content span,
  .page-products .pg-hero-content span {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  /* H1: tighter line-height, less bottom margin */
  .page-about .pg-hero-content h1,
  .page-beetroot .pg-hero-content h1,
  .page-sweet-corn .pg-hero-content h1,
  .page-baby-corn .pg-hero-content h1,
  .page-exports .pg-hero-content h1,
  .page-infrastructure .pg-hero-content h1,
  .page-contact .pg-hero-content h1,
  .page-products .pg-hero-content h1 {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  /* Body copy: tighter */
  .page-about .pg-hero-content p,
  .page-beetroot .pg-hero-content p,
  .page-sweet-corn .pg-hero-content p,
  .page-baby-corn .pg-hero-content p,
  .page-exports .pg-hero-content p,
  .page-infrastructure .pg-hero-content p,
  .page-contact .pg-hero-content p,
  .page-products .pg-hero-content p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 100%;
  }

  /* CTA row: inline, equal width, compact */
  .page-about .pg-hero-content .hero-button,
  .page-beetroot .pg-hero-content .hero-button,
  .page-sweet-corn .pg-hero-content .hero-button,
  .page-baby-corn .pg-hero-content .hero-button,
  .page-exports .pg-hero-content .hero-button,
  .page-infrastructure .pg-hero-content .hero-button,
  .page-contact .pg-hero-content .hero-button,
  .page-products .pg-hero-content .hero-button {
    margin-top: 24px;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .page-about .pg-hero-content .hero-button .cta-button,
  .page-beetroot .pg-hero-content .hero-button .cta-button,
  .page-sweet-corn .pg-hero-content .hero-button .cta-button,
  .page-baby-corn .pg-hero-content .hero-button .cta-button,
  .page-exports .pg-hero-content .hero-button .cta-button,
  .page-infrastructure .pg-hero-content .hero-button .cta-button,
  .page-contact .pg-hero-content .hero-button .cta-button,
  .page-products .pg-hero-content .hero-button .cta-button {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 10px;
    font-size: 12px;
    justify-content: center;
    text-align: center;
  }
}


/* ──────────────────────────────────────────
   ABOUT.HTML — non-hero styles
   ────────────────────────────────────────── */
.page-about .pg-hero h1 {
  font-size: clamp(34px, 4.5vw, 68px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
}

.page-about .pg-hero h1 em {
  font-style: normal;
  color: var(--theme2);
}

.page-about .pg-hero p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .72);
  max-width: 500px;
  text-transform: none;
}

/* Story section left — image container */
.page-about .story-founded-card {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

/* Image placeholder shown until real image is dropped in */
.page-about .story-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(80, 98, 74, .3);
}

.page-about .story-img-placeholder i {
  font-size: 56px;
}

.page-about .story-img-placeholder span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.page-about .story-year-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  padding: 14px 22px;
  box-shadow: var(--box-shadow);
}

.page-about .story-year-badge .year {
  font-size: 28px;
  font-weight: 800;
  color: var(--header);
  line-height: 1;
  display: block;
}

.page-about .story-year-badge .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  display: block;
  margin-top: 4px;
}

/* Story info cards */
.page-about .story-card {
  background: var(--bg);
  border: 1px solid rgba(80, 98, 74, .12);
  padding: 20px;
  height: 100%;
  transition: border-color .25s, box-shadow .25s;
}

.page-about .story-card:hover {
  border-color: var(--theme2);
  box-shadow: var(--box-shadow);
}

.page-about .story-card-icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
  color: #3a5c20;
}

.page-about .story-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.page-about .story-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  text-transform: none;
}

/* ── ALTERNATING VERTICAL TIMELINE ── */
.page-about .v-timeline {
  position: relative;
  padding: 8px 0;
}

/* Central spine */
.page-about .v-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(80, 98, 74, .15);
  transform: translateX(-50%);
}

.page-about .v-item {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0 32px;
  align-items: start;
  margin-bottom: 64px;
  position: relative;
}

.page-about .v-item:last-child {
  margin-bottom: 0;
}

/* Left card (odd items) */
.page-about .v-left {
  grid-column: 1;
  text-align: right;
  padding-right: 8px;
  padding-top: 10px;
}

.page-about .v-right {
  grid-column: 3;
  text-align: left;
  padding-left: 8px;
  padding-top: 10px;
}

.page-about .v-empty {
  /* placeholder on the opposite side */
}

/* Centre dot */
.page-about .v-dot {
  grid-column: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(80, 98, 74, .2);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  transition: border-color .3s, background .3s, color .3s, box-shadow .3s;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  justify-self: center;
}

.page-about .v-item.highlight .v-dot {
  border-color: var(--theme2);
  background: var(--theme2);
  color: var(--header);
  box-shadow: 0 4px 20px rgba(245, 216, 62, .4);
}

/* Content card */
.page-about .v-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .1);
  padding: 24px 28px;
  position: relative;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}

.page-about .v-card:hover {
  box-shadow: var(--box-shadow);
  border-color: rgba(80, 98, 74, .2);
  transform: translateY(-2px);
}

/* Arrow pointing toward spine */
.page-about .v-left .v-card::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid rgba(80, 98, 74, .1);
}

.page-about .v-right .v-card::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid rgba(80, 98, 74, .1);
}

/* Highlight items get yellow left border on card */
.page-about .v-item.highlight .v-card {
  border-top: 3px solid var(--theme2);
}

.page-about .v-era {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}

.page-about .v-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 8px;
  text-transform: uppercase;
  line-height: 1.3;
}

.page-about .v-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  text-transform: none;
}

/* Connecting horizontal line from card to dot */
.page-about .v-left::after {
  content: '';
  position: absolute;
  right: calc(50% - 28px - 32px + 8px);
  top: 38px;
  width: 32px;
  height: 1px;
  background: rgba(80, 98, 74, .15);
}

/* ── RESPONSIVE ── */
/* Tablet: keep alternating but tighten gap */
@media (max-width: 991px) {
  .page-about .v-item {
    grid-template-columns: 1fr 48px 1fr;
    gap: 0 20px;
    margin-bottom: 48px;
  }

  .page-about .v-dot {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

/* Mobile: single column, dot on left */
@media (max-width: 575px) {
  .page-about .v-timeline::before {
    left: 24px;
    transform: none;
  }

  .page-about .v-item {
    grid-template-columns: 48px 1fr;
    gap: 0 16px;
    margin-bottom: 36px;
    align-items: start;
  }

  .page-about .v-dot {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    font-size: 17px;
  }

  .page-about .v-left {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 0;
  }

  .page-about .v-right {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 0;
  }

  .page-about .v-empty {
    display: none;
  }

  .v-left .v-card::after,
  .page-about .v-right .v-card::before {
    display: none;
  }

  .page-about .v-left::after {
    display: none;
  }

  .page-about .v-card {
    padding: 18px 20px;
  }
}

/* Location banner */
.page-about .about-location {
  background: var(--header);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about .about-location::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 216, 62, .06) 0%, transparent 65%);
  pointer-events: none;
}

.page-about .about-location .container {
  position: relative;
  z-index: 2;
}

.page-about .about-location h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-about .about-location p {
  color: rgba(255, 255, 255, .6);
  text-transform: none;
}

/* Principle cards */
.page-about .principle-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  border-top: 4px solid transparent;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.page-about .principle-card:hover {
  box-shadow: var(--box-shadow);
  transform: translateY(-4px);
  border-top-color: var(--theme2);
}

.page-about .principle-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  color: #3a5c20;
  line-height: 1;
}

.page-about .principle-icon i {
  font-size: 36px;
}

.page-about .principle-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.page-about .principle-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
  text-transform: none;
}

/* location icon */
.page-about .about-location-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245, 216, 62, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--theme2);
  font-size: 28px;
}

/* ──────────────────────────────────────────
   CONTACT.HTML — non-hero styles
   ────────────────────────────────────────── */
/* Hero */
.page-contact .contact-hero {
  position: relative;
  overflow: hidden;
}

.page-contact .contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 40%, rgba(100, 145, 40, .25) 0%, transparent 60%);
  pointer-events: none;
}

.page-contact .contact-hero .container {
  position: relative;
  z-index: 2;
}

/* Contact info list — properly inline icon + text */
.page-contact .contact-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-contact .contact-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(80, 98, 74, .1);
}

.page-contact .contact-icon-list li:last-child {
  border-bottom: none;
}

.page-contact .ci-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme2);
  font-size: 22px;
  margin-top: 1px;
}

.page-contact .ci-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  display: block;
  margin-bottom: 3px;
}

.page-contact .ci-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--header);
  text-transform: none;
  line-height: 1.55;
}

.page-contact .ci-value a {
  color: var(--header);
  transition: color .25s;
}

.page-contact .ci-value a:hover {
  color: #3a5c20;
}

/* Map embed full-width */
.page-contact .contact-map-embed {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

/* Mobile */
@media (max-width: 767px) {
  .page-contact .contact-map-embed {
    height: 320px;
  }
}

/* ──────────────────────────────────────────
   EXPORTS.HTML — non-hero styles
   ────────────────────────────────────────── */
/* stat bar at hero bottom */

/* ── MARKET CARDS ── */
.page-exports .market-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 32px;
}

.page-exports .market-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  padding: 24px 22px;
  border-top: 4px solid transparent;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.page-exports .market-card:hover {
  border-top-color: var(--theme2);
  box-shadow: var(--box-shadow);
  transform: translateY(-3px);
}

.page-exports .market-card.more {
  background: var(--bg);
}

.page-exports .market-code {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}

.page-exports .market-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--header);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: .5px;
}

.page-exports .market-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
  text-transform: none;
  margin: 0;
}

/* presence box — plain CSS grid so sticky actually works */
.page-exports .exp-markets-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
  /* critical: prevents stretching that breaks sticky */
}

.page-exports .exp-sticky-col {
  position: sticky;
  top: 100px;
  /* sits just below the fixed header */
}

.page-exports .exp-map-box {
  background: var(--header);
  padding: 40px 36px;
}

@media (max-width: 1199px) {
  .page-exports .exp-markets-layout {
    grid-template-columns: 1fr;
  }

  .page-exports .exp-sticky-col {
    position: static;
  }
}

.page-exports .exp-map-globe {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.page-exports .exp-map-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-exports .exp-map-box>p {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  text-transform: none;
  margin-bottom: 28px;
}

.page-exports .exp-presence-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.page-exports .exp-presence-stat {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 16px;
  text-align: center;
}

.page-exports .exp-presence-num {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--theme2);
  line-height: 1;
  margin-bottom: 6px;
}

.page-exports .exp-presence-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

/* ── PROCESS SECTION — light bg ── */
.page-exports #processSticky {
  background: #f5f6f4 !important;
}

.page-exports .exp-process-inner {
  padding: 50px 0 60px;
}

/* section title overrides for light bg */
.page-exports #processSticky .section-title h2 {
  color: var(--header) !important;
}

.page-exports #processSticky .content p {
  color: var(--text) !important;
}

/* ── STEPS GRID ── */
.page-exports .exp-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: 48px;
  overflow: visible;
}

.page-exports .exp-process-steps::before {
  display: none;
}

/* grey base track */
.page-exports .exp-process-track {
  position: absolute;
  height: 2px;
  background: rgba(80, 98, 74, .15);
  z-index: 0;
  pointer-events: none;
}

/* yellow fill segments */
.page-exports .process-seg-fill {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, #F5D83E, #e6b800);
  z-index: 1;
  width: 0;
  pointer-events: none;
  transition: width .05s linear;
}

.page-exports .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 6px;
  position: relative;
  z-index: 2;
  overflow: visible;
}

/* circle — smaller, light bg */
.page-exports .process-step-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid rgba(80, 98, 74, .18);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  margin-bottom: 16px;
  transition: border-color .35s, background .35s, box-shadow .35s;
  flex-shrink: 0;
  z-index: 3;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

/* number badge */
.page-exports .process-step-num {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(80, 98, 74, .12);
  color: rgba(80, 98, 74, .5);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s, color .35s;
}

/* DONE */
.page-exports .process-step.is-done .process-step-icon {
  border-color: #e6b800;
  background: #fffbe6;
  box-shadow: 0 2px 16px rgba(245, 216, 62, .25);
}

.page-exports .process-step.is-done .process-step-num {
  background: var(--theme2);
  color: #5a4200;
}

/* ACTIVE — yellow border + pulse */
.page-exports .process-step.is-active .process-step-icon {
  border-color: var(--theme2);
  border-width: 3px;
  background: #fffbe6;
  box-shadow: 0 2px 20px rgba(245, 216, 62, .35);
  overflow: visible;
}

.page-exports .process-step.is-active .process-step-num {
  background: var(--theme2);
  color: #5a4200;
}

.process-step.is-active .process-step-icon::before,
.page-exports .process-step.is-active .process-step-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--theme2);
  opacity: 0;
  animation: iconPulse 1.6s ease-out infinite;
  pointer-events: none;
}

.page-exports .process-step.is-active .process-step-icon::after {
  inset: -17px;
  border-width: 1.5px;
  animation-delay: 0.55s;
}

@keyframes iconPulse {
  .page-exports 0% {
    opacity: 0.6;
    transform: scale(0.94);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* text — dark on light bg */
.page-exports .process-step h5 {
  font-size: 12px;
  font-weight: 800;
  color: rgba(47, 47, 47, .4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  transition: color .3s;
}

.page-exports .process-step p {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(47, 47, 47, .35);
  text-transform: none;
  max-width: 150px;
  margin: 0 auto;
  transition: color .3s;
}

.process-step.is-done h5,
.page-exports .process-step.is-active h5 {
  color: var(--header);
}

.process-step.is-done p,
.page-exports .process-step.is-active p {
  color: var(--text);
}

/* hint */
.page-exports .exp-process-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: rgba(47, 47, 47, .35);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity .5s;
}

.page-exports .exp-process-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.page-exports .exp-process-hint-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme2);
  flex-shrink: 0;
  animation: dotblink 1.2s ease-in-out infinite;
}

@keyframes dotblink {

  0%,
  .page-exports 100% {
    opacity: 1
  }

  50% {
    opacity: .15
  }
}

/* ── RESPONSIVE ── */
/* Tablet: 3-col horizontal, hide line */
@media (max-width: 991px) {
  .page-exports .exp-process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 8px;
    margin-top: 36px;
  }

  .exp-process-track,
  .page-exports .process-seg-fill {
    display: none !important;
  }

  .page-exports .process-step-icon {
    width: 76px;
    height: 76px;
    font-size: 30px;
  }

  .page-exports .exp-process-inner {
    padding: 36px 0 48px;
  }
}

/* Mobile: 1-col vertical with a simple left line */
@media (max-width: 575px) {
  .page-exports .exp-process-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 56px;
    /* indent for line */
    position: relative;
  }

  /* vertical grey track */
  .page-exports .exp-process-steps::after {
    content: '';
    position: absolute;
    left: 43px;
    /* centre of icon */
    top: 44px;
    bottom: 44px;
    width: 2px;
    background: rgba(80, 98, 74, .12);
    z-index: 0;
    display: block;
  }

  .page-exports .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 32px 0;
    gap: 16px;
  }

  .page-exports .process-step:last-child {
    padding-bottom: 0;
  }

  .page-exports .process-step-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-left: -56px;
    /* pull back over the line */
    position: relative;
    z-index: 3;
    width: 72px;
    height: 72px;
    font-size: 28px;
  }

  .page-exports .process-step h5 {
    text-align: left;
    margin-bottom: 4px;
  }

  .page-exports .process-step p {
    text-align: left;
    max-width: none;
  }
}

/* ── COUNTING BANNER ── */
.page-exports .exp-cta {
  background: var(--header);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-exports .exp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 216, 62, .06) 0%, transparent 65%);
  pointer-events: none;
}

.page-exports .exp-cta h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}

.page-exports .exp-cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  position: relative;
}

.page-exports .exp-cta-badge {
  background: rgba(245, 216, 62, .12);
  color: var(--theme2);
  border: 1px solid rgba(245, 216, 62, .25);
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── PARTNER CTA ── */
.page-exports .exp-partner {
  background: var(--bg);
  padding: 100px 0;
  text-align: center;
}

.page-exports .exp-partner-tag {
  color: var(--theme2);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.page-exports .exp-partner h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--header);
  text-transform: uppercase;
  margin-bottom: 0;
}

.page-exports .exp-partner h2 em {
  font-style: normal;
  color: #3a5c20;
}

.page-exports .exp-partner-rule {
  width: 44px;
  height: 3px;
  background: #3a5c20;
  margin: 18px auto 24px;
}

.page-exports .exp-partner>.container>p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 36px;
  text-transform: none;
}

.page-exports .exp-partner-btns {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.page-exports .exp-partner-btns .theme-btn,
.page-exports .exp-partner-btns .cta-button {
  font-size: 15px;
  padding: 15px 30px;
  align-items: center;
  border-radius: 0 !important;
  text-transform: uppercase !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .page-exports .exp-process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-exports .exp-process-steps::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .page-exports .exp-process-inner {
    padding: 40px 24px;
  }

}

@media (max-width: 767px) {
  .page-exports .market-cards {
    grid-template-columns: 1fr;
  }

  .page-exports .exp-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 575px) {
  .page-exports .exp-process-steps {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────
   INFRASTRUCTURE.HTML — non-hero styles
   ────────────────────────────────────────── */
/* stat bar */

/* ── FACILITY CARDS ── */
.page-infrastructure .facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.page-infrastructure .facility-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  padding: 32px 24px;
  border-top: 4px solid transparent;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.page-infrastructure .facility-card:hover {
  border-top-color: var(--theme2);
  box-shadow: var(--box-shadow);
  transform: translateY(-4px);
}

.page-infrastructure .facility-card.muted {
  background: var(--bg);
}

.page-infrastructure .facility-card-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
}

.page-infrastructure .facility-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--header);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: .5px;
}

.page-infrastructure .facility-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
  text-transform: none;
  margin: 0;
}

/* ── CAPACITY BANNER ── */
.page-infrastructure .infra-capacity-bar {
  background: var(--header);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-infrastructure .infra-capacity-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 216, 62, .07) 0%, transparent 65%);
  pointer-events: none;
}

.page-infrastructure .infra-capacity-bar h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}

.page-infrastructure .infra-capacity-bar h2 span {
  color: var(--theme2);
}

.page-infrastructure .infra-capacity-bar p {
  color: rgba(255, 255, 255, .5);
  font-size: 15px;
  text-transform: none;
  position: relative;
}

/* ── TECH CARDS ── */
.page-infrastructure .tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.page-infrastructure .tech-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  padding: 30px 24px;
  border-left: 4px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

.page-infrastructure .tech-card:hover {
  border-left-color: var(--theme2);
  box-shadow: var(--box-shadow);
}

.page-infrastructure .tech-card-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 14px;
}

.page-infrastructure .tech-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--header);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: .5px;
}

.page-infrastructure .tech-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
  text-transform: none;
  margin: 0;
}

/* ── SUMMARY STATS ── */
.page-infrastructure .summary-box {
  background: var(--header);
  padding: 60px;
}

.page-infrastructure .summary-box-header {
  margin-bottom: 48px;
}

.page-infrastructure .summary-box-header h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-infrastructure .summary-box-header p {
  color: rgba(255, 255, 255, .5);
  text-transform: none;
}

.page-infrastructure .summary-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  overflow: hidden;
}

.page-infrastructure .summary-stat {
  background: rgba(255, 255, 255, .04);
  border-right: 1px solid rgba(255, 255, 255, .1);
  padding: 48px 24px 40px;
  text-align: center;
  position: relative;
  transition: background .3s;
}

.page-infrastructure .summary-stat:last-child {
  border-right: none;
}

.page-infrastructure .summary-stat:hover {
  background: rgba(255, 255, 255, .08);
}

.page-infrastructure .stat-number {
  display: block;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 700;
  color: var(--theme2, #F5D83E);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.page-infrastructure .stat-suffix {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  color: var(--theme2, #F5D83E);
}

.page-infrastructure .stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .page-infrastructure .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-infrastructure .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-infrastructure .summary-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .page-infrastructure .summary-box {
    padding: 40px 24px;
  }
}

@media (max-width: 767px) {
  .page-infrastructure .facility-grid {
    grid-template-columns: 1fr;
  }

  .page-infrastructure .tech-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 575px) {
  .page-infrastructure .summary-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-infrastructure .summary-stat {
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .page-infrastructure .summary-stat:nth-child(2n) {
    border-right: none;
  }
}

/* ── MOBILE HERO — centred, matches homepage hero alignment ── */
@media (max-width: 767px) {
  .page-infrastructure .pg-hero-content .hero-button {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }
}
}


/* ── Timeline dot pulse animation ── */
@keyframes dotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 216, 62, .5);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(245, 216, 62, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 216, 62, 0);
  }
}

.page-about .v-item.v-active .v-dot {
  animation: dotPulse 1.2s ease-out;
}

.page-about .v-dot {
  transition: border-color .4s ease, background .4s ease, color .4s ease,
    box-shadow .4s ease, transform .4s ease !important;
}

.page-about .v-card {
  transition: box-shadow .35s ease, border-color .35s ease, transform .35s ease !important;
}

/* ══════════════════════════════
           FACILITY GALLERY + LIGHTBOX
        ══════════════════════════════ */

/* Masonry-style grid: first tile is hero (2col × 2row), rest fill in */
.page-infrastructure .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 380px 280px;
  gap: 6px;
  margin-top: 40px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.page-infrastructure .gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.page-infrastructure .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg);
}

/* Placeholder until real images are added */
.page-infrastructure .gallery-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(80, 98, 74, .28);
  transition: background .3s;
}

.page-infrastructure .gallery-ph i {
  font-size: 36px;
}

.page-infrastructure .gallery-ph span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Real image */
.page-infrastructure .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.page-infrastructure .gallery-item:hover img {
  transform: scale(1.06);
}

/* Dark overlay on hover */
.page-infrastructure .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 70, 35, 0);
  transition: background .3s;
  z-index: 1;
}

.page-infrastructure .gallery-item:hover::after {
  background: rgba(16, 70, 35, .42);
}

.page-infrastructure .gallery-item:hover .gallery-ph {
  background: rgba(80, 98, 74, .06);
}

/* Zoom icon */
.page-infrastructure .gallery-zoom {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}

.page-infrastructure .gallery-zoom i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

.page-infrastructure .gallery-item:hover .gallery-zoom {
  opacity: 1;
}

/* Caption on hero tile */
.page-infrastructure .gallery-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(0, 0, 0, .52);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}

.page-infrastructure .gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── LIGHTBOX — full screen, blurred bg, no side peeks ── */
.page-infrastructure #lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  overflow: hidden;
}

.page-infrastructure #lb-overlay.lb-open {
  opacity: 1;
  pointer-events: all;
}

/* Blurred version of the current image fills the bg */
.page-infrastructure #lb-bg-blur {
  position: absolute;
  inset: -40px;
  background: #0a120a center/cover no-repeat;
  filter: blur(30px) brightness(.3) saturate(1.4);
  transform: scale(1.1);
  z-index: 0;
  transition: background-image .25s;
}

/* Extra dark scrim over blur */
.page-infrastructure #lb-bg-blur::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}

/* Close — top right */
.page-infrastructure #lb-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .25s;
}

.page-infrastructure #lb-close:hover {
  background: rgba(245, 216, 62, .25);
  transform: rotate(90deg) scale(1.1);
}

/* Nav arrows */
.page-infrastructure .lb-nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}

.page-infrastructure .lb-nav-btn:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-50%) scale(1.1);
}

.page-infrastructure #lb-prev {
  left: 24px;
}

.page-infrastructure #lb-next {
  right: 24px;
}

/* Main image stage — takes all remaining space between top and thumb strip */
.page-infrastructure #lb-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  padding: 56px 100px 12px;
  box-sizing: border-box;
}

.page-infrastructure #lb-img {
  max-width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  display: none;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .7);
}

.page-infrastructure #lb-ph {
  width: min(600px, 80vw);
  height: min(400px, 55vh);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, .3);
}

.page-infrastructure #lb-ph i {
  font-size: 52px;
}

.page-infrastructure #lb-ph span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Title + counter below image */
.page-infrastructure #lb-info {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8px 16px 6px;
}

.page-infrastructure #lb-caption-bar {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 3px;
}

.page-infrastructure #lb-counter {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
}

/* Thumbnail strip — pinned to bottom */
.page-infrastructure #lb-thumbs {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(14px);
  overflow-x: auto;
  flex-shrink: 0;
}

.page-infrastructure .lb-thumb {
  width: 56px;
  height: 42px;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .45;
  transition: opacity .2s, border-color .2s;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .3);
  font-size: 14px;
}

.page-infrastructure .lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lb-thumb.active,
.page-infrastructure .lb-thumb:hover {
  opacity: 1;
  border-color: var(--theme2);
}

/* Responsive gallery grid */
@media (max-width: 991px) {
  .page-infrastructure .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px 200px;
  }

  .page-infrastructure .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
}

@media (max-width: 575px) {
  .page-infrastructure .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 160px 160px 160px;
  }

  .page-infrastructure .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .page-infrastructure .lb-nav-btn {
    display: none;
  }

  .page-infrastructure #lb-stage {
    padding: 52px 12px 8px;
  }
}

/* ──────────────────────────────────────────
   PRODUCTS.HTML — non-hero styles
   ────────────────────────────────────────── */
/* H1 size tuned so title stays on 1-2 lines */
.page-products .pg-hero-content h1 {
  font-size: clamp(30px, 4vw, 58px);
}

/* ── Category Filter Tabs ── */
.page-products .filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}

.page-products .filter-tab {
  padding: 8px 24px;
  border: 1.5px solid rgba(47, 47, 47, .2);
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  background: transparent;
  color: var(--header);
  transition: all .35s ease;
}

.filter-tab.active,
.page-products .filter-tab:hover {
  background: var(--theme2);
  border-color: var(--theme2);
  color: var(--header);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 216, 62, .35);
}

/* ── Product Card ── */
.page-products .product-card {
  background: var(--white);
  box-shadow: 0 4px 60px rgba(79, 127, 58, .12);
  overflow: hidden;
  transition: transform .45s ease, box-shadow .45s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-products .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(79, 127, 58, .22);
}

/* image wrapper */
.page-products .product-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: var(--bg);
}

.page-products .product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.page-products .product-card:hover .product-card-img img {
  transform: scale(1.07);
}

/* badge */
.page-products .product-badge {
  position: absolute;
  top: 16px;
  left: 0;
  background: var(--theme2);
  color: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 14px;
}

/* hover overlay */
.page-products .product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 47, 47, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s ease;
}

.page-products .product-card:hover .product-card-overlay {
  opacity: 1;
}

.page-products .product-card-overlay .cta-button {
  transform: translateY(10px);
  transition: transform .4s ease .1s;
}

.page-products .product-card:hover .product-card-overlay .cta-button {
  transform: translateY(0);
}

/* body */
.page-products .product-card-body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-products .product-card-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--theme);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 8px;
}

.page-products .product-card-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.3;
}

.page-products .product-card-body p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}

/* variants chips */
.page-products .product-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
}

.page-products .variant-chip {
  font-size: 11px;
  font-weight: 600;
  color: var(--bg2);
  border: 1px solid rgba(80, 98, 74, .3);
  padding: 3px 10px;
  text-transform: uppercase;
  border-radius: 2px;
  letter-spacing: .4px;
}

/* footer of card */
.page-products .product-card-footer {
  padding: 0 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-products .product-card-footer .cta-button {
  font-size: 12px;
  padding: 9px 20px;
  flex: 1;
  text-align: center;
}

.page-products .product-enquire {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(47, 47, 47, .2);
  color: var(--header);
  transition: all .35s ease;
  font-size: 18px;
  flex-shrink: 0;
}

.page-products .product-enquire:hover {
  background: var(--theme);
  border-color: var(--theme);
  color: var(--white);
}

/* ── Category Header rows ── */
.page-products .category-row-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}

.page-products .category-row-title h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--header);
  white-space: nowrap;
  text-transform: uppercase;
}

.page-products .category-row-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--theme2) 0%, transparent 100%);
}

/* ── Stats strip ── */
.page-products .stats-strip {
  background: var(--header);
  padding: 30px 0;
}

.page-products .stat-item .num {
  font-size: 40px;
  font-weight: 700;
  color: var(--theme2);
  line-height: 1;
}

.page-products .stat-item p {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 6px;
}

/* ── Hidden for filter JS ── */
.page-products .product-col.hidden {
  display: none;
}

/* ── Fade in animation ── */
.page-products .product-col {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
}

.page-products .product-col.animate-in {
  opacity: 0;
  transform: translateY(30px);
}

.page-products .product-col.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 767px) {

  .page-products .filter-tabs {
    gap: 8px;
  }

  .page-products .filter-tab {
    font-size: 12px;
    padding: 7px 16px;
  }
}

/* ──────────────────────────────────────────
   MANGO.HTML — non-hero styles
   ────────────────────────────────────────── */

.page-beetroot .pg-section-rule {
  width: 44px;
  height: 3px;
  background: #3a5c20;
  margin: 14px 0 18px;
}

.page-beetroot .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.page-beetroot .product-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  text-decoration: none;
  display: block;
  color: inherit;
  position: relative;
}

.page-beetroot .product-card:hover {
  box-shadow: var(--box-shadow);
  transform: translateY(-4px);
  border-color: var(--theme2);
  color: inherit;
  z-index: 2;
}

.page-beetroot .product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--theme2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.page-beetroot .product-card:hover::before {
  transform: scaleX(1);
}

.page-beetroot .product-card-thumb {
  /* height: 220px; */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.page-beetroot .product-card-thumb img {
  width: 100%;
  /* height: 100%; */
  height: auto;
  object-fit: cover;
  display: block;
}

.page-beetroot .product-card-thumb .ph-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(80, 98, 74, .35);
}

.page-beetroot .product-card-thumb .ph-wrap i {
  font-size: 40px;
}

.page-beetroot .product-card-thumb .ph-wrap span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.page-beetroot .product-card-body {
  padding: 22px 24px 24px;
}

.page-beetroot .product-card-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.page-beetroot .product-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 14px;
  text-transform: none;
}

.page-beetroot .product-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-beetroot .product-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  padding: 4px 12px;
  border: 1px solid rgba(80, 98, 74, .15);
}

.page-beetroot .product-tag.yellow {
  background: rgba(245, 216, 62, .18);
  color: #6b5500;
  border-color: rgba(245, 216, 62, .4);
}

.page-beetroot .product-table-wrap {
  background: var(--white);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .07);
  margin-top: 8px;
}

.page-beetroot .product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.page-beetroot .product-table thead tr {
  background: var(--header);
}

.page-beetroot .product-table thead th {
  padding: 20px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  text-align: left;
}

.page-beetroot .product-table thead th:first-child {
  border-left: 4px solid var(--theme2);
}

.page-beetroot .product-table tbody tr {
  border-bottom: 1px solid rgba(80, 98, 74, .08);
  transition: background .2s;
}

.page-beetroot .product-table tbody tr:last-child {
  border-bottom: none;
}

.page-beetroot .product-table tbody tr:hover {
  background: rgba(245, 216, 62, .06);
}

.page-beetroot .product-table tbody td {
  padding: 18px 24px;
  color: var(--text);
  vertical-align: middle;
  text-transform: none;
}

.page-beetroot .product-table tbody td:first-child {
  font-weight: 700;
  color: var(--header);
  border-left: 4px solid transparent;
  transition: border-color .2s;
}

.page-beetroot .product-table tbody tr:hover td:first-child {
  border-left-color: var(--theme2);
}

.page-beetroot .capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(17, 162, 27, .08);
  color: var(--theme3);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
}

.page-beetroot .pg-cta {
  background: var(--header);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-beetroot .pg-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 216, 62, .06) 0%, transparent 65%);
  pointer-events: none;
}

.page-beetroot .pg-cta h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
}

.page-beetroot .pg-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, .68);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  position: relative;
}

.page-beetroot .pg-other-products {
  padding-top: 60px;
}

.page-beetroot .pg-other-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--header);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.page-beetroot .pg-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.page-beetroot .pg-other-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: border-color .25s, box-shadow .25s;
}

.page-beetroot .pg-other-card:hover {
  border-color: var(--theme2);
  box-shadow: var(--box-shadow);
}

.page-beetroot .pg-other-card-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.page-beetroot .pg-other-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 2px;
  text-transform: uppercase;
}

.page-beetroot .pg-other-card span {
  font-size: 12px;
  color: var(--text);
  text-transform: none;
}

@media (max-width: 991px) {
  .page-beetroot .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-beetroot .pg-other-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 767px) {
  .page-beetroot .product-grid {
    grid-template-columns: 1fr;
  }

  /* ── Responsive card-stack table ── */
  .page-beetroot .product-table-wrap {
    overflow-x: unset;
    /* no horizontal scroll needed */
    box-shadow: none;
    background: transparent;
  }

  .page-beetroot .product-table,
  .page-beetroot .product-table tbody,
  .page-beetroot .product-table tr,
  .page-beetroot .product-table td {
    display: block;
    width: 100%;
  }

  /* Hide the original thead visually but keep it accessible */
  .page-beetroot .product-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* Each row becomes a card */
  .page-beetroot .product-table tbody tr {
    background: var(--white);
    border: 1px solid rgba(80, 98, 74, .10);
    margin-bottom: 14px;
    padding: 6px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  }

  .page-beetroot .product-table tbody tr:last-child {
    border-bottom: 1px solid rgba(80, 98, 74, .12);
    margin-bottom: 0;
  }

  /* Each cell: label on the left, value on the right */
  .page-beetroot .product-table tbody td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 18px;
    border-bottom: 1px dashed rgba(80, 98, 74, .1);
    font-size: 14px;
    text-align: right;
  }

  .page-beetroot .product-table tbody td:last-child {
    border-bottom: none;
  }

  /* Inject the column label from data-label */
  .page-beetroot .product-table tbody td::before {
    content: attr(data-label);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(80, 98, 74, .55);
    flex-shrink: 0;
    text-align: left;
    padding-top: 2px;
  }

  /* Product name cell — override first-child bold */
  .page-beetroot .product-table tbody td:first-child {
    font-weight: 700;
    color: var(--header);
    font-size: 14px;
  }

  /* Badge should stay inline on the right */
  .page-beetroot .capacity-badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

@media (max-width: 575px) {
  .page-beetroot .product-table tbody td {
    padding: 10px 14px;
  }

  .page-beetroot .pg-other-grid {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────
   SWEET-CORN.HTML — non-hero styles
   ────────────────────────────────────────── */

.page-sweet-corn .pg-section-rule {
  width: 44px;
  height: 3px;
  background: #3a5c20;
  margin: 14px 0 18px;
}

.page-sweet-corn .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.page-sweet-corn .product-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  text-decoration: none;
  display: block;
  color: inherit;
  position: relative;
}

.page-sweet-corn .product-card:hover {
  box-shadow: var(--box-shadow);
  transform: translateY(-4px);
  border-color: var(--theme2);
  color: inherit;
  z-index: 2;
}

.page-sweet-corn .product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--theme2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.page-sweet-corn .product-card:hover::before {
  transform: scaleX(1);
}

.page-sweet-corn .product-card-thumb {
  /* height: 220px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.page-sweet-corn .product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-sweet-corn .product-card-thumb .ph-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(80, 98, 74, .35);
}

.page-sweet-corn .product-card-thumb .ph-wrap i {
  font-size: 40px;
}

.page-sweet-corn .product-card-thumb .ph-wrap span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.page-sweet-corn .product-card-body {
  padding: 22px 24px 24px;
}

.page-sweet-corn .product-card-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.page-sweet-corn .product-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 14px;
  text-transform: none;
}

.page-sweet-corn .product-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-sweet-corn .product-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  padding: 4px 12px;
  border: 1px solid rgba(80, 98, 74, .15);
}

.page-sweet-corn .product-tag.yellow {
  background: rgba(245, 216, 62, .18);
  color: #6b5500;
  border-color: rgba(245, 216, 62, .4);
}

.page-sweet-corn .product-table-wrap {
  background: var(--white);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .07);
  margin-top: 8px;
}

.page-sweet-corn .product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.page-sweet-corn .product-table thead tr {
  background: var(--header);
}

.page-sweet-corn .product-table thead th {
  padding: 20px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  text-align: left;
}

.page-sweet-corn .product-table thead th:first-child {
  border-left: 4px solid var(--theme2);
}

.page-sweet-corn .product-table tbody tr {
  border-bottom: 1px solid rgba(80, 98, 74, .08);
  transition: background .2s;
}

.page-sweet-corn .product-table tbody tr:last-child {
  border-bottom: none;
}

.page-sweet-corn .product-table tbody tr:hover {
  background: rgba(245, 216, 62, .06);
}

.page-sweet-corn .product-table tbody td {
  padding: 18px 24px;
  color: var(--text);
  vertical-align: middle;
  text-transform: none;
}

.page-sweet-corn .product-table tbody td:first-child {
  font-weight: 700;
  color: var(--header);
  border-left: 4px solid transparent;
  transition: border-color .2s;
}

.page-sweet-corn .product-table tbody tr:hover td:first-child {
  border-left-color: var(--theme2);
}

.page-sweet-corn .capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(17, 162, 27, .08);
  color: var(--theme3);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
}

.page-sweet-corn .pg-cta {
  background: var(--header);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-sweet-corn .pg-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 216, 62, .06) 0%, transparent 65%);
  pointer-events: none;
}

.page-sweet-corn .pg-cta h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
}

.page-sweet-corn .pg-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, .68);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  position: relative;
}

.page-sweet-corn .pg-other-products {
  padding-top: 60px;
}

.page-sweet-corn .pg-other-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--header);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.page-sweet-corn .pg-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.page-sweet-corn .pg-other-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: border-color .25s, box-shadow .25s;
}

.page-sweet-corn .pg-other-card:hover {
  border-color: var(--theme2);
  box-shadow: var(--box-shadow);
}

.page-sweet-corn .pg-other-card-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.page-sweet-corn .pg-other-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 2px;
  text-transform: uppercase;
}

.page-sweet-corn .pg-other-card span {
  font-size: 12px;
  color: var(--text);
  text-transform: none;
}

@media (max-width: 991px) {
  .page-sweet-corn .product-grid {
    grid-template-columns: 1fr;
  }

  .page-sweet-corn .pg-other-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 767px) {

  .product-table thead th,
  .page-sweet-corn .product-table tbody td {
    padding: 14px 14px;
  }
}

@media (max-width: 575px) {
  .page-sweet-corn .pg-other-grid {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────
   BABY-CORN.HTML — non-hero styles
   ────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────
           All colours, fonts, spacing pulled from main.css vars.
           Only structural rules that main.css has no equivalent for.
        ───────────────────────────────────────────────────── */

/* same green-left gradient used in hero-portfolio-revealing-slide-inner::before */
/* hero content — mirrors hero-portfolio-revealing-slide-content */
/* stat bar pinned to bottom of hero */

/* SECTION HEADINGS — match main.css sub-title-2 + section-title style */
.page-baby-corn .pg-section-tag {
  color: var(--theme2);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-baby-corn .pg-section-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--header);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* on dark bg */
.page-baby-corn .on-dark .pg-section-tag {
  color: var(--theme2);
}

.page-baby-corn .on-dark .pg-section-heading {
  color: #fff;
}

.page-baby-corn .on-dark p {
  color: rgba(255, 255, 255, .55);
}

.page-baby-corn .pg-section-rule {
  width: 44px;
  height: 3px;
  background: #3a5c20;
  margin: 14px 0 18px;
}

.page-baby-corn .on-dark .pg-section-rule {
  background: var(--theme2);
}

/* PRODUCT CARDS — use main.css card feel + why-choose-us-card hover */
.page-baby-corn .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.page-baby-corn .product-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  text-decoration: none;
  display: block;
  color: inherit;
  position: relative;
}

.page-baby-corn .product-card:hover {
  box-shadow: var(--box-shadow);
  transform: translateY(-4px);
  border-color: var(--theme2);
  color: inherit;
  z-index: 2;
}

.page-baby-corn .product-card-thumb {
  /* height: 180px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
}

/* coloured accent bar at top on hover — mirrors why-choose-us-card::after */
.page-baby-corn .product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--theme2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.page-baby-corn .product-card:hover::before {
  transform: scaleX(1);
}

.page-baby-corn .product-card-body {
  padding: 22px 24px 24px;
}

.page-baby-corn .product-card-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.page-baby-corn .product-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 14px;
  text-transform: none;
}

.page-baby-corn .product-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-baby-corn .product-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  padding: 4px 12px;
  border: 1px solid rgba(80, 98, 74, .15);
}

.page-baby-corn .product-tag.yellow {
  background: rgba(245, 216, 62, .18);
  color: #6b5500;
  border-color: rgba(245, 216, 62, .4);
}

/* DATA TABLE — matches main.css header dark style */
.page-baby-corn .product-table-wrap {
  background: var(--white);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .07);
  margin-top: 8px;
}

.page-baby-corn .product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.page-baby-corn .product-table thead tr {
  background: var(--header);
}

.page-baby-corn .product-table thead th {
  padding: 20px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  text-align: left;
}

.page-baby-corn .product-table thead th:first-child {
  border-left: 4px solid var(--theme2);
}

.page-baby-corn .product-table tbody tr {
  border-bottom: 1px solid rgba(80, 98, 74, .08);
  transition: background .2s;
}

.page-baby-corn .product-table tbody tr:last-child {
  border-bottom: none;
}

.page-baby-corn .product-table tbody tr:hover {
  background: rgba(245, 216, 62, .06);
}

.page-baby-corn .product-table tbody td {
  padding: 18px 24px;
  color: var(--text);
  vertical-align: middle;
  text-transform: none;
}

.page-baby-corn .product-table tbody td:first-child {
  font-weight: 700;
  color: var(--header);
  border-left: 4px solid transparent;
  transition: border-color .2s;
}

.page-baby-corn .product-table tbody tr:hover td:first-child {
  border-left-color: var(--theme2);
}

.page-baby-corn .capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(17, 162, 27, .08);
  color: var(--theme3);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
}


/* BOTTOM CTA — darker header colour so it contrasts with the green CTA banner below */
.page-baby-corn .pg-cta {
  background: var(--header);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-baby-corn .pg-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 216, 62, .06) 0%, transparent 65%);
  pointer-events: none;
}

.page-baby-corn .pg-cta h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
}

.page-baby-corn .pg-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, .68);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  position: relative;
}

/* PRODUCT CARD IMAGE PLACEHOLDER */
.page-baby-corn .product-card-thumb {
  /* height: 220px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.page-baby-corn .product-card-thumb img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  display: block;
}




/* placeholder shown when no img tag present */
.page-baby-corn .product-card-thumb .ph-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(80, 98, 74, .35);
}

.page-baby-corn .product-card-thumb .ph-wrap i {
  font-size: 40px;
}

.page-baby-corn .product-card-thumb .ph-wrap span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* OTHER PRODUCTS ROW */
.page-baby-corn .pg-other-products {
  padding-top: 60px;
}

.page-baby-corn .pg-other-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--header);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.page-baby-corn .pg-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.page-baby-corn .pg-other-card {
  background: var(--white);
  border: 1px solid rgba(80, 98, 74, .12);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: border-color .25s, box-shadow .25s;
}

.page-baby-corn .pg-other-card:hover {
  border-color: var(--theme2);
  box-shadow: var(--box-shadow);
}

.page-baby-corn .pg-other-card-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.page-baby-corn .pg-other-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 2px;
  text-transform: uppercase;
}

.page-baby-corn .pg-other-card span {
  font-size: 12px;
  color: var(--text);
  text-transform: none;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .page-baby-corn .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .page-baby-corn .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-baby-corn .pg-other-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 767px) {
  .page-baby-corn .product-grid {
    grid-template-columns: 1fr;
  }

  .page-baby-corn .cert-grid {
    grid-template-columns: 1fr;
  }

  .product-table thead th,
  .page-baby-corn .product-table tbody td {
    padding: 14px 14px;
  }
}

@media (max-width: 575px) {
  .page-baby-corn .pg-other-grid {
    grid-template-columns: 1fr;
  }
}


/* ── Global mobile CTA consistency ──
   Stacked, centred, 55% width — clean and balanced on all phones */
@media (max-width: 767px) {

  /* Container: column, centred */
  .exp-partner-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .exp-partner-btns {
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: stretch;
    width: 100%;
  }

  .exp-partner-btns .theme-btn,
  .exp-partner-btns .cta-button {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

  /* choose-us-btn-item: button + call-us side by side */
  .choose-us-btn-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
    margin-top: 24px;
  }

  .choose-us-btn-item .theme-btn {
    flex: 1 1 auto;
    padding: 13px 20px;
    border-radius: 0 !important;
    overflow: visible;
    background-color: transparent !important;
    color: var(--header) !important;
    border: 1.5px solid var(--header) !important;
    font-size: 13px;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
  }

  .choose-us-btn-item .icon-item {
    flex: 0 0 auto;
  }

  /* Remove border-radius from all CTAs on mobile */
  .cta-button,
  .theme-btn,
  .new-cta-btn,
  .new-cta-phone {
    border-radius: 0 !important;
  }
}

/* ── CUSTOM MOBILE OFFCANVAS NAV ── */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.mobile-nav-list li a {
  display: block;
  padding: 13px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  text-decoration: none;
}

.mobile-nav-list li.active>a,
.mobile-nav-list li.active>.mobile-nav-item>a {
  color: var(--theme);
}

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

.mobile-nav-item a {
  flex: 1;
}

.mobile-sub-toggle {
  background: none;
  border: none;
  padding: 13px 0 13px 12px;
  cursor: pointer;
  color: var(--header);
  font-size: 14px;
  line-height: 1;
  transition: transform .25s;
}

.mobile-sub-toggle.is-open {
  transform: rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  padding: 0 0 6px 16px;
  margin: 0;
  display: none;
}

.mobile-submenu.is-open {
  display: block;
}

.mobile-submenu li {
  border-bottom: none;
}

.mobile-submenu li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
}

.mobile-submenu li a:hover {
  color: var(--theme);
}

/* ── HIDE DESKTOP NAV ON MOBILE (replaces meanmenu.js behaviour) ── */
@media (max-width: 1199px) {
  .mean__menu-wrapper {
    display: none;
  }
}

/* ── ENSURE HAMBURGER IS ALWAYS CLICKABLE ABOVE HERO ── */
.header-1 {
  z-index: 1000;
}

.header__hamburger,
.header__hamburger .sidebar__toggle {
  position: relative;
  z-index: 1001;
  cursor: pointer;
}

/* ── PREVENT GSAP PIN WRAPPERS BLOCKING HEADER CLICKS ── */
.pin-spacer {
  pointer-events: none !important;
}

.pin-spacer>* {
  pointer-events: auto !important;
}

/* ── MOBILE HERO: replace clip-path reveal with simple show/hide ── */
@media (max-width: 767px) {
  .heroMain .hero-portfolio-revealing-slide {
    clip-path: none !important;
    -webkit-clip-path: none !important;
    border-radius: 0 !important;
    position: absolute !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.6s ease, visibility 0s 0.6s !important;
  }

  .heroMain .hero-portfolio-revealing-slide.s-active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2 !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    pointer-events: none !important;
    transition: opacity 0.6s ease !important;
  }

  .heroMain .hero-portfolio-revealing-slider {
    position: relative;
    overflow: visible;
  }

  .heroMain .hero-portfolio-revealing-slide-inner {
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    position: absolute !important;
  }
}