* {
  box-sizing: border-box;
}

:root {
  --dark-green: #006400;
  --dark-yellow: #FFD700;
  --light-grey: #D3D3D3;
  --dark-black-600: #333333;
  --dark-black-500: #1D1D1D;
  --border-color: #001625;
  --light-yellow-400: #FFF8D2;
  --right-left-gradient: linear-gradient(90deg, #006400 22.13%, rgba(0, 100, 0, 0.876214) 34.86%, rgba(0, 100, 0, 0) 56.35%);
  --error: red;
  --white: #fff;
  --black: #000;
  --font-inter: "Inter", sans-serif;

}

body {
  margin: 0;
  padding: 0;
  transition: 0.5s;
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
ul {
  margin: 0;
  padding: 0;
}

h1 {
  font-weight: 700;
  font-size: 55px;
  line-height: 60px;
}

h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
}

p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

li {
  list-style: none;
}

a {
  color: var(--bs-link-color);
  text-decoration: none;
}

a:hover {
  cursor: pointer;
  text-decoration: none;
  color: var(--bs-link-hover-color);
}

a,
button {
  -webkit-transition: all 250ms ease 0s;
  -moz-transition: all 250ms ease 0s;
  -ms-transition: all 250ms ease 0s;
  -o-transition: all 250ms ease 0s;
  transition: all 250ms ease 0s;
}

button,
button:focus {
  outline: none;
  border: none;
  cursor: pointer;
}

input,
select,
textarea {
  font-size: 16px;
  line-height: 37px;
}

textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
  box-shadow: none;
}

input:hover,
input:active,
input:focus {
  outline: none;
  box-shadow: none;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: inherit;
}

select:hover,
select:active,
select:focus {
  outline: none;
  box-shadow: none;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
  /*For FireFox*/
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  transition: background-color 9999s ease-in-out 0s;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

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

.flex-box {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1* var(--bs-gutter-y));
}

.custom-container {
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 50px;
}

.lg-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 30px;
}

nav.navbar .navbar-wrapper {
  display: flex;
  flex-wrap: inherit;
  align-items: end;
  justify-content: space-between;
}

.owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: #d3eac8;
  display: inline-flex;
  position: relative;
  margin-right: 6px;
  border-radius: 50%;
}


/* global solid button */
.global-solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 32px;
  min-height: 46px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 6%;
  border-radius: 12px;
  text-transform: uppercase;
  color: var(--dark-black-600);
  position: relative;
  background-color: var(--dark-yellow);
  transition: all 0.4s ease-in-out;

}

.global-solid-button:hover {
  background-color: var(--dark-black-600);
  color: var(--dark-yellow);
}

.global-solid-button.white-solid-button {
  background: #fff;
  color: var(--dark-green);
}

.global-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid var(--dark-yellow);
  line-height: 100%;
  letter-spacing: 6%;
  width: max-content;
  text-transform: uppercase;
  color: var(--dark-yellow);
  position: relative;
  transition: all 0.4s ease-in-out;
}

.global-light-button:hover {
  color: var(--dark-green);
  border-color: var(--dark-green);
}


/* global solid button */
/* top bar start */
.top-bar {
  position: relative;
}

.top-bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 700px;
  width: 100%;
  background: url('../images/curve-shape.webp')no-repeat;
  background-size: cover;
  background-position: left center;
  z-index: -1;
}

.top-bar ul.call-us-box {
  max-width: 500px;
  margin-left: auto;
  text-align: right;
  padding: 13px 0;
  color: var(--white);
  position: relative;
  z-index: 3;
}

.top-bar ul.call-us-box li,
.top-bar ul.call-us-box li a {
  font-weight: 500;
  font-size: 18px;
  line-height: 170%;
}

.top-bar ul.call-us-box li a {
  color: var(--light-grey);
  margin-left: 10px;
}

.top-bar ul.call-us-box li a:hover {
  color: var(--dark-yellow);
}

nav.navbar .navbar-wrapper .collapse.navbar-collapse {
  position: relative;
  top: -12px;
}

/* top bar start */
/* global header start */


/* global header end */
/* header start */
nav.navbar a.nav-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 17.58px;
  color: var(--dark-black-600);
  padding-top: 0px;
  padding-bottom: 0px;
  transform: all 0.4s ease-in-out;
}

nav.navbar a.nav-link:hover {
  color: var(--dark-green);
  transform: all 0.4s ease-in-out;

}

nav.navbar .current-menu-item > a.nav-link,
nav.navbar .current_page_item > a.nav-link,
nav.navbar .current-menu-ancestor > a.nav-link,
nav.navbar .current-menu-parent > a.nav-link,
nav.navbar .current_page_parent > a.nav-link,
nav.navbar .current_page_ancestor > a.nav-link,
nav.navbar .current-menu-item > a.dropdown-item,
nav.navbar .current_page_item > a.dropdown-item,
nav.navbar .current-menu-ancestor > a.dropdown-item,
nav.navbar .current-menu-parent > a.dropdown-item,
nav.navbar .current_page_parent > a.dropdown-item,
nav.navbar .current_page_ancestor > a.dropdown-item {
  color: var(--dark-green) !important;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.dropdown-menu {
  -webkit-animation: fadeIn 0.2s alternate;
  animation: fadeIn 0.2s alternate;
  padding: 0px;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}

li.nav-item.dropdown .dropdown-menu a.dropdown-item {
  padding: 10px 19px;
}

.active-menu-item {
  color: #006400 !important;
  font-weight: 600 !important;
}

li.nav-item.dropdown .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent;
  color: #006400 !important;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 5%;
}

li.nav-item.dropdown:hover .dropdown-menu:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 13px solid #ffffff;
  top: -11px;
  left: 50%;
  transform: translate(-50%, 0px);
}

li.nav-item.dropdown:hover .dropdown-menu:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 26px;
  top: -15px;
  left: 0;
  background: transparent;
  z-index: -1;
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 30px;
  z-index: 11;
  right: 0px;
}

.only_mobile_view {
  display: none;
}

.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 2px;
  position: absolute;
  background: var(--dark-green);
  border-radius: 0px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  right: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}

nav.top-navbar {
  background-color: transparent;
  margin-top: -56px;
}

nav.top-navbar li.nav-item {
  padding: 0px 10px;
  border-right: 1px solid var(--dark-green-800);
}

nav.top-navbar ul.navbar-nav li.nav-item:first-child {
  border-left: 1px solid var(--dark-green-800);
}

nav.top-navbar {
  padding: 16px 0px;
}

nav.top-navbar li.nav-item.dropdown {
  display: flex;
}

.custom-logo-link img {
  width: 107px;
  transition: width 0.1s ease;
}

.top-navbar ul.navbar-nav {
  margin: 0 auto;
}

.top-navbar.sticky .navbar-wrapper {
  align-items: center;
}

.top-navbar.sticky .navbar-wrapper .collapse.navbar-collapse {
  top: 0px;
}

.top-navbar.sticky .custom-logo-link img {
  width: 72px;
}

.top-navbar.sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
  padding: 2px 0px;
  z-index: 99;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
  animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

a.nav-link.dropdown-toggle {
  display: flex;
  align-items: end;
  padding-left: 0px !important;
}

.dropdown-toggle::after {
  display: none;
}

.custom-logo-link {
  max-width: 108px;
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}

/* .dropdown-toggle.show::after,
li.nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
  transition: all 0.4s ease-in-out;
} */

li.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  top: 30px;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
  box-shadow: 1px -4px 20px 0px #4a4a4a6e !important;
  transition: all 0.4s ease-in-out;
}

.dropdown-menu {
  border: none;
}

/* navbar end */
/* hero banner */
.home-hero-banner {
  background: var(--dark-green);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 95vh;
  display: flex;
  align-items: end;
  position: relative;
}

.hero-banner-inner {
  display: inline-block;
}

.hero-banner-inner {
  display: flex;
  gap: 50px;
  padding-bottom: 70px;
  align-items: end;
  justify-content: space-between;
}

.hero-banner-inner h1 {
  color: var(--white);
  max-width: 765px;
  position: relative;
  z-index: 1;
}

.hero-banner-inner h1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(236deg, #000000c2, #00000099, #000000d4);
  height: 100%;
  z-index: -1;
  transform: scale(1.19);
  filter: blur(60px);
}

.hero-banner-inner .small-head {
  display: inline-block;
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  max-width: 277px;
  padding-left: 8px;
  border-left: 3px solid #FFD700;
  line-height: 25px;
}

.hero-banner-inner .header-wrapper {
  display: inline-flex;
  align-items: flex-end;
  gap: 11px;
  vertical-align: baseline;
  transform: translate(0px, -20px);
}

.home-hero-banner .custom-container {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0px);
  z-index: 3;
}

.home-hero-banner iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-banner::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: rgba(0, 0, 0, 0.308);
  height: 100%;
  width: 100%;
  z-index: 0;
}

.banner-video-button img.pause-btn-icon,
.banner-video-button.playVideo img.play-btn-icon {
  display: none;
}

.banner-video-button img {
  transition: all 0.1s ease-in-out;
  animation: pulse-border 3000ms ease-out infinite;
}

@keyframes pulse-border {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

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


.banner-video-button:hover img {
  cursor: pointer;
}

.banner-video-button.playVideo img.pause-btn-icon {
  display: block;
}

/* hero banner */

.global-header {
  margin-bottom: 40px;
}

.global-header p {
  margin: 23px 0px;
}

.global-header h5 {
  max-width: max-content;
  position: relative;
  padding-left: 26px;
  font-weight: 500;
  font-size: 16px;
  line-height: 60px;
  letter-spacing: 3px;
  color: var(--dark-green);
  text-transform: uppercase;
}

.global-header h5::before {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  content: '';
  position: absolute;
  background: var(--dark-green);
  top: 27px;
  left: 12px;
}

.global-header h2 {
  color: var(--dark-black-600);
}

.about-agri-veta-sec {
  padding: 80px 0px;
}

.about-agri-veta-sec .global-header {
  max-width: 500px;
}

.about-agri-veta-sec .image-box img {
  width: 100%;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}

.about-agri-veta-sec .content-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: 14px;
}

.about-agri-veta-sec .abt-card {
  margin: 0px 0px 48px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.abt-feature-cards {
  width: 100%;
  margin-top: 50px;
}

.about-agri-veta-sec .abt-card h3 {
  font-weight: 700;
  font-size: 45px;
  line-height: 60px;
  color: var(--dark-green);
  transition: all 0.3s ease;
}

.about-agri-veta-sec .abt-card h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 60px;
  color: var(--dark-black-600);
}

/* end */

/* start */
.comprehensive-solutions-sec {
  background: url('../images//comprehensive-solutions-bg.webp') no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0px;
}

.comprehensive-sol-item .cntn-box {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
  min-height: 190px;
  padding: 20px 20px 20px 20px;
  color: var(--white);
  transition: all 0.4s ease;
}

.comprehensive-sol-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 548px;
}

.comprehensive-sol-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.comprehensive-sol-item.simi-blog::before {
  background: linear-gradient(180deg, rgba(16, 18, 15, 0) 34.71%, rgb(15 15 18 / 26%) 63.49%, #10120F 92.95%);
}

.comprehensive-sol-item.simi-blog::after {
  background: linear-gradient(180deg, rgba(16, 18, 15, 0) 34.71%, rgb(0 100 0 / 31%) 63.49%, #006400 92.95%);
}

/* Base gradient (black) */
.comprehensive-sol-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(16, 18, 15, 0) 34.71%,
      rgba(16, 18, 15, 0.79) 63.49%,
      #10120F 92.95%);
  transition: opacity 0.5s ease;
  opacity: 1;
  z-index: 1;
}

/* Hover gradient (green) */
.comprehensive-sol-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(16, 18, 15, 0) 34.71%,
      rgba(0, 100, 0, 0.59) 63.49%,
      #006400 92.95%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* Smooth change */
.comprehensive-sol-item:hover::after {
  opacity: 1;
}

.comprehensive-sol-item:hover::before {
  opacity: 0;
}




.comprehensive-sol-item img {
  width: 100%;
}

.comprehensive-sol-item h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.comprehensive-sol-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
}

.comprehensive-solutions-sec .global-header {
  max-width: 650px;
  margin: 0 auto 70px;
  text-align: center;
  color: #fff;
}

.comprehensive-solutions-sec .global-header h2,
.comprehensive-solutions-sec .global-header h5 {
  color: var(--white);
  margin: auto;
}

.comprehensive-solutions-sec .global-header h5::before {
  background-color: #fff;
}

/* end */
/* start */
.stay-update-sec {
  padding: 60px 0px 80px;
}

.stay-update-sec .global-header {
  max-width: 500px;
  margin: 0 auto 50px;
  text-align: center;
}

.stay-update-sec .global-header h5 {
  margin: auto;
}

.news-item .image-box {
  overflow: hidden;
  height: 320px;
  border-radius: 15px;
}

.news-item .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.news-item .cntn-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  padding-right: 35px;
}

.news-item .cntn-box p:empty {
  display: none;
}

.news-item:hover .image-box img {
  transform: scale(1.2);
}

.news-item .cntn-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-item .cntn-box h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 37px;
}

.news-item .cntn-box h3 a {
  color: var(--dark-black-600);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-item .cntn-box .card-date {
  font-weight: 500;
  font-size: 15px;
  line-height: 26px;
  color: var(--dark-green);
  margin-bottom: 0px;
}

/* end */

/* start */
.education-resource-sec {
  padding: 30px 15px;
}

.education-resource-sec .cntn-box {
  background-color: var(--light-yellow-400);
  height: 100%;
  padding: 80px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.education-resource-sec .cntn-rgt-thumb {
  text-align: right;
}

.education-resource-sec .image-box {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.education-resource-sec .image-box img {
  width: 100%;
  transition: all 0.3s ease-in-out;
  height: 100%;
  object-fit: cover;
}

.education-resource-sec .image-box img:hover,
.about-agri-veta-sec .image-box:hover img {
  filter: grayscale(1);
}

/* help box start */
.here-help-sec {
  margin-bottom: -130px;
}

.here-help-box {
  background: var(--dark-green) url('../images/help-bg.webp')no-repeat;
  background-size: cover;
  background-position: right center;
  padding: 80px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.here-help-box::after {
  content: '';
  background: linear-gradient(90deg, #006400 22.13%, rgba(0, 100, 0, 0.876214) 34.86%, rgba(0, 100, 0, 0) 56.35%);
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.here-help-box .content-box {
  max-width: 550px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.here-help-box .content-box h2 span {
  display: block;
}

/* footer start */
footer.footer {
  padding: 80px 0px 0px 0px;
  background-color: var(--dark-black-500);
  color: var(--white);
}

.footer.top-ftr-space {
  padding-top: 200px;
}

footer.footer a {
  color: var(--white);
}

.footer-copyright {
  text-align: center;
  padding: 20px 0px;
  border-top: 1px solid #ffffff17;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.footer-copyright ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-copyright p,
.footer-copyright ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
}

.footer-copyright ul li a:hover {
  color: var(--dark-yellow);
}

.footer-nav {
  max-width: 300px;
  width: 100%;
}

.footer-nav ul li.active-footer a,
.footer-nav ul li.current-menu-item > a,
.footer-nav ul li.current_page_item > a,
.footer-nav ul li.current-menu-ancestor > a,
.footer-nav ul li.current-menu-parent > a,
.footer-nav ul li.current_page_parent > a,
.footer-nav ul li.current_page_ancestor > a {
  color: var(--dark-yellow);
}

footer.footer .flex-box {
  justify-content: space-between;
}

footer.footer .ftr-header {
  font-weight: 700;
  font-size: 21px;
  line-height: 24px;
  text-transform: capitalize;
  text-align: left;
  margin-bottom: 20px;
}

footer.footer .footer-logo p {
  margin: 20px 0px;
}

.footer-nav ul li {
  padding: 6px 0px;
  transition: all 0.3s ease-in-out;
}

.footer-nav ul li,
.footer-nav ul li a {
  display: flex;
  gap: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--light-grey);
  width: 100%;
}

.footer-nav ul li a:hover {
  cursor: pointer;
  color: var(--dark-yellow);
}

.footer-nav ul li span.icon-box img {
  width: 100%;
  object-fit: contain;
}

.footer-nav ul li span.icon-box {
  display: inline-flex;
  width: 16px;
  position: relative;
  top: 4px;
  align-items: self-start;
}

.footer-nav ul li span.ftr-cntc-info {
  display: inline-flex;
  flex: 1;
  color: var(--light-grey);
  transition: all 0.3s ease-in-out;
}

.footer-nav ul li a span.ftr-cntc-info:hover {
  color: var(--dark-yellow);
}

.subscribe-section .tnp-subscription input {
  width: 100%;
  margin-bottom: 30px;
  border: 0px;
  color: var(--light-grey) !important;
  background: transparent !important;
  border-bottom: 1px solid #ffffff2c !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  height: 50px;
}

.subscribe-section .tnp-subscription input.tnp-email {
  padding-left: 0px !important;
  color: var(--light-grey);
  -webkit-text-fill-color: var(--light-grey) !important;
}

.subscribe-section .tnp-subscription div.tnp-field input.tnp-submit {
  font-weight: 700;
  text-transform: uppercase;
  border: 0px !important;
  border-radius: 12px;
  background: var(--dark-yellow) !important;
  padding: 11px 32px;
  min-height: 46px;
  color: var(--dark-black-600) !important;
}

.tnp-field.tnp-field-button {
  margin-top: 30px;
}

.subscribe-section .tnp-subscription .tnp-field-email label {
  display: none !important;
}

.subscribe-section .tnp-subscription input::placeholder {
  color: var(--light-grey) !important;
}

footer.footer .flex-box .footer-nav:nth-child(2),
footer.footer .flex-box .footer-nav:nth-child(3) {
  max-width: 208px;
}

footer.footer .flex-box .footer-nav:nth-child(4) {
  max-width: 400px;
  padding-right: 96px;
}

/* footer end */


.inner-short-banner {
  height: 400px;
  display: flex;
  align-items: end;
  padding: 80px 0px;
  position: relative;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(90deg, #003300, #005200db, #00640054, transparent);
}

.inner-short-banner .text-wrapper {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 1000px;
}

.inner-short-banner .text-wrapper ul li a {
  color: var(--light-grey);
}

.inner-short-banner .text-wrapper ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.banner-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.inner-short-banner .text-wrapper ul li:has(a)::after {
  content: '';
  height: 20px;
  width: 2px;
  background: var(--light-grey);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0px, -50%) rotate(16deg);
}

.inner-short-banner .text-wrapper ul li:has(a) {
  padding-right: 15px;
  position: relative;
}

.inner-short-banner .banner-product-image img {
  max-height: 500px;
}

.inner-short-banner .banner-product-image {
  position: absolute;
  right: calc(10% - 50px);
  bottom: -100px;
  z-index: 2;
}

.product-listing-sec {
  padding:80px 0px;
}
.product-listing-sec nav.navigation.pagination {
    justify-content: center;
    margin-top: 35px;
}
.product-list-sec {
    padding: 40px;
    background: #f8f7f6;
    border-radius: 20px;
    margin: 16px 0;
    overflow: hidden;
    display: flex;
    gap: 30px;
    position: relative;
    height: calc(100% - 20px);
}
.product-list-sec::after {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(45deg, #e2dab1, #fefae6);
  transition: all 0.3s ease-in-out;
}

.product-list-sec:hover::after {
  opacity: 1;
  visibility: visible;
}

.product-list-sec .image-box {
  max-width: 34%;
  width: 100%;
  position: relative;
  z-index: 3;
}

.product-list-sec .cntn-box {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

.product-list-sec .global-light-button {
  color: var(--dark-black-600);
  border-color: var(--dark-black-600);
  margin-top: auto;
}

.product-list-sec .global-light-button:hover {
  color: var(--dark-green);
  border-color: var(--dark-green);
}

.product-list-sec .cntn-box h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
}

.product-list-sec .cntn-box .product-card-category {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 6%;
  margin-bottom: -6px;
  text-transform: uppercase;
  color: var(--dark-green);
}

.product-list-sec .cntn-box p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #535353;
}

.product-listing-sec h4.upper-header {
  font-weight: 500;
  font-size: 28px;
  line-height: 50px;
  color: #535353;
  margin-bottom: 40px;
}

/* contact us start */
.contact-info-sec {
  padding: 90px 0px 70px;
}

.contact-info-item {
  height: 272px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  justify-content: start;
  background-color: #F8F7F6;
  border-radius: 20px;
}

.contact-info-item span {
  background-color: var(--dark-green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  transition: all 0.3s ease-in-out;
}

.contact-info-item h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  margin-top: 15px;
}

.contact-info-item p,
.contact-info-item p a {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  max-width: 270px;
  margin: 0 auto;
  color: #4A4A4A;
  transition: all 0.3s ease-in-out;
}

.contact-info-item p a:hover {
  color: var(--dark-green);
}

.contact-info-item:hover span {
  background-color: var(--dark-yellow);
}

.contact-info-item span img {
  transition: all 0.3s ease-in-out;
}

.contact-info-item:hover span img {
  filter: invert(1);
}

.contact-info-item span i {
  font-size: 34px;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}

.contact-info-item:hover span i {
  color: var(--black);
}

.contact-us-form {
  padding: 50px 0px 80px;
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
}

.cntc-form-inner h2 {
  text-align: center;
  margin-bottom: 35px;
}

.cntc-form-inner label {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 6px;
}

.cntc-form-inner .form-control {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #717680;
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid #D5D7DA;
}

.cntc-form-inner .form-control::placeholder {
  color: #717680;
}

.contact-us-form form {
  padding: 70px;
  background-color: var(--white);
  box-shadow: 1px 1px 11px 2px #ececec;
  border-radius: 25px;
  max-width: 1162px;
  margin: 0 auto;
}

.form-row {
  row-gap: 21px;
}

.contact-us-form .global-solid-button {
  min-width: 289px;
  border: 0px;
}

/* contact us end */

.inner-short-banner.black-gradient .banner-overlay img {
  opacity: 0;
}

.inner-short-banner.black-gradient .banner-overlay {
  background: linear-gradient(90deg, #333333 14.12%, rgba(51, 51, 51, 0.865711) 30.21%, rgba(51, 51, 51, 0.667562) 43.24%, rgba(51, 51, 51, 0) 62.66%);
}

.inner-short-banner .text-wrapper ul li:not(:first-child) a {
  color: var(--white);
}

.inner-short-banner .text-wrapper ul li:last-child::after {
  display: none;
}

.carrer-body-sec {
  padding: 80px 0px;
}

.carrer-item .image-box img {
  width: 100%;
  border-radius: 10px;
}

.carrer-body-sec .upper-header h2 {
  margin-bottom: 20px;
}

.carrer-body-sec .upper-header {
  margin-bottom: 60px;
}

.carrer-body-sec .upper-header h5 {
  font-weight: 500;
  font-size: 28px;
  line-height: 50px;
  color: #535353;
}

/* career start */
.carrer-item {
  display: flex;
  flex-direction: column;
  gap: 34px;
  height: 100%;
  justify-content: space-between;
}

.carrer-item .cntn-box h3 {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 11px;
}

.carrer-item .cntn-box p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #535353;
}

.carrer-body-sec .row .col-xl-6:first-child .carrer-item {
  padding-right: 20px;
}

.carrer-body-sec .row .col-xl-6:last-child .carrer-item {
  padding-left: 20px;
}

/* career end */

/* blog listing start */
.blog-list-sec h2 {
  text-align: center;
  margin-bottom: 55px;
}

.blog-list-sec {
  padding: 80px 0px 40px;
}

.space-up-reduce .cntn-box {
  margin-top: -49px;
  margin-bottom: 49px;
  background: #fff;
  gap: 7px;
  position: relative;
  padding: 20px;
  max-width: calc(100% - 40px);
  border-radius: 20px;
  border-top-left-radius: 0px;
  margin-bottom: 30px;
}

.space-up-reduce .cntn-box p:empty {
  display: none;
}

.space-up-reduce .card-date span {
  display: inline-block;
  margin-right: 7px;
}

.news-item.space-up-reduce:hover .cntn-box {
  background: #FFFBE4;
}

/* blog listing end */

/* start */
.similar-blog-sec {
  background-color: var(--light-yellow-400);
  padding: 80px 0px;
}

.similar-blog-sec .global-header h2 {
  text-align: center;
  text-transform: capitalize;
}

.similar-blog-sec .global-header {
  max-width: 1064px;
  margin: 0 auto 50px;
}

.simi-blog h4 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
}

.simi-blog .cntn-box {
  min-height: 100px;
  padding: 20px 20px 20px 20px;
}

.simi-blog .cntn-box a {
  color: #fff;
}

/* end */

/* blog details start */
.blog-details-sec {
  padding: 80px 0px;
}

.blog-user-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 13px;
  max-width: 268px;
  margin: 0 auto;
}

.blog-user-info p {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #535353;
}

.blog-user-info ul.user-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid #dddddd;
  padding-top: 15px;
  margin-top: 5px;
  width: 100%;
}

.blog-user-info ul.user-social li a {
  display: inline-flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--dark-green);
  color: var(--dark-green);
  transition: all 0.3s ease-in-out;
}

.blog-user-info ul.user-social li a:hover {
  background-color: var(--dark-green);
  color: var(--white);
}

.blog-user-info span {
  width: 154px;
  height: 154px;
  overflow: hidden;
  border-radius: 50%;
  display: inline-block;
}

.blog-user-info span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-user-info h4 {
  font-weight: 700;
  font-size: 22px;
  line-height: 34px;
  text-align: center;
  text-transform: capitalize;
  margin-top: 6px;
}

.blog-detals-info {
  display: flex;
  flex-direction: column;
  padding-right: 142px;
  gap: 18px;
}

.blog-detals-info img {
  border-radius: 10px;
  max-height: 407px;
  object-fit: cover;
}

.blog-detals-info h3 {
  color: #333333;
  font-weight: 700;
  font-size: 34px;
  line-height: 44px;
  text-transform: capitalize;
}

.blog-thumb-big img {
  width: 100%;
  border-radius: 14px;
}

.blog-detals-info p {
  color: #535353;
}

.blog-thumb-big {
  margin: 15px 0px;
}

/* blog details end */

.download-resource-sec {
  padding: 80px 0px;
}

.download-resource-sec .custom-container {
  max-width: 1100px;
}

.download-res-item h5 {
  font-weight: 700;
  font-size: 24px;
  line-height: 60px;
  text-align: center;
  color: var(--dark-black-600);
}

.download-res-item {
  display: flex;
  justify-content: space-between;
  padding: 27px 0px;
  gap: 16px;
  border-bottom: 1px solid #0000001c;
}

.download-res-item .global-solid-button i {
  font-size: 20px;
  margin-left: 10px;
}

.global-header h6,
.mission-vision-outer .global-header p {
  font-weight: 500;
  font-size: 20px;
  color: #535353;
  line-height: 36px;
  text-align: center;
}

.pdf-tab-list {
  justify-content: space-between;
  border: 1px solid #0000001c;
  padding: 10px;
  border-radius: 50px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: 0px;
  gap: 15px;
}
.pdf-tab-list li{
  flex: 1;
}

.pdf-tab-list li button.nav-link {
  width: 100%;
  border-radius: 50px;
  height: 53px;
  background-color: #F4F4F4;
  color: var(--dark-black-600);
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  margin-right: 14px;
}

.pdf-tab-list li:last-child button.nav-link {
  margin-right: 0px;
}

.pdf-tab-list button.nav-link.active,
.pdf-tab-list button.nav-link:hover {
  background-color: var(--dark-black-600);
  color: var(--white);
}

.download-res-item .global-solid-button {
  height: 48px;
}



/* --- Interactive Hero Video Styles (Merged) --- */

.hero-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.home-hero-banner.video-playing .hero-poster {
  opacity: 0;
  pointer-events: none;
  display: none;
}

.video-blocker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent;
}

.home-hero-banner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


.news-event-lists-sec {
  padding: 80px 0px;
}

.news-event-lists-sec .global-header {
  max-width: 1100px;
  margin: 0 auto 50px;
}

.news-events-item .thumbnail-box img {
  width: 100%;
  aspect-ratio: 5 / 5;
  object-fit: cover;
}

.news-events-item .thumbnail-box {
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.news-events-item .cntn-box {
  margin: 20px 0px 35px;
}

.news-events-item .cntn-box h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: var(--dark-black-600);
}

.news-events-item .thumbnail-box .play-icon {
  position: absolute;
  background-color: var(--white);
  color: var(--dark-green);
  font-size: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 84px;
  width: 84px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news-events-item .thumbnail-box a.glightbox {
  width: 100%;
}

.product-details-sec {
  padding: 80px 0px;
}

.btm-proct-details-box {
  margin: 24px 0px;
}

.btm-proct-details-box h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 60px;
  margin-bottom: 10px;
  color: var(--dark-black-600);
}

.btm-proct-details-box p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #535353;
}

.product-image-box {
  background: #F8F7F6;
  border-radius: 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.product-image-box img {
  width: 80%;
}

.detail-list {
  display: flex;
  gap: 55px;
  margin: 15px 0px;
  align-items: baseline;
}

.detail-list h3 {
  width: 300px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 6%;
  text-transform: uppercase;
  color: var(--dark-green);
}

.detail-list p {
  flex: 1;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #535353;
}

.product-table-lists {
  margin-top: 40px;
}

.product-info-rgt {
  padding-left: 40px;
}

.product-info-rgt .detail-list h3 {
  max-width: 130px;
}

.product-info-rgt .detail-list {
  gap: 19px;
}

.product-info-rgt .product-detail-category {
  color: var(--dark-green);
  text-transform: uppercase;
  font-weight: 800;
}

.product-info-rgt h2 {
  font-weight: 700;
  font-size: 55px;
  line-height: 60px;
  margin: 10px 0px 20px;
  color: var(--dark-black-600);
}

.product-info-rgt {
  color: #535353;
}

.parkers-pagination .pagination {
  justify-content: center;
  margin-top: 20px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  font-weight: 500;
  border-radius: 8px;
  background: transparent;
  color: var(--black);
  border: 1px solid var(--dark-yellow);
  padding: 6px 10px;
  transition: all 0.3s ease-in-out;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.pagination .next.page-numbers,
.pagination .prev.page-numbers {
  width: auto;
  background-color: transparent;
}

.pagination .page-numbers.current {
  background-color: var(--dark-yellow);
  font-weight: 700;
}


/* sustainability start */
.mission-vision-outer {
  padding: 80px 0px;
}

.mission-vision-outer .global-header h6 {
  text-align: left;
}

.mission-vission-card {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.mission-vission-card .img-box {
  max-width: calc(52% - 20px);
  width: 100%;
}

.mission-vission-card .cntn-box {
  max-width: calc(48% - 20px);
  width: 100%;
}

.mission-vission-card .img-box img {
  width: 100%;
}

.mission-vission-card .cntn-box p {
  font-weight: 400;
  font-style: Medium;
  font-size: 18px;
  line-height: 30px;
  color: #535353;
  margin: 15px 0px;
}

.mission-vision-wrap .mission-vission-card:nth-child(even) {
  flex-direction: row-reverse;
  margin-top: 80px;
}

.mission-vission-card .cntn-box ul li p {
  margin: 0px;
  color: #333333;
}

.mission-vission-card .cntn-box ul li {
  display: flex;
  align-items: center;
  margin: 19px 0px;
  gap: 9px;
}

.mission-vission-card .cntn-box ul li span {
  flex: 0 0 30px;
  width: 30px;
}

.mission-vission-card .cntn-box ul li span img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.quality-policy-outer {
  padding: 80px 0px;
  background-color: var(--light-yellow-400);
}

.corporate-ethics-sec {
  padding: 80px 0px;
}

.corporate-ethic-wrap .mission-vission-card:nth-child(even) {
  flex-direction: row-reverse;
  margin-top: 80px;
}

.corporate-ethic-wrap .mission-vission-card:nth-child(even) .img-box {
  padding-right: 0px;
  padding-left: 40px;
}

.corporate-ethic-wrap .mission-vission-card:nth-child(even) .img-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40px;
  width: 50%;
  aspect-ratio: 1 / 1;
  border-radius: 25px;
  background: url(../images/sustainability-policies/watermark.webp)no-repeat;
  background-size: contain;
  background-position: left;
  z-index: 0;
}

.mission-vission-card .img-box img {
  width: 100%;
  position: relative;
  z-index: 0;
  border-radius: 20px;
}

.corporate-ethic-wrap .mission-vission-card .img-box {
  position: relative;
  padding-right: 70px;
  padding-top: 70px;
}

.corporate-ethic-wrap .mission-vission-card .img-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: #006400;
  z-index: 0;
}

.corporate-ethic-wrap .mission-vission-card .cntn-box {
  margin-top: 70px;
}



/* sustainability end */


/* drop your cv start */
.drop-your-cv {
  background-size: cover !important;
  background-position: right bottom !important;
  position: relative;
  padding: 100px 20px;
  background-repeat: no-repeat !important;
  color: var(--white);
}

.drop-your-cv .overlay {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #134909 15.41%, rgb(19, 73, 9) 38.1%, rgba(19, 73, 9, 0.667562) 60.15%, rgba(19, 73, 9, 0) 91.06%);
}

.drop-your-cv .drop-wrapper {
  max-width: 502px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.drop-your-cv h2 {
  margin-bottom: 25px;
}

.drop-your-cv .drop-wrapper a {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  transition: all 0.3s ease-in-out;
}

.drop-your-cv .drop-wrapper a span {
  display: inline-flex;
  background: #ffffff1f;
  height: 30px;
  width: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.drop-your-cv .drop-wrapper a:hover {
  color: var(--dark-yellow);
}

/* drop your cv end */

/* Full screen overlay loader */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  /* Change to match your site background */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--dark-green);
  /* Change to your brand color */
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  animation-delay: -1.0s;
}

@keyframes sk-bounce {

  0%,
  100% {
    transform: scale(0.0);
  }

  50% {
    transform: scale(1.0);
  }
}

/* 404 Page Styles */
.error-404-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.error-404-heading {
  font-size: clamp(80px, 20vw, 150px);
  line-height: 1;
  color: var(--dark-yellow);
  margin-bottom: 20px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.error-404-header {
  margin-bottom: 30px;
}

.error-404-header h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.error-404-header p {
  color: var(--light-grey);
  max-width: 500px;
  margin: 0 auto;
}

.error-404-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.error-404-btn.white-solid-button:hover {
  background-color: var(--dark-black-600) !important;
  color: var(--dark-yellow) !important;
}

@media (max-width: 576px) {
  .error-404-section {
    padding: 60px 0 !important;
  }

  .error-404-section h2 {
    font-size: 24px;
  }
}

/* Fallback/Index Page Styles */
.fallback-content-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.fallback-container {
  text-align: center;
}

.fallback-title {
  color: var(--dark-yellow);
  margin-bottom: 20px;
}

.fallback-content {
  color: var(--light-grey);
  max-width: 600px;
  margin: 0 auto 30px;
}

.fallback-article {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  text-align: left;
}

.fallback-article h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.fallback-article a {
  color: inherit;
}


/* product custom by editor  */
.product-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.product-wrapper .upper-content {
    max-width: calc(50% - 30px);
    width: 100%;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product-wrapper .upper-image {
    max-width: 50%;
    width: 100%;
    border-radius: 10px;
}
.product-wrapper .upper-image {
    max-width: 50%;
    width: 100%;
    background: #F8F7F6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-wrapper tr td:first-child {
    max-width: 15% !important;
}
.product-wrapper .upper-content p:first-child strong span {
    display: block;
}
.product-wrapper .lower-content h4 {
    margin-top: 10px;
}
.product-wrapper .lower-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.product-wrapper .lower-content table{
  margin-top: 20px;
}
.product-wrapper tr td {
    padding: 5px 0px;
}
.product-wrapper.full-width  .upper-image{
  display: none;
}
.product-wrapper.full-width  .upper-content{
  max-width: 100%;
  padding-left: 0px;
}
.product-wrapper.full-width tr td:first-child {
    max-width: 6% !important;
}
.product-list-sec .image-box img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

img.radius-20 {
	border-radius: 20px;
}

/* WordPress compatibility kept on top of the old theme CSS */
.home-hero-banner iframe,
.home-hero-banner video {
  height: 100%;
  left: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 0;
}

.home-hero-banner.video-playing video {
  opacity: 1;
}

.subscribe-section input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ffffff2c;
  color: var(--light-grey);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  line-height: 24px;
  margin-bottom: 30px;
  width: 100%;
}

.subscribe-section input::placeholder {
  color: var(--light-grey);
}

.product-list-sec .image-box a {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 220px;
  width: 100%;
}

.product-list-sec .image-box img {
  height: auto;
  max-height: 260px;
  object-fit: contain;
  width: 100%;
}

.product-list-sec .cntn-box h3 a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

.product-list-sec .cntn-box h3 a:hover {
  color: var(--dark-green);
}

.parkers-hp-field {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.parkers-form-message {
  border-radius: 8px;
  font-weight: 600;
  margin: 0 auto 24px;
  max-width: 1162px;
  padding: 14px 18px;
}

.parkers-form-message--success {
  background: #e9f7ef;
  border: 1px solid #1f8f4d;
  color: #126b36;
}

.parkers-form-message--error {
  background: #fff2f2;
  border: 1px solid #d93025;
  color: #9f1d16;
}

.cntc-form-inner .form-control.is-invalid {
  border-color: #d93025;
}

.parkers-field-error {
  color: #d93025;
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  margin-top: 6px;
}

.download-res-item.is-hidden-by-load-more {
  display: none;
}

.download-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.download-res-item .global-solid-button i {
  font-size: 20px;
  margin-left: 10px;
}

.product-info-rgt {
  color: #535353;
}

.product-wysiwyg-content {
  color: #535353;
}

.product-wysiwyg-content p,
.product-wysiwyg-content li {
  color: #535353;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.product-wysiwyg-content p,
.product-wysiwyg-content ul,
.product-wysiwyg-content ol,
.product-wysiwyg-content table {
  margin-bottom: 18px;
}

.product-wysiwyg-content ul,
.product-wysiwyg-content ol {
  padding-left: 24px;
}

.product-wysiwyg-content ul li {
  list-style: disc;
}

.product-wysiwyg-content ol li {
  list-style: decimal;
}

.product-wysiwyg-content table {
  border-collapse: collapse;
  width: 100%;
}

.product-wysiwyg-content th,
.product-wysiwyg-content td {
  border: 1px solid #dcdcde;
  padding: 10px;
  vertical-align: top;
}

.simi-blog .cntn-box a {
  color: #fff;
  text-decoration: none;
}

.simi-blog .cntn-box a:hover {
  color: var(--dark-yellow);
}

/* 404 page */
.error-page-sec {
  background: #f7faf6;
  padding: 80px 0;
}

.error-page-card {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(0, 100, 0, 0.12);
  border-radius: 24px;
  box-shadow: 1px 1px 18px 4px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  overflow: hidden;
  padding: 58px;
  position: relative;
}

.error-page-card::before {
  background: url('../images/curve-shape.webp') no-repeat center / contain;
  content: "";
  height: 180px;
  opacity: 0.28;
  position: absolute;
  right: -36px;
  top: -48px;
  width: 220px;
}

.error-page-content {
  position: relative;
  z-index: 1;
}

.error-page-kicker {
  color: var(--dark-green);
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.error-page-content h2 {
  color: var(--dark-black-500);
  margin-bottom: 16px;
  max-width: 680px;
}

.error-page-content p {
  color: #555;
  margin-bottom: 28px;
  max-width: 720px;
}

.error-search-form {
  align-items: stretch;
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
  max-width: 680px;
}

.error-search-form input {
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  color: #333;
  flex: 1;
  font-size: 16px;
  min-height: 52px;
  padding: 0 18px;
}

.error-search-form .global-solid-button {
  border: 0;
  min-width: 130px;
}

.error-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.error-page-actions a {
  border: 1px solid rgba(0, 100, 0, 0.2);
  border-radius: 8px;
  color: var(--dark-green);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 14px;
}

.error-page-actions a:hover {
  background: var(--dark-green);
  color: var(--white);
}

.error-page-code {
  align-items: center;
  color: var(--dark-green);
  display: flex;
  font-size: 150px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.16;
  position: relative;
  z-index: 1;
}

.error-page-code span:nth-child(2) {
  color: var(--dark-yellow);
}
