@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");

:root {
  /* --primary-color: #FFCB05; */
  --primary-color: #a1cb39;
  --light-primary-color: #f4fbf6;
  --green-color: #0b9041;
  --secondary-color: #a6cf39;
  --yellow-color: #f3cb0c;
  --yellow-light: #FFFAE9;
  --grey-color: #bfbfbf;
  --grey-light-color: #F3F3F3;
  /* --heading-color: #2c2c2c;
  --text-color: #666666;
  --background-color: var(--white-color);
  --border-color: #e5e5e5; */

  --white-color: #ffffff;
  --black-color: #000000;
  --text-color: #060606;
}

@font-face {
  font-family: STP;
  src: url(../fonts/stop.ttf) format("truetype");
}

body {
  color: #666666;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
}

img {
  max-width: 100%;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.ptb-100 {
  padding-top: 50px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-40 {
  padding-bottom: 40px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mlr-5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mlrt-5 {
  margin-right: 5px;
  margin-left: 5px;
  margin-top: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2c2c2c;
  font-family: "Jost", sans-serif;
  font-weight: 600;
}

h6 {
  color: #2c2c2c;
  font-family: "Jost", sans-serif;
 
}

p {
  margin-bottom: 15px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  color: #666666;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

.owl-nav {
  margin-top: 0 !important;
}

.owl-dots {
  margin-top: 0 !important;
}

.bg-f4fbf6 {
  background-color: var(--light-primary-color);
}

.bg-fafafa {
  background-color: #fafafa;
}

.form-control {
  height: 50px;
  border: 1px solid rgba(37, 171, 68, 0.25);
  padding-left: 15px;
}

.form-control:focus {
  border: 1px solid var(--primary-color);
  box-shadow: none;
}

textarea {
  height: auto !important;
}

.fs-10 {
  font-size: 10px !important;
  line-height: 26px;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

/*Default-btn
======================================================*/
.default-btn {
  background-color: transparent;
  color: #2c2c2c;
  font-size: 13px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  position: relative;
  /* transition: all ease 0.5s; */
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(40, 170, 74, 0.004);
  z-index: 1;
  border: 1px solid var(--primary-color);
}

.default-btn i {
  position: relative;
  padding-left: 5px;
  font-size: 20px;
}

.default-btn::before {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  height: 0%;
  width: 0%;
  border-radius: 5px;
  bottom: 0;
  right: 0;
  /* transition: all ease 0.5s; */
  z-index: -1;
}

.default-btn::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  height: 0%;
  width: 0%;
  border-radius: 5px;
  top: 0;
  left: 0;
  transition: all ease 0.5s;
  z-index: -1;
}

.default-btn.secondary::before,
.default-btn.secondary::after {
  background-color: var(--green-color);
}

.default-btn.active {
  background-color: var(--primary-color);
  color: var(--black-color);
  border-color: var(--primary-color);
}

.default-btn.active:hover {
  background-color: #2c2c2c;
  color: var(--black-color);
  border-color: var(--primary-color);
}

.default-btn.secondary {
  background-color: var(--green-color);
  color: var(--white-color);
  border-color: var(--green-color);
}

.default-btn.secondary:hover {
  background-color: #2c2c2c;
  color: var(--white-color);
  border-color: var(--green-color);
}

.default-btn:hover {
  color: var(--black-color);
  border-color: var(--primary-color);
  border-radius: 5px!important;
}

.default-btn:hover::before {
  width: 100%;
  height: 100%;
}

.default-btn:hover::after {
  width: 100%;
  height: 100%;
}

.default-btn:focus {
  box-shadow: none;
}

.default-btn.style-2 {
  color: var(--white-color);
}

.section-title {
  max-width: 660px;
  margin: auto auto 40px auto;
  text-align: center;
}

.section-title h2 {
  font-weight: 600;
}
/* 
.section-title span:first-child {
  font-weight: 500;
  color: var(--yellow-color);
} */

.section-title h2 span {
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
  font-family: "Jost", sans-serif;
  color: #2c2c2c;
  font-weight: 600;
}

.section-title p {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
}

.section-title.style2 {
  text-align: start;
  margin-left: 0;
  margin-right: auto;
}

.section-title.style2 h2 {
  margin-bottom: 0;
}

/*Pre Loader Style
======================================================*/
.preloader {
  background: var(--white-color);
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99999;
  /* display: block !important; */
}

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

.organiaLoader {
  width: 209px;
  height: 200px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.loaderO {
  position: absolute;
  top: 52%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  z-index: 1;
  line-height: 18px;
}

.loaderO span {
  font-size: 50px;
  line-height: 14px;
  font-weight: 700;
  font-family: STP !important;
  color: var(--primary-color);
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.5s;
  animation: animate 2s infinite;
}

.loaderO span:nth-child(1) {
  animation-delay: 0.1s;
}

.loaderO span:nth-child(2) {
  animation-delay: 0.3s;
}

.loaderO span:nth-child(3) {
  animation-delay: 0.5s;
}

.loaderO span:nth-child(4) {
  animation-delay: 0.7s;
}

.loaderO span:nth-child(5) {
  animation-delay: 0.9s;
}

.loaderO span:nth-child(6) {
  animation-delay: 1s;
}

.loaderO span:nth-child(7) {
  animation-delay: 1.1s;
}

@keyframes animate {
  0% {
    color: var(--primary-color);
    transform: translateY(0);
    margin-left: 0;
  }

  25% {
    color: var(--primary-color);
    transform: translateY(-20px);
    margin-left: 5px;
    text-shadow: 0 35px 5px rgba(40, 170, 74, 0.2);
  }

  100% {
    color: var(--primary-color);
    transform: translateY(0);
    margin-left: 0;
  }
}

/*Header Style
======================================================*/
.tob-header-area {
  background-color: #2c2c2c;
  padding-top: 13px;
  padding-bottom: 13px;
}

.tob-header-area .container-fluid {
  max-width: 1520px;
}

.heder-left-content {
  text-align: start;
}

.heder-left-content .content {
  position: relative;
  padding-left: 25px;
  display: inline-block;
}

.heder-left-content .content p {
  color: #d2d2d2;
}

.heder-left-content .content i {
  position: absolute;
  left: 0;
  font-size: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
}

.heder-right-content {
  text-align: end;
}

.heder-right-content .time-content {
  position: relative;
  padding-left: 25px;
  display: inline-block;
}

.heder-right-content .time-content p {
  color: #d2d2d2;
}

.heder-right-content .time-content i {
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 20px;
  transform: translateY(-50%);
  color: var(--primary-color);
}

.heder-right-content .social-content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.heder-right-content .social-content ul li {
  display: inline-block;
  margin-right: 8px;
}

.heder-right-content .social-content ul li:last-child {
  margin-right: 0;
}

.heder-right-content .social-content ul li a {
  color: var(--white-color);
  height: 35px;
  width: 35px;
  line-height: 33px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  transition: all ease 0.5s;
}

.heder-right-content .social-content ul li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.middle-header-area {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--white-color);
}

.middle-header-area .container-fluid {
  max-width: 1520px;
}

.middle-header-logo .logo-1 {
  width: 150px;
  height: auto;
}

.middle-header-logo .logo-2 {
  display: none;
}

.middle-header-right-content {
  text-align: end;
}

.middle-header-right-content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.middle-header-right-content ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 40px;
}

.middle-header-right-content ul li:last-child {
  margin-right: 0;
}

.middle-header-right-content .header-contact-box {
  text-align: start;
  position: relative;
  padding-left: 58px;
  transition: all ease 0.5s;
}

.middle-header-right-content .header-contact-box p {
  margin-bottom: 4px;
  font-size: 15px;
  line-height: initial;
}

.middle-header-right-content .header-contact-box a {
  font-size: 15px;
  color: #2c2c2c;
  font-family: "Jost", sans-serif;
  transition: all ease 0.5s;
  font-weight: 500;
}

.middle-header-right-content .header-contact-box span {
  font-size: 16px;
  color: #2c2c2c;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

.middle-header-right-content .header-contact-box .icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 45px;
  width: 45px;
  color: #2c2c2c;
  line-height: 45px;
  background-color: #e5e5e5;
  font-size: 18px;
  color: var(--primary-color);
  text-align: center;
  border-radius: 5px;
  z-index: 1;
  transition: all ease 0.5s;
}

.middle-header-right-content .header-contact-box .icon::before {
  position: absolute;
  content: "";
  height: 0%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background-color: var(--primary-color);
  z-index: -1;
  transition: all ease 0.5s;
}

.middle-header-right-content .header-contact-box:hover a {
  color: var(--primary-color);
}

.middle-header-right-content .header-contact-box:hover .icon {
  color: var(--black-color);
}

.middle-header-right-content .header-contact-box:hover .icon::before {
  height: 100%;
}

/*
Navbar Area Style
======================================================*/
.navbar-area {
  position: relative;
  background-color: var(--white-color);
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.navbar-area.is-sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: sticky !important;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.navbar-area .container-fluid {
  max-width: 1520px;
  margin: auto;
}

.navbar-area .navbar-brand .white-logo {
  display: none;
}

.navbar-area .mobile-responsive-menu .logo .white-logo {
  display: none;
}

.navbar-area.nav-style-1 {
  padding: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 222;
  background-color: transparent;
}

.navbar-area.nav-style-1 .container-fluid {
  padding-left: 40px;
  padding-right: 40px;
  background-color: #2c2c2c;
  padding-top: 18px;
  padding-bottom: 18px;
  border-radius: 0 0 5px 5px;
}

.navbar-area.nav-style-1 .desktop-nav .navbar-brand .main-logo {
  display: none;
}

.navbar-area.nav-style-1 .desktop-nav .others-options {
  text-align: right !important;
  display: inline-block;
}

.navbar-area.nav-style-1 .desktop-nav .navbar .navbar-nav .nav-item a {
  color: var(--white-color);
}

.navbar-area.nav-style-1 .desktop-nav .navbar .navbar-nav .nav-item a:hover,
.navbar-area.nav-style-1 .desktop-nav .navbar .navbar-nav .nav-item a:focus,
.navbar-area.nav-style-1 .desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--primary-color);
}

.navbar-area.nav-style-1 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #2c2c2c;
}

.navbar-area.nav-style-1 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.navbar-area.nav-style-1 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.navbar-area.nav-style-1 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--primary-color);
}

.navbar-area.nav-style-1.is-sticky {
  background-color: #2c2c2c;
  position: fixed !important;
}

.navbar-area.nav-style-1 .others-option-for-responsive .others-options {
  background-color: #2c2c2c;
}

.navbar-area.nav-style-3 {
  background-color: var(--light-primary-color);
  border-bottom: 1px solid var(--white-color);
}

.navbar-brand {
  margin-right: 40px;
}

.navbar-brand img {
  width: 150px;
  height: auto;
}

.desktop-nav {
  padding-top: 0;
  padding-bottom: 0;
}

.desktop-nav .navbar {
  transition: all ease 0.5s;
  z-index: 2;
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.desktop-nav .navbar ul {
  margin-bottom: 0;
  list-style-type: none;
}

.desktop-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: 0;
  padding-left: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item a {
  font-size: 16px;
  color: #1b2336;
  line-height: 1;
  position: relative;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  padding-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  margin-left: 20px;
  margin-right: 20px;
}

.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle {
  padding-right: 21px;
}

.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::after {
  display: none;
}

.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::before {
  content: "\ea12";
  position: absolute;
  top: 0;
  right: 0;
  font-family: remixicon !important;
  line-height: 1;
  font-size: 18px;
}

.desktop-nav .navbar .navbar-nav .nav-item a:hover,
.desktop-nav .navbar .navbar-nav .nav-item a:focus,
.desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--green-color);
}

.desktop-nav .navbar .navbar-nav .nav-item a i {
  font-size: 15px;
  line-height: 0;
  position: relative;
  top: 4px;
}

.desktop-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}

/* .desktop-nav .navbar .navbar-nav .nav-item:hover a,
.desktop-nav .navbar .navbar-nav .nav-item:focus a,
.desktop-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--green-color);
} */

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  background: var(--white-color);
  position: absolute;
  visibility: hidden;
  border-radius: 0;
  display: block;
  width: 250px;
  border: none;
  z-index: 99;
  opacity: 0;
  top: 80px;
  left: 0;
  padding: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li > a {
  color: #1b2336;
  padding: 15px;
  border-bottom: 1px dashed #ededed;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  display: block;
  position: relative;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::after {
  display: none;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::before {
  content: "\ea12";
  position: absolute;
  top: 14px;
  right: 13px;
  font-family: remixicon !important;
  line-height: 1;
  font-size: 17px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--primary-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  right: 250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #1b2336;
  border-bottom: 1px dashed #ededed;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  position: relative;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.dropdown-toggle::after {
  display: none;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.dropdown-toggle::before {
  content: "\ea12";
  position: absolute;
  top: 14px;
  right: 13px;
  font-family: remixicon !important;
  line-height: 1;
  font-size: 17px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--primary-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  right: 250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--black-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--primary-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  right: -250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--black-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--primary-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  right: -250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--black-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--primary-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  right: -250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--black-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--primary-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  right: -250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--black-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1b2336;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #1b2336;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--primary-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -1px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--primary-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -1px;
  visibility: visible;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--primary-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -15px;
  visibility: visible;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: var(--primary-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--primary-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  top: 100%;
  opacity: 1;
  margin-top: 16px;
  transform: translateY(1);
  visibility: visible;
}

/* Mega Menu Styles - Modern Design */
.navbar-area {
  position: relative;
}

.desktop-nav {
  position: relative;
}

.desktop-nav .navbar {
  position: relative;
}

.desktop-nav .navbar .navbar-nav .nav-item.mega-menu-item {
  position: static;
}

@media (max-width: 1024px) {
  .dropdown-menu {
    max-width: calc(100% - 50px);
  }
}

.mega-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu>.mega-menu-wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item.mega-menu-item .mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: auto;
  min-width: 1140px;
  max-width: 1400px;
  padding: 25px 20px;
  margin-top: 0;
  background: var(--white-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  /* border-radius: 8px; */
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  top: calc(100% + 6px);
}

.desktop-nav .navbar .navbar-nav .nav-item.mega-menu-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.desktop-nav .navbar .navbar-nav .nav-item.mega-menu-item .mega-menu .container {
  max-width: 100%;
  padding: 0 10px;
}

.mega-menu-column {
  /* padding: 0 10px; */
  position: relative;
  margin-bottom: 25px;
}

@media (max-width: 1024px) {
  .mega-menu-column .mean-expand {
    margin-top: -13px !important;
  }
}

.mega-menu-column:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e9ecef;
}

.mega-menu-title,
.desktop-nav .navbar .navbar-nav .nav-item .mega-menu-title a {
  font-size: 20px !important;
  font-weight: 500;
  margin: 0 0 12px 0;
  line-height: 1.2;
  font-family: "Jost", sans-serif;
  color: var(--primary-color);
}

.mega-menu-title,
.mega-menu-title a {
  padding: 0 !important;
  color: var(--primary-color);
}

@media (max-width: 1024px) {
  .mega-menu-title {
    font-size: 16px !important;
  }
}

.mega-menu-title a {
  font-size: 18px !important;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
  margin: 0 !important;
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-list li {
  margin-bottom: 4px;
  padding: 0;
}

.mega-menu-list li:last-child {
  margin-bottom: 0;
}

.mega-menu-list li a {
  font-size: 14px !important;
  padding: 5px 0 !important;
  display: block !important;
  transition: all 0.2s ease !important;
  font-family: "Poppins", sans-serif;
  position: relative;
  line-height: 1.5 !important;
  border: 0 !important;
}

/* .mega-menu-list li a::before {
  content: '•';
  color: var(--green-color);
  margin-right: 8px;
  opacity: 0;
  transition: all 0.2s ease;
  font-weight: bold;
} */

.mega-menu-list li a:hover {
  color: var(--green-color) !important;
  padding-left: 12px !important;
}

.mega-menu-list li a:hover::before {
  opacity: 1;
}

.mega-menu-list li:last-child {
  margin-bottom: 0;
}
/* new styling for mega menu */
/* ===============================
   TOP NAV ACTIVE STYLE
================================ */

/* hover */
.navbar .nav-link:hover {
    color: #8cc63f;
}

/* dropdown open (Products / About / Events) */
.navbar .nav-item.show > .nav-link,
.navbar .dropdown-menu.show ~ .nav-link {
    color: #8cc63f;
    font-weight: 600;
}

/* manual active (if class exists) */
.navbar .nav-link.active {
    color: #8cc63f !important;
    font-weight: 600;
}

/* underline effect */
/* .navbar .nav-link.active::after,
.navbar .nav-item.show > .nav-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #8cc63f;
    border-radius: 3px;
} */


/* ===============================
   MEGA MENU ACTIVE LINKS
================================ */

.mega-menu-list a:hover,
.mega-menu-list a:focus,
.mega-menu-list a.active {
    color: #8cc63f;
    font-weight: 600;
}
.desktop-nav .navbar .navbar-nav .nav-item:hover a,
 .desktop-nav .navbar .navbar-nav .nav-item:focus a
 {
    color: var(--green-color);
}

.desktop-nav .navbar .navbar-nav .nav-item .nav-link.active a {
    color: var(--green-color) !important;
    font-weight: 600;
}
.desktop-nav .navbar .navbar-nav .nav-item
 .dropdown-menu li a:hover,
  .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
   .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a{
     color: var(--green-color) !important;
    font-weight: 600;
   }

/* optional underline */
/* .desktop-nav .navbar .navbar-nav .nav-item .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--green-color);
} */



/* Responsive adjustments for mega menu */
@media (max-width: 1199px) {
  .desktop-nav .navbar .navbar-nav .nav-item.mega-menu-item .mega-menu {
    min-width: 960px;
    max-width: 1140px;
    padding: 20px 15px;
  }

  .mega-menu-column {
    padding: 0 8px;
  }

  .mega-menu-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .mega-menu-list li a {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .desktop-nav .navbar .navbar-nav .nav-item.mega-menu-item .mega-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    left: auto;
    transform: none;
    margin-top: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 15px;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
  }

  .mega-menu-column {
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .mega-menu-column:not(:last-child)::after {
    display: none;
  }

  .mega-menu-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .mega-menu-list li {
    margin-bottom: 3px;
  }

  .mega-menu-list li a {
    font-size: 13px;
    padding: 4px 0;
  }
}

@media (max-width: 767px) {
  .desktop-nav .navbar .navbar-nav .nav-item.mega-menu-item .mega-menu {
    padding: 15px 10px;
  }

  .mega-menu-column {
    padding: 0 8px;
    margin-bottom: 12px;
  }

  .mega-menu-title {
    font-size: 13px;
    margin-bottom: 8px;
    padding-bottom: 6px;
  }

  .mega-menu-list li a {
    font-size: 12px;
    padding: 3px 0;
  }
}

.desktop-nav .navbar .others-options {
  padding-left: 40px;
}

.desktop-nav .navbar .others-options .option-item {
  display: inline-block;
  margin-left: 15px;
}

.desktop-nav .navbar .others-options.style2 .option-item {
  display: inline-block;
}

.desktop-nav .navbar .others-options.style2 .default-btn {
  top: -3px;
}

.desktop-nav .navbar .others-options.style2 .header-contact-box {
  text-align: start;
  position: relative;
  padding-left: 58px;
  transition: all ease 0.5s;
  margin-right: 30px;
  top: 10px;
}

.desktop-nav .navbar .others-options.style2 .header-contact-box p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: initial;
}

.desktop-nav .navbar .others-options.style2 .header-contact-box a {
  color: #2c2c2c;
  transition: all ease 0.5s;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}

.desktop-nav .navbar .others-options.style2 .header-contact-box span {
  font-size: 14px;
  color: #2c2c2c;
  font-weight: 500;
}

.desktop-nav .navbar .others-options.style2 .header-contact-box .icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 45px;
  width: 45px;
  color: #2c2c2c;
  line-height: 45px;
  background-color: #e5e5e5;
  font-size: 18px;
  color: var(--green-color);
  text-align: center;
  border-radius: 5px;
  z-index: 1;
  transition: all ease 0.5s;
}

.desktop-nav .navbar .others-options.style2 .header-contact-box .icon::before {
  position: absolute;
  content: "";
  height: 0%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background-color: var(--primary-color);
  z-index: -1;
  transition: all ease 0.5s;
}

.desktop-nav .navbar .others-options.style2 .header-contact-box:hover a {
  color: var(--primary-color);
}

.desktop-nav .navbar .others-options.style2 .header-contact-box:hover .icon {
  color: var(--black-color);
}

.desktop-nav .navbar .others-options.style2 .header-contact-box:hover .icon::before {
  height: 100%;
}

.desktop-nav .navbar .others-options.style2 .header-contact-box.style2 .icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.desktop-nav .navbar .others-options.style2 .header-contact-box.style2 .icon::before {
  background-color: #e5e5e5;
}

.desktop-nav .navbar .others-options.style2 .header-contact-box.style2:hover .icon {
  color: var(--primary-color);
}

/*
Others Option For Responsive Area Style
======================================================*/
.others-option-for-responsive {
  display: none !important;
}

.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  right: 40px;
  top: -42px;
}

.others-option-for-responsive .dot-menu .inner {
  display: flex;
  align-items: center;
  height: 30px;
}

.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  transition: all ease 0.5s;
  background-color: var(--primary-color);
}

.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: var(--primary-color);
}

.others-option-for-responsive .container {
  position: relative;
}

.others-option-for-responsive .container .container {
  position: absolute;
  right: -2px;
  top: 15px;
  max-width: 320px;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
  transform: scaleY(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}

.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.others-option-for-responsive .others-options {
  padding: 10px;
  text-align: center;
}

.others-option-for-responsive .others-options .option-item {
  display: inline-block;
}

.others-option-for-responsive .others-options .option-item .default-btn {
  left: -10px;
  padding: 9px 10px;
}

.others-option-for-responsive .others-options.style2 .option-item {
  display: inline-block;
}

.others-option-for-responsive .others-options.style2 .option-item .default-btn {
  top: -3px;
  left: -5px;
}

.others-option-for-responsive .others-options.style2 .header-contact-box {
  text-align: start;
  position: relative;
  padding-left: 50px;
  transition: all ease 0.5s;
  top: 4px;
  margin-bottom: 30px;
}

.others-option-for-responsive .others-options.style2 .header-contact-box p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: initial;
}

.others-option-for-responsive .others-options.style2 .header-contact-box a {
  font-size: 14px;
  color: #2c2c2c;
  transition: all ease 0.5s;
  font-weight: 500;
}

.others-option-for-responsive .others-options.style2 .header-contact-box span {
  font-size: 14px;
  color: #2c2c2c;
  font-weight: 500;
}

.others-option-for-responsive .others-options.style2 .header-contact-box .icon {
  position: absolute;
  top: -16px;
  left: 0;
  height: 40px;
  width: 40px;
  color: #2c2c2c;
  line-height: 42px;
  background-color: #e5e5e5;
  font-size: 16px;
  color: var(--primary-color);
  text-align: center;
  border-radius: 5px;
  z-index: 1;
  transition: all ease 0.5s;
}

.others-option-for-responsive .others-options.style2 .header-contact-box .icon::before {
  position: absolute;
  content: "";
  height: 0%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background-color: var(--primary-color);
  z-index: -1;
  transition: all ease 0.5s;
}

.others-option-for-responsive .others-options.style2 .header-contact-box:hover a {
  color: var(--primary-color);
}

.others-option-for-responsive .others-options.style2 .header-contact-box:hover .icon {
  color: var(--white-color);
}

.others-option-for-responsive .others-options.style2 .header-contact-box:hover .icon::before {
  height: 100%;
}

.others-option-for-responsive .others-options.style2 .header-contact-box.style2 .icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.others-option-for-responsive .others-options.style2 .header-contact-box.style2 .icon::before {
  background-color: #e5e5e5;
}

.others-option-for-responsive .others-options.style2 .header-contact-box.style2:hover .icon {
  color: var(--primary-color);
}

.others-option-for-responsive .others-options.style2 .switch-box {
  position: relative;
  top: -3px;
}

.mobile-responsive-nav {
  display: none;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

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

  75% {
    transform: scale(1.75);
    opacity: 0.6;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }

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

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

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

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

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

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 50px, 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/*
Banner Area Style
======================================================*/
.banner-area {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
/* 
.slider-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
   min-height: 400px;
        max-height: 400px;
  height: 580px;
  padding: 100px;
  display: flex;
  align-items: center;
  z-index: 1;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
} */
 .slider-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 581;
  background-size: cover; 
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* height: 400px; */
}

/* 
@media (max-width: 1200px) {
  .slider-item {
    aspect-ratio: 16 / 9;
    
  }
}

@media (max-width: 992px) {
  .slider-item {
    aspect-ratio: 4 / 3;
  }
} */



/* @media (max-width: 576px) {
  .slider-item {
    aspect-ratio: 1 / 1;
  }
} */

.hero-slider .owl-stage,
.hero-slider .owl-item {
  height: 100% !important;
}
/* 
@media (max-width: 1550px) {
    .slider-item {
        aspect-ratio: 33 / 9;
    }
} */

@media (max-width: 1370px) {
  .slider-item {
    /* height: 480px; */
  }
}

.hero-slider .owl-carousel .owl-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .owl-carousel .owl-item.active {
  opacity: 1;
}

/* .hero-slider .owl-item {
  transition: all 0.6s ease-in-out;
}

.hero-slider .owl-item.active .slider-item {
  animation: slideInRight 1.5s ease-in-out;
} */

/* Background zoom effect on slide transition */
/* .hero-slider .owl-item .slider-item {
  transform: scale(1);
  transition: transform 8s ease-in-out;
}

.hero-slider .owl-item.active .slider-item {
  transform: scale(1.05);
}*/

.slider-item .container-fluid {
  max-width: 1520px;
}


/* .slider-item::before {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, rgba(44, 44, 44, 0.75) 28.13%, rgba(44, 44, 44, 0) 100%);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
} */

.hero-slider.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white-color);
  border: none;
  height:   30px;
  width: 30px;
  line-height: 100%;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 15px;
  color: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-slider.owl-theme .owl-nav [class*="owl-"] i {
  position: relative;
  font-size: 14px;
}

.hero-slider.owl-theme .owl-nav [class*="owl-"].owl-prev {
  left: 30px;
  right: auto;
}

.hero-slider.owl-theme .owl-nav [class*="owl-"].owl-next {
  right: 30px;
  left: auto;
}

.hero-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Enhanced Slide Animations for Hero Slider */
.hero-slider {
  /* position: relative; */
}

.hero-slider .owl-stage-outer {
  overflow: hidden;
}

.hero-slider .owl-item {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-slider .owl-item.active {
  opacity: 1;
}

.hero-slider .owl-item.slideOutLeft {
  animation: slideOutLeft 1.5s ease-in-out forwards;
}

.hero-slider .owl-item.slideInRight {
  animation: slideInRight 1.5s ease-in-out forwards;
}

.banner-content {
  position: relative;
  max-width: 1000px;
  overflow: hidden;
  margin-left: -100px;
}

.banner-content .sublabel {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 20px;
  color: #eeeeee;
}

.banner-content h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-color);
  margin-bottom: 30px;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .banner-content  {
    font-size: 24px!important;
    margin-bottom: 25px;
    margin-left: 0px!important;
  }
}
@media (max-width: 1370px) {
  .banner-content  {
    font-size: 35px;
    margin-bottom: 25px;
    margin-left: 40px!important;
  }
}
@media(max-width:1745px){
 .banner-content  {
    font-size: 35px;
    margin-bottom: 25px;
    margin-left: 60px!important;
  }
}
@media(max-width:1536px){
 .banner-content  {
    font-size: 35px;
    margin-bottom: 25px;
    margin-left: 60px!important;
  }
}
/* @media(max-width:1280px){
 .banner-content  {
    font-size: 35px;
    margin-bottom: 25px;
    margin-left: 0px!important;
  }
} */

.banner-content h1 span {
  display: block;
  color: var(--primary-color);
}

.banner-content h1.white {
  color: var(--white-color);
}

.banner-content p {
  margin-bottom: 35px;
  color: #eeeeee;
  font-size: 15px;
}

.banner-content .banner-btn .default-btn.active {
  border-color: var(--green-color);
}

.banner-content .banner-btn .default-btn.style-2 {
  /* border: 1px solid var(--black-color);
  color: #1F1F1F; */
      border: 1px solid #cae289;
    color: #191919;
}

.banner-content .banner-btn .default-btn.style-2:hover {
  border-color: var(--green-color);
   color: #1F1F1F;
}

.banner-content .banner-btn .default-btn.style-2.style-2__white {
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.banner-content .banner-btn .default-btn.style-2.style-2__white:hover {
  border-color: var(--primary-color);
  color: #1F1F1F;
}

.owl-item.active .banner-content .sublabel {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: slideInUp;
  animation-delay: 0.5s;
  opacity: 0;
}

.owl-item.active .banner-content h1 {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: slideInUp;
  animation-delay: 0.7s;
  opacity: 0;
}

.owl-item.active .banner-content p {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: slideInUp;
  animation-delay: 0.9s;
  opacity: 0;
}

.owl-item.active .banner-content .default-btn {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: slideInUp;
  animation-delay: 1.1s;
  opacity: 0;
}

.owl-item.active .banner-content .banner-btn .default-btn.style-2 {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: slideInUp;
  animation-delay: 1.3s;
  opacity: 0;
} 

.banner-style-two-area {
  background-image: url(../images/banner/banner-bg-4.jpg);
  background-size: cover;
  background-position: center center;
  padding-top: 140px;
  padding-bottom: 200px;
  overflow: hidden;
}

.banner-style-two-area .container-fluid {
  max-width: 1520px;
}

.banner-content-two {
  margin-right: -50px;
}

.banner-content-two span {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-block;
  font-family: "Jost", sans-serif;
}

.banner-content-two h1 {
  font-size: 70px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #263238;
}

.banner-content-two p {
  margin-bottom: 35px;
  font-size: 15px;
}

.banner-image-area {
  position: relative;
}

.banner-image-area .banner-shape {
  animation: movebounce 12s linear infinite;
  position: relative;
  right: -40px;
}

.banner-image-area .banner-image {
  position: absolute;
  top: -100px;
  right: 120px;
  z-index: 22;
  animation: movebounce2 13s linear infinite;
}

.parner-overly {
  padding: 50px 40px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  top: -80px;
  background-color: var(--white-color);
  z-index: 1;
}

.banner-style-three-area {
  background-color: var(--light-primary-color);
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

.banner-style-three-area .container-fluid {
  max-width: 1520px;
}

.banner-style-three-area::before {
  position: absolute;
  content: "";
  height: 100px;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: var(--white-color);
  z-index: -1;
}

.banner-style-three-area .shape img {
  position: absolute;
}

.banner-style-three-area .shape img:nth-child(1) {
  left: 0;
  top: 90px;
  z-index: -1;
}

.banner-style-three-area .shape img:nth-child(2) {
  right: 0;
  top: 90px;
  z-index: -1;
}

.banner-style-three-area .shape img:nth-child(3) {
  left: 100px;
  top: 160px;
  z-index: -1;
  animation: movebounce 7s linear infinite;
}

.banner-style-three-area .shape img:nth-child(4) {
  right: 100px;
  top: 160px;
  z-index: -1;
  animation: movebounce 9s linear infinite;
}

.banner-style-three-content {
  max-width: 920px;
  margin: auto auto 40px auto;
  text-align: center;
}

.banner-style-three-content h1 {
  font-size: 50px;
  margin-bottom: 30px;
  font-weight: 800;
}

/*
Partner Style
======================================================*/
.partner-slider.owl-carousel .owl-item img {
  width: auto;
  margin: auto;
  filter: grayscale(1);
  transition: all ease 0.5s;
}

.partner-slider.owl-carousel .owl-item img:hover {
  filter: unset;
}

.single-parner-box {
  background-color: var(--white-color);
  box-shadow: 0px 6px 30px rgba(38, 50, 56, 0.05);
  text-align: center;
  padding: 20px;
  margin: 10px;
  transition: all ease 0.5s;
  overflow: hidden;
}

.single-parner-box img {
  overflow: hidden;
  transition: all ease 0.5s;
}

.single-parner-box:hover {
  box-shadow: 0px 6px 30px rgba(38, 50, 56, 0.09);
}

.single-parner-box:hover img {
  transform: scale(1.1);
}

.partner-area h2 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 30px;
}

.partner-slider2.owl-carousel .owl-item img {
  width: auto;
  margin: auto;
}

/*
About Style
======================================================*/
.about-content .about-title {
  margin-bottom: 30px;
}

.about-content .about-title span {
  color: var(--primary-color);
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}

.about-content .about-title h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-content .about-features {
  margin-bottom: 35px;
}

.about-content .about-features ul {
  padding-left: 0;
  margin-bottom: 0;
}

.about-content .about-features ul li {
  list-style-type: none;
  position: relative;
  padding-left: 65px;
  margin-bottom: 25px;
}

.about-content .about-features ul li .icon {
  position: absolute;
  height: 45px;
  width: 45px;
  line-height: 45px;
  color: #2c2c2c;
  background-color: #e5e5e5;
  border-radius: 5px;
  left: 0;
  top: 5px;
  text-align: center;
  font-size: 22px;
  z-index: 1;
  transition: all ease 0.5s;
}

.about-content .about-features ul li .icon::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  transition: all ease 0.5s;
  left: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 5px;
  z-index: -1;
}

.about-content .about-features ul li h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transition: all ease 0.5s;
}

.about-content .about-features ul li:hover h3 {
  color: var(--primary-color);
}

.about-content .about-features ul li:hover .icon {
  color: var(--white-color);
}

.about-content .about-features ul li:hover .icon::before {
  height: 100%;
  width: 100%;
}

.about-area.style-2 {
  margin-top: -80px;
}

.about-area.style-2 .about-content .about-features ul {
  margin-bottom: 35px;
  margin-top: 35px;
}

.about-area.style-2 .about-content .about-features ul li {
  padding-left: 55px;
  margin-bottom: 30px;
}

.about-area.style-2 .about-content .about-features ul li .icon {
  height: 35px;
  width: 35px;
  line-height: 35px;
  top: 50%;
  transform: translateY(-50%);
}

.about-area.style-2 .about-content .experience {
  position: relative;
  padding-left: 95px;
  padding-bottom: 15px;
  padding-top: 15px;
}

.about-area.style-2 .about-content .experience .icon {
  position: absolute;
  height: 75px;
  width: 75px;
  line-height: 75px;
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 5px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 30px;
  transition: all ease 0.5s;
}

.about-area.style-2 .about-content .experience h3 {
  margin-bottom: 0;
}

.about-area.style-2 .about-content .experience p {
  color: #2c2c2c;
  font-weight: 500;
}

/*
Counter Style
======================================================*/
.counter-area .container-fluid {
  max-width: 1520px;
}

.counter-overly {
  padding-left: 100px;
  padding-right: 100px;
}

.single-counter-card {
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}

.single-counter-card h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.single-counter-card h1 .target {
  margin-left: -10px;
}

.single-counter-card::before {
  position: absolute;
  content: "";
  right: -12px;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(40, 170, 74, 0.4);
  transform: rotate(10deg);
}

.col-lg-3:last-child .single-counter-card::before {
  display: none;
}

/*
Services Style
======================================================*/
.single-services-card {
  background-color: var(--white-color);
  padding: 30px;
  transition: all ease 0.5s;
  position: relative;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0px 10px 30px 5px rgba(44, 44, 44, 0.05);
}

.single-services-card .services-img {
  padding-bottom: 25px;
  margin-bottom: 22px;
  border-bottom: 1px solid #eeeeee;
}

.single-services-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.single-services-card p {
  margin-bottom: 25px;
}

.single-services-card .number {
  position: absolute;
  height: 80px;
  width: 80px;
  line-height: 80px;
  right: 0;
  top: 0;
  background-color: #f4f4f4;
  text-align: center;
  font-size: 20px;
  color: #2c2c2c;
  font-weight: 600;
  border-radius: 0 5px 0 50px;
  transition: all ease 0.5s;
  z-index: 1;
}

.single-services-card .number::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  right: 0;
  top: 0;
  border-radius: 0 5px 0 50px;
  background-color: var(--primary-color);
  transition: all ease 0.5s;
  z-index: -1;
}

.single-services-card:hover {
  box-shadow: 0px 10px 30px 5px rgba(44, 44, 44, 0.09);
  transform: translateY(-10px);
}

.single-services-card:hover .number {
  color: var(--white-color);
}

.single-services-card:hover .number::before {
  height: 100%;
  width: 100%;
}

.single-services-box {
  background-color: var(--white-color);
}

.single-services-box .services-content {
  padding: 25px 30px 30px 30px;
}

.single-services-box .services-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.single-services-box .services-content h3 a {
  color: #2c2c2c;
}

.single-services-box .services-content p {
  margin-bottom: 25px;
}

.services-slider.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -90px;
  background-color: #e5e5e5;
  border: none;
  height: 55px;
  width: 55px;
  line-height: 62px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 15px;
}

.services-slider.owl-theme .owl-nav [class*="owl-"] i {
  position: relative;
  top: -2px;
  left: -1px;
}

.services-slider.owl-theme .owl-nav [class*="owl-"].owl-next {
  right: -90px;
  left: auto;
}

.services-slider.owl-theme .owl-nav [class*="owl-"].owl-next i {
  position: relative;
  right: -1px;
  left: auto;
  top: -2px;
}

.services-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.services-details-content .top-img {
  margin-bottom: 25px;
}

.services-details-content .analysis-content {
  margin-bottom: 25px;
}

.services-details-content .analysis-content h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.services-details-content .service-description {
  margin-bottom: 25px;
}

.services-details-content .service-description h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

.services-details-content .service-description p {
  margin-bottom: 20px;
}

.services-details-content .planing-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

.services-details-content .planing-content p {
  margin-bottom: 25px;
}

.services-details-content .planing-content .planing-list {
  margin-bottom: 25px;
}

.services-details-content .planing-content .planing-list ul {
  padding-left: 0;
  margin-bottom: 0;
}

.services-details-content .planing-content .planing-list ul li {
  margin-bottom: 15px;
  position: relative;
  list-style-type: none;
  padding-left: 20px;
}

.services-details-content .planing-content .planing-list ul li:last-child {
  margin-bottom: 0;
}

.services-details-content .planing-content .planing-list ul li i {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

.services-details-content .planing-content .planing-img {
  margin-bottom: 30px;
}

.services-category {
  padding: 30px;
  background-color: #fafafa;
  margin-bottom: 30px;
}

.services-category h3 {
  font-size: 20px;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--primary-color);
}

.services-category ul {
  padding-left: 0;
  margin-bottom: 0;
}

.services-category ul li {
  list-style-type: none;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.services-category ul li i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  transition: all ease 0.5s;
}

.services-category ul li a {
  color: #2c2c2c;
  font-weight: 500;
  transition: all ease 0.5s;
}

.services-category ul li:last-child {
  margin-bottom: 0;
}

.services-category ul li:hover a {
  color: var(--primary-color);
}

.services-category ul li:hover i {
  color: var(--primary-color);
}

/*Faq Style
======================================================*/
.faq-area {
  margin-bottom: 30px;
}

.faq-area h2 {
  font-size: 25px;
  margin-bottom: 20px;
}

.faq-area .faq-accordion .accordion .accordion-item {
  display: block;
  margin-bottom: 20px;
  border: none;
  background-color: #fffbea;
  border-radius: 7px;
  border: 1px solid #fffbea;
}

.faq-area .faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-area .faq-accordion .accordion .accordion-title {
  position: relative;
  display: block;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  padding: 20px;
  cursor: pointer;
}

.faq-area .faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  text-align: center;
  height: 40px;
  width: 40px;
  line-height: 42px;
  background-color: var(--white-color);
  font-size: 14px;
  transition: all ease 0.5s;
}

.faq-area .faq-accordion .accordion .accordion-title.active i::before {
  content: "\f16c";
  color: var(--primary-color);
  font-family: flaticon !important;
}

.faq-area .faq-accordion .accordion .accordion-content {
  display: none;
  padding: 20px;
  background-color: var(--white-color);
}

.faq-area .faq-accordion .accordion .accordion-content p {
  font-weight: 400;
}

.faq-area .faq-accordion .accordion .accordion-content.show {
  display: block;
}

/*
Benefits Style
======================================================*/
.benefits-area .container-fluid {
  max-width: 1520px;
}

.benefits-overly {
  padding-left: 100px;
  padding-right: 100px;
}

.single-benefits-box {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 5px;
}

.single-benefits-box .benefits-img {
  margin-bottom: 25px;
}

.single-benefits-box .benefits-img img {
  width: auto;
}

.single-benefits-box h3 {
  font-size: 22px;
  margin-bottom: 17px;
}

.single-benefits-box p {
  margin-bottom: 25px;
}

.benefits-slider.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: -90px;
  transform: translateY(-50%);
  right: 65px;
  background-color: #e5e5e5;
  border: none;
  height: 55px;
  width: 55px;
  line-height: 62px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 13px;
}

.benefits-slider.owl-theme .owl-nav [class*="owl-"] i {
  position: relative;
  top: -2px;
  left: -1px;
}

.benefits-slider.owl-theme .owl-nav [class*="owl-"].owl-next {
  right: 0;
  left: auto;
}

.benefits-slider.owl-theme .owl-nav [class*="owl-"].owl-next i {
  position: relative;
  right: -1px;
  left: auto;
  top: -2px;
}

.benefits-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/*
Who We Are Style
======================================================*/
.who-we-are-content .who-we-are-title {
  margin-bottom: 30px;
}

.who-we-are-content .who-we-are-title span {
  color: var(--primary-color);
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}

.who-we-are-content .who-we-are-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.who-we-are-content .who-we-are-features ul {
  padding-left: 0;
  margin-bottom: 0;
}

.who-we-are-content .who-we-are-features ul li {
  list-style-type: none;
  position: relative;
  padding-left: 65px;
  margin-bottom: 25px;
}

.who-we-are-content .who-we-are-features ul li .icon {
  position: absolute;
  height: 45px;
  width: 45px;
  line-height: 45px;
  color: #2c2c2c;
  background-color: #e5e5e5;
  border-radius: 5px;
  left: 0;
  top: 5px;
  text-align: center;
  font-size: 22px;
  z-index: 1;
  transition: all ease 0.5s;
}

.who-we-are-content .who-we-are-features ul li .icon::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  transition: all ease 0.5s;
  left: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 5px;
  z-index: -1;
}

.who-we-are-content .who-we-are-features ul li h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transition: all ease 0.5s;
}

.who-we-are-content .who-we-are-features ul li:hover h3 {
  color: var(--primary-color);
}

.who-we-are-content .who-we-are-features ul li:hover .icon {
  color: var(--white-color);
}

.who-we-are-content .who-we-are-features ul li:hover .icon::before {
  height: 100%;
  width: 100%;
}

.who-we-are-img {
  position: relative;
  z-index: 1;
}

.who-we-are-img .shape-1 {
  position: absolute;
  left: 60px;
  bottom: 50px;
  z-index: -1;
  animation: movebounce2 5s linear infinite;
}

/*
What We Do Style
======================================================*/
.what-we-do-content .what-we-do-title {
  margin-bottom: 30px;
}

.what-we-do-content .what-we-do-title span {
  color: var(--primary-color);
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}

.what-we-do-content .what-we-do-title h2 {
  font-size: 38px;
  margin-bottom: 17px;
  line-height: 1.4;
}

.what-we-do-content .what-we-do-title p {
  margin-bottom: 18px;
}

.what-we-do-content .what-we-do-title p:last-child {
  margin-bottom: 0;
}

.what-we-do-content .what-we-do-features {
  margin-bottom: 30px;
}

.what-we-do-content .what-we-do-features ul {
  padding-left: 0;
  margin-bottom: 0;
}

.what-we-do-content .what-we-do-features ul li {
  list-style-type: none;
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

.what-we-do-content .what-we-do-features ul li:last-child {
  margin-bottom: 0;
}

.what-we-do-content .what-we-do-features ul li i {
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--primary-color);
}

.what-we-do-content .what-we-do-features ul li h3 {
  font-size: 16px;
}

/*
Our Journey
======================================================*/
.our-journey {
  padding: 50px 0 0;
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
}

.our-journey .our-journey-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
}

.our-journey .journey-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
  width: 100%;
  padding-bottom: 60px;
}

.our-journey .journey-row-normal {
  direction: ltr;
}

.our-journey .journey-row-reverse {
  direction: rtl;
}

.our-journey .our-journey-data {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 100%;
  opacity: 0;
  transform: translateY(0) scale(1);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.our-journey .our-journey-data.animate-in {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.our-journey .our-journey-data p,
.our-journey .our-journey-data h3 {
  margin: 0;
}

.our-journey .our-journey-img {
  height: 70px;
  width: 70px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 99;
}

.our-journey .our-journey-img img {
  width: 100%;
  height: 100%;
}

.our-journey .our-journey-content .journey-row:first-child .our-journey-data:first-child::after {
  content: '';
  position: absolute;
  left: 0;
  top: 30px;
  width: 16px;
  height: 20px;
  background-image: url('../images/icons/journey-arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}

.our-journey .our-journey-content .journey-row:last-child .our-journey-data:last-child::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 30px;
  width: 16px;
  height: 20px;
  background-image: url('../images/icons/journey-arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}

/* Desktop styles (1024px and above) */
@media (min-width: 1024px) {
  .our-journey .our-journey-data::before {
    content: '';
    position: absolute;
    left: 0;
    top: 39px;
    width: 0;
    height: 1px;
    border: 1px dotted #a2cb3a;
    transition: width 0.8s ease;
  }

  .our-journey .journey-row-reverse .our-journey-data::before {
    left: unset;
    right: 0;
  }

  .our-journey .our-journey-data.animate-in::before {
    width: 99.99%;
  }

  .our-journey .journey-row:not(:last-child) .our-journey-data:last-child::before {
    width: 50%;
  }

  .our-journey .journey-row.journey-row-normal:not(:first-child) .our-journey-data:first-child::before {
    width: 50%;
    left: 50%;
  }

  .our-journey .journey-row.journey-row-reverse .our-journey-data:first-child::before {
    width: 50%;
    right: unset;
  }

  .our-journey .journey-row:nth-child(odd):not(:last-child) .our-journey-data:last-child::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 40px;
    width: 50%;
    height: calc(100% + 60px);
    border: 2px dotted #a2cb3a;
    transition: width 0.8s ease;
    border-radius: 200px;
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .our-journey .journey-row:nth-child(even):not(:first-child) .our-journey-data:last-child::after {
    content: '';
    position: absolute;
    left: -25px;
    top: 40px;
    width: 50%;
    height: calc(100% + 60px);
    border: 2px dotted #a2cb3a;
    transition: width 0.8s ease;
    border-radius: 200px;
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

/* Tablet styles (768px to 1024px) - OPTIMIZED */
@media (min-width: 768px) and (max-width: 1023px) {
  .our-journey {
    padding: 40px 0;
  }

  .our-journey .journey-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 30px;
    padding-bottom: 50px;
  }

  .our-journey .our-journey-data {
        max-width: 100%;
        padding: 20px;
        border-radius: 10px;
        background-color: var(--yellow-light);
    }

  .our-journey .our-journey-data {
    max-width: 280px;
    margin: 0 auto;
  }

  /* Horizontal connecting lines for tablet */
  /* .our-journey .our-journey-data::before {
    content: '';
    position: absolute;
    left: 0;
    top: 39px;
    width: 0;
    height: 1px;
    border: 1px dotted var(--primary-color);
    transition: width 0.8s ease;
  } */

  .our-journey .journey-row-reverse .our-journey-data::before {
    left: unset;
    right: 0;
  }

  .our-journey .our-journey-data.animate-in::before, .our-journey .our-journey-data {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* First item in non-first rows */
  .our-journey .journey-row:not(:first-child) .our-journey-data:first-child::before {
    width: 50%;
    left: 50%;
  }

  /* Last item in non-last rows */
  .our-journey .journey-row:not(:last-child) .our-journey-data:last-child::before {
    width: 50%;
  }

  /* Vertical connecting curves for tablet */
  /* .our-journey .journey-row:nth-child(even):not(:last-child) .our-journey-data:last-child::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 40px;
    width: 40%;
    height: calc(100% + 50px);
    border: 2px dotted var(--primary-color);
    transition: height 0.8s ease;
    border-radius: 150px;
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .our-journey .journey-row:nth-child(odd):not(:first-child) .our-journey-data:first-child::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 40px;
    width: 40%;
    height: calc(100% + 50px);
    border: 2px dotted var(--primary-color);
    transition: height 0.8s ease;
    border-radius: 150px;
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  } */
}

/* Mobile styles (below 768px) */
@media (max-width: 767px) {
  .our-journey {
    padding: 30px 0;
  }

  .our-journey .journey-row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 25px;
    padding-bottom: 0;
  }

  .our-journey .our-journey-data {
    max-width: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--yellow-light);
  }

  .our-journey .journey-row-1991 {
    margin-top: -10px;
    margin-bottom: -10px;
  }
}



/*======================================================*/
/*
Choose Style
======================================================*/
.choose-area .section-title {
  /* max-width: 1231px !important; */
  text-align: center;
}

.choose-area .tab-teaser .tab-menu {
  list-style-type: none;
  width: 100%;
  text-align: center;
}
.choose-area .tab-teaser {
  display: grid;
  gap: 18px;
}

.choose-area .tab-teaser .tab-menu ul {
  padding-left: 0;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.choose-area .tab-teaser .tab-menu li {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.choose-area .tab-teaser .tab-menu li a .tab-menu-title {
  position: relative;
  transition: all ease 0.5s;
}

.choose-area .tab-teaser .tab-menu li a {
  text-align: center;
  color: #2c2c2c;
  width: 100%;
  display: flex;
  align-items: center;
  height: 62px;
  background: transparent;
  transition: all ease 0.5s;
  border-radius: 5px;
  text-transform: capitalize;
  border: 1px solid var(--primary-color);
}

@media (max-width: 991px) {
  .choose-area .tab-teaser .tab-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.choose-area .tab-teaser .tab-menu li a.active {
  box-shadow: var(--primary-color) 0px -1px 6px 0px, var(--primary-color) 0px 1px 6px 0px;
  border: 1px solid var(--primary-color);
}

.choose-area .tab-teaser .tab-menu li a .tab-menu-title {
  position: relative;
  border-left: 1px solid var(--primary-color);
  height: 100%;
  align-items: center;
  justify-content: center;
}

.choose-area .tab-teaser .tab-menu li a.active .tab-menu-title {
  border-color: transparent;
}

.choose-area .tab-teaser .tab-menu li a .tab-menu-title::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 5%;
  right: 0;
  background-color: var(--primary-color);
  transition: all ease 0.5s;
  border-radius: 5px;
  z-index: -2;
}

.choose-area .tab-teaser .tab-menu li a.active .tab-menu-title::before,
.choose-area .tab-teaser .tab-menu li a.active:hover .tab-menu-title::before{
  width: 100%;
}

.choose-area .tab-teaser .tab-menu li a.active::before,
.choose-area .tab-teaser .tab-menu li a:hover::before,
.choose-area .tab-teaser .tab-menu li a:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.choose-area .tab-box {
  display: none;
  padding: 30px 50px !important;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.choose-area .tab-box:first-child {
  display: block;
}

.choose-area .tab-box .choose-content {
  display: grid;
  gap: 20px;
  overflow: hidden;
}

.choose-content .choose-title {
  margin-bottom: 25px;
}

.choose-content .choose-title span {
  color: var(--primary-color);
  font-weight: 500;
  font-family: "Jost", sans-serif;
  margin-bottom: 10px;
  display: inline-block;
}

.choose-content .choose-title h2 {
  font-size: 25px;
  margin-bottom: 15px;
}

.choose-content .choose-features-list ul {
  padding-left: 0;
  margin-bottom: 0;
}

.choose-content .choose-features-list ul li {
  list-style-type: none;
  position: relative;
  padding-left: 65px;
  margin-bottom: 22px;
}

.choose-content .choose-features-list ul li .number {
  position: absolute;
  height: 45px;
  width: 45px;
  line-height: 45px;
  color: #2c2c2c;
  background-color: #e5e5e5;
  border-radius: 5px;
  left: 0;
  top: 5px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  z-index: 1;
  transition: all ease 0.5s;
}

/* .choose-content .choose-features-list ul li .number::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  transition: all ease 0.5s;
  left: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 5px;
  z-index: -1;
} */

.choose-content .choose-features-list ul li h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transition: all ease 0.5s;
}

.choose-content .choose-features-list ul li:hover h3 {
  color: var(--primary-color);
}

.choose-content .choose-features-list ul li:hover .number {
  color: var(--white-color);
}

/* .choose-content .choose-features-list ul li:hover .number::before {
  height: 100%;
  width: 100%;
} */

.choose-content .choose-features-list ul li:last-child {
  margin-bottom: 0;
}

.choose-area .tab-box .choose-content .product-approvals,
.choose-area .tab-box .choose-content .facility-approvals {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.choose-area .tab-box .choose-content .facility-approvals {
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

/* .choose-area .tab-box .choose-content .product-approvals:before, */
 /* .choose-area .tab-box .choose-content .facility-approvals:after,
.choose-area .tab-box .choose-content .product-approvals:after {
  content: "";
  position: absolute;
  height: 5px;
  width: 100%;
  background-color: var(--primary-color);
  left: 0;
  z-index: -1;
}

.choose-area .tab-box .choose-content .facility-approvals:after {
  width: 31%;
  left: 50%;
  transform: translateX(-50%);
}  */

.choose-area .tab-box .choose-content .product-approvals .product-logos {
  position: relative;
  height: 132px;
  width: 132px;
  border: 5px solid var(--primary-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.choose-area .tab-box .choose-content .facility-approvals .product-logos {
  position: relative;
  border: 5px solid var(--primary-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--white-color);
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  height: 179px;
} 

.choose-area .tab-box .choose-content .facility-approvals .product-logos:first-child img {
  height: 79px;
}

.choose-area .tab-box .choose-content .facility-approvals .product-logos:nth-child(2) img {
  height: 105px;
}

 /* .choose-area .tab-box .choose-content .product-approvals .product-logos::after,
.choose-area .tab-box .choose-content .product-approvals .product-logos::before,
.choose-area .tab-box .choose-content .facility-approvals .product-logos::after,
.choose-area .tab-box .choose-content .facility-approvals .product-logos::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background-color: var(--primary-color);
  border-radius: 100%;
  z-index: 10;
} 

.choose-area .tab-box .choose-content .product-approvals .product-logos::before,
.choose-area .tab-box .choose-content .facility-approvals .product-logos::before {
  left: -10px;
}

.choose-area .tab-box .choose-content .facility-approvals .product-logos:first-child::before,
.choose-area .tab-box .choose-content .product-approvals .product-logos:first-child::before {
  height: 0;
  width: 0;
}

.choose-area .tab-box .choose-content .facility-approvals .product-logos:last-child::after,
.choose-area .tab-box .choose-content .product-approvals .product-logos:last-child::after {
  height: 0;
  width: 0;
}

.choose-area .tab-box .choose-content .facility-approvals .product-logos::after,
.choose-area .tab-box .choose-content .product-approvals .product-logos::after {
  right: -10px;
} */


.choose-area .tab-box .choose-content .product-approvals .product-logos img,
.choose-area .tab-box .choose-content .facility-approvals .product-logos img {
  /* height: 70%;
  width: 70%; */
  background-size: contain;
  object-fit: contain;
  /* border-radius: 100%; */
  overflow: hidden;
}

.choose-area .tab-box .choose-content .facility-approvals-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
}

.choose-area .tab-box .choose-content .facility-approvals_left,
.choose-area .tab-box .choose-content .facility-approvals_right {
  padding: 16px 30px;
  border-radius: 20px;
  background-color: var(--white-color);
}

.choose-area .tab-box .choose-content .facility-approvals_right {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}

.choose-area .tab-box .choose-content .facility-approvals_right h4 {
  display: flex;
  align-items: center;
}

.choose-area .tab-box .choose-content .facility-approvals_right i {
  color: var(--primary-color);
  font-size: 40px;
}

.choose-area .tab-box .choose-content .facility-approvals_left {
  border-left: 12px solid var(--primary-color);
}


/* Plants Grid Section */
.plants-grid-section {
  display: flex;
  gap: 30px;
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.plant-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 317px;
  max-height: 331px;
  height: 100%;
  width: 100%;
  transition: transform 0.3s ease;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  /* padding: 40px; */
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.plant-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 6px;
  border-radius: 20px;
  z-index: -1;
  transition: all 0.3s ease;
}

.plant-card:hover::before {
  width: 100%;
  background: var(--primary-color);
}

.plant-card:hover {
  transform: translateY(-5px);
}

.plant-card:hover .plant-text h6 {
  color: var(--primary-color);
}
.plant-card .plant-text p {
  line-height: normal;
  margin-top: 10px !important;
}

.plant-image-box {
  /* width: 156px;
  height: 156px; */

  width: 317px;
  height: 331px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.plant-image-box:hover {
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
  border-color: #FFC700;
  transform: scale(1.05);
}

.plant-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.plant-card:hover .plant-image-box img {
  transform: scale(1.1);
}

.plant-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 110%;
  text-align: center;
  color: var(--black-color);
}

@media (max-width: 991px) {
  .plants-grid-section {
    gap: 25px;
  }

  .plant-card {
    max-width: 200px;
  }

  .plant-image-box {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 767px) {
  .plants-grid-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .plant-card {
    max-width: 226px;
  }

  .plant-image-box {
    width: 226px;
    height: 226px;
  }
}

/* Slider Wrapper */
.infrastructure-slider-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.infrastructure-slider {
  position: relative;
}

/* Slide Item */
.infrastructure-slide-item {
  height: 215px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
}

.infrastructure-slide-image img {
  width: 100%;
  height: 100%;
  max-height: 215px;
  object-fit: cover;
}

.infrastructure-youtube-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.infrastructure-youtube-icon i {
  font-size: 20px;
}

.infrastructure-slide-content {
  padding: 20px 0;
  text-align: left;
}

.infrastructure-slide-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.infrastructure-slide-line {
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  margin-bottom: 10px;
}

/* Bottom Navigation */
.infrastructure-navigation {
  width: 290px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
}

.infrastructure-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: #2c2c2c;
  transition: 0.3s;
}

.infrastructure-nav-btn:hover {
  color: var(--primary-color);
}

/* Progress Bar */
.infrastructure-progress-bar {
  flex: 1;
  height: 4px;
  background: #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
}

.infrastructure-progress-fill {
  height: 100%;
  width: 25%;
  background: #2c2c2c;
  border-radius: 2px;
  transition: width 0.3s ease;
}


/*
Project Style
======================================================*/
.project-area {
  position: relative;
  z-index: 1;
}

.project-area .project-shape-one {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.project-area .project-shape-two {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.single-project-card {
  position: relative;
  transition: all ease 0.5s;
}

.single-project-card .project-content {
  padding: 30px;
  background-color: var(--white-color);
  border-radius: 5px;
  position: absolute;
  left: 30px;
  bottom: 30px;
  transform: scaleX(0);
  transition: all ease 0.5s;
}

.single-project-card .project-content span {
  color: var(--primary-color);
  margin-bottom: 10px;
  display: inline-block;
}

.single-project-card .project-content h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.single-project-card:hover .project-content {
  transform: scaleX(1);
}

.single-project-card.style2 {
  margin-bottom: 30px;
}

.single-project-card.style2 .project-content {
  max-width: 310px;
  padding: 15px 20px;
}

.single-project-card.style2 .project-content span {
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 20px;
  font-family: "Jost", sans-serif;
}

.project-slider.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  bottom: 30px;
  right: -85px;
  background-color: #e5e5e5;
  border: none;
  height: 55px;
  width: 55px;
  line-height: 62px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 16px;
}

.project-slider.owl-theme .owl-nav [class*="owl-"] i {
  position: relative;
  top: -2px;
  left: -1px;
}

.project-slider.owl-theme .owl-nav [class*="owl-"].owl-next {
  right: -155px;
  left: auto;
}

.project-slider.owl-theme .owl-nav [class*="owl-"].owl-next i {
  position: relative;
  right: -1px;
  left: auto;
  top: -2px;
}

.project-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.works-content {
  padding-top: 30px;
}

.works-content .works-title span {
  color: var(--primary-color);
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}

.works-content .works-title h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.single-project-box {
  position: relative;
  padding-bottom: 30px;
  padding-right: 30px;
  z-index: 1;
  margin-bottom: 40px;
}

.single-project-box .project-content {
  position: absolute;
  max-width: 310px;
  padding: 20px;
  background-color: var(--white-color);
  font-family: "Jost", sans-serif;
  border-radius: 5px;
  left: 20px;
  bottom: 50px;
  font-size: 20px;
  font-weight: 600;
  color: #2c2c2c;
  transform: scaleY(0);
  transition: all ease 0.5s;
}

.single-project-box::before {
  position: absolute;
  content: "";
  border: 1px dashed var(--primary-color);
  height: 94%;
  width: 95%;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.single-project-box.style-2 {
  padding-left: 30px;
  padding-right: 0;
}

.single-project-box.style-2 .project-content {
  left: 50px;
}

.single-project-box.style-2::before {
  left: 0;
  right: auto;
}

.single-project-box:hover .project-content {
  transform: scaleY(1);
}

.project-slider2.owl-theme .owl-nav [class*="owl-"] {
  background-color: #e5e5e5;
  border: none;
  height: 45px;
  width: 45px;
  line-height: 52px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 12px;
  margin: auto 10px;
}

.project-slider2.owl-theme .owl-nav [class*="owl-"] i {
  position: relative;
  top: -2px;
  left: -1px;
}

.project-slider2.owl-theme .owl-nav [class*="owl-"].owl-next i {
  position: relative;
  right: -1px;
  left: auto;
  top: -2px;
}

.project-slider2.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Products Tab Area Style
======================================================*/
.products-tab-area {
  position: relative;
  background-color: var(--white-color);
}

.products-tab-area .container-fluid {
  max-width: 1520px;
}

.products-tab-content {
  padding-right: 60px;
}

.products-tab-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--black-color);
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
}

.products-tab-content h1 span {
  color: var(--primary-color);
  display: block;
}

.products-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 50px;
  font-family: "Poppins", sans-serif;
}

.products-tab-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.products-tab-list .tab-item {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  cursor: pointer;
  transition: all ease 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.products-tab-list .tab-item .tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.products-tab-list .tab-item:last-child {
  border-bottom: none;
}

.products-tab-list .tab-item .tab-text {
  font-size: 18px;
  font-weight: 400;
  color: #999999;
  font-family: "Poppins", sans-serif;
  transition: all ease 0.3s;
}

.products-tab-list .tab-item .tab-icons {
  display: flex;
  align-items: center;
  position: relative;
}

.products-tab-list .tab-item .tab-arrow {
  font-size: 20px;
  color: transparent;
  transition: all ease 0.3s;
  opacity: 0;
  transform: translateX(-10px);
}

.products-tab-list .tab-item .accordion-icon {
  font-size: 20px;
  color: #999999;
  transition: all ease 0.3s;
  display: none;
  /* Hidden by default on desktop */
}

.products-tab-list .tab-item.active .tab-text {
  color: var(--black-color);
  font-weight: 500;
}

.products-tab-list .tab-item.active .tab-arrow {
  color: var(--primary-color);
  opacity: 1;
  transform: translateX(0);
}

/* Accordion icons - hidden on desktop */
.products-tab-list .tab-item.active .accordion-minus {
  display: none;
  /* Hidden on desktop */
  color: var(--black-color);
}

.products-tab-list .tab-item.active .accordion-plus {
  display: none;
  /* Hidden on desktop */
}

.products-tab-list .tab-item:not(.active) .accordion-plus {
  display: none;
  /* Hidden on desktop */
}

.products-tab-list .tab-item:not(.active) .accordion-minus {
  display: none;
  /* Hidden on desktop */
}

.products-tab-list .tab-item:hover .tab-text {
  color: var(--black-color);
}

.products-tab-list .tab-item:hover .tab-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--primary-color);
}

/* Mobile Tab Content */
.products-tab-list .tab-item .tab-mobile-content {
  display: none;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  transition: all ease 0.4s;
}

@media (min-width: 992px) {
  .products-tab-list .tab-item .tab-mobile-content {
    display: none !important;
  }
}

.products-tab-list .tab-item.active .tab-mobile-content {
  display: block;
}

.products-tab-list .tab-item .mobile-tab-image {
  position: relative;
  display: block;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
}

.products-tab-list .tab-item .mobile-tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transition: transform ease 0.5s;
}

.products-tab-list .tab-item .mobile-tab-image:hover img {
  transform: scale(1.05);
}

.products-tab-list .tab-item .mobile-tab-image .tab-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.3) 100%);
  padding: 25px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 0 0 10px 10px;
}

.products-tab-list .tab-item .mobile-tab-image .tab-content-overlay h3 {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 8px;
  line-height: 1.3;
}

.products-tab-list .tab-item .mobile-tab-image .tab-content-overlay h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--white-color);
}

.products-tab-list .tab-item .mobile-tab-image .tab-content-overlay p {
  color: var(--white-color);
  font-size: 12px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
}

.products-tab-image {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 10px;
}

.products-tab-image .tab-content-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
  transform: scale(1.1);
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.products-tab-image .tab-content-item.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.products-tab-image .tab-content-item:hover {
  opacity: 0.95;
}

.products-tab-image .tab-content-item.active:hover {
  opacity: 1;
}

.products-tab-image .tab-content-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  filter: blur(2px);
  transition: transform ease 0.5s;
}

.products-tab-image .tab-content-item:hover img {
  transform: scale(1.05);
}

.products-tab-image .tab-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.3) 100%);
  padding: 35px 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 0 0 10px 10px;
}

.products-tab-image .tab-content-overlay h3 {
  color: var(--white-color);
  font-size: 28px;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  margin-bottom: 12px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  line-height: 1.3;
}

.products-tab-image .tab-content-overlay h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--white-color);
}

.products-tab-image .tab-content-overlay p {
  color: var(--white-color);
  font-size: 14px;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
  flex: 1;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .products-tab-area .section-title h2 {
    font-size: 36px;
  }

  .products-tab-area .section-title p {
    font-size: 15px;
  }

  .products-tab-content {
    padding-right: 30px;
  }

  .products-tab-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .products-tab-area .section-title {
    margin-bottom: 30px;
  }

  .products-tab-area .section-title h2 {
    font-size: 32px;
  }

  .products-tab-area .section-title p {
    font-size: 15px;
  }

  .products-tab-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .products-tab-content h1 {
    font-size: 36px;
  }

  /* Hide right column image on screens < 991px */
  .products-tab-area .col-lg-6:last-child {
    display: none;
  }

  /* Show accordion behavior on screens < 991px - hide arrows, show accordion icons */
  .products-tab-list .tab-item .tab-arrow {
    display: none !important;
  }

  .products-tab-list .tab-item .accordion-icon {
    display: block !important;
  }

  .products-tab-list .tab-item.active .accordion-minus {
    display: block !important;
    color: var(--black-color);
  }

  .products-tab-list .tab-item.active .accordion-plus {
    display: none !important;
  }

  .products-tab-list .tab-item:not(.active) .accordion-plus {
    display: block !important;
    color: #999999;
  }

  .products-tab-list .tab-item:not(.active) .accordion-minus {
    display: none !important;
  }

  .products-tab-list .tab-item .tab-mobile-content {
    margin-top: 15px;
  }

  .products-tab-list .tab-item .mobile-tab-image {
    height: 400px;
  }

  .products-tab-image {
    height: 500px;
  }

  .products-tab-image .tab-content-overlay {
    padding: 30px 30px 25px;
  }

  .products-tab-image .tab-content-overlay h3 {
    font-size: 24px;
  }

  .products-tab-image .tab-content-overlay p {
    font-size: 13px;
  }
}

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

  .products-tab-area .section-title h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .products-tab-area .section-title p {
    font-size: 14px;
  }

  .products-tab-content h1 {
    font-size: 28px;
  }

  .products-description {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .products-tab-list .tab-item {
    padding: 15px 0;
  }

  .products-tab-list .tab-item .tab-text {
    font-size: 16px;
  }

  .products-tab-list .tab-item .mobile-tab-image {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .products-tab-area .section-title h2 {
    font-size: 22px;
  }

  .products-tab-area .section-title p {
    font-size: 13px;
  }

  .products-tab-content h1 {
    font-size: 24px;
  }

  .products-tab-list .tab-item .tab-text {
    font-size: 15px;
  }

  .products-tab-list .tab-item .mobile-tab-image {
    height: 280px;
  }

  .products-tab-list .tab-item .mobile-tab-image .tab-content-overlay {
    padding: 20px 15px 15px;
  }

  .products-tab-list .tab-item .mobile-tab-image .tab-content-overlay h3 {
    font-size: 18px;
  }

  .products-tab-list .tab-item .mobile-tab-image .tab-content-overlay p {
    font-size: 11px;
  }
}

.Works-area .container-fluid {
  max-width: 1520px;
}

.works-overly {
  padding-left: 100px;
  padding-right: 100px;
}

.work-slider.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: -90px;
  transform: translateY(-50%);
  right: 65px;
  background-color: #e5e5e5;
  border: none;
  height: 55px;
  width: 55px;
  line-height: 62px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 13px;
}

.work-slider.owl-theme .owl-nav [class*="owl-"] i {
  position: relative;
  top: -2px;
  left: -1px;
}

.work-slider.owl-theme .owl-nav [class*="owl-"].owl-next {
  right: 0;
  left: auto;
}

.work-slider.owl-theme .owl-nav [class*="owl-"].owl-next i {
  position: relative;
  right: -1px;
  left: auto;
  top: -2px;
}

.work-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.portfolio-area .shoting-btn {
  margin-bottom: 30px;
}

.portfolio-area .shoting-btn .filter-carousel {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.portfolio-area .shoting-btn .filter-carousel .owl-stage-outer {
  overflow: hidden;
}

.portfolio-area .shoting-btn .filter-carousel .owl-stage {
  display: flex;
  transition-timing-function: ease-in-out;
}

.portfolio-area .shoting-btn .filter-carousel .owl-item {
  transition: transform 0.2s ease;
}

.portfolio-area .shoting-btn .filter-carousel .owl-nav {
  display: none !important;
}

.portfolio-area .shoting-btn .filter-carousel .owl-dots {
  display: none !important;
}

.portfolio-area .shoting-btn .filter-carousel .item {
  padding: 0 5px;
  display: flex;
  align-items: center;
}

.portfolio-area .shoting-btn .filter-carousel .item button {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 5px;
  transition: all ease 0.5s;
  cursor: pointer;
  pointer-events: auto;
  white-space: nowrap;
  min-width: fit-content;
  width: auto;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  display: inline-block;
}

.portfolio-area .shoting-btn .filter-carousel .item button:hover,
.portfolio-area .shoting-btn .filter-carousel .item button:focus,
.portfolio-area .shoting-btn .filter-carousel .item button.active,
.portfolio-area .shoting-btn .filter-carousel .item button.mixitup-control-active {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.portfolio-card {
  position: relative;
  margin-bottom: 25px;
}

.portfolio-card .icon {
  position: absolute;
  align-items: center;
  justify-content: center;
  display: flex;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all ease 0.5s;
}

.portfolio-card .icon .action-icon {
  background-color: var(--white-color);
  padding: 15px;
  border-radius: 100%;
}

.portfolio-card::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  /* background: rgba(44, 44, 44, 0.3); */
  transform: scaleX(0);
  transition: all ease 0.5s;
}

.portfolio-card:hover .icon {
  opacity: 1;
}

.portfolio-card:hover::before {
  transform: scaleX(1);
}

.mfp-title {
  display: none;
}

.project-description {
  padding: 30px;
  background-color: #f5f5f5;
  margin-bottom: 30px;
}

.project-description h3 {
  font-size: 20px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--primary-color);
}

.project-description ul {
  padding-left: 0;
  margin-bottom: 0;
}

.project-description ul li {
  margin-bottom: 20px;
  list-style-type: none;
}

.project-description ul li:last-child {
  margin-bottom: 0;
}

.project-description ul li p {
  margin-bottom: 5px;
}

.project-description ul li span {
  font-weight: 500;
  color: #2c2c2c;
  font-family: "Jost", sans-serif;
}

.portfolio-details-btn {
  margin-bottom: 30px;
}

.portfolio-details-top-img {
  margin-bottom: 40px;
}

.portfolio-details-content .about-project {
  margin-bottom: 30px;
}

.portfolio-details-content .about-project h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.portfolio-details-content .about-project p {
  margin-bottom: 15px;
}

.portfolio-details-content .planing-content {
  margin-bottom: 30px;
}

.portfolio-details-content .planing-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

.portfolio-details-content .planing-content p {
  margin-bottom: 25px;
}

.portfolio-details-content .planing-content .planing-list {
  margin-bottom: 25px;
}

.portfolio-details-content .planing-content .planing-list ul {
  padding-left: 0;
  margin-bottom: 0;
}

.portfolio-details-content .planing-content .planing-list ul li {
  margin-bottom: 15px;
  position: relative;
  list-style-type: none;
  font-family: "Jost", sans-serif;
  color: #2c2c2c;
  font-weight: 500;
  padding-left: 20px;
}

.portfolio-details-content .planing-content .planing-list ul li:last-child {
  margin-bottom: 0;
}

.portfolio-details-content .planing-content .planing-list ul li i {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

.portfolio-details-card .portfolio-content {
  position: relative;
}

.portfolio-details-card .portfolio-content span {
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}

.portfolio-details-card .portfolio-content h3 {
  font-size: 20px;
}

.portfolio-details-card .portfolio-content .portfolio-shape {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.portfolio-slider.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -60px;
  background-color: #e5e5e5;
  border: none;
  height: 40px;
  width: 40px;
  line-height: 49px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 15px;
}

.portfolio-slider.owl-theme .owl-nav [class*="owl-"] i {
  position: relative;
  top: -2px;
  left: -1px;
}

.portfolio-slider.owl-theme .owl-nav [class*="owl-"].owl-next {
  right: -60px;
  left: auto;
}

.portfolio-slider.owl-theme .owl-nav [class*="owl-"].owl-next i {
  position: relative;
  right: -1px;
  left: auto;
  top: -2px;
}

.portfolio-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/*
Team Style
======================================================*/
.single-team-card {
  margin-bottom: 30px;
}

.single-team-card .team-img {
  position: relative;
  overflow: hidden;
  transition: all ease 1s;
}

.single-team-card .team-img img {
  overflow: hidden;
  transition: all ease 1s;
}

.single-team-card .team-img .social-content {
  position: absolute;
  left: 20px;
  top: 20px;
}

.single-team-card .team-img .social-content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.single-team-card .team-img .social-content ul li {
  margin-bottom: 8px;
  list-style-type: none;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
}

.single-team-card .team-img .social-content ul li:nth-child(1) {
  transition-delay: 0.2s;
}

.single-team-card .team-img .social-content ul li:nth-child(2) {
  transition-delay: 0.3s;
}

.single-team-card .team-img .social-content ul li:nth-child(3) {
  transition-delay: 0.4s;
}

.single-team-card .team-img .social-content ul li:nth-child(4) {
  transition-delay: 0.5s;
}

.single-team-card .team-img .social-content ul li a {
  color: #2c2c2c;
  height: 35px;
  background-color: var(--white-color);
  width: 35px;
  line-height: 33px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  transition: all ease 0.5s;
}

.single-team-card .team-img .social-content ul li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.single-team-card .team-content {
  text-align: center;
  padding: 30px 30px 0 30px;
}

.single-team-card .team-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.single-team-card .team-content span {
  color: var(--primary-color);
}

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

.single-team-card:hover .team-img .social-content ul li {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.single-team-card.style2 .team-img .social-content ul li a {
  background-color: #e5e5e5;
}

.single-team-card.style2 .team-img .social-content ul li a:hover {
  background-color: var(--primary-color);
}

.single-team-box {
  margin-bottom: 30px;
  transition: all ease 0.5s;
  box-shadow: 0px 10px 30px 5px rgba(38, 50, 56, 0.05);
}

.single-team-box .team-content {
  padding: 30px;
}

.single-team-box .team-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.single-team-box .team-content span {
  color: var(--primary-color);
  font-weight: 500;
}

.single-team-box .team-content .social-content {
  text-align: end;
}

.single-team-box .team-content .social-content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.single-team-box .team-content .social-content ul li {
  margin-right: 5px;
  display: inline-block;
}

.single-team-box .team-content .social-content ul li:last-child {
  margin-right: 0;
}

.single-team-box .team-content .social-content ul li a {
  color: #2c2c2c;
  height: 30px;
  background-color: #e5e5e5;
  width: 30px;
  line-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  transition: all ease 0.5s;
  font-size: 14px;
}

.single-team-box .team-content .social-content ul li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.single-team-box:hover {
  box-shadow: 0px 10px 30px 5px rgba(38, 50, 56, 0.09);
  transform: translateX(-5px);
}

.team-area2 .container-fluid {
  max-width: 1520px;
}

.team-overly {
  padding-left: 100px;
  padding-right: 100px;
}

/*
Skill Style
======================================================*/
.skill-area {
  position: relative;
  z-index: 1;
}

.skill-area::before {
  position: absolute;
  content: "";
  height: 40px;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: var(--white-color);
  z-index: -1;
}

.skill-area.style2::before {
  display: none;
}

.skill-content .skill-title {
  margin-bottom: 20px;
}

.skill-content .skill-title span {
  color: var(--primary-color);
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}

.skill-content .skill-title h2 {
  font-size: 40px;
  margin-bottom: 18px;
}

.skill-bar {
  margin-bottom: 15px;
}

.skill-bar .progress-title-holder {
  position: relative;
  margin-bottom: 5px;
}

.skill-bar .progress-title {
  font-size: 15px;
  font-weight: 600;
  color: #2c2c2c;
  font-family: "Jost", sans-serif;
  margin-bottom: 0 !important;
}

.skill-bar .progress-number-wrapper {
  width: 100%;
  z-index: 10;
  font-size: 11px;
  line-height: 24px;
  height: 24px;
  letter-spacing: 0px;
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  color: var(--white-color);
  margin-bottom: 0;
  margin-bottom: 0 !important;
}

.skill-bar .progress-number-mark {
  margin-bottom: 4px;
  border-radius: 3px;
  padding: 0 8px;
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  margin-bottom: 0 !important;
}

.skill-bar .progress-content-outter {
  height: 10px;
  background-color: #e5e5e5;
  border-radius: 0;
}

.skill-bar .progress-content {
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 0;
  width: 0%;
  position: relative;
  bottom: -5px;
}

.skill-bar .percent {
  margin-bottom: 0 !important;
  color: #2c2c2c !important;
  font-size: 15px;
  font-weight: 600;
}

/*
Testimonials Style
======================================================*/
.testimonials-area {
  background-color: #fff;
}

.testimonials-area .owl-stage-outer .single-testimonials-card {
  margin-bottom: 53px;
}

.single-testimonials-card {
  padding: 20px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin: 5px;
  background-color: var(--white-color);
}

.single-testimonials-card .testimonials-content {
  position: relative;
}

.single-testimonials-card .testimonials-content p {
  margin-bottom: 20px;
}

.single-testimonials-card .testimonials-content .ratings-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-bottom: 15px;
}

.single-testimonials-card .testimonials-content .ratings-list li {
  display: inline-block;
  margin-right: 3px;
}

.single-testimonials-card .testimonials-content .ratings-list li:last-child {
  margin-right: 0;
}

.single-testimonials-card .testimonials-content .ratings-list li i {
  color: #ff8a00;
}

.single-testimonials-card .testimonials-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.single-testimonials-card .testimonials-content span {
  color: var(--green-color);
}

.single-testimonials-card .tesimonials-qoutes {
  position: absolute;
  height: 148px;
  width: 142px;
  bottom: 0;
  right: 43px;
  font-size: 60px;
  color: var(--primary-color);
  z-index: 999;
  padding: 0;
  /* opacity: 0.1; */
}

@media only screen and (max-width: 600px) {
  .single-testimonials-card .tesimonials-qoutes {
    height: 60px;
    width: 60px;
    bottom: -5px;
  }

  .testimonials-area .owl-stage-outer .single-testimonials-card {
    margin-bottom: 15px;
  }
}

.single-testimonials-card .tesimonials-qoutes img {
  width: 100%;
  height: auto;
}

/* .single-testimonials-card .testimonials-content .icon {
  position: absolute;
  font-size: 60px;
  right: 10px;
  bottom: -10px;
  color: var(--primary-color);
  opacity: 0.1;
} */

.testimonials-slider.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  left: -90px;
  background-color: #e5e5e5;
  border: none;
  height: 55px;
  width: 55px;
  line-height: 62px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 15px;
}

.testimonials-slider.owl-theme .owl-nav [class*="owl-"] i {
  position: relative;
  top: -2px;
  left: -1px;
}

.testimonials-slider.owl-theme .owl-nav [class*="owl-"].owl-next {
  right: -90px;
  left: auto;
}

.testimonials-slider.owl-theme .owl-nav [class*="owl-"].owl-next i {
  position: relative;
  right: -1px;
  left: auto;
  top: -2px;
}

.testimonials-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.single-review-box {
  padding: 40px;
  box-shadow: 0px 6px 30px rgba(44, 44, 44, 0.03);
  margin: 7px;
  transition: all ease 0.5s;
  position: relative;
}

.single-review-box .client-profile {
  position: relative;
  padding-left: 90px;
  margin-bottom: 35px;
}

.single-review-box .client-profile img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
}

.single-review-box .client-profile h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.single-review-box .client-profile span {
  color: var(--primary-color);
}

.single-review-box .ratings {
  margin-bottom: 15px;
}

.single-review-box .ratings i {
  color: #ff8a00;
  margin-right: 5px;
}

.single-review-box .ratings i:last-child {
  margin-right: 0;
}

.single-review-box p {
  margin-bottom: 0;
}

.single-review-box .quote {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.1;
}

.single-review-box.style2 {
  margin: 0;
  margin-bottom: 30px;
}

.reviews-slider.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -90px;
  background-color: #e5e5e5;
  border: none;
  height: 55px;
  width: 55px;
  line-height: 62px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 15px;
}

.reviews-slider.owl-theme .owl-nav [class*="owl-"] i {
  position: relative;
  top: -2px;
  left: -1px;
}

.reviews-slider.owl-theme .owl-nav [class*="owl-"].owl-next {
  right: -90px;
  left: auto;
}

.reviews-slider.owl-theme .owl-nav [class*="owl-"].owl-next i {
  position: relative;
  right: -1px;
  left: auto;
  top: -2px;
}

.reviews-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.active.center .single-review-box {
  box-shadow: 0px 6px 30px rgba(44, 44, 44, 0.09);
}

.testimonials-area2 .container-fluid {
  max-width: 1520px;
}

.testimonials-overly {
  padding-left: 100px;
  padding-right: 100px;
}

.single-testimonials-box {
  margin: 10px;
  transition: all ease 0.5s;
}

.single-testimonials-box .testimonials-content {
  background-color: var(--white-color);
  padding: 30px;
  position: relative;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
  transition: all ease 0.5s;
}

.single-testimonials-box .testimonials-content .ratings {
  margin-bottom: 15px;
}

.single-testimonials-box .testimonials-content .ratings i {
  color: #ff8a00;
  margin-right: 5px;
}

.single-testimonials-box .testimonials-content .ratings i:last-child {
  margin-right: 0;
}

.single-testimonials-box .testimonials-content::before {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  background-color: var(--white-color);
  left: 50px;
  bottom: -20px;
  transform: rotate(45deg);
  z-index: 1;
  box-shadow: 0px 10px 30px rgba(44, 44, 44, 0.05);
}

.single-testimonials-box .cliens-profile {
  position: relative;
  padding-left: 125px;
}

.single-testimonials-box .cliens-profile img {
  position: absolute;
  width: auto;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.single-testimonials-box .cliens-profile h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.single-testimonials-box .cliens-profile span {
  color: var(--primary-color);
}

.testimonials-slider2.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: -90px;
  transform: translateY(-50%);
  right: 65px;
  background-color: #e5e5e5;
  border: none;
  height: 55px;
  width: 55px;
  line-height: 62px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 13px;
}

.testimonials-slider2.owl-theme .owl-nav [class*="owl-"] i {
  position: relative;
  top: -2px;
  left: -1px;
}

.testimonials-slider2.owl-theme .owl-nav [class*="owl-"].owl-next {
  right: 0;
  left: auto;
}

.testimonials-slider2.owl-theme .owl-nav [class*="owl-"].owl-next i {
  position: relative;
  right: -1px;
  left: auto;
  top: -2px;
}

.testimonials-slider2.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.reviews-form {
  max-width: 960px;
  margin: auto;
}

.reviews-form .form-group {
  margin-bottom: 25px;
}

.reviews-form .form-group .form-control {
  background-color: #f5f5f5;
  color: #2c2c2c;
  border: none;
}

.reviews-form .form-group .form-control::-moz-placeholder {
  color: #666666;
}

.reviews-form .form-group .form-control::placeholder {
  color: #666666;
}

.reviews-form .default-btn {
  width: 100%;
}

/*
Video Style
======================================================*/
.video-img {
  position: relative;
  overflow: hidden;
}

.video-img .video-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
}

.video-img .video-content h3 {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.video-img .video-content .play-btn a {
  height: 80px;
  width: 80px;
  line-height: 80px;
  /* background-color: var(--white-color); */
  background-color: red;
  display: inline-block;
  color: var(--primary-color);
  border-radius: 25%;
  position: relative;
  transition: all ease 0.5s;
}

.video-img .video-content .play-btn a::before {
  position: absolute;
  content: "";
  height: 84px;
  width: 84px;
  border-radius: 100%;
  border: 1px solid var(--white-color);
  left: -2px;
  top: -2px;
  animation: ripple 7s linear infinite;
}

.video-img .video-content .play-btn:hover a::before {
  border-color: var(--primary-color);
}

/* .video-img::before {
  position: absolute;
  content: "";
  background: rgba(17, 17, 17, 0.5);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
} */

/* Company Highlight  */
.company-area {
  width: 100%;
  overflow: hidden;
}

.company-contant {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: flex-start;
  padding: 0 20px;
  gap: 20px;
}

@media (max-width: 1600px) {
  .company-contant {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .company-contant {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .company-contant {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* Card */
.company-card {
  height: 293px;
  perspective: 1000px;
  margin: 0;
}

/* Inner Wrapper */
.company-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

/* Hover flip */
.company-card:hover .company-inner {
  transform: rotate3d(1, 1, 0, -180deg);
}

/* Front & Back Common */
.company-front,
.company-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  box-sizing: border-box;
}

/* Front */
.company-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.front-title {
  position: absolute;
  left: 0;
  top: 0;
  padding: 5px;
  background-color: var(--primary-color);
}

/* Back */
.company-back {
  background-color: var(--white-color);
  transform: rotate3d(1, 1, 0, -180deg);
  padding: 16px;
}

.company-back .gallery-view .company-image img {
  height: 490px;
}

.company-back .arrow {
  position: static;
  top: 0;
  left: auto;
  right: 0 !important;
  height: 67px;
  width: auto;
  border-radius: 0% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.company-back .icon .action-icon {
  border-radius: 0% !important;
  background-color: transparent !important;
  position: static;
  padding: 0;
}

.company-back p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
  word-break: break-word;
}

.card-back-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  max-height: calc(100% - 30px);
  height: 100%;
}

@media (max-width: 1480px) {
  .company-back p {
    -webkit-line-clamp: 6;
  }
}

/*  */

/*
Blog Style
======================================================*/
.single-blog-card {
  box-shadow: 0px 6px 30px rgba(44, 44, 44, 0.05);
  transition: all ease 0.5s;
  margin-bottom: 30px;
}

.single-blog-card .blog-img {
  position: relative;
}

.single-blog-card .blog-img img {
  width: 100%;
}

.single-blog-card .blog-img .date {
  height: 75px;
  width: 70px;
  background-color: var(--primary-color);
  display: inline-block;
  text-align: center;
  padding-top: 10px;
  position: absolute;
  left: 30px;
  bottom: -40px;
}

.single-blog-card .blog-img .date p {
  font-size: 16px;
  color: var(--white-color);
  font-weight: 500;
  margin-bottom: 5px;
}

.single-blog-card .blog-img .date span {
  color: var(--white-color);
}

.single-blog-card .blog-content {
  padding: 15px 30px 30px 30px;
}

.single-blog-card .blog-content ul {
  padding-left: 0;
  margin-left: 75px;
  margin-bottom: 22px;
}

.single-blog-card .blog-content ul li {
  display: inline-block;
  margin-left: 10px;
  position: relative;
  padding-left: 24px;
}

.single-blog-card .blog-content ul li i {
  position: absolute;
  left: 0;
  font-size: 20px;
  top: -3px;
  color: var(--primary-color);
}

.single-blog-card .blog-content ul li a {
  color: #666666;
  transition: all ease 0.5s;
}

.single-blog-card .blog-content ul li a:hover {
  color: var(--primary-color);
}

.single-blog-card .blog-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.single-blog-card .blog-content h3 a {
  color: #2c2c2c;
  transition: all ease 0.5s;
}

.single-blog-card .blog-content h3 a:hover {
  color: var(--primary-color);
}

.single-blog-card .blog-content p {
  margin-bottom: 25px;
}

.single-blog-card:hover {
  box-shadow: 0px 10px 30px 5px rgba(44, 44, 44, 0.09);
  transform: translateY(-10px);
}

.single-blog-card.style2 .blog-content {
  padding: 30px;
}

.single-blog-card.style2 .blog-content h3 {
  margin-bottom: 30px;
}

.single-blog-card.style2 .blog-content ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 18px;
}

.single-blog-card.style2 .blog-content ul li {
  margin-left: 15px;
}

.single-blog-card.style2 .blog-content ul li:first-child {
  margin-left: 0;
}

.single-blog-card.style3 .blog-img .date {
  right: 30px;
  left: auto;
}

.single-blog-card.style3 .blog-content {
  padding: 30px;
}

.single-blog-card.style3 .blog-content ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 15px;
}

.single-blog-card.style3 .blog-content ul li {
  margin-left: 15px;
}

.single-blog-card.style3 .blog-content ul li:first-child {
  margin-left: 0;
}

.single-blog-card.style4 .blog-content {
  padding: 30px;
}

.single-blog-card.style4 .blog-content h3 {
  margin-bottom: 18px;
}

.single-blog-card.style4 .blog-content ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 18px;
}

.single-blog-card.style4 .blog-content ul li {
  margin-left: 15px;
}

.single-blog-card.style4 .blog-content ul li:first-child {
  margin-left: 0;
}

.single-blog-card.style4 .blog-content p {
  margin-bottom: 0;
}

.blog-details-content {
  padding: 30px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.blog-details-content .user-and-date {
  margin-bottom: 20px;
}

.blog-details-content .user-and-date ul {
  padding-left: 0;
  margin-bottom: 0;
}

.blog-details-content .user-and-date ul li {
  display: inline-block;
  margin-left: 10px;
  position: relative;
  padding-left: 22px;
}

.blog-details-content .user-and-date ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
}

.blog-details-content .user-and-date ul li a {
  color: #666666;
  transition: all ease 0.5s;
}

.blog-details-content .user-and-date ul li a:hover {
  color: var(--primary-color);
}

.blog-details-content h3 {
  font-size: 25px;
  margin-bottom: 20px;
}

.blog-details-content p {
  margin-bottom: 20px;
}

.blog-details-content .quote {
  padding: 30px;
  background-color: #f4fbf8;
  margin-bottom: 25px;
  margin-top: 30px;
}

.blog-details-content .quote p {
  color: #2c2c2c;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
}

.blog-details-content .quote span {
  color: #2c2c2c;
  font-weight: 500;
  font-size: 20px;
  position: relative;
  padding-left: 37px;
  font-family: "Jost", sans-serif;
}

.blog-details-content .quote span::before {
  position: absolute;
  content: "";
  left: 0;
  background-color: var(--primary-color);
  height: 2px;
  width: 30px;
  top: 13px;
}

.comments-content h3 {
  font-size: 25px;
  margin-bottom: 30px;
}

.single-comment-box {
  margin-bottom: 35px;
  position: relative;
}

.single-comment-box .user-profile {
  position: relative;
  padding-left: 90px;
  margin-bottom: 30px;
}

.single-comment-box .user-profile img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.single-comment-box .user-profile h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.single-comment-box .reply {
  position: absolute;
  right: 0;
  top: 0;
}

.single-comment-box .reply a {
  color: var(--primary-color);
  font-weight: 500;
}

.single-comment-box .reply a img {
  position: relative;
  top: -2px;
}

.comment-form h3 {
  font-size: 25px;
  margin-bottom: 20px;
}

.comment-form .form-group {
  margin-bottom: 25px;
}

.comment-form .form-group .form-control {
  background-color: #f5f5f5;
  border: none;
}

.sidebar-widget {
  padding: 30px;
  background-color: #f5f5f5;
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  font-size: 22px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--primary-color);
}

.sidebar-widget .search-bar .form-group {
  position: relative;
}

.sidebar-widget .search-bar .form-group .default-btn {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
  padding: 8px;
}

.sidebar-widget .search-bar .form-group .default-btn i {
  font-size: 20px;
  position: relative;
  top: 0;
}

.sidebar-widget .search-bar .form-group .form-control {
  border: none;
  background-color: var(--white-color);
  border-radius: 0;
}

.sidebar-widget.style2 {
  padding: 30px 30px 15px 30px;
}

.Category-list ul {
  padding-left: 0;
  margin-bottom: 0;
}

.Category-list ul li {
  list-style-type: none;
  margin-bottom: 13px;
  position: relative;
  padding-left: 18px;
}

.Category-list ul li:last-child {
  margin-bottom: 0;
}

.Category-list ul li i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

.Category-list ul li a {
  color: #2c2c2c;
  font-weight: 500;
  transition: all ease 0.5s;
}

.Category-list ul li a:hover {
  color: var(--primary-color);
}

.tag-cloud ul {
  padding-left: 0;
  margin-bottom: 0;
}

.tag-cloud ul li {
  display: inline-block;
  margin-bottom: 15px;
  margin-right: 10px;
}

.tag-cloud ul li:last-child {
  margin-right: 0;
}

.tag-cloud ul li a {
  background-color: var(--white-color);
  color: #2c2c2c;
  padding: 10px;
  border: 1px solid rgba(40, 170, 74, 0.3);
  display: inline-block;
  transition: all ease 0.5s;
}

.tag-cloud ul li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.widget-peru-posts-thumb {
  position: relative;
  overflow: hidden;
}

.widget-peru-posts-thumb .item {
  overflow: hidden;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.widget-peru-posts-thumb .item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.widget-peru-posts-thumb .item .thumb {
  float: left;
  height: 75px;
  overflow: hidden;
  position: relative;
  width: 75px;
  margin-right: 15px;
}

.widget-peru-posts-thumb .item .thumb .fullimage {
  width: 130px;
  height: 130px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
  position: relative;
  background-color: #2c2c2c;
}

.widget-peru-posts-thumb .item .thumb .fullimage.bg1 {
  background-image: url(../images/blog/blog-img-1.jpg);
}

.widget-peru-posts-thumb .item .thumb .fullimage.bg2 {
  background-image: url(../images/blog/blog-img-2.jpg);
}

.widget-peru-posts-thumb .item .thumb .fullimage.bg3 {
  background-image: url(../images/blog/blog-img-3.jpg);
}

.widget-peru-posts-thumb .item .thumb .fullimage.bg4 {
  background-image: url(../images/blog/blog-img-4.jpg);
}

.widget-peru-posts-thumb .item .info {
  overflow: hidden;
}

.widget-peru-posts-thumb .item .info span {
  display: block;
  color: #666666;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
}

.widget-peru-posts-thumb .item .info .title {
  margin-bottom: 0;
  margin-top: 5px;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 600;
}

.widget-peru-posts-thumb .item .info .title a {
  display: inline-block;
  color: #474c40;
  transition: all ease 0.5s;
}

.widget-peru-posts-thumb .item .info .title a:hover {
  color: var(--primary-color);
}

/*
Pricing Style
======================================================*/
.single-pricing-card {
  padding: 30px;
  background-color: #f4fbf8;
  transition: all ease 0.5s;
  margin-bottom: 30px;
}

.single-pricing-card .pricing-head-content h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.single-pricing-card .pricing-head-content p {
  margin-bottom: 20px;
}

.single-pricing-card .pricing-head-content h1 {
  font-size: 50px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
}

.single-pricing-card .pricing-head-content h1 span {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}

.single-pricing-card .featurs-list {
  margin-bottom: 30px;
}

.single-pricing-card .featurs-list ul {
  padding-left: 0;
  margin-bottom: 0;
}

.single-pricing-card .featurs-list ul li {
  list-style-type: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}

.single-pricing-card .featurs-list ul li i {
  left: 0;
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.single-pricing-card .featurs-list ul li i.white {
  color: #666666;
}

.single-pricing-card .featurs-list ul li:last-child {
  margin-bottom: 0;
}

.single-pricing-card .default-btn {
  width: 100%;
}

.single-pricing-card.active,
.single-pricing-card:hover {
  background-color: var(--white-color);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.single-pricing-card.active .default-btn,
.single-pricing-card:hover .default-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.wrapper-full.hide {
  display: none;
}

.plans-switcher {
  text-align: center;
  margin-bottom: 45px;
}

.plans-switcher .toggle,
.plans-switcher .toggler {
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
  cursor: pointer;
}

.plans-switcher .toggler {
  color: #2e2f46;
  transition: 0.6s;
  font-size: 16px;
  font-weight: 500;
}

.plans-switcher .toggler.toggler--is-active {
  color: var(--primary-color);
}

.plans-switcher .toggle {
  position: relative;
  width: 70px;
  height: 30px;
  border-radius: 100px;
  background: rgba(40, 170, 74, 0.15);
  overflow: hidden;
}

.plans-switcher .toggle .b {
  display: block;
}

.plans-switcher .toggle .switch {
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: 5px;
  right: 58.5%;
  background-color: var(--primary-color);
  border-radius: 50px;
  z-index: 1;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0s, 0.08s;
}

.plans-switcher .toggle .check {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 6;
}

.plans-switcher .toggle .check:checked~.switch {
  right: 5px;
  left: 57.5%;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
}

/*
Footer Style
======================================================*/
.start-footer-area {
  background-color: #263238;
}

/* .footer-logo-area {
  margin-bottom: 30px;
} */

.footer-logo-area img {
  margin-bottom: 12px;
  width: 180px;
  height: auto;
}

.footer-logo-area p {
  color: var(--grey-color);
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-logo-area .social-content {
  margin-top: 15px;
}

.footer-logo-area .social-content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.footer-logo-area .social-content ul li {
  margin-right: 8px;
  display: inline-block;
}

.footer-logo-area .social-content ul li:last-child {
  margin-right: 0;
}

.footer-logo-area .social-content ul li span {
  color: var(--white-color);
  font-weight: 500;
  padding-right: 10px;
  position: relative;
  top: -2px;
}

.footer-logo-area .social-content ul li a {
  color: #2c2c2c;
  height: 30px;
  background-color: var(--white-color);
  width: 30px;
  line-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  transition: all ease 0.5s;
}

.footer-logo-area .social-content ul li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

/* .single-footer-widget {
  margin-bottom: 30px;
} */

.single-footer-widget h3 {
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-address-area {
  /* padding-left: 30px; */
}

.footer-address-area ul {
  padding-left: 0;
  margin-bottom: 0;
}

.footer-address-area ul li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
  transition: all ease 0.5s;
  margin-bottom: 12px;
}

.footer-address-area ul li:last-child {
  margin-bottom: 0;
}

.footer-address-area ul li p {
  margin-bottom: 3px;
  color: var(--secondary-color);
  font-weight: 500;
}

.footer-address-area ul li a {
  color: var(--grey-color);
  transition: all ease 0.5s;
  font-weight: 500;
}

.footer-address-area ul li a:hover {
  color: var(--primary-color);
}

.footer-address-area ul li span {
  color: var(--white-color);
  font-weight: 500;
}

.footer-address-area ul li .icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 38px;
  width: 38px;
  color: #2c2c2c;
  line-height: 38px;
  background-color: #e5e5e5;
  font-size: 16px;
  color: var(--green-color);
  text-align: center;
  border-radius: 5px;
  z-index: 1;
  transition: all ease 0.5s;
}

.footer-address-area ul li .icon::before {
  position: absolute;
  content: "";
  height: 0%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background-color: var(--primary-color);
  z-index: -1;
  transition: all ease 0.5s;
}

.footer-address-area ul li:hover .icon {
  color: var(--white-color);
}

.footer-address-area ul li:hover .icon::before {
  height: 100%;
}

.footer-useful-links-area {
  padding-left: 30px;
}

.footer-useful-links-area .link-list ul {
  padding-left: 0;
  margin-bottom: 0;
}

.footer-useful-links-area .link-list ul li {
  list-style-type: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.footer-useful-links-area .link-list ul li:last-child {
  margin-bottom: 0;
}

.footer-useful-links-area .link-list ul li i {
  position: absolute;
  left: 0;
  font-size: 18px;
  top: -2px;
  color: var(--grey-color);
  transition: all ease 0.5s;
}

.footer-useful-links-area .link-list ul li a {
  color: var(--grey-color);
  transition: all ease 0.5s;
}

.footer-useful-links-area .link-list ul li:hover i {
  color: var(--primary-color);
}

.footer-useful-links-area .link-list ul li:hover a {
  color: var(--primary-color);
}

.footer-useful-links-area .link-list ul li:hover a {
  color: var(--primary-color);
}

.footer-scan-area {
  margin-top: 20px;
  padding: 18px 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 15px;
  max-width: 300px;
}

.footer-scan-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.footer-scan-area:hover::before {
  left: 100%;
}

.footer-scan-area:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.footer-scan-area p {
  color: var(--white-color);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.95;
}

.footer-scan-area img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;
  background: var(--white-color);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.footer-scan-area:hover img {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.footer-scan-area a {
  color: var(--white-color);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 10px;
}

.footer-scan-area a .icon {
  color: var(--white-color) !important;
  font-size: 20px;
}

.footer-scan-area a:hover {
  color: var(--text-color);
}

.footer-subscribe-area p {
  color: var(--grey-color);
  margin-bottom: 20px;
}

.footer-subscribe-area .subscribe-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white-color);
  height: 55px;
}

.footer-subscribe-area .subscribe-form .form-control::-moz-placeholder {
  color: var(--grey-color);
  font-size: 15px;
}

.footer-subscribe-area .subscribe-form .form-control::placeholder {
  color: var(--grey-color);
  font-size: 15px;
}

.footer-subscribe-area .subscribe-form .default-btn {
  width: 100%;
  margin-top: 20px;
}

.footer-instagram-area {
  margin-bottom: 0;
}

.footer-instagram-area .instagram-img {
  position: relative;
  overflow: hidden;
  transition: all ease 0.5s;
  margin-bottom: 25px;
}

.footer-instagram-area .instagram-img img {
  overflow: hidden;
  transition: all ease 0.5s;
}

.footer-instagram-area .instagram-img .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  transition: all ease 0.5s;
}

.footer-instagram-area .instagram-img .icon a {
  color: var(--white-color);
  font-size: 18px;
  transition: all ease 0.5s;
  position: relative;
  top: 3px;
  opacity: 0;
}

.footer-instagram-area .instagram-img:hover img {
  filter: blur(2px);
  transform: scale(1.2);
}

.footer-instagram-area .instagram-img:hover .icon a {
  opacity: 1;
}

.copy-right-area {
  background-color: #263238;
  text-align: center;
}

.copy-right-area p {
  color: var(--white-color);
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copy-right-area p span {
  color: var(--secondary-color);
}

.copy-right-area p a {
  color: var(--secondary-color);
}

@media (max-width: 1024px) {

  .single-footer-widget {
    margin-bottom: 30px;
  }

  .footer-logo-area {
    text-align: center;
  }

  .footer-logo-area a {
    display: inline-block;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-scan-area {
    justify-content: center;
    margin: 10px auto;
  }
}

/*
Newsletter Style
======================================================*/
.newsletter-overly {
  background-color: var(--primary-color);
  position: relative;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.newsletter-overly::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 40%;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--white-color);
  border-radius: 0 0 60% 0;
}

.newsletter-overly .newslatter-img {
  position: relative;
}

.newsletter-overly .newslatter-img .image-1 {
  position: absolute;
  top: 50px;
  left: 0;
}

.newsletter-overly .newslatter-img .image-2 {
  position: absolute;
  top: 50px;
  left: 40px;
}

.newsletter-overly .newslatter-img .image-3 {
  position: absolute;
  top: 200px;
  left: 0;
}

.newsletter-overly .newslatter-content {
  padding: 100px 100px 100px 30px;
}

.newsletter-overly .newslatter-content span {
  color: var(--white-color);
  margin-bottom: 10px;
  display: inline-block;
}

.newsletter-overly .newslatter-content h2 {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--white-color);
}

.newsletter-overly .newslatter-content p {
  color: var(--white-color);
  margin-bottom: 30px;
}

.validation-danger {
  color: #f00f1a;
  padding-top: 5px;
}

/*
Login Area Style
======================================================*/
.login {
  max-width: 650px;
  margin: auto;
  padding: 50px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.login h3 {
  font-size: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
  position: relative;
}

.login h3::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 70px;
  background-color: var(--primary-color);
  top: 43px;
}

.login .form-group {
  margin-bottom: 20px;
}

.login .form-check {
  margin-bottom: 30px;
}

.login .form-check .form-check-input:checked {
  background-color: var(--primary-color);
}

.login .form-check .form-check-input:focus {
  box-shadow: none;
}

.login .default-btn {
  padding: 15px 40px;
  margin-bottom: 20px;
}

.login a {
  display: inherit;
  color: #666666;
  font-weight: 500;
}

/*
Register Area Style
======================================================*/
.register {
  max-width: 650px;
  margin: auto;
  padding: 50px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.register h3 {
  font-size: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
  position: relative;
}

.register h3::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 70px;
  background-color: var(--primary-color);
  top: 43px;
}

.register .form-group {
  margin-bottom: 20px;
}

.register .default-btn {
  padding: 15px 40px;
  margin-top: 20px;
}

/*
Password Area Style
======================================================*/
.password {
  max-width: 650px;
  margin: auto;
  padding: 50px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.password h3 {
  font-size: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
  position: relative;
}

.password h3::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 70px;
  background-color: var(--primary-color);
  top: 43px;
}

.password .form-group {
  margin-bottom: 20px;
}

.password .default-btn {
  width: 100%;
}

/*
Privacy Policy Style
======================================================*/
.privacy-content {
  margin-bottom: 10px;
}

.privacy-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.privacy-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.privacy-content p {
  margin-bottom: 25px;
}

.privacy-content .list ul {
  margin-bottom: 20px;
  padding-left: 0;
}

.privacy-content .list ul li {
  font-weight: 600;
  color: #2c2c2c;
  position: relative;
  padding-left: 20px;
  list-style-type: none;
  padding-bottom: 15px;
}

.privacy-content .list ul li i {
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/*
Terms & Condition Style
======================================================*/
.condition-content {
  margin-bottom: 10px;
}

.condition-content h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.condition-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.condition-content p {
  margin-bottom: 25px;
}

.condition-content .list ul {
  margin-bottom: 20px;
  padding-left: 0;
}

.condition-content .list ul li {
  font-weight: 600;
  color: #2c2c2c;
  position: relative;
  padding-left: 20px;
  list-style-type: none;
  padding-bottom: 15px;
}

.condition-content .list ul li i {
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/*
Error Area Style
======================================================*/
.error-area {
  text-align: center;
}

.error-area .top-content {
  margin-bottom: 20px;
}

.error-area .top-content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.error-area .top-content ul li {
  font-size: 200px;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  margin-right: 30px;
  color: var(--primary-color);
  animation: movebounce 5s linear infinite;
}

.error-area .top-content ul li:first-child {
  color: #2c2c2c;
  animation: movebounce 7s linear infinite;
}

.error-area .top-content ul li:last-child {
  color: #666666;
  animation: movebounce 9s linear infinite;
}

.error-area h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.error-area p {
  margin-bottom: 30px;
}

/*
Page Hedaer Style
======================================================*/
.page-header-area {
  padding: 50px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  /* min-height: 350px; */
  padding: 50px 20px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
} 

.page-header-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.page-header-area .page-header-content h1 {
  font-size: 50px;
  margin-bottom: 15px;
  color: var(--white-color);
}

.page-header-area .page-header-content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.page-header-area .page-header-content ul li {
  display: inline-block;
  color: var(--primary-color);
  margin-right: 20px;
  font-weight: 500;
  position: relative;
  color: var(--white-color);
}

.page-header-area .page-header-content ul li:last-child {
  margin-right: 0;
}

.page-header-area .page-header-content ul li:last-child::before {
  display: none;
}

.page-header-area .page-header-content ul li::before {
  position: absolute;
  content: "\f1ab";
  font-family: flaticon !important;
  right: -18px;
  font-size: 11px;
  top: 5px;
  color: var(--primary-color);
}

.page-header-area .page-header-content ul li a {
  /* color: var(--yellow-color); */
  color: #8fbd3d;
}

.page-header-area .page-header-image {
  text-align: end;
  position: relative;
  right: -60px;
}

/* 
Founder Desk Page
================================================*/
.founder-area-start .founder-content .company-start {
  position: relative;
}

.founder-area-start .founder-content .founder-icon {
  position: relative;
  width: calc(100% - 300px);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {

  .founder-area-start .founder-content .founder-icon::before,
  .founder-area-start .founder-content .founder-icon::after {
    content: "";
    height: 2px;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-top: 2px dashed var(--primary-color);
  }
}

@media (max-width: 1023px) {

  .founder-icon {
    display: flex;
    flex-direction: column;
  }

  .founder-area-start .founder-content .founder-icon::before,
  .founder-area-start .founder-content .founder-icon::after {
    content: "";
    height: 50%;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-top: 2px dashed var(--primary-color);
    transform: rotate(90deg);
    z-index: -1;
  }

  .founder-area-start .founder-content .founder-icon span:first-child {
    left: 50% !important;
    top: -50px;
    transform: translateX(-50%);
  }

  .founder-area-start .founder-content .founder-icon span:last-child {
    right: 40% !important;
    bottom: -50px !important;
    transform: translateX(-50%) !important;
    top: auto !important;
  }
}


.founder-area-start .founder-content .founder-icon .icons {
  width: 128px;
  height: 128px;
  border: 2px dashed var(--primary-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
}

@media (max-width: 1024px) {
  .founder-area-start .founder-content .founder-icon .icons {
    width: 80px;
    height: 80px;
  }

  .founder-area-start .founder-content .founder-icon .icons img {
    height: 40px;
    width: 40px;
  }
}

.founder-area-start .founder-content .founder-icon span {
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  height: 10px;
  width: 10px;
  background-color: var(--primary-color);
  border-radius: 100%;
}

.founder-area-start .founder-content .founder-icon span:first-child {
  left: 0;
}

.founder-area-start .founder-content .founder-icon span:last-child {
  right: 0;
}

.journy-through-area .journy-through-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* justify-content: space-between; */
  /* align-items: center; */
  gap: 50px;
}

@media (max-width: 1024px) {
  .journy-through-area .journy-through-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .journy-through-area .journy-through-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.journy-through-area .journy-through-content .journy-through-card {
  position: relative;
  border: 1px solid var(--primary-color);
  padding: 50px 15px 30px;
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .journy-through-area .journy-through-content .journy-through-card {
    padding: 50px 15px 30px;
  }
}

.journy-through-area .journy-through-content .journy-through-card .journy-through-img {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: var(--white-color);
}

@media (max-width: 1023px) {
  .journy-through-area .journy-through-content .journy-through-card .journy-through-img {
    top: -40px;
  }
}

.journy-through-area .journy-through-content .journy-through-card .journy-through-img .img {
  height: 66px;
  width: 66px !important;
  padding: 5px;
  background-color: var(--primary-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .journy-through-area .journy-through-content .journy-through-card .journy-through-img .img {
    height: 50px;
    width: 50px !important;
  }
}

/* Improved Pulse Shadow Animation for Image Container */
@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 203, 5, 0.6),
      0 0 0 0 rgba(255, 203, 5, 0.4),
      0 0 0 0 rgba(255, 203, 5, 0.2);
  }

  33% {
    box-shadow: 0 0 0 8px rgba(255, 203, 5, 0),
      0 0 0 12px rgba(255, 203, 5, 0.3),
      0 0 0 18px rgba(255, 203, 5, 0.1);
  }

  66% {
    box-shadow: 0 0 0 12px rgba(255, 203, 5, 0),
      0 0 0 20px rgba(255, 203, 5, 0),
      0 0 0 25px rgba(255, 203, 5, 0.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 203, 5, 0),
      0 0 0 0 rgba(255, 203, 5, 0),
      0 0 0 0 rgba(255, 203, 5, 0);
  }
}

.journy-through-area .journy-through-content .journy-through-card .journy-through-img {
  animation: pulseShadow 2.5s infinite ease-out;
  transition: all 0.3s ease;
}

/* Hover Effects for Journey Cards */
.journy-through-area .journy-through-content .journy-through-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.journy-through-area .journy-through-content .journy-through-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 203, 5, 0.25);
  border-color: var(--primary-color);
  background-color: rgba(255, 203, 5, 0.03);
}

.journy-through-area .journy-through-content .journy-through-card:hover .journy-through-img {
  animation: pulseShadow 1.2s infinite ease-out;
  transform: translateX(-50%) scale(1.1);
}

.journy-through-area .journy-through-content .journy-through-card:hover .journy-through-img .img {
  background-color: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 203, 5, 0.5);
}

.journy-through-area .journy-through-content .journy-through-card:hover .journy-through-img .img img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.journy-through-area .journy-through-content .journy-through-card:hover h3 {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.journy-through-area .journy-through-content .journy-through-card:hover h6 {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.carrying-area .carrying-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}

@media (max-width: 1024px) {
  .carrying-area .carrying-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .carrying-area .carrying-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.carrying-area .carrying-content .carrying-card {
  background-color: var(--primary-color);
  padding: 40px 30px 30px;
  border-radius: 20px;
  min-height: 328px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s,
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s,
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  border: 2px solid transparent;
  cursor: pointer;
}

.carrying-area .carrying-content .carrying-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.carrying-area .carrying-content .carrying-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 203, 5, 0.95) 0%, rgba(255, 203, 5, 0.85) 50%, rgba(255, 203, 5, 0.95) 100%);
  opacity: 0;
  border-radius: 20px;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  z-index: 0;
  pointer-events: none;
}

.carrying-area .carrying-content .carrying-card:hover {
  transform: translateY(-10px) scale(1.02) rotate(1deg);
  box-shadow: 0px 20px 40px rgba(255, 203, 5, 0.3), 0px 0px 30px rgba(255, 203, 5, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.carrying-area .carrying-content .carrying-card:hover::before {
  left: 100%;
}

.carrying-area .carrying-content .carrying-card:hover::after {
  opacity: 1;
}

.carrying-area .carrying-content .carrying-card>* {
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carrying-area .carrying-content .carrying-card:hover .d-flex img {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(1.1) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.carrying-area .carrying-content .carrying-card .d-flex {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carrying-area .carrying-content .carrying-card:hover .d-flex {
  transform: translateY(-5px);
}

.carrying-area .carrying-content .carrying-card .section-title h3 {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carrying-area .carrying-content .carrying-card:hover .section-title h3 {
  transform: scale(1.05);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carrying-area .carrying-content .carrying-card p {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carrying-area .carrying-content .carrying-card:hover p {
  transform: translateY(-3px);
}

.carrying-area .carrying-content .carrying-card .d-flex img {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

@media (max-width: 1399px) {
  .carrying-area .carrying-content .carrying-card {
    padding: 30px 20px 25px;
  }
}

.carrying-card {
  position: relative;
}

.carrying-card:not(:last-child)::before {
  font-family: flaticon;
  content: '\f170';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: var(--primary-color);
  right: -50px;
}

.carrying-card p {
  font-size: 16px;
  text-align: center;
  color: #000000;
  margin: 0 10px;
}

@media (max-width: 1399px) {
  .carrying-card p {
    margin: 0 0;
  }
}

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

/*
Go To Top Style
======================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 87%;
  right: -10%;
  background-color: var(--primary-color);
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 55px;
  line-height: 45px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
}

.go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: var(--black-color);
  transition: 0.5s;
  font-size: 26px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  z-index: -1;
  background-color: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.go-top:hover {
  color: var(--white-color);
  background: #2c2c2c;
}

.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i {
  color: var(--black-color);
}

.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top:focus {
  color: var(--white-color);
}

.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top.active {
  transform: translateY(-95%);
  opacity: 1;
  visibility: visible;
  right: 2.5%;
  top: 80%;
}

.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--black-color);
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  transition: all 0.08s ease-out;
}

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

.mouseCursor.cursor-big {
  width: 80px;
  height: 80px;
}

.mouseCursor.cursor-big.cursor-outer {
  display: none;
}

.mouseCursor.cursor-big.cursor-outer {
  display: none;
}

.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #2c2c2c;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

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

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

.tp-cursor-point-area {
  cursor: none;
}

.single-contact-card {
  text-align: center;
  padding: 30px;
  box-shadow: 0px 6px 30px rgba(44, 44, 44, 0.05);
  transition: all ease 0.5s;
  margin-bottom: 30px;
}

.single-contact-card .icon {
  height: 70px;
  width: 70px;
  line-height: 78px;
  font-size: 30px;
  border-radius: 100%;
  text-align: center;
  background-color: #e5e5e5;
  margin: auto;
  margin-bottom: 25px;
  transition: all ease 0.5s;
}

.single-contact-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.single-contact-card a {
  display: block;
  color: #666666;
  transition: all ease 0.5s;
}

.single-contact-card a:hover {
  color: var(--primary-color);
}

.single-contact-card:hover {
  box-shadow: 0px 6px 30px rgba(44, 44, 44, 0.09);
}

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

.contact-form-area .contacts-form {
  max-width: 860px;
  margin: auto;
}

.contact-form-area .contacts-form .form-group {
  margin-bottom: 25px;
}

.contact-form-area .contacts-form .form-group .form-control {
  background-color: #f5f5f5;
  border: none;
}

.contact-form-area .contacts-form .default-btn {
  width: 100%;
}

.contact-form-area .list-unstyled {
  color: #f00f1a;
  padding-top: 5px;
}

.contact-form-area .text-danger {
  margin-top: 15px;
}

.map-area iframe {
  height: 600px;
  width: 100%;
  position: relative;
  margin-bottom: -10px;
}

/*Coming Soon Style
======================================================*/
.coming-soon-area {
  position: relative;
  z-index: 1;
  height: 100vh;
}

.coming-soon-area::before {
  position: absolute;
  content: "";
  height: 300px;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #f7f7f7;
  z-index: -1;
}

.coming-soon-counter {
  max-width: 880px;
  margin: auto;
  border: 30px solid var(--white-color);
  background-color: #f7f7f7;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding-top: 100px;
  padding-bottom: 80px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 30px;
}

.coming-soon-counter::before {
  position: absolute;
  content: "";
  height: 100%;
  width: auto;
  left: -60px !important;
  right: 0;
  bottom: -60px;
  border-radius: 10px;
  border: 1px solid #eeeeee;
  z-index: -1;
}

.coming-soon-counter .list ul {
  margin-bottom: 0;
  padding-left: 0;
}

.coming-soon-counter .list ul li {
  margin: 0 30px;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  color: var(--primary-color);
}

.coming-soon-counter .list ul li span {
  font-size: 15px;
  font-weight: 500;
  color: #666666;
}

.coming-soon-counter .list ul li::before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  background-color: #666666;
  border-radius: 100%;
  right: -30px;
  top: 42px;
}

.coming-soon-counter .list ul li::after {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  background-color: #666666;
  border-radius: 100%;
  right: -30px;
  top: 55px;
}

.coming-soon-counter .list ul li:last-child::before {
  display: none;
}

.coming-soon-counter .list ul li:last-child::after {
  display: none;
}

.coming-soon-content {
  padding-top: 50px;
  max-width: 880px;
  margin: auto;
  text-align: center;
}

.coming-soon-content .top-content {
  max-width: 620px;
  margin: auto;
}

.coming-soon-content .top-content .coming-soon-logo {
  margin-bottom: 20px;
}

.coming-soon-content .top-content .coming-soon-logo .logo-2 {
  display: none;
}

.coming-soon-content .top-content h1 {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 600;
}

.coming-soon-content .newsletter-form {
  position: relative;
  margin-bottom: 30px;
  z-index: 4;
}

.coming-soon-content .newsletter-form .form-control {
  height: 62px;
}

.coming-soon-content .newsletter-form .default-btn {
  position: absolute;
  right: 5px;
  top: 5px;
}

.coming-soon-content .newsletter-form .default-btn:hover {
  background-color: #2c2c2c;
  color: var(--white-color);
}

.coming-soon-content .newsletter-form .default-btn i {
  position: relative;
  top: 2px;
  padding-left: 7px;
}

.coming-soon-content .social-links ul {
  margin-bottom: 0;
  padding-left: 0;
}

.coming-soon-content .social-links ul li {
  display: inline-block;
  margin-right: 10px;
}

.coming-soon-content .social-links ul li:last-child {
  margin-right: 0;
}

.coming-soon-content .social-links ul li a {
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: var(--white-color);
  border-radius: 100%;
  color: #666666;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  transition: all ease 0.5s;
}

.coming-soon-content .social-links ul li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-5px);
}

/*
Overview Page Custom Styles
======================================================*/

/* Overview Main Content - Modern Design */
.overview-main-content {
  padding-right: 40px;
  position: relative;
}

.overview-main-content::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  left: -20px;
  top: 0;
  border-radius: 2px;
}

.overview-main-content .about-title {
  margin-bottom: 50px;
  position: relative;
}

.overview-main-content .about-title p {
  margin-bottom: 25px;
  /* text-align: justify; */
}

.overview-main-content .about-title p:last-child {
  margin-bottom: 0;
}

/* Product Range Section - Modern Design */
.product-range-section {
  background: linear-gradient(135deg, rgba(11, 144, 65, 0.03) 0%, rgba(166, 207, 57, 0.03) 100%);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid rgba(11, 144, 65, 0.1);
  position: relative;
  overflow: hidden;
}

.product-range-section::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(11, 144, 65, 0.1) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  border-radius: 50%;
}

.product-range-section h3 {
  font-size: 28px;
  color: #2c2c2c;
  margin-bottom: 25px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.product-range-section h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}

.product-range-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 12px;
}

.product-range-list li {
  padding: 15px 20px;
  padding-left: 50px;
  position: relative;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  transition: all ease 0.4s;
  background-color: var(--white-color);
  border-radius: 8px;
  border: 1px solid rgba(11, 144, 65, 0.1);
  font-weight: 500;
}

.product-range-list li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 8px 0 0 8px;
  opacity: 0;
  transition: all ease 0.4s;
}

.product-range-list li i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  background: var(--light-primary-color);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all ease 0.4s;
}

.product-range-list li:hover {
  color: var(--primary-color);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(11, 144, 65, 0.15);
  border-color: rgba(11, 144, 65, 0.3);
}

.product-range-list li:hover::before {
  opacity: 1;
}

.product-range-list li:hover i {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-50%) scale(1.1);
}

/* Our Belief Section - Modern Design */
.our-belief-section {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}

.our-belief-section::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(11, 144, 65, 0.05) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
}

.our-belief-section h3 {
  color: var(--white-color);
}

.our-belief-section p {
  color: var(--white-color);
}

/* Overview Highlights - Modern Design (Icons Hidden) */
.overview-highlights {
  position: relative;
  padding-left: 25px;
}

.overview-highlights::before {
  position: absolute;
  content: "";
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  z-index: 0;
  border-radius: 2px;
}

.highlight-box {
  position: relative;
  background: linear-gradient(135deg, var(--white-color) 0%, rgba(244, 251, 246, 0.5) 100%);
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all ease 0.5s;
  z-index: 1;
  border: 1px solid rgba(11, 144, 65, 0.1);
}

.highlight-box::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(11, 144, 65, 0.08) 0%, transparent 70%);
  top: -75px;
  right: -75px;
  border-radius: 50%;
  transition: all ease 0.5s;
}

.highlight-box:last-child {
  margin-bottom: 0;
}

.highlight-box:hover {
  transform: translateX(8px) translateY(-5px);
  box-shadow: 0 10px 40px rgba(11, 144, 65, 0.2);
  border-color: rgba(11, 144, 65, 0.3);
}

.highlight-box:hover::before {
  transform: scale(1.5);
}

.highlight-icon {
  position: absolute;
  left: -25px;
  top: 30px;
  height: 80px;
  width: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(11, 144, 65, 0.3);
  transition: all ease 0.5s;
}

/* Hide the icon image but keep the circle */
.highlight-icon i {
  display: none;
}

.highlight-box:hover .highlight-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(11, 144, 65, 0.4);
}

.highlight-content {
  padding-left: 50px;
  position: relative;
  z-index: 1;
}

.highlight-content h4 {
  font-size: 22px;
  color: #2c2c2c;
  margin-bottom: 12px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  position: relative;
  display: inline-block;
  transition: all ease 0.3s;
}

.highlight-box:first-child .highlight-content h4 {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.15) 0%, rgba(0, 123, 255, 0.08) 100%);
  padding: 8px 16px;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid rgba(0, 123, 255, 0.2);
}

.highlight-box:hover .highlight-content h4 {
  color: var(--primary-color);
}

/* Top Highlight Cards - Horizontal Layout */
.highlight-top-inner {
  margin: 0 -30px;
  /* padding-top: 50px; */
}

.highlight-card-top {
  background: var(--white-color);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all ease 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(11, 144, 65, 0.1);
  position: relative;
  /* overflow: hidden; */
  margin-left: 30px;
  margin-right: 30px;
}

.highlight-card-top::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform ease 0.4s;
}

.highlight-card-top:hover::before {
  transform: scaleX(1);
}

.highlight-card-top:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 8px 30px rgba(11, 144, 65, 0.15);
  border-color: rgba(11, 144, 65, 0.3);
}

.highlight-icon-top {
  position: absolute;
  width: 110px;
  height: 110px;
  left: -55px;
  top: -55px;
  transition: all ease 0.4s;
}

.highlight-icon-top i {
  font-size: 32px;
  color: var(--white-color);
  display: block;
}

.highlight-card-top:hover .highlight-icon-top {
  transform: rotate(5deg);
  /* box-shadow: 0 8px 25px rgba(11, 144, 65, 0.35); */
}

.highlight-content-top {
  position: relative;
  z-index: 1;
}

.highlight-content-top h4 {
  font-size: 20px;
  color: #2c2c2c;
  margin-bottom: 12px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  transition: all ease 0.3s;
}

.highlight-card-top:hover .highlight-content-top h4 {
  color: var(--primary-color);
}

.highlight-content-top p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

/* About Image Wrapper */
.about-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 400px;
}

.about-image-content {
  position: relative;
  max-height: 342px;
}

.about-image-content img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  background-size: contain;
  max-height: 320px;
}

.about-image-content .img-1 {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.about-image-content .img-2 {
  position: absolute;
  right: 0;
  top: 0;
}

.about-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform ease 0.6s;
}

.about-image-wrapper:hover .about-main-image {
  transform: scale(1.05);
}

/* Updated Overview Main Content - Remove left border */
.overview-main-content {
  padding-right: 0;
  padding-left: 0;
  position: relative;
}

.overview-main-content::before {
  display: none;
}

.overview-main-content .about-title {
  margin-bottom: 0;
}

/* Spacing adjustments for overview page */
.about-area .container {
  max-width: 1540px;
}

.about-area .row.mb-5 {
  margin-bottom: 60px !important;
}

/* Choose Card Styles for Journey Section */
.single-choose-card {
  background-color: var(--white-color);
  padding: 40px 30px;
  border-radius: 5px;
  text-align: center;
  transition: all ease 0.5s;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.single-choose-card::before {
  position: absolute;
  content: "";
  height: 4px;
  width: 0;
  background-color: var(--primary-color);
  top: 0;
  left: 0;
  transition: all ease 0.5s;
}

.single-choose-card:hover::before {
  width: 100%;
}

.single-choose-card .choose-icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  background-color: var(--light-primary-color);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.5s;
}

.single-choose-card .choose-icon i {
  font-size: 40px;
  color: var(--primary-color);
  transition: all ease 0.5s;
}

.single-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 30px 5px rgba(44, 44, 44, 0.09);
}

.single-choose-card:hover .choose-icon {
  background-color: var(--primary-color);
}

.single-choose-card:hover .choose-icon i {
  color: var(--white-color);
}

.single-choose-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--primary-color);
  transition: all ease 0.5s;
}

.single-choose-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2c2c2c;
}

.single-choose-card p {
  margin-bottom: 0;
  line-height: 1.8;
}

/* Services Icon Styles for Products Section */
.single-services-card .services-icon {
  height: 70px;
  width: 70px;
  line-height: 70px;
  background-color: var(--light-primary-color);
  border-radius: 5px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.5s;
}

.single-services-card .services-icon i {
  font-size: 35px;
  color: var(--primary-color);
  transition: all ease 0.5s;
}

.single-services-card:hover .services-icon {
  background-color: var(--primary-color);
}

.single-services-card:hover .services-icon i {
  color: var(--white-color);
}

/* Testimonials Icon Styles */

.single-testimonials-card .testimonials-content .testimonials-icon {
  position: absolute;
  font-size: 60px;
  right: 10px;
  top: -10px;
  color: var(--primary-color);
  opacity: 0.1;
  z-index: 0;
}

.single-testimonials-card .testimonials-content {
  position: relative;
  z-index: 1;
}

.single-testimonials-card .testimonials-content .testimonials-author {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eeeeee;
}

.single-testimonials-card .testimonials-content .testimonials-author h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #2c2c2c;
}

.single-testimonials-card .testimonials-content .testimonials-author span {
  color: var(--primary-color);
  font-size: 14px;
}

/* Overview Page Specific Overrides */
.testimonials-area.overview-page {
  background-color: transparent;
}

/*
Journey Timeline Styles - Vertical Timeline with Alternating Cards (CodePen Style)
======================================================*/

/* Journey Timeline Section */
.journey-timeline-section {
  background: var(--white-color);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.journey-timeline-section.ptb-50 {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Modern Horizontal Three-Row Timeline */
.modern-timeline {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Timeline Row */
.timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 60px;
  flex-wrap: nowrap;
  gap: 20px;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

/* Row 2 flows from right to left */
.timeline-row-2 {
  flex-direction: row-reverse;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

/* Timeline SVG Arrow - Snake Style */
.timeline-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  width: calc(100% - 10px);
  min-width: 70px;
  max-width: 180px;
  height: 20px;
  overflow: visible;
}

.timeline-arrow-right {
  left: calc(100% + 5px);
}

.timeline-arrow-left {
  right: calc(100% + 5px);
}

/* Ensure SVG arrows are visible and properly styled */
.timeline-arrow line {
  stroke: #999;
  stroke-width: 2;
  stroke-dasharray: 4 4;
  stroke-linecap: round;
}

.timeline-arrow polygon {
  fill: #999;
  stroke: none;
}

/* Timeline Milestone */
.timeline-milestone {
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
  background: var(--white-color);
  padding: 15px 10px;
  border-radius: 8px;
  transition: all ease 0.3s;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-milestone:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Timeline Icon */
.timeline-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 50%;
  transition: all ease 0.3s;
  flex-shrink: 0;
}

.timeline-icon i {
  font-size: 24px;
  color: #666;
  transition: all ease 0.3s;
}

.timeline-item:hover .timeline-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.timeline-item:hover .timeline-icon i {
  color: var(--white-color);
}

/* Timeline Year - Color Variants */
.timeline-year {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 20px;
  transition: all ease 0.3s;
}

.timeline-year-blue {
  color: #2196F3;
}

.timeline-year-green {
  color: #4CAF50;
}

.timeline-year-orange {
  color: #FF9800;
}

.timeline-year-pink {
  color: #E91E63;
}

.timeline-item:hover .timeline-year {
  transform: scale(1.1);
}

/* Timeline Content */
.timeline-content {
  margin-top: 5px;
}

.timeline-content p {
  margin: 0;
  color: #666;
  line-height: 1.5;
  font-size: 13px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
}

.timeline-item:hover .timeline-content p {
  color: #2c2c2c;
}

/* Responsive Design for Journey Timeline */
@media only screen and (max-width: 1199px) {
  .modern-timeline {
    padding: 30px 15px;
  }

  .timeline-row {
    margin-bottom: 50px;
    gap: 15px;
  }

  .timeline-icon {
    width: 45px;
    height: 45px;
  }

  .timeline-icon i {
    font-size: 22px;
  }

  .timeline-year {
    font-size: 16px;
    padding: 4px 10px;
  }

  .timeline-content p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 991px) {
  .journey-timeline-section {
    padding: 60px 0;
  }

  .journey-timeline-section.ptb-50 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .modern-timeline {
    padding: 25px 10px;
  }

  .timeline-row {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
  }

  .timeline-item {
    flex: 0 0 calc(33.333% - 15px);
    min-width: 200px;
    margin-bottom: 20px;
  }

  .timeline-arrow {
    display: none;
  }

  .timeline-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }

  .timeline-icon i {
    font-size: 20px;
  }

  .timeline-year {
    font-size: 15px;
    padding: 4px 10px;
    margin-bottom: 6px;
  }

  .timeline-content p {
    font-size: 12px;
  }

  .timeline-milestone {
    padding: 12px 8px;
  }
}

@media only screen and (max-width: 767px) {
  .journey-timeline-section {
    padding: 50px 0;
    background: var(--white-color);
  }

  .journey-timeline-section.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .modern-timeline {
    padding: 20px 10px;
  }

  .timeline-row {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
  }

  .timeline-item {
    flex: 0 0 100%;
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
  }

  .timeline-arrow {
    display: none;
  }

  .timeline-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
  }

  .timeline-icon i {
    font-size: 22px;
  }

  .timeline-year {
    font-size: 16px;
    padding: 5px 12px;
    margin-bottom: 8px;
  }

  .timeline-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .timeline-milestone {
    padding: 15px 12px;
  }
}

@media only screen and (max-width: 575px) {
  .timeline-item {
    max-width: 100%;
  }

  .timeline-icon {
    width: 40px;
    height: 40px;
  }

  .timeline-icon i {
    font-size: 20px;
  }

  .timeline-year {
    font-size: 14px;
    padding: 4px 10px;
  }

  .timeline-content p {
    font-size: 12px;
  }
}

/* Responsive Styles for Overview Page */
@media only screen and (max-width: 991px) {
  .overview-main-content {
    padding-right: 0;
    margin-bottom: 50px;
    padding-left: 20px;
  }

  .overview-main-content::before {
    left: 0;
  }

  .overview-highlights {
    padding-left: 0;
  }

  .overview-highlights::before {
    left: 40px;
  }

  .highlight-box {
    padding-left: 100px;
  }

  .highlight-icon {
    left: 20px;
  }

  .highlight-content {
    padding-left: 0;
  }

  .product-range-list {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .overview-main-content {
    margin-bottom: 40px;
    padding-left: 15px;
  }

  .overview-main-content::before {
    width: 3px;
    height: 60px;
  }

  .overview-main-content .about-title p:first-child {
    font-size: 15px;
  }

  .overview-main-content .about-title p {
    font-size: 15px;
  }

  .product-range-section {
    padding: 25px 20px;
  }

  .product-range-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .overview-highlights::before {
    left: 35px;
    width: 2px;
  }

  .highlight-box {
    padding: 25px 20px;
    padding-left: 90px;
    margin-bottom: 20px;
  }

  .highlight-icon {
    height: 65px;
    width: 65px;
    left: 15px;
    top: 25px;
  }

  .highlight-content h4 {
    font-size: 18px;
  }

  .highlight-box:first-child .highlight-content h4 {
    padding: 5px 12px;
    font-size: 17px;
  }

  .highlight-content p {
    font-size: 14px;
  }

  .product-range-list li {
    font-size: 14px;
    padding: 8px 0;
    padding-left: 30px;
  }

  .product-range-list li i {
    font-size: 16px;
    left: 0;
  }

  /* Responsive styles for new layout */
  .highlight-card-top {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .highlight-icon-top {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .highlight-icon-top i {
    font-size: 28px;
  }

  .highlight-content-top h4 {
    font-size: 18px;
  }

  .highlight-content-top p {
    font-size: 13px;
  }

  .about-image-wrapper {
    min-height: 300px;
    margin-bottom: 30px;
  }

  .product-range-section {
    padding: 30px 25px;
  }

  .product-range-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .product-range-list li {
    padding: 8px 0;
    padding-left: 30px;
    font-size: 14px;
  }

  .product-range-list li i {
    font-size: 16px;
  }
}

/*
News Page Styles - Unique Grid Layout with Date Overlay
======================================================*/

/* News Area */
.news-area {
  background: linear-gradient(180deg, #f8f9fa 0%, var(--white-color) 5%);
}

.news-area .row {
  margin-left: -15px;
  margin-right: -15px;
}

.news-area .row>[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 40px;
}

/* Single News Card - Unique Design */
.single-news-card {
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all ease 0.4s;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(11, 144, 65, 0.08);
  position: relative;
}

.single-news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform ease 0.4s;
  z-index: 1;
}

.single-news-card:hover::before {
  transform: scaleX(1);
}

.single-news-card:hover {
  box-shadow: 0 6px 20px rgba(11, 144, 65, 0.15);
  transform: translateY(-4px);
  border-color: rgba(11, 144, 65, 0.2);
}

/* News Image - Unique Style */
.news-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.news-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 144, 65, 0.1) 100%);
  opacity: 0;
  transition: opacity ease 0.4s;
  z-index: 1;
}

.single-news-card:hover .news-img::after {
  opacity: 1;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform ease 0.6s;
}

.single-news-card:hover .news-img img {
  transform: scale(1.08);
}

/* Date Overlay - Unique Design */
.news-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.95) 0%, rgba(44, 44, 44, 0.85) 100%);
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: all ease 0.3s;
  display: none;
}

.single-news-card:hover .news-date {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.news-date span {
  color: var(--white-color);
  font-size: 13px;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: block;
  line-height: 1.3;
}

/* News Content - Unique Style */
.news-content {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* .news-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
  border-radius: 2px;
} */

.news-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
  line-height: 1.4;
  font-family: "Jost", sans-serif;
  position: relative;
}

.news-content h3 a {
  color: #2c2c2c;
  transition: color ease 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-content h3 a:hover {
  color: var(--primary-color);
}

.news-content p {
  color: #666;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-content .default-btn {
  font-size: 12px;
  padding: 6px 16px;
  height: 36px;
}

/* Responsive Design for News Cards */
@media only screen and (max-width: 991px) {
  .news-area .row>[class*="col-"] {
    margin-bottom: 35px;
  }

  /* .news-img {
    height: 120px;
  } */

  .news-content {
    padding: 12px 14px 14px;
  }

  .news-content::before {
    left: 14px;
    width: 30px;
  }

  .news-content h3 {
    font-size: 15px;
  }

  .news-content p {
    font-size: 11px;
  }

  .news-content .default-btn {
    font-size: 11px;
    padding: 5px 14px;
    height: 32px;
  }

  .news-date {
    top: 15px;
    left: 15px;
    padding: 8px 14px;
  }

  .news-date span {
    font-size: 12px;
  }

  .news-read-btn {
    padding: 11px 24px;
    font-size: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .news-area .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .news-area .row>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 30px;
  }

  /* .news-img {
    height: 110px;
  } */

  .news-content {
    padding: 10px 12px 12px;
  }

  .news-content::before {
    left: 12px;
    width: 25px;
    height: 2px;
  }

  .news-content h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .news-content p {
    font-size: 11px;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .news-content .default-btn {
    font-size: 11px;
    padding: 5px 12px;
    height: 30px;
  }

  .news-date span {
    font-size: 11px;
    letter-spacing: 0.6px;
  }
}

/*
Contact Us Page - 3 Column Grid Design
======================================================*/

/* Contact Info Grid */
.contact-area .row {
  margin-left: -15px;
  margin-right: -15px;
}

.contact-area .row>[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

.contact-info-item {
  background: var(--white-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  transition: all ease 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(11, 144, 65, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform ease 0.4s;
}

.contact-info-item:hover::before {
  transform: scaleX(1);
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(11, 144, 65, 0.15);
  border-color: rgba(11, 144, 65, 0.2);
}

/* Contact Icon */
.contact-icon {
  width: 70px;
  height: 70px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all ease 0.3s;
  position: relative;
}

.contact-info-item:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(11, 144, 65, 0.2);
}

.contact-icon i {
  font-size: 28px;
  color: var(--primary-color);
  transition: color ease 0.3s;
}

.contact-info-item:hover .contact-icon i {
  color: var(--green-color);
}

/* Contact Details */
.contact-details {
  flex: 1;
  width: 100%;
}

.contact-details h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 12px;
  font-family: "Jost", sans-serif;
  line-height: 1.4;
  transition: color ease 0.3s;
}

.contact-info-item:hover .contact-details h3 {
  color: var(--primary-color);
}

.contact-details p {
  font-size: 15px;
  font-weight: 400;
  color: #666;
  margin-bottom: 0;
  line-height: 1.7;
}

.contact-details p a {
  color: #666;
  text-decoration: none;
  transition: color ease 0.3s;
}

.contact-details p a:hover {
  color: var(--primary-color);
}

/* Responsive Design for Contact Info */
@media only screen and (max-width: 991px) {
  .contact-area .row>[class*="col-"] {
    margin-bottom: 25px;
  }

  .contact-info-item {
    padding: 25px 20px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .contact-icon i {
    font-size: 24px;
  }

  .contact-details h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .contact-details p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-area .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .contact-area .row>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
  }

  .contact-info-item {
    padding: 22px 18px;
  }

  .contact-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }

  .contact-icon i {
    font-size: 22px;
  }

  .contact-details h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .contact-details p {
    font-size: 13px;
  }
}

/*
Careers Page Styles
======================================================*/

/* Careers Content Area */
.careers-content-area {
  background: var(--white-color);
}

/* Careers Intro */
.careers-intro {
  max-width: 1000px;
  margin: 0 auto 50px;
}

.careers-intro p:last-child {
  margin-bottom: 0;
}

.careers-intro a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color ease 0.3s;
}

.careers-intro a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Current Openings Section */
.current-openings-section {
  max-width: 1000px;
  margin: 0 auto;
}

.current-openings-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 40px;
  font-family: "Jost", sans-serif;
}

/* Careers Accordion */
.careers-accordion {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Career Card */
.career-card {
  background: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all ease 0.4s;
  border: 1px solid rgba(11, 144, 65, 0.08);
}

.career-card:hover {
  box-shadow: 0 8px 30px rgba(11, 144, 65, 0.15);
  transform: translateY(-3px);
  border-color: rgba(11, 144, 65, 0.2);
}

/* Career Card Header */
.career-card-header {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all ease 0.3s;
  position: relative;
}

.career-card-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform ease 0.3s;
}

.career-card-header[aria-expanded="true"]::before {
  transform: scaleY(1);
}

.career-card-header:hover {
  background-color: #fafafa;
}

.career-card-title {
  flex: 1;
}

.career-card-title h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 12px;
  font-family: "Jost", sans-serif;
  transition: color ease 0.3s;
}

.career-card-header[aria-expanded="true"] .career-card-title h3 {
  color: var(--primary-color);
}

.career-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}

.career-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
  font-weight: 400;
}

.career-meta-item i {
  font-size: 16px;
  color: var(--primary-color);
}

.career-card-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  margin-left: 20px;
}

/* Career Card Body */
.career-card-body {
  padding: 0 30px 30px;
  border-top: 2px solid #e8e8e8;
  background: linear-gradient(180deg, #fafafa 0%, var(--white-color) 100%);
}

.career-card-body .cv-submission {
  margin-top: 25px;
  margin-bottom: 20px;
  padding-top: 20px;
}

.career-card-body .cv-submission a {
  color: var(--primary-color);
}

.career-card-body .job-responsibilities {
  margin-top: 0;
}

.career-card-body .job-responsibilities h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;
  font-family: "Jost", sans-serif;
}

/* Modal Styles - Modern Design */
.modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  z-index: 1;
}

.modal-header {
  border-bottom: none;
  padding: 30px 35px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, var(--white-color) 100%);
  position: relative;
}

.modal-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 35px;
  right: 35px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e8e8e8 50%, transparent 100%);
}

.modal-title {
  font-size: 26px;
  font-weight: 700;
  color: #2c2c2c;
  font-family: "Jost", sans-serif;
  position: relative;
  padding-left: 15px;
}

.modal-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 26px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}

.btn-close {
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all ease 0.3s;
  color: #2c2c2c;
}

.btn-close:hover {
  opacity: 1;
  background: rgba(11, 144, 65, 0.1);
  color: var(--primary-color);
  transform: rotate(90deg);
}

.modal-body {
  padding: 35px;
  background: var(--white-color);
}

.job-title-modal {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-family: "Jost", sans-serif;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(11, 144, 65, 0.08) 0%, rgba(166, 207, 57, 0.05) 100%);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  display: inline-block;
}

.job-responsibilities {
  margin-top: 20px;
}

.job-responsibilities ol {
  padding-left: 25px;
  margin-bottom: 0;
}

.job-responsibilities li {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

.job-responsibilities li:last-child {
  margin-bottom: 0;
}

/* Form Styles - Modern Design */
.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 10px;
  font-family: "Jost", sans-serif;
  position: relative;
  padding-left: 8px;
}

.form-group label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 14px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 15px;
  transition: all ease 0.3s;
  font-family: "Jost", sans-serif;
  background: #fafafa;
  color: #2c2c2c;
}

.form-control::placeholder {
  color: #999;
  font-weight: 400;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 0 0 4px rgba(11, 144, 65, 0.08), 0 4px 12px rgba(11, 144, 65, 0.1);
  transform: translateY(-1px);
}

/* File Upload - Modern Design */
.file-upload-wrapper {
  margin-top: 8px;
  position: relative;
}

.file-upload-wrapper input[type="file"] {
  padding: 12px;
  border: 2px dashed #d0d0d0;
  border-radius: 8px;
  background: #fafafa;
  cursor: pointer;
  transition: all ease 0.3s;
}

.file-upload-wrapper input[type="file"]:hover {
  border-color: var(--primary-color);
  background: rgba(11, 144, 65, 0.03);
}

.file-upload-wrapper input[type="file"]:focus {
  border-color: var(--primary-color);
  border-style: solid;
  background: var(--white-color);
  box-shadow: 0 0 0 4px rgba(11, 144, 65, 0.08);
}

.file-note {
  display: block;
  font-size: 12px;
  color: #dc3545;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(220, 53, 69, 0.08);
  border-radius: 6px;
  border-left: 3px solid #dc3545;
}

.recaptcha-wrapper {
  margin-top: 10px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}

.recaptcha-note {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 10px;
  line-height: 1.5;
}

.form-group .btn {
  width: 100%;
}

/* Responsive Design for Careers Page */
@media only screen and (max-width: 991px) {
  .careers-intro {
    margin-bottom: 40px;
  }

  .careers-intro p {
    font-size: 15px;
  }

  .current-openings-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .careers-accordion {
    gap: 20px;
  }

  .career-card-header {
    padding: 22px 25px;
    flex-wrap: wrap;
  }

  .career-card-title h3 {
    font-size: 20px;
  }

  .career-card-meta {
    gap: 15px;
    margin-top: 10px;
  }

  .career-meta-item {
    font-size: 13px;
  }

  .career-card-actions {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    justify-content: flex-start;
  }
  
  .career-card-body {
    padding: 0 25px 25px;
  }
}

@media only screen and (max-width: 767px) {
  .careers-intro {
    margin-bottom: 30px;
    text-align: left;
  }

  .careers-intro p {
    font-size: 14px;
    line-height: 1.7;
  }

  .current-openings-section h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .careers-accordion {
    gap: 18px;
  }

  .career-card {
    border-radius: 10px;
  }

  .career-card-header {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .career-card-title {
    width: 100%;
  }

  .career-card-title h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .career-card-meta {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .career-meta-item {
    font-size: 13px;
  }

  .career-card-actions {
    margin-top: 15px;
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .career-card-body {
    padding: 0 20px 20px;
  }

  .career-card-body .job-responsibilities h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .job-responsibilities li {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .modal-header {
    padding: 25px 20px 15px;
  }

  .modal-title {
    font-size: 22px;
    padding-left: 12px;
  }

  .modal-title::before {
    width: 3px;
    height: 22px;
  }

  .modal-body {
    padding: 25px 20px;
  }

  .job-title-modal {
    font-size: 18px;
    margin-bottom: 25px;
    padding: 10px 16px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-control {
    padding: 12px 15px;
    font-size: 14px;
  }
}

/*
Modern Infrastructure Page - Contemporary Design 2024
======================================================*/

/* Modern Header */
.modern-infra-header {
  position: relative;
  background: #0a0e27;
  padding: 120px 0 100px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.modern-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: var(--white-color);
}

.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.5);
}

.modern-title {
  font-size: 72px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: "Jost", sans-serif;
  background: linear-gradient(135deg, var(--white-color) 0%, rgba(166, 207, 57, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modern-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.header-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(11, 144, 65, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse at bottom right, rgba(166, 207, 57, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Infrastructure Area */
.infrastructure-area {
  background: #f8f9fa;
  padding: 100px 0;
  position: relative;
}

.infrastructure-section {
  margin-bottom: 100px;
  position: relative;
}

.infrastructure-section:last-child {
  margin-bottom: 0;
}

/* Infrastructure Section Intro */
.infrastructure-section-intro {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 10px;
}

.infrastructure-section-number {
  font-size: 80px;
  font-weight: 700;
  color: rgba(11, 144, 65, 0.08);
  flex-shrink: 0;
  margin-top: -20px;
}

.infrastructure-section-header {
  flex: 1;
}

.infrastructure-section-title {
  font-size: 40px;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.infrastructure-section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}

/* Infrastructure Grid */
.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 35px;
}

/* Infrastructure Card */
.infrastructure-card {
  background: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.infrastructure-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}

.infrastructure-card:hover::before {
  transform: scaleX(1);
}

.infrastructure-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(11, 144, 65, 0.15);
}

.infrastructure-card-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #e8e8e8;
}

.infrastructure-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.infrastructure-card:hover .infrastructure-card-image img {
  transform: scale(1.1);
}

.infrastructure-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 144, 65, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infrastructure-card:hover .infrastructure-card-overlay {
  opacity: 1;
}

.infrastructure-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: all 0.4s ease;
}

.infrastructure-card-badge i {
  font-size: 24px;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.infrastructure-card:hover .infrastructure-card-badge {
  transform: scale(1.1) rotate(5deg);
  background: var(--white-color);
  box-shadow: 0 6px 20px rgba(11, 144, 65, 0.2);
}

.infrastructure-card:hover .infrastructure-card-badge i {
  color: var(--secondary-color);
  transform: rotate(-5deg);
}

.infrastructure-card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.infrastructure-card-title {
  font-size: 24px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.infrastructure-card:hover .infrastructure-card-title {
  color: var(--primary-color);
}

/* Responsive Design */
@media only screen and (max-width: 991px) {
  .modern-infra-header {
    padding: 80px 0 70px;
    min-height: 320px;
  }

  .modern-title {
    font-size: 52px;
  }

  .modern-subtitle {
    font-size: 18px;
  }

  .infrastructure-area {
    padding: 70px 0;
  }

  .infrastructure-section {
    margin-bottom: 80px;
  }

  .infrastructure-section-number {
    font-size: 90px;
  }

  .infrastructure-section-title {
    font-size: 36px;
  }

  .infrastructure-section-description {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .infrastructure-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .infrastructure-card-image {
    height: 240px;
  }
}

@media only screen and (max-width: 767px) {
  .modern-infra-header {
    padding: 60px 0 50px;
    min-height: 280px;
  }

  .modern-title {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .modern-subtitle {
    font-size: 16px;
  }

  .infrastructure-area {
    padding: 50px 0;
  }

  .infrastructure-section {
    margin-bottom: 60px;
  }

  .infrastructure-section-intro {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .infrastructure-section-number {
    font-size: 70px;
    margin-top: 0;
    line-height: 1;
  }

  .infrastructure-section-header {
    padding-top: 0;
  }

  .infrastructure-section-title {
    font-size: 28px;
  }

  .infrastructure-section-divider {
    width: 60px;
    height: 3px;
  }

  .infrastructure-section-description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .infrastructure-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .infrastructure-card-image {
    height: 220px;
  }

  .infrastructure-card-content {
    padding: 25px;
  }

  .infrastructure-card-title {
    font-size: 20px;
  }

  .infrastructure-card-text {
    font-size: 14px;
  }

  .infrastructure-card-badge {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 15px;
  }

  .infrastructure-card-badge i {
    font-size: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .modern-title {
    font-size: 36px;
  }

  .modern-subtitle {
    font-size: 15px;
  }

  .infrastructure-section-number {
    font-size: 60px;
  }

  .infrastructure-section-title {
    font-size: 24px;
  }

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

/* Sustainability Section Styles - New Design */
.sustainability-content-area {
  background-color: rgba(0, 0, 0, 0.05);
}

.sustainability-content-area h4 {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.sustainability-content-area h4 span {
  color: var(--yellow-color);
  font-weight: 600;
  line-height: 100%;
}

.sustainability-data .tab-teaser {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

.sustainability-data .tab-teaser .tab-menu ul {
  position: relative;
  height: 489px;
  width: 464px;
  border-radius: 100%;
}

.sustainability-data .tab-teaser .tab-menu ul::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  height: 411px;
  width: 411px;
  border: 2px solid var(--primary-color);
  border-radius: 100%;
  opacity: 0;
  animation: circleExpand 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

/* Tab Titles Animation */
.sustainability-data .tab-teaser .tab-menu .tab-titles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 43px;
  font-weight: 600;
  color: var(--black-color);
  opacity: 0;
  animation: textSlideIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
}

/* Keyframe for circle expansion animation */
@keyframes circleExpand {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Keyframe for text slide in and scale animation */
@keyframes textSlideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(30px) scale(0.8);
  }

  60% {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(-5px) scale(1.05);
  }

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

.sustainability-data .tab-teaser .tab-menu .tab-icon {
  display: inline-block;
  width: 100%;
  text-align: center;
  position: absolute;
  height: 84px;
  width: 84px;
  color: var(--primary-color);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Default positions - CSS only animations that trigger automatically after page load */
.sustainability-data .tab-teaser .tab-menu .tab-1 {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  animation: moveToTop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

.sustainability-data .tab-teaser .tab-menu .tab-2 {
  top: 50%;
  right: 50%;
  transform: translateX(50%) translateY(-50%);
  opacity: 0;
  animation: moveToRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.65s forwards;
}

.sustainability-data .tab-teaser .tab-menu .tab-3 {
  bottom: 50%;
  right: 50%;
  transform: translateX(50%) translateY(50%);
  opacity: 0;
  animation: moveToBottomRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
}

.sustainability-data .tab-teaser .tab-menu .tab-4 {
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  opacity: 0;
  animation: moveToBottomLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.95s forwards;
}

.sustainability-data .tab-teaser .tab-menu .tab-5 {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  animation: moveToLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s forwards;
}

/* Keyframe animations for each icon position */
@keyframes moveToTop {
  0% {
    opacity: 0;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
    top: 0;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes moveToRight {
  0% {
    opacity: 0;
    top: 50%;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
    top: 35%;
    right: 0;
    transform: translateX(0) translateY(-50%);
  }
}

@keyframes moveToBottomRight {
  0% {
    opacity: 0;
    bottom: 50%;
    right: 50%;
    transform: translateX(50%) translateY(50%);
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
    bottom: 0;
    right: 15%;
    transform: translateX(0) translateY(-50%);
  }
}

@keyframes moveToBottomLeft {
  0% {
    opacity: 0;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
    bottom: 0;
    left: 15%;
    transform: translateX(0) translateY(-50%);
  }
}

@keyframes moveToLeft {
  0% {
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
    top: 35%;
    left: 0;
    transform: translateX(0) translateY(-50%);
  }
}

.sustainability-data .tab-teaser .tab-menu li a {
  transition: all ease 0.5s;
  border-radius: 100%;
  position: relative;
  height: 84px;
  width: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  overflow: hidden;
  color: var(--primary-color);
}

.sustainability-data .tab-teaser .tab-menu li a.active {
  color: var(--white-color);
}

.sustainability-data .tab-teaser .tab-menu li a:hover {
  color: var(--white-color);
}

.sustainability-data .tab-teaser .tab-menu li a::after {
  position: absolute;
  content: "";
  height: 84px;
  width: 84px;
  border: 4px solid var(--primary-color);
  background-color: var(--light-primary-color);
  top: 0;
  left: 0;
  z-index: -2;
  border-radius: 100%;
  transition: all 0.5s ease;
}

.sustainability-data .tab-teaser .tab-menu li a::before {
  position: absolute;
  content: "";
  height: 84px;
  width: 0px;
  background-color: var(--primary-color);
  right: 0;
  top: 0;
  transition: all ease 0.5s;
  z-index: -1;
  border-radius: 100%;
}

.sustainability-data .tab-teaser .tab-menu li a.active::before,
.sustainability-data .tab-teaser .tab-menu li a:hover::before,
.sustainability-data .tab-teaser .tab-menu li a:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

/* Tab Box Animation */
.sustainability-data .tab-box {
  display: none;
}

.sustainability-data .tab-box[style*="display: block"] {
  animation: fadeSlideIn 0.8s ease forwards;
}

/* Keyframe for tab content fade and slide in */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.sustainability-data .choose-tab-items {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 17px;
  text-align: left !important;
}

.sustainability-data .choose-tab-items h2 {
  animation: fadeInUp 0.6s ease forwards 0.2s;
  opacity: 0;
}

.sustainability-data .choose-tab-items ul li {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.sustainability-data .choose-tab-items ul li:nth-child(1) {
  animation-delay: 0.4s;
}

.sustainability-data .choose-tab-items ul li:nth-child(2) {
  animation-delay: 0.5s;
}

.sustainability-data .choose-tab-items ul li:nth-child(3) {
  animation-delay: 0.6s;
}

.sustainability-data .choose-tab-items p {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 0.7s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.sustainability-data h2 {
  text-align: left;
  margin: 0;
}

.sustainability-data .tab-box:first-child {
  display: block;
}

/* ========================================
   RESPONSIVE STYLES - TABLET VIEW
   ======================================== */
@media (max-width: 991px) {
  .sustainability-data .tab-teaser {
    gap: 50px;
  }

  .sustainability-data .tab-teaser .tab-menu ul {
    height: 350px;
    width: 350px;
  }

  .sustainability-data .tab-teaser .tab-menu ul::before {
    height: 300px;
    width: 300px;
  }

  .sustainability-data .tab-teaser .tab-menu .tab-titles {
    font-size: 32px;
  }

  .sustainability-data .tab-teaser .tab-menu .tab-icon {
    height: 70px;
    width: 70px;
  }

  .sustainability-data .tab-teaser .tab-menu li a {
    height: 70px;
    width: 70px;
  }

  .sustainability-data .tab-teaser .tab-menu li a::after {
    height: 70px;
    width: 70px;
  }

  .sustainability-data .tab-teaser .tab-menu li a::before {
    height: 70px;
  }

  .sustainability-data .tab-teaser .tab-menu li a svg {
    width: 35px;
    height: 35px;
  }
}



/* 
.sustainability-data .tab-teaser .tab-menu li a{
    position: relative;
}

.sustainability-data .tab-teaser .tab-menu li a,
.sustainability-data .tab-teaser .tab-menu li a{
    animation: tabRipple 1.2s infinite ease-out;
} */


.sustainability-data .tab-teaser .tab-menu li a {
    position: relative;
    animation: tripleRipple 2.5s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes tripleRipple {
    0% {
        box-shadow: 
            0 0 0 0 rgba(140, 198, 63, 0.7),
            0 0 0 0 rgba(140, 198, 63, 0.4),
            0 0 0 0 rgba(140, 198, 63, 0.1);
    }
    20% {
        box-shadow: 
            0 0 0 8px rgba(140, 198, 63, 0.5),
            0 0 0 16px rgba(140, 198, 63, 0.3),
            0 0 0 24px rgba(140, 198, 63, 0.1);
    }
    40% {
        box-shadow: 
            0 0 0 16px rgba(140, 198, 63, 0.3),
            0 0 0 24px rgba(140, 198, 63, 0.2),
            0 0 0 32px rgba(140, 198, 63, 0.05);
    }
    60% {
        box-shadow: 
            0 0 0 24px rgba(140, 198, 63, 0.2),
            0 0 0 32px rgba(140, 198, 63, 0.1),
            0 0 0 40px rgba(140, 198, 63, 0);
    }
    80% {
        box-shadow: 
            0 0 0 32px rgba(140, 198, 63, 0.1),
            0 0 0 40px rgba(140, 198, 63, 0.05),
            0 0 0 48px rgba(140, 198, 63, 0);
    }
    100% {
        box-shadow: 
            0 0 0 40px rgba(140, 198, 63, 0),
            0 0 0 48px rgba(140, 198, 63, 0),
            0 0 0 56px rgba(140, 198, 63, 0);
    }
}
/* ========================================
   RESPONSIVE STYLES - MOBILE VIEW
   ======================================== */
@media (max-width: 767px) {
  .sustainability-data .tab-teaser {
    /* flex-direction: column; */
    gap: 30px;
  }

  /* Hide circular layout on mobile */
  .sustainability-data .tab-teaser .tab-menu ul {
    height: auto;
    width: 100%;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
    position: relative;
  }

  /* Hide the circular border */
  .sustainability-data .tab-teaser .tab-menu ul::before {
    display: none;
  }

  /* Add vertical line */
  .sustainability-data .tab-teaser .tab-menu ul::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
    z-index: -99;
  }

  /* Hide center titles on mobile */
  .sustainability-data .tab-teaser .tab-menu .tab-titles {
    display: none !important;
  }

  /* Reset icon positions for vertical layout */
  .sustainability-data .tab-teaser .tab-menu .tab-icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0px;
    height: auto;
    width: 100%;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    animation: none !important;
    opacity: 1;
  }

  .sustainability-data .tab-teaser .tab-menu .tab-icon:last-child {
    margin-bottom: 0;
  }

  /* Add title text after each icon */
  .sustainability-data .tab-teaser .tab-menu .tab-icon::after {
    content: attr(data-title);
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    white-space: nowrap;
  }

  .sustainability-data .tab-teaser .tab-menu .tab-icon a {
    height: 60px;
    width: 60px;
    flex-shrink: 0;
  }

  .sustainability-data .tab-teaser .tab-menu li a::after {
    height: 60px;
    width: 60px;
    background-color: var(--white-color);
  }

  .sustainability-data .tab-teaser .tab-menu li a::before {
    height: 60px;
  }

  .sustainability-data .tab-teaser .tab-menu li a svg {
    width: 30px;
    height: 30px;
  }

  /* Mobile animation for tab content */
  @keyframes fadeSlideIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }

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

@media (max-width: 575px) {
  .sustainability-data .tab-teaser {
    gap: 20px;
  }

  .sustainability-data .tab-teaser .tab-menu ul {
    padding-left: 0px;
    gap: 15px;
  }

  .sustainability-data .tab-teaser .tab-menu ul::after {
    left: 25px;
    z-index: -99;
  }

  .sustainability-data .tab-teaser .tab-menu .tab-icon {
    gap: 0;
  }

  .sustainability-data .tab-teaser .tab-menu .tab-icon::after {
    font-size: 16px;
  }

  .sustainability-data .tab-teaser .tab-menu .tab-icon a {
    height: 50px;
    width: 50px;
  }

  .sustainability-data .tab-teaser .tab-menu li a::after {
    height: 50px;
    width: 50px;
    border-width: 3px solid var(--primary-color);
    background-color: var(--white-color);
  }

  .sustainability-data .tab-teaser .tab-menu li a::before {
    height: 50px;
  }

  .sustainability-data .tab-teaser .tab-menu li a svg {
    width: 25px;
    height: 25px;
  }

  .sustainability-data .choose-tab-items h2 {
    font-size: 24px;
  }

  .sustainability-data .choose-tab-items {
    gap: 12px;
  }
}

/* Introductory Text */
.sustainability-intro {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.sustainability-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
  font-family: "Jost", sans-serif;
}

.sustainability-top {
  position: relative;
  padding-top: 20px;
}

.sustainability-top .img-content {
  text-align: center;
}

.sustainability-top .img-content .main-img {
  width: 100%;
  max-width: 760px;
  height: auto;
}

@media (max-width: 1399px) {
  .sustainability-top .img-content .main-img {
    max-width: 600px;
  }
}

.sustainability-top .arrow-1 {
  width: 180px;
  height: auto;
  position: absolute;
  top: 34%;
  left: 12%;
}

.sustainability-top .arrow-2 {
  width: 9px;
  height: auto;
  position: absolute;
  top: 89%;
  left: 37%;
}

.sustainability-top .arrow-3 {
  width: 9px;
  height: auto;
  position: absolute;
  top: 89%;
  right: 37%;
}

.sustainability-top .arrow-4 {
  width: 180px;
  height: auto;
  position: absolute;
  top: 36%;
  right: 12%;
}

@media (max-width: 1399px) {
  .sustainability-top .arrow-1 {
    width: 152px;
    top: 37%;
    left: 14%;
  }

  .sustainability-top .arrow-4 {
    width: 152px;
    top: 39%;
    right: 14%;
  }
}

/* Four Text Boxes */
.sustainability-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 100px;
  position: relative;
}

.sustainability-box {
  background: var(--white-color);
  border: 2px solid #a8d5a3;
  border-radius: 8px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  position: relative;
}

.sustainability-box:hover {
  box-shadow: 0 8px 25px rgba(11, 144, 65, 0.15);
  transform: translateY(-5px);
  border-color: #0b9041;
}

.box-title {
  font-size: 20px;
  font-weight: 700;
  color: #0b9041;
  margin: 0 0 20px 0;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.box-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.box-features li {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
  font-family: "Jost", sans-serif;
}

.box-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #0b9041;
  font-weight: bold;
  font-size: 18px;
}

.box-features li:last-child {
  margin-bottom: 0;
}

.box-description {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin: 0;
  font-family: "Jost", sans-serif;
}

/* Responsive Design */
@media only screen and (max-width: 1199px) {
  .sustainability-main-title {
    font-size: 72px;
  }

  .sustainability-graphic {
    width: 700px;
  }

  .graphic-segment {
    width: 175px;
    height: 175px;
  }

  .graphic-segment.segment-2 {
    left: 175px;
  }

  .graphic-segment.segment-3 {
    left: 350px;
  }

  .graphic-segment.segment-4 {
    left: 525px;
  }

  .sustainability-boxes {
    gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .sustainability-intro p {
    font-size: 16px;
  }

  .sustainability-main-title {
    font-size: 60px;
    letter-spacing: 2px;
  }

  .sustainability-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .sustainability-intro {
    margin-bottom: 40px;
  }

  .sustainability-intro p {
    font-size: 15px;
    line-height: 1.7;
  }

  .sustainability-boxes {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
  }

  .sustainability-box {
    padding: 20px 18px;
  }

  .box-title {
    font-size: 18px;
  }

  .box-features li {
    font-size: 13px;
  }

  .box-description {
    font-size: 13px;
  }
}

@media only screen and (max-width: 575px) {
  .sustainability-intro {
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .sustainability-intro p {
    font-size: 14px;
  }

  .sustainability-main-title {
    font-size: 36px;
    letter-spacing: 0.5px;
  }

  .sustainability-boxes {
    margin-top: 50px;
    gap: 18px;
  }

  .sustainability-box {
    padding: 18px 15px;
  }

  .box-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .box-features {
    margin-bottom: 15px;
  }

  .box-features li {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .box-description {
    font-size: 12px;
    line-height: 1.7;
  }
}

/* Products Filter & List Area - Scoped to products.html only */
.products-filter-list-area {
  background-color: #fafafa;
  padding-top: 60px;
  padding-bottom: 60px;
}

.products-filter-tabs {
  margin-bottom: 35px;
  text-align: center;
}

.filter-tab-list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 6px;
  margin: 0;
  background-color: var(--white-color);
  border-radius: 40px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(11, 144, 65, 0.1);
}

.filter-tab-item {
  position: relative;
  cursor: pointer;
  transition: all ease 0.3s;
}

.filter-tab-item span {
  min-width: 80px;
  display: inline-block;
  padding: 6px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: var(--black-color);
  border-radius: 25px;
  transition: all ease 0.3s;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.filter-tab-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
  background-color: var(--primary-color);
  border-radius: 25px;
  opacity: 0;
  transition: all ease 0.3s;
  z-index: 0;
}

.filter-tab-item:hover span,
.filter-tab-item.active span {
  /* color: var(--white-color); */
}

.filter-tab-item:hover::before,
.filter-tab-item.active::before {
  opacity: 1;
}

.filter-tab-item.active span {
  font-weight: 600;
}

.products-grid-wrapper {
  position: relative;
}

.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.product-link:hover {
  text-decoration: none;
  color: inherit;
}

.products-item {
  margin-bottom: 30px;
  opacity: 1;
  transform: scale(1);
  transition: all ease 0.4s;
  display: block;
}

.products-item.hide {
  display: none !important;
}

.products-item.show {
  display: block !important;
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.single-product-item {
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all ease 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(11, 144, 65, 0.08);
  position: relative;
}

.single-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgb(161 203 57 / 28%);
    border-color: rgb(139 195 74 / 29%);
}

.single-product-item::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 12px;
  border-radius: 100px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform ease 0.4s;
  z-index: 10;
}

.single-product-item:hover::before {
  transform: scaleX(1);
}

.single-product-item .product-image {
  position: relative;
  width: 100%;
  height: 202px;
  overflow: hidden;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 15px; */
}

.single-product-item .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all ease 0.3s;
  /* filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1)); */
}

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

.single-product-item .product-content {
  padding: 10px 16px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--white-color);
}

.single-product-item .product-content h4 {
  font-size: 16px;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  color:#888888;
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color ease 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-product-item:hover .product-content h4 {
  /* color: var(--primary-color); */
}

.single-product-item .product-content p {
  font-size: 13px;
  /* color: #888888; */
   color: #2c2c2c;
  margin-bottom: 0;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-product-item .product-content span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  margin-top: 4px;
  line-height: 1.5;
}

.single-product-item:hover .product-content span {
  color: var(--primary-color);
}

/* Responsive Styles for Products Filter */
@media (max-width: 991px) {
  .products-filter-list-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .filter-tab-list {
    gap: 6px;
    padding: 5px;
    border-radius: 35px;
  }

  .filter-tab-item span {
    padding: 7px 16px;
    font-size: 13px;
  }

  .products-filter-tabs {
    margin-bottom: 30px;
  }

  .products-item {
    margin-bottom: 18px;
  }

  .single-product-item .product-image {
    height: 160px;
    padding: 12px;
  }

  .single-product-item .product-content {
    padding: 16px 14px;
  }

  .single-product-item .product-content h4 {
    font-size: 15px;
  }

  .single-product-item .product-content p {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .products-filter-list-area {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .filter-tab-list {
    gap: 5px;
    padding: 4px;
    border-radius: 30px;
  }

  .filter-tab-item span {
    padding: 6px 14px;
    font-size: 12px;
  }

  .products-filter-tabs {
    margin-bottom: 25px;
  }

  .products-item {
    margin-bottom: 15px;
  }

  .single-product-item .product-image {
    height: 150px;
    padding: 10px;
  }

  .single-product-item .product-content {
    padding: 14px 12px;
  }

  .single-product-item .product-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .single-product-item .product-content p {
    font-size: 11px;
  }
}

@media (max-width: 575px) {
  .products-filter-list-area {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .filter-tab-list {
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 25px;
    padding: 8px;
    gap: 6px;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .filter-tab-list::-webkit-scrollbar {
    display: none;
  }

  .filter-tab-item {
    flex-shrink: 0;
  }

  .filter-tab-item span {
    padding: 6px 12px;
    font-size: 11px;
    white-space: nowrap;
  }

  .products-filter-tabs {
    margin-bottom: 20px;
  }

  .products-item {
    margin-bottom: 15px;
  }

  .single-product-item .product-image {
    height: 140px;
    padding: 10px;
  }

  .single-product-item .product-content {
    padding: 12px 10px;
  }

  .single-product-item .product-content h4 {
    font-size: 13px;
  }

  .single-product-item .product-content p {
    font-size: 11px;
  }
}

/* Product Details Page Styles
======================================================*/
.product-details-area {
  background-color: var(--white-color);
}

.mb-80 {
  margin-bottom: 50px;
}

/* Product Image Slider - Modern Design */
.product-image-slider-wrapper {
  position: relative;
  background: var(--white-color);
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.product-main-slider {
  margin-bottom: 20px;
  border-radius: 0;
  overflow: hidden;
  background: var(--white-color);
  border: 1px solid #00000047;
  border-radius: 18px;
}

.product-main-slider .product-slide-item {
  position: relative;
  background: var(--white-color);
  border-radius: 0;
  overflow: hidden;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-slider .product-slide-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 30px 30px 80px;
  background: var(--white-color);
  transition: transform 0.5s ease;
}

.product-main-slider .product-slide-item:hover img {
  transform: scale(1.05);
}

.product-thumb-slider {
  position: absolute;
  bottom: 50px;
}

.product-details-area .owl-carousel .owl-stage {
  padding-top: 0;
}

.product-thumb-item {
  cursor: pointer;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--white-color);
  padding: 0;
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumb-slider .owl-item {
  margin: 0 3px;
}

.product-thumb-slider .owl-stage {
  width: 100% !important;
  display: flex;
  justify-content: center;
}

.product-thumb-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 0;
  position: relative;
  z-index: 0;
  padding: 0;
}

.product-thumb-slider .owl-stage-outer {
  display: flex;
  justify-content: center;
}

.product-thumb-slider .colors {
  display: none;
}

.product-main-slider.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  margin: 0;
  z-index: 10;
}

.product-main-slider.owl-theme .owl-nav.disabled {
  display: none !important;
}

.product-main-slider.owl-theme .owl-nav [class*="owl-"] {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  border: none;
  height: 36px;
  width: 36px;
  line-height: 36px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  margin: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.product-main-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 144, 65, 0.3);
}

/* product-details-area */
.product-description-area {
  background-color: var(--grey-light-color);
  padding: 40px 0;
}

@media (max-width:1023px) {
  .profuct-details-area h1 {
    font-size: 20px;
  }
}

.text-primary {
  color: var(--primary-color) !important;
  text-decoration: underline;
  font-weight: 600;
}

.product-description-area .btn {
  border-radius: 14px;
  max-width: 268px;
  width: 100%;
  height: 50px!important;
}

.product-description-area .icon {
  color: var(--primary-color);
}

.product-description-area .default-btn:hover .icon {
  color: var(--white-color);
}

/* Product Info Content - Modern Design */
.product-info-content {
  padding-left: 30px;
}

.product-category {
  margin-bottom: 12px;
}

.product-category span {
  display: inline-block;
  padding: 5px 12px;
  color: var(--black-color);
  font-size: 19px;
  font-weight: 600;
  border-radius: 20px;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--primary-color);
}

.product-title {
  font-size: 11px;
  font-weight: 400;
  color: var(--black-color);
  margin-bottom: 15px;
  font-family: "Jost", sans-serif;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 10px 0;
}

.rating-stars {
  display: flex;
  gap: 3px;
  color: #ffc107;
  font-size: 16px;
}

.rating-text {
  color: #666666;
  font-size: 13px;
  font-weight: 500;
}

.product-price {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.price-label {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Jost", sans-serif;
  letter-spacing: -0.5px;
}

.product-description {
  margin-bottom: 25px;
}

.product-description p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  font-weight: 400;
}

.product-features {
  margin-bottom: 25px;
}

.product-features h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--black-color);
  font-family: "Jost", sans-serif;
  position: relative;
  padding-bottom: 10px;
}

.product-features h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), rgba(11, 144, 65, 0.3));
  border-radius: 2px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.features-list li:hover {
  transform: translateY(-2px);
}

.features-list li i {
  color: var(--black-color);
  font-size: 14px;
  flex-shrink: 0;
  background: var(--primary-color);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.features-list li:hover i {
  /* color: var(--white-color); */
  transform: scale(1.05);
}

.features-list li span {
  font-size: 15px;
  color: #555;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.product-details-image img {
  max-height: 60px;
}

.product-specs-summary {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-item:hover {
  padding-left: 8px;
}

.spec-label {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.spec-value {
  font-size: 14px;
  color: var(--black-color);
  font-weight: 700;
  font-family: "Jost", sans-serif;
}

/* Product Tabs Section - Modern Design */
.product-details-tabs-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
}

.product-tabs-nav {
  border-bottom: none;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 6px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
}

.product-tabs-nav .nav-tabs {
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  background: transparent;
}

.product-tabs-nav .nav-item {
  margin-bottom: 0;
}

.product-tabs-nav .nav-link {
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: "Jost", sans-serif;
  position: relative;
  overflow: hidden;
}

.product-tabs-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), rgba(11, 144, 65, 0.8));
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.product-tabs-nav .nav-link i,
.product-tabs-nav .nav-link span {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.product-tabs-nav .nav-link i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.product-tabs-nav .nav-link:hover {
  color: var(--white-color);
  background: transparent;
  /* transform: translateY(-2px); */
  box-shadow: 0 8px 25px rgba(11, 144, 65, 0.2);
}

.product-tabs-nav .nav-link:hover::before {
  left: 0;
}

.product-tabs-nav .nav-link.active {
  color: var(--white-color);
  background: linear-gradient(135deg, var(--primary-color), rgba(11, 144, 65, 0.9));
  box-shadow: 0 8px 25px rgba(11, 144, 65, 0.3);
}

.product-tabs-nav .nav-link.active::before {
  left: 0;
}

.product-tabs-nav .nav-link.active i {
  color: var(--white-color);
  transform: scale(1.1) rotate(5deg);
}

.product-tabs-content {
  min-height: 300px;
}

.tab-content-wrapper h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 25px;
  font-family: "Jost", sans-serif;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: -0.3px;
}

.tab-content-wrapper h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), rgba(11, 144, 65, 0.3));
  border-radius: 2px;
}

.tab-content-wrapper h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 18px;
  margin-top: 25px;
  font-family: "Jost", sans-serif;
}

.tab-content-wrapper h4:first-of-type {
  margin-top: 0;
}

/* Ordering Table - Modern Design */
.ordering-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  background: var(--white-color);
  border: 1px solid #e8e8e8;
}

.ordering-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white-color);
  min-width: 700px;
}

.ordering-table thead {
  background: linear-gradient(135deg, var(--primary-color), rgba(11, 144, 65, 0.9));
}

.ordering-table thead th {
  padding: 12px 15px;
  text-align: left;
  color: var(--white-color);
  font-weight: 600;
  font-size: 12px;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ordering-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.ordering-table tbody tr:hover {
  background: linear-gradient(135deg, var(--light-primary-color), rgba(11, 144, 65, 0.05));
}

.ordering-table tbody tr:last-child {
  border-bottom: none;
}

.ordering-table tbody td {
  padding: 12px 15px;
  color: #555;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
}

.ordering-table tbody td:first-child {
  font-weight: 600;
  color: var(--black-color);
  font-family: "Jost", sans-serif;
}

.ordering-table tbody td:last-child {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 14px;
  font-family: "Jost", sans-serif;
}

/* Specification Grid - Modern Design */
.specification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.spec-group {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spec-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), rgba(11, 144, 65, 0.5));
}

.spec-group:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(11, 144, 65, 0.1);
  border-color: var(--primary-color);
}

.spec-group h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 15px;
  margin-top: 0;
  font-family: "Jost", sans-serif;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.spec-row:hover {
  padding-left: 8px;
  background: rgba(11, 144, 65, 0.02);
  border-radius: 6px;
  padding-left: 12px;
  padding-right: 12px;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-name {
  font-size: 13px;
  color: #666;
  font-weight: 500;
  flex: 1;
  padding-right: 15px;
}

.spec-detail {
  font-size: 13px;
  color: var(--black-color);
  font-weight: 700;
  text-align: right;
  flex: 1;
  font-family: "Jost", sans-serif;
}

.certifications {
  background: linear-gradient(135deg, var(--light-primary-color) 0%, rgba(11, 144, 65, 0.05) 100%);
  padding: 20px;
  border-radius: 12px;
  margin-top: 25px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
}

.certifications h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cert-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white-color);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 12px;
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  font-family: "Jost", sans-serif;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cert-badge:hover {
  background: linear-gradient(135deg, var(--primary-color), rgba(11, 144, 65, 0.9));
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(11, 144, 65, 0.2);
}

/* Drawings Grid - Modern Design */
.drawings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.drawing-item {
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.drawing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(11, 144, 65, 0.1);
  border-color: var(--primary-color);
}

.drawing-image {
  position: relative;
  background: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  padding: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.drawing-image:hover {
  box-shadow: 0 6px 20px rgba(11, 144, 65, 0.15);
  transform: scale(1.01);
}

.drawing-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.drawing-image:hover img {
  transform: scale(1.03);
}

.drawing-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color), rgba(11, 144, 65, 0.9));
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(11, 144, 65, 0.3);
}

.drawing-image:hover .drawing-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.drawing-zoom:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(11, 144, 65, 0.4);
}

.drawing-zoom i {
  font-size: 20px;
}

.drawing-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 8px;
  font-family: "Jost", sans-serif;
}

.drawing-item p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.drawing-download {
  text-align: center;
  margin-top: 25px;
}

/* Description Content - Modern Design */
.description-content {
  line-height: 1.7;
}

.description-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
  font-weight: 400;
}

.description-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.description-content ul li {
  padding: 12px 15px;
  padding-left: 35px;
  position: relative;
  color: #555;
  font-size: 13px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  font-weight: 500;
}

.description-content ul li:hover {
  transform: translateX(3px);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #ffffff 0%, var(--light-primary-color) 100%);
  box-shadow: 0 3px 12px rgba(11, 144, 65, 0.1);
}

.description-content ul li::before {
  content: "\ea5c";
  font-family: "remixicon";
  font-weight: 400;
  position: absolute;
  left: 12px;
  color: var(--primary-color);
  font-size: 16px;
  background: rgba(11, 144, 65, 0.1);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.description-content ul li:hover::before {
  background: var(--primary-color);
  color: var(--white-color);
  transform: scale(1.05);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.advantage-item {
  text-align: center;
  padding: 25px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
}

.advantage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), rgba(11, 144, 65, 0.5));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.advantage-item:hover {
  background: linear-gradient(135deg, var(--light-primary-color) 0%, #ffffff 100%);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(11, 144, 65, 0.1);
}

.advantage-item:hover::before {
  transform: scaleX(1);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), rgba(11, 144, 65, 0.9));
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(11, 144, 65, 0.2);
}

.advantage-item:hover .advantage-icon {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 20px rgba(11, 144, 65, 0.3);
}

.advantage-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 10px;
  font-family: "Jost", sans-serif;
}

.advantage-item p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .product-details-area {
    padding: 60px 0;
  }

  .product-info-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .product-title {
    font-size: 32px;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .product-tabs-nav .nav-link {
    padding: 18px 20px;
    font-size: 15px;
  }

  .product-tabs-nav .nav-link i {
    font-size: 20px;
  }

  .specification-grid {
    grid-template-columns: 1fr;
  }

  .drawings-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .description-content ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .product-details-area {
    padding: 40px 0;
  }

  .mb-80 {
    margin-bottom: 40px;
  }

  .product-title {
    font-size: 28px;
  }

  .price-value {
    font-size: 32px;
  }

  .product-action-buttons {
    flex-direction: column;
  }

  .product-action-buttons .default-btn {
    width: 100%;
  }

  .product-tabs-nav {
    padding: 8px;
  }

  .product-tabs-nav .nav-item {
    min-width: 100%;
    margin-bottom: 8px;
  }

  .product-tabs-nav .nav-link {
    padding: 16px 20px;
    font-size: 14px;
    flex-direction: row;
    gap: 10px;
  }

  .product-tabs-nav .nav-link span {
    text-align: center;
  }

  .product-tabs-nav .nav-link i {
    font-size: 18px;
  }

  .tab-content-wrapper {
    padding: 30px 0;
  }

  .tab-content-wrapper h3 {
    font-size: 24px;
  }

  .ordering-table {
    font-size: 13px;
  }

  .ordering-table thead th,
  .ordering-table tbody td {
    padding: 15px 12px;
  }

  .product-main-slider.owl-theme .owl-nav [class*="owl-"] {
    height: 45px;
    width: 45px;
    line-height: 45px;
    font-size: 20px;
  }

  .product-main-slider .product-slide-item {
    height: 350px;
  }

  .product-main-slider .product-slide-item img {
    padding: 20px;
  }

  .product-thumb-slider {
    margin-top: 15px;
  }

  .product-thumb-slider .owl-item {
    padding: 5px;
  }

  .spec-group {
    padding: 25px;
  }

  .advantage-item {
    padding: 30px 20px;
  }
}

@media (max-width: 575px) {
  .product-tabs-nav .nav-tabs {
    flex-direction: column;
  }

  .product-tabs-nav .nav-link {
    width: 100%;
    text-align: left;
    flex-direction: row;
    border-bottom: 1px solid #e5e5e5;
    border-left: 3px solid transparent;
  }

  .product-tabs-nav .nav-link.active {
    border-bottom-color: #e5e5e5;
    border-left-color: var(--primary-color);
  }

  .drawings-grid {
    grid-template-columns: 1fr;
  }
}

/* Impacts Area Styles
======================================================*/
.impacts-area {
  position: relative;
}

.single-impact-card {
  /* background-color: var(--yellow-light); */
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all ease 0.5s;
  /* border-radius: 43px; */
  margin-bottom: 30px;
  border: 1px solid #e1e1e1;
}

.impacts-area .contributions-icons {
  background-color: var(--primary-color);
  padding: 16px;
  margin-bottom: 16px !important;
  width: fit-content;
  margin: 0 auto;
  height: 86px;
  width: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.single-impact-card .impact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
}

.single-impact-card .impact-icon.primary-bg {
  background-color: var(--primary-color);
}

.single-impact-card .impact-icon.secondary-bg {
  background-color: var(--secondary-color);
}

.single-impact-card .impact-icon i {
  font-size: 36px;
  color: var(--white-color);
  position: relative;
  z-index: 2;
}

.single-impact-card .impact-icon .lightbulb-overlay {
  position: absolute;
  font-size: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: var(--white-color);
}

.single-impact-card .impact-icon.secondary-bg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-impact-card .impact-icon.secondary-bg i:first-child {
  position: relative;
  z-index: 2;
}

.single-impact-card .impact-icon .pin-1 {
  position: absolute;
  font-size: 14px;
  top: 25%;
  left: 35%;
  z-index: 3;
  color: var(--white-color);
}

.single-impact-card .impact-icon .pin-2 {
  position: absolute;
  font-size: 14px;
  bottom: 25%;
  right: 35%;
  z-index: 3;
  color: var(--white-color);
}

.single-impact-card h3 {
  font-size: 48px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 15px;
  font-family: "Jost", sans-serif;
}

.single-impact-card h3 .counter {
  display: inline-block;
}

.single-impact-card p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

/* Side Tags */
.side-tag-main .side-tag {
  display: grid;
  gap: 12px;
  position: fixed;
  right: 0;
  bottom: 30%;
  z-index: 9999;
}

.side-tag-main .side-tag .side-tag-content {
  height: 54px;
  width: 89px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--primary-color);
  border-radius: 50px 0 0 50px;
  position: relative;
  transition: background-color ease 0.3s;
  overflow: visible;
}

.side-tag-main .side-tag .side-tag-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50px 0 0 50px;
  border: 2px solid var(--primary-color);
  opacity: 0.6;
  animation: wavePulse 2s ease-out infinite;
}

.side-tag-main .side-tag .side-tag-content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50px 0 0 50px;
  border: 2px solid var(--primary-color);
  opacity: 0.6;
  animation: wavePulse 2s ease-out infinite 0.5s;
}

.side-tag-main .side-tag .side-tag-content:hover {
  background-color: #e6b800;
}

.side-tag-main .side-tag .side-tag-content:hover::before,
.side-tag-main .side-tag .side-tag-content:hover::after {
  border-color: #e6b800;
}

.side-tag-main .side-tag .side-tag-content img {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
}

.side-tag-main .side-tag .side-tag-content p {
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  position: relative;
  z-index: 1;
}

/* Wave pulse animation */
@keyframes wavePulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

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

/* Responsive Styles for Impacts Area */
@media only screen and (max-width: 991px) {
  .impacts-area .section-title h2 {
    font-size: 36px;
  }

  .single-impact-card {
    padding: 35px 25px;
  }

  .single-impact-card h3 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767px) {
  .impacts-area .section-title h2 {
    font-size: 32px;
  }

  .impacts-area .section-title h2 .star-icon i {
    font-size: 20px;
  }

  .single-impact-card {
    padding: 30px 20px;
    margin-bottom: 25px;
  }

  .single-impact-card .impact-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .single-impact-card .impact-icon i {
    font-size: 32px;
  }

  .single-impact-card h3 {
    font-size: 38px;
  }

  .single-impact-card p {
    font-size: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .impacts-area .section-title h2 {
    font-size: 28px;
    gap: 5px;
  }

  .impacts-area .section-title h2 .star-icon i {
    font-size: 18px;
  }

  .single-impact-card {
    padding: 25px 15px;
  }

  .single-impact-card .impact-icon {
    width: 60px;
    height: 60px;
  }

  .single-impact-card .impact-icon i {
    font-size: 28px;
  }

  .single-impact-card h3 {
    font-size: 32px;
  }
}

/* Innovation Area */
.innovation-area {
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.innovation-area__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.innovation-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/project/project-img-1.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: blur(15px);
  z-index: 0;
  transform: scale(1.1);
}

.innovation-slider-wrapper {
  /* width: ; */
  position: relative;
  width: calc(100% - 600px);
  padding: 80px 40px;
  padding-left: 30px;
  overflow: hidden;
  background-image: url(../images/project/slider-bg-1.jpeg);
}

.innovation-slider {
  position: relative;
}

.innovation-slide-item {
  height: 400px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.innovation-slide-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* .innovation-slide-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: all 0.5s ease;
  opacity: 1;
}

.innovation-slide-item:hover .innovation-slide-image::before {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
} */

.innovation-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.innovation-slide-item:hover .innovation-slide-image img {
  transform: scale(1.1);
}

.innovation-slide-content {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  transition: all 0.5s ease;
}

@media (max-width: 991px) {
  .innovation-area .section-title {
    width: calc(100vw - 50px);
    margin: 0 auto;
    text-align: center;
  }

  .innovation-area .innovation-navigation {
    position: absolute !important;
    left: 50%;
    bottom: -400px;
    transform: translateX(-50%);
  }
}

.innovation-slide-item:hover .innovation-slide-content {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.innovation-slide-content h3 {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 1;
  transition: all 0.3s ease;
}

.innovation-slide-line {
  width: 20px;
  height: 3px;
  border-radius: 20px;
  background-color: var(--primary-color);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.innovation-read-more {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Jost", sans-serif;
  margin-top: 0;
}

.innovation-slide-item:hover .innovation-slide-content {
  bottom: 0;
}

@media (min-width: 1024px) {
  .innovation-slide-content {
    bottom: -20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  }

  .innovation-read-more {
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(15px);
    visibility: hidden;

  }

  .innovation-slide-item:hover .innovation-read-more {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    margin-top: 10px;
  }
}

.innovation-read-more:hover {
  color: var(--primary-color);
  gap: 12px;
}

.innovation-read-more i {
  font-size: 18px;
}

.innovation-content-area {
  width: 600px;
  min-width: 600px;
  padding: 80px 50px;
  padding-right: 160px;
  background-color: #F4F4F4;
  position: relative;
  height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.innovation-content-area .section-title {
  margin-top: 0;
}

.innovation-navigation {
  width: 290px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.innovation-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  color: #2c2c2c;
  flex-shrink: 0;
  border: 0;
  padding: 0;
  background-color: transparent;
}

.innovation-nav-btn:hover {
  color: var(--primary-color);
}

.innovation-progress-bar {
  flex: 1;
  height: 4px;
  background-color: #e5e5e5;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.innovation-progress-fill {
  height: 100%;
  background-color: #2c2c2c;
  border-radius: 2px;
  width: 25%;
  transition: width 0.3s ease;
}

/* Innovation Slider Navigation */
.innovation-slider.owl-theme .owl-nav {
  display: none;
}

.innovation-slider.owl-theme .owl-dots {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .innovation-content-area {
    margin-left: 0;
    margin-top: 30px;
  }

  .innovation-slide-content h3 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 991px) {

  .innovation-content-datas,
  .innovation-navigation {
    max-width: 70vw;
    margin: 0 auto;
    text-align: center !important;
  }

  .innovation-content-datas .section-title,
  .innovation-content-datas .section-title span {
    margin: 0;
    text-align: center;
  }

  /* .innovation-slide-item {
    height: 400px;
  } */

  .innovation-slide-content h3 {
    font-size: 28px;
  }

  .innovation-content-area {
    padding: 30px 20px;
  }

  .innovation-area__inner {
    flex-direction: column-reverse;
    gap: 16px;
    position: relative !important;
  }

  .innovation-content-area {
    width: calc(100% - 40px);
  }

  .innovation-slider-wrapper {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .innovation-slide-item {
    /* height: 350px; */
    margin: 0 10px;
  }

  .innovation-slide-content {
    padding: 20px;
  }

  .innovation-slide-content h3 {
    font-size: 18px;
  }

  .innovation-navigation {
    gap: 10px;
  }

  .innovation-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .innovation-slide-item {
    /* height: 250px; */
    margin: 0 10px;
  }
}

/* Diamond Panels Section */
.diamond-panels-section {
  display: grid;
  grid-template-columns: 150px 150px 150px 150px 150px 150px;
  gap: 20px 20px;

  position: relative;
  margin: 50px 0;
  margin-right: 55px;
  align-items: start;
  position: relative;
  justify-content: center;
}

@media (max-width: 1399px) {
  .diamond-panels-section {
    /* margin-left: -65px; */
    gap: 15px 15px;
    grid-template-columns: 130px 130px 130px 130px 130px 130px;
  }
}

.diamond-panel {
  width: 218px;
  height: 218px;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}

@media (max-width: 1399px) {
  .diamond-panel {
    width: 190px;
    height: 190px;
  }
}

.diamond-panel:nth-child(even) {
  margin-top: 165px;
}

.diamond-panel-box {
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  border: 2px solid var(--primary-color);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.diamond-panel:hover .diamond-panel-box {
  box-shadow: 0 10px 30px rgba(5, 255, 22, 0.4);
  border-color: var(--primary-color);
}

.diamond-panel-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px 25px;
  position: relative;
  overflow: hidden;
  transform: rotate(45deg);
}

/* .diamond-panel:nth-child(1) {
   margin-left: 40px;
} */

.diamond-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.diamond-icon i {
  font-size: 48px;
  color: var(--primary-color);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.diamond-panel:hover .diamond-icon i {
  transform: rotate(45deg) scale(1.1);
}

/* Checkmark overlay for magnifying glass */
.diamond-check-overlay {
  position: absolute;
  font-size: 16px;
  color: var(--primary-color);
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: rotate(45deg) translate(10px, -10px);
  z-index: 3;
}


.diamond-text {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  line-height: 110%;
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 2;
  max-width: 80%;
}

@media (max-width: 1399px) {
  .diamond-text {
    font-size: 15px;
  }
}

/* Responsive Design for Diamond Panels */
@media only screen and (max-width: 991px) {
  .diamond-panels-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
    padding: 60px 30px;
  }

  .diamond-panel {
    max-width: 250px;
  }


  .diamond-icon {
    width: 70px;
    height: 70px;
  }

  .diamond-icon i {
    font-size: 42px;
  }

  .diamond-text {
    font-size: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .diamond-panels-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
    padding: 50px 20px;
  }

  .diamond-panel {
    max-width: 220px;
  }

  .diamond-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .diamond-icon i {
    font-size: 36px;
  }

  .diamond-text {
    font-size: 13px;
    max-width: 95%;
  }

  .diamond-panel-inner {
    padding: 20px 15px;
  }
}

@media only screen and (max-width: 575px) {
  .diamond-panels-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  .diamond-panel:nth-child(n) {
    margin-top: 0 !important;
  }

  .diamond-panel {
    max-width: 200px;
    margin: 0 auto;
  }

  .diamond-icon {
    width: 55px;
    height: 55px;
  }

  .diamond-icon i {
    font-size: 32px;
  }

  .diamond-text {
    font-size: 12px;
  }
}

/*
CSR (Corporate Social Responsibility) Area Styles
======================================================*/

.csr-area {
  position: relative;
}

.csr-area .section-title {
  max-width: 100%;
}

.csr-area .container {
  position: relative;
  z-index: 1;
}

.csr-swiper-wrapper {
  position: relative;
  padding: 0;
  margin: -20px auto;
  /* max-width: 1200px; */
}

.csr-swiper {
  width: 100%;
  padding: 35px 20px 40px;
  overflow: hidden;
}

.csr-swiper .swiper-slide {
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
  transition: all 0.4s ease;
  opacity: 0;
}

.csr-swiper .swiper-slide-active {
  transform: scale(1.2);
  z-index: 2;
  opacity: 1;
}

.csr-swiper .swiper-slide-prev,
.csr-swiper .swiper-slide-next {
  opacity: 1;
}

.csr-slide-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.csr-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.csr-swiper .swiper-slide-active .csr-slide-image img {
  transform: scale(1.05);
}

/* Swiper Navigation Buttons */
.csr-swiper .swiper-button-next,
.csr-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: var(--white-color);
  border-radius: 50%;
  color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.csr-swiper .swiper-button-next:hover,
.csr-swiper .swiper-button-prev:hover {
  background-color: var(--black-color);
  color: var(--white-color);
  transform: translateY(-50%) scale(1.1);
}

/* Coverflow Effect Enhancements */
.csr-swiper .swiper-slide-shadow-left,
.csr-swiper .swiper-slide-shadow-right {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .csr-swiper-wrapper {
    padding: 50px 15px;
  }

  .csr-swiper .swiper-slide {
    width: 320px;
    height: 380px;
  }

  .csr-activity-title h3 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .csr-area {
    padding: 70px 0;
  }

  .csr-intro-section .section-title h2 {
    font-size: 36px;
  }

  .csr-intro-section .section-title p {
    font-size: 16px;
  }

  .csr-activity-section {
    margin-bottom: 60px;
  }

  .csr-activity-title h3 {
    font-size: 24px;
  }

  .csr-swiper-wrapper {
    padding: 40px 10px;
  }

  .csr-swiper {
    padding: 30px 0 50px;
  }

  .csr-swiper .swiper-slide {
    width: 280px;
    height: 340px;
  }

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

  .csr-swiper .swiper-button-next::after,
  .csr-swiper .swiper-button-prev::after {
    font-size: 18px;
  }

  .csr-swiper .swiper-button-next {
    right: -5px;
  }

  .csr-swiper .swiper-button-prev {
    left: -5px;
  }
}

@media (max-width: 767px) {
  .csr-area {
    padding: 50px 0;
  }

  .csr-intro-section {
    margin-bottom: 50px;
  }

  .csr-intro-section .section-title h2 {
    font-size: 28px;
  }

  .csr-intro-section .section-title p {
    font-size: 15px;
  }

  .csr-activity-section {
    margin-bottom: 50px;
  }

  .csr-activity-title {
    margin-bottom: 30px;
  }

  .csr-activity-title h3 {
    font-size: 20px;
    padding: 0 15px;
  }

  .csr-activity-title h3 span {
    padding: 2px 8px;
    font-size: 18px;
  }

  .csr-swiper-wrapper {
    padding: 30px 5px;
  }

  .csr-swiper {
    padding: 20px 0 40px;
  }

  .csr-swiper .swiper-slide {
    width: 250px;
    height: 300px;
  }

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

  .csr-swiper .swiper-button-next::after,
  .csr-swiper .swiper-button-prev::after {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .csr-intro-section .section-title h2 {
    font-size: 24px;
  }

  .csr-intro-section .section-title p {
    font-size: 14px;
  }

  .csr-activity-title h3 {
    font-size: 18px;
  }

  .csr-activity-title h3 span {
    font-size: 16px;
    padding: 2px 6px;
  }

  .csr-swiper .swiper-slide {
    width: 220px;
    height: 280px;
  }

  .csr-swiper-wrapper {
    padding: 20px 0;
  }
}

/*  */
.album-area {}

.album-area .album-container {
  position: relative;
  overflow: hidden;
}

/* 
.album-area .album-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  left: 0;
  top: 0;
} */

.album-area .album-container iframe {
  margin-top: -55px;
}

.companyGalleryPopup {}

.companyGalleryPopup .modal-dialog {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-radius: 0;
  margin: 0;
  align-items: flex-start;
}

.companyGalleryPopup .btn-close {
  position: absolute;
  padding: 0;
  right: 10px;
  top: 10px;
  z-index: 1;
  color: var(--white-color);
  background: transparent;
}

.companyGalleryPopup .modal-content {
  border-radius: 0;
  border: none;
  box-shadow: none;
  height: 100%;
  background-color: #0F0F0FE3;
}

.companyGalleryPopup .modal-content::before {
  display: none;
}

.companyGalleryPopup .modal-body {
  padding: 40px 60px;
  background-color: #0F0F0FE3;
}

.open-gallery-modal {
  margin-top: 20px;
  color: var(--black-color);
}

.open-gallery-modal:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.companyGalleryPopup .text-content>* {
  color: var(--white-color);
}

.companyGalleryPopup .text-content h5 {
  font-size: 22px;
  font-weight: 600;
  line-height: 29px;
  color: var(--white-color);
}

.companyGalleryPopup .text-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  color: var(--white-color);
}

.gallery-view {
  display: none;
}

.company-gallery-carousel {
  position: relative;
}

.company-gallery-carousel .item {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.company-gallery-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.company-gallery-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 35px;
  pointer-events: none;
}

.company-gallery-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.company-gallery-carousel .owl-nav button:hover {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}

.company-gallery-carousel .owl-nav button i {
  font-size: 24px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.company-gallery-carousel .owl-nav button:hover i {
  color: var(--white-color);
}

@media (max-width: 991px) {
  .company-gallery-carousel .item {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .company-gallery-carousel .item {
    height: 300px;
  }

  .company-gallery-carousel .owl-nav button {
    width: 40px;
    height: 40px;
  }

  .company-gallery-carousel .owl-nav button i {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
    .page-header-area {
        padding: 20px !important;
    }
    .banner-btn{
      margin-bottom: 10px!important;
    }
}

@media (max-width: 576px) {
    /* .page-header-area {
        padding: 0px !important;
    } */
     @media (max-width: 576px) {
    .page-header-area {
        padding: 13px !important;
    }
}
    .page-header-area .page-header-content ul{
      margin-bottom: 10px!important;
    }
}


/* ===============================
   BLOG SLIDER NAVIGATION STYLE
   =============================== */

.blogs-slider {
    position: relative;
}

.blogs-slider .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
    transform: translateY(-50%);
}

.blogs-slider .owl-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f2f2f2 !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.blogs-slider .owl-prev {
    position: absolute;
    left: -70px;
}

.blogs-slider .owl-next {
    position: absolute;
    right: -70px; 
}

.blogs-slider .owl-nav button:hover {
    background:#a2cb3a!important;
    color: #fff;
    transform: scale(1.08);
}

.blogs-slider .owl-nav button:focus {
    outline: none;
}



.careers-intro a{
    word-break: break-all;
    overflow-wrap: anywhere;
}

