@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --clr-primary-500: #035c9e;
  --clr-primary-400: #2795fb;
  --clr-secondary-500: #028c2b;
  --clr-neutral-900: #0a0a0c;
  --clr-neutral-800: #151518;
  --clr-neutral-700: #202024;
  --clr-neutral-600: #4B5563;
  --clr-neutral-500: #404048;
  --clr-neutral-400: #BCBEC0;
  --clr-neutral-200: #f9f9fc;
  --clr-neutral-150: #F3F3F3;
  --clr-neutral-100: hsl(0 0% 100%);
  --clr-grey-100: #F4F6F8;
  --ff-primary: "Roboto", sans-serif;
  --ff-secondary: "Roboto", sans-serif;
  --ff-heading: var(--ff-primary);
  --ff-body: var(--ff-secondary);
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semiBold: 600;
  --fw-bold: 700;
  --fw-extraBold: 800;
  --fw-black: 900;
  --fs-100: 16px;
  --fs-200: 18px;
  --fs-300: 20px;
  --fs-400: 24px;
  --fs-500: 28px;
  --fs-600: 32px;
  --fs-700: 40px;
  --fs-800: 72px;
  --fs-900: 90px;
  --fs-body: var(--fs-300);
  --size-100: 0.25rem;
  --size-200: 0.5rem;
  --size-300: 0.75rem;
  --size-400: 1rem;
  --size-500: 1.5rem;
  --size-600: 2rem;
  --size-700: 3rem;
  --size-800: 4rem;
  --size-900: 5rem;
}

@media (max-width: 768px) {
  :root {
    --fs-800: 55px;
  }
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: initial;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: initial;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: initial;
}

@media (min-width: 900px) {
  html.lenis {
    height: auto;
  }
  .lenis.lenis-smooth {
    scroll-behavior: auto;
  }
  .lenis.lenis-stopped {
    overflow: hidden;
  }
}
/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* general styling */
body {
  font-size: var(--fs-body);
  font-family: var(--ff-body);
  color: var(--clr-neutral-900);
  letter-spacing: 1.5px;
}

p {
  position: relative;
  font-size: var(--fs-500);
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: justify;
}

#main {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1250px;
}

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

.text-neutral-100 {
  color: var(--clr-neutral-100) !important;
}

.text-neutral-600 {
  color: var(--clr-neutral-600);
}

.text-neutral-800 {
  color: var(--clr-neutral-800);
}

.text-neutral-900 {
  color: var(--clr-neutral-900) !important;
}

.bg-primary-200 {
  background-color: var(--clr-primary-200);
}

.bg-primary-300 {
  background-color: var(--clr-primary-300);
}

.bg-primary-400 {
  background-color: var(--clr-primary-400);
}

.bg-primary-500 {
  background-color: var(--clr-primary-400);
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}

.bg-neutral-200 {
  background-color: var(--clr-neutral-200);
}

.bg-grey-100 {
  background-color: var(--clr-grey-100);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.fw-semiBold {
  font-weight: var(--fw-semiBold);
}

.fw-medium {
  font-weight: var(--fw-medium);
}

.fw-regular {
  font-weight: var(--fw-regular);
}

.fs-200 {
  font-size: var(--fs-200) !important;
}

.fs-300 {
  font-size: var(--fs-300) !important;
}

.fs-400 {
  font-size: var(--fs-400) !important;
}

.fs-500 {
  font-size: var(--fs-500) !important;
}

.fs-600 {
  font-size: var(--fs-600) !important;
}

.h-100 {
  height: 100vh !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-normal {
  text-transform: none !important;
}

.padding-block-900 {
  padding: 100px 0;
}

.padding-block-800 {
  padding: 80px 0;
}

.padding-block-500 {
  padding: var(--size-500) 0;
}

.margin-top-900 {
  margin-top: var(--size-900);
}

.margin-bottom-900 {
  margin-bottom: var(--size-900);
}

.margin-top-max {
  margin-top: 120px;
}

.margin-block-max {
  margin: 120px 0;
}

.margin-bottom-max {
  margin-bottom: 120px;
}

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

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

.padding-top-max {
  padding-top: 120px;
}

.padding-block-max {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .margin-top-max {
    margin-top: 70px;
  }
  .margin-block-max {
    margin: 70px 0;
  }
  .margin-bottom-max {
    margin-bottom: 70px;
  }
  .padding-block-900 {
    padding: 70px 0;
  }
  .margin-top-900 {
    margin-top: 70px;
  }
  .margin-bottom-900 {
    margin-bottom: 70px;
  }
  .padding-top-max {
    padding-top: 70px;
  }
  .padding-block-max {
    padding: 70px 0;
  }
}
.error,
.error p,
label.error {
  font-size: var(--fs-200);
  margin-top: 0;
  color: #ff0000;
}

.btn1 {
  position: relative;
  display: flex;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  min-width: 230px;
  padding: 12px 30px;
  font-size: 16px;
  letter-spacing: 1px;
  background-color: var(--clr-primary-500);
  text-decoration: none;
  overflow: hidden;
}
.btn1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: black;
  left: -100%;
  top: 0;
  z-index: 1;
  border-radius: 0 20px 20px 0;
  transition: all 0.3s ease;
  opacity: 0.2;
}
.btn1 span {
  position: relative;
  color: var(--clr-neutral-100);
  text-decoration: none;
  z-index: 2;
}
.btn1:hover::before {
  left: 0;
  border-radius: 0;
}

.btn2 {
  position: relative;
  display: flex;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  min-width: 230px;
  padding: 12px 30px;
  font-size: 16px;
  letter-spacing: 1px;
  background-color: var(--clr-secondary-500);
  text-decoration: none;
  overflow: hidden;
}
.btn2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: black;
  left: -100%;
  top: 0;
  z-index: 1;
  border-radius: 0 20px 20px 0;
  transition: all 0.3s ease;
  opacity: 0.2;
}
.btn2 span {
  position: relative;
  color: var(--clr-neutral-100);
  text-decoration: none;
  z-index: 2;
}
.btn2:hover::before {
  left: 0;
  border-radius: 0;
}

.btn-white {
  position: relative;
  display: flex;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  min-width: 230px;
  padding: 12px 30px;
  font-size: 16px;
  letter-spacing: 1px;
  background-color: var(--clr-neutral-100);
  text-decoration: none;
  overflow: hidden;
}
.btn-white::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: black;
  left: -100%;
  top: 0;
  z-index: 1;
  border-radius: 0 20px 20px 0;
  transition: all 0.3s ease;
  opacity: 0.2;
}
.btn-white span {
  position: relative;
  color: var(--clr-primary-500);
  text-decoration: none;
  z-index: 2;
}
.btn-white:hover::before {
  left: 0;
  border-radius: 0;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  background-color: var(--clr-neutral-100);
  z-index: 9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header .logo {
  position: relative;
  display: block;
  width: 260px;
}
header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header {
  /* header */
}
header .item-left {
  flex: 0 0 17%;
}
header .item-center {
  flex: 0 0 66%;
}
header .item-right {
  flex: 0 0 17%;
  display: flex;
  justify-content: flex-end;
}
header .item-right a {
  text-decoration: none;
  font-size: 16px;
  color: #555555;
  display: inline-block;
  margin-left: 10px;
  transition: color 0.3s ease;
}
header .menu > ul {
  padding: 0;
  margin: 0;
}
header .menu > ul > li {
  display: inline-block;
  line-height: 50px;
  margin-left: 25px;
}
header .menu > ul > li > a {
  display: flex;
  align-items: center;
  height: 100px;
  font-size: 16px;
  font-weight: 500;
  color: #070707;
  position: relative;
  text-transform: capitalize;
  text-decoration: none;
  letter-spacing: normal;
  transition: color 0.3s ease;
}
header .menu > ul > li.active {
  position: relative;
}
header .menu > ul > li.active::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 8px;
  background-color: var(--clr-primary-500);
  bottom: 0;
  left: 0;
}
header .menu > ul > li.active a {
  color: var(--clr-primary-500);
}
header .menu > ul > li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  header .menu > ul > li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
}
header .menu > ul > li .sub-menu > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .menu > ul > li .sub-menu > ul > li {
  line-height: 1;
  border-bottom: 1px solid #b9b9b9;
}
header .menu > ul > li .sub-menu > ul > li:last-child {
  border-bottom: 0;
}
header .menu > ul > li .sub-menu > ul > li > a {
  display: inline-block;
  text-decoration: none;
  padding: 15px 0;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}
header .menu > ul > li .sub-menu > ul > li > a:hover {
  color: var(--clr-primary-500) !important;
}
header .menu > ul > li .single-column-menu {
  min-width: 280px;
  max-width: 350px;
}
header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
  line-height: 1;
  display: block;
}
header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
  padding: 10px 0;
  display: inline-block;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
}
header .menu > ul > li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}
header .menu > ul > li .sub-menu.mega-menu-column-4 {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}
header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
  flex: 0 0 20%;
  padding: 0 15px;
}
header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item a {
  text-decoration: none;
}
header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title {
  font-size: 16px;
  color: #070707;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0;
}
header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
  text-align: center;
}
header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 10px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
header .menu > ul > li .sub-menu.mega-menu-column-5 {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}
header .menu > ul > li .sub-menu.mega-menu-column-5 > .list-item {
  flex: 0 0 16.6%;
  padding: 0 15px;
}
header .menu > ul > li .sub-menu.mega-menu-column-5 > .list-item a {
  text-decoration: none;
}
header .menu > ul > li .sub-menu.mega-menu-column-5 > .list-item .title {
  font-size: 16px;
  color: #070707;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0;
}
header .menu > ul > li .sub-menu.mega-menu-column-5 > .list-item.text-center .title {
  text-align: center;
}
header .menu > ul > li .sub-menu.mega-menu-column-5 > .list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 10px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
header .menu > ul > li .sub-menu > ul > li > a:hover,
header .item-right a:hover,
header .menu > ul > li:hover > a {
  color: var(--clr-primary-500);
}
header {
  /* banner section */
}
header .banner-section {
  background-image: url("../img/banner.jpg");
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}
header .mobile-menu-head,
header .mobile-menu-trigger {
  display: none;
}
header {
  /*responsive*/
}
@media (max-width: 991px) {
  header .item-center {
    order: 3;
    flex: 0 0 100%;
  }
  header .item-left,
  header .item-right {
    flex: 0 0 auto;
  }
  header .v-center {
    justify-content: space-between;
  }
  header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #333333;
    width: 24px;
    position: relative;
  }
  header .mobile-menu-trigger span:before,
  header .mobile-menu-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
  }
  header .mobile-menu-trigger span:before {
    top: -6px;
  }
  header .mobile-menu-trigger span:after {
    top: 6px;
  }
  header .item-right {
    align-items: center;
  }
  header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }
  header .menu.active {
    transform: translate(0%);
  }
  header .menu > ul > li {
    line-height: 1;
    margin: 0;
    display: block;
  }
  header .menu > ul > li > a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header .menu > ul > li > a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }
  header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }
  header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }
  header .menu .mobile-menu-head.active .go-back {
    display: block !important;
  }
  header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
  }
  header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }
  header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  header .menu > ul > li .sub-menu.mega-menu,
  header .menu > ul > li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }
  header .menu > ul > li .sub-menu.active {
    display: block;
  }
  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }
  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }
    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }
  header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
    margin-top: 0;
  }
  header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
    margin-bottom: 20px;
  }
  header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }
  header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    flex: 0 0 100%;
    padding: 0px;
  }
  header .menu > ul > li .sub-menu.mega-menu-column-5 > .list-item img {
    margin-top: 0;
  }
  header .menu > ul > li .sub-menu.mega-menu-column-5 > .list-item.text-center .title {
    margin-bottom: 20px;
  }
  header .menu > ul > li .sub-menu.mega-menu-column-5 > .list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }
  header .menu > ul > li .sub-menu.mega-menu-column-5 > .list-item {
    flex: 0 0 100%;
    padding: 0px;
  }
  header .menu > ul > li .sub-menu > ul > li > a,
  header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    display: block;
  }
  header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
    margin-bottom: 15px;
  }
  header .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}

.banner {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  margin-top: 100px;
}
.banner .slide {
  width: 100%;
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}
.banner .swiper-pagination {
  padding-bottom: 30px;
}
.banner .bg,
.banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: -1;
}
.banner .overlay {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--clr-neutral-900);
  z-index: 1;
  opacity: 0.3;
}
.banner .wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.banner h1 {
  position: relative;
  color: var(--clr-neutral-100);
  font-size: 50px;
  font-weight: 700;
  max-width: 710px;
}
.banner h1 span {
  font-weight: 300;
  font-size: 40px;
}
@media (max-width: 768px) {
  .banner h1 {
    font-size: 30px;
  }
}
.banner p {
  color: var(--clr-neutral-100);
  font-size: 16px;
  max-width: 600px;
  text-align: left;
}
.banner .video-container video {
  width: 100%;
}
.banner .video-container .play-button {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  /* Center the button */
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10; /* Ensure it is above the video */
  transition: opacity 0.3s;
  background-color: transparent;
  border: 0;
}
.banner .video-container .play-button:hover {
  opacity: 0.8;
}
.banner .video-playing .play-button {
  opacity: 0;
  pointer-events: none; /* Allows clicks to pass through to the video if needed */
}

.inside-banner {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-size: cover;
  padding-top: 100px;
}
.inside-banner h1 {
  margin: 0;
  padding: 20px;
  color: var(--clr-neutral-100);
  font-size: 60px;
}
.inside-banner.aboutus {
  background-image: url("../images/banner/about-us.jpg");
}
.inside-banner h2 {
  position: relative;
  font-size: 28px;
  color: var(--clr-secondary-500);
  padding-left: 30px;
}
.inside-banner h2::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 10px;
  margin-top: 10px;
  background-color: var(--clr-secondary-500);
}

.title1 {
  position: relative;
}
.title1 h1 {
  position: relative;
  color: var(--clr-primary-500);
  font-size: 40px;
  font-weight: 400;
}
.title1 h1 span {
  font-weight: 700;
}
@media (max-width: 768px) {
  .title1 h1 {
    font-size: 30px;
  }
}
.title1 h2 {
  font-size: 18px;
  color: var(--clr-neutral-900);
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .title1 h2 {
    font-size: 16px;
  }
}

.checkUl {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 10px;
}
.checkUl li {
  position: relative;
  font-size: 16px;
  padding-left: 35px;
}
.checkUl li::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url("../images/icons/png/check.jpg");
  background-position: center;
  background-size: contain;
  left: 0;
}

.checkList {
  position: relative;
  font-size: 16px;
  padding-left: 35px;
  line-height: 20px;
  height: 40px;
  display: flex;
  align-items: center;
}
.checkList::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url("../images/icons/png/check.jpg");
  background-position: center;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.checkList-white {
  position: relative;
  font-size: 16px;
  padding-left: 35px;
  line-height: 20px;
  height: 40px;
  display: flex;
  align-items: center;
  color: var(--clr-neutral-100);
}
.checkList-white::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url("../images/icons/png/check-white.png");
  background-position: center;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.product-title {
  position: relative;
  font-size: 24px;
  color: var(--clr-primary-500);
  font-weight: 600;
  padding-left: 27px;
}
.product-title::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 0;
  margin-top: 5px;
  background-color: var(--clr-primary-500);
}

.product-title-white {
  position: relative;
  font-size: 24px;
  color: var(--clr-neutral-200);
  font-weight: 600;
  padding-left: 27px;
}
.product-title-white::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 0;
  margin-top: 5px;
  background-color: var(--clr-neutral-100);
}

.swiper-pagination-bullet {
  position: relative;
  width: 14px;
  height: 14px;
  background-color: transparent;
  border: 1px solid #999999;
  opacity: 1;
  transition: all 0.3s ease;
  top: 14px;
}
.swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: #999999;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper-pagination-bullet-active {
  border-color: var(--clr-secondary-500);
  scale: 1.3;
}
.swiper-pagination-bullet-active::before {
  background-color: var(--clr-secondary-500);
}

.pdfpolicies {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pdfpolicies li {
  position: relative;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  background-color: var(--clr-neutral-100);
  border: 1px solid var(--clr-neutral-600);
  border-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.pdfpolicies li:last-child {
  border-bottom: 1px solid var(--clr-neutral-600);
}
.pdfpolicies li .title {
  font-size: 16px;
  color: var(--clr-neutral-900);
  font-weight: 500;
  flex: 1;
  transition: all 0.3s ease-in-out;
}
.pdfpolicies li .download {
  margin-left: auto;
  width: 35px;
  height: 35px;
}
.pdfpolicies li:hover {
  background-color: var(--clr-secondary-500);
}
.pdfpolicies li:hover .title {
  color: var(--clr-neutral-100);
}
.pdfpolicies.invetstor-relations {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.pdfpolicies.invetstor-relations li {
  flex: 0 0 49%; /* no grow, no shrink, fixed 50% */
  border: 1px solid var(--clr-neutral-600);
}
@media (max-width: 768px) {
  .pdfpolicies.invetstor-relations li {
    flex: 0 0 100% !important; /* no grow, no shrink, fixed 100% */
    width: 100%;
  }
}
.pdfpolicies.invetstor-relations.threeColumns li {
  flex: 0 0 32%; /* no grow, no shrink, fixed 33% */
}
@media (max-width: 768px) {
  .pdfpolicies.invetstor-relations.threeColumns li {
    flex: 0 0 100% !important; /* no grow, no shrink, fixed 100% */
    width: 100%;
  }
}

.downloadBtn {
  position: relative;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  background-color: var(--clr-neutral-100);
  border: 1px solid var(--clr-neutral-600);
  border-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.downloadBtn:last-child {
  border-bottom: 1px solid var(--clr-neutral-600);
}
.downloadBtn .title {
  font-size: 16px;
  color: var(--clr-neutral-900);
  font-weight: 500;
  flex: 1;
  transition: all 0.3s ease-in-out;
}
.downloadBtn .download {
  margin-left: auto;
  width: 35px;
  height: 35px;
}
.downloadBtn:hover {
  background-color: var(--clr-secondary-500);
}
.downloadBtn:hover .title {
  color: var(--clr-neutral-100);
}

a {
  text-decoration: none !important;
  color: inherit !important;
}

.aboutHome {
  position: relative;
}
.aboutHome .abouImg {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 20%;
}
.aboutHome .abouImg .img1 {
  position: relative;
  width: 80%;
  margin-left: 20%;
  right: 0;
  background-color: var(--clr-primary-500);
  overflow: hidden;
  aspect-ratio: 11/14;
}
@media (max-width: 768px) {
  .aboutHome .abouImg .img1 {
    position: relative;
    display: block;
  }
}
.aboutHome .abouImg .img1 img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.aboutHome .abouImg .img2 {
  position: absolute;
  width: 60%;
  left: 0;
  bottom: 0;
  background-color: var(--clr-secondary-500);
  aspect-ratio: 1/1;
  border: 15px solid var(--clr-neutral-100);
  border-width: 15px 15px 0 0;
}
.aboutHome .abouImg .img2 img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.aboutHome .abouImg .img2 span {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  min-width: 230px;
  padding: 12px 30px;
  font-size: 16px;
  letter-spacing: 1px;
  background-color: var(--clr-primary-500);
  text-decoration: none;
  color: var(--clr-neutral-100);
}

.serviceHome {
  position: relative;
}
.serviceHome .wrapper {
  position: relative;
  display: flex;
}
@media (max-width: 768px) {
  .serviceHome .wrapper {
    flex-direction: column;
  }
}
.serviceHome .wrapper .box {
  position: relative;
  width: 100%;
  aspect-ratio: 5/7;
}
@media (max-width: 768px) {
  .serviceHome .wrapper .box {
    aspect-ratio: 7/4;
  }
}
.serviceHome .wrapper .box {
  overflow: hidden;
}
.serviceHome .wrapper .box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  background-color: var(--clr-secondary-500);
  opacity: 0;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.6s ease;
}
.serviceHome .wrapper .box .details {
  position: absolute;
  z-index: 2;
  width: 100%;
  bottom: 0;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--clr-neutral-100);
  letter-spacing: 1px;
  z-index: 1;
}
.serviceHome .wrapper .box .details h4 {
  position: relative;
  font-size: 14px;
}
.serviceHome .wrapper .box .details h3 {
  position: relative;
  font-size: 22px;
}
.serviceHome .wrapper .box .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: all 0.6s ease;
}
.serviceHome .wrapper .box:hover::before {
  opacity: 1;
}
.serviceHome .wrapper .box:hover .bg {
  scale: 1.1;
}

.counter {
  position: relative;
}
.counter .wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.counter .wrapper .num {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 140px;
  font-weight: bolder;
  color: var(--clr-secondary-500);
  line-height: 100px;
  text-align: center;
}
.counter .wrapper .num::before {
  position: absolute;
  content: "+";
  font-size: 70px;
  color: var(--clr-secondary-500);
  line-height: 1;
  height: 50px;
  right: -40px;
  bottom: 10px;
}
@media (max-width: 768px) {
  .counter .wrapper .num {
    font-size: 100px;
  }
}
.counter .wrapper span {
  position: relative;
  font-size: 20px;
  color: var(--clr-neutral-900);
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.videoSection {
  position: relative;
  display: flex;
}
.videoSection::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 9px);
  top: 0;
  left: 0;
  background-color: var(--clr-primary-500);
}
@media (max-width: 768px) {
  .videoSection {
    flex-direction: column;
  }
}
.videoSection .heading {
  position: relative;
  width: 35%;
  background-color: var(--clr-primary-500);
  display: flex;
  padding: 67px 30px;
  justify-content: flex-end;
  height: 100%;
}
@media (max-width: 768px) {
  .videoSection .heading {
    width: 100%;
  }
}
.videoSection .heading .details {
  position: relative;
  max-width: 350px;
}
.videoSection .heading .details .title1 h1,
.videoSection .heading .details .title1 h2 {
  color: var(--clr-neutral-100) !important;
}
.videoSection .video-container {
  width: 65%;
  position: relative;
}
@media (max-width: 768px) {
  .videoSection .video-container {
    width: 100%;
  }
}
.videoSection .video-container video {
  width: 100%;
}
.videoSection .video-container .play-button {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  /* Center the button */
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10; /* Ensure it is above the video */
  transition: opacity 0.3s;
  background-color: transparent;
  border: 0;
}
.videoSection .video-container .play-button:hover {
  opacity: 0.8;
}
.videoSection .video-playing .play-button {
  opacity: 0;
  pointer-events: none; /* Allows clicks to pass through to the video if needed */
}

.testimonials {
  position: relative;
  background-image: url("../images/bg/testimonials.jpg");
  background-size: cover;
  background-position: center center;
}
.testimonials .testimonialSlider {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 50px auto 0;
  overflow: hidden;
}
.testimonials .testimonialSlider .swiper {
  overflow: visible !important;
  padding: 40px 0;
}
.testimonials .testimonialSlider .swiper-slide {
  opacity: 0.5;
  scale: 0.8;
  transition: all 0.3s ease;
}
.testimonials .testimonialSlider .swiper-slide-active {
  opacity: 1;
  scale: 1;
}
.testimonials .box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--clr-secondary-500);
  border-radius: 20px;
  padding: 80px 80px 40px;
}
@media (max-width: 768px) {
  .testimonials .box {
    width: 100%;
    padding: 30px 20px;
  }
}
.testimonials .box::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  top: -40px;
  left: 50%;
  background-image: url("../images/icons/png/quote.png");
  background-size: contain;
  transform: translateX(-50%);
}
.testimonials .box p {
  color: var(--clr-neutral-100);
  text-align: center;
}
.testimonials .box .details {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
.testimonials .box .details .thumb {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .box .details h3 {
  color: var(--clr-neutral-100);
  font-size: 18px;
  margin-top: 20px;
}
.testimonials .box .details h4 {
  color: var(--clr-neutral-100);
  font-size: 16px;
  font-weight: 400;
}

.weoffer {
  position: relative;
}
.weoffer .wrapper {
  position: relative;
}
.weoffer .weofferSlider {
  position: relative;
}
.weoffer .weofferSlider .item {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 9/10;
  overflow: hidden;
}
.weoffer .weofferSlider .item .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
}
.weoffer .weofferSlider .item a {
  position: absolute;
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  color: var(--clr-neutral-100) !important;
  background-color: var(--clr-primary-500);
  z-index: 2;
  bottom: 0;
  transition: all 0.6s;
}
.weoffer .weofferSlider .item a img {
  width: 30px;
  transition: all 0.6s;
}
.weoffer .weofferSlider .item a:hover {
  background-color: #054576;
}
.weoffer .weofferSlider .item a:hover img {
  transform: translateX(-20px);
}
.weoffer .swiperNav {
  position: absolute;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f6f6 !important;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.weoffer .swiperNav:hover {
  background-color: var(--clr-primary-500) !important;
}
.weoffer .swiperNav:hover img {
  filter: brightness(0) invert(1);
}
.weoffer .swiperNav.swiper-button-prev {
  margin-left: -60px;
}
.weoffer .swiperNav.swiper-button-next {
  margin-right: -60px;
}
.weoffer .swiperNav.swiper-button-next img {
  transform: scaleX(-1);
}

.weoffer2 {
  position: relative;
}
.weoffer2 .wrapper {
  position: relative;
}
.weoffer2 .weofferSlider {
  position: relative;
}
.weoffer2 .weofferSlider .item {
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px;
  display: flex;
  flex-direction: column;
  background-color: #f7f6f6;
  gap: 20px;
  transition: all 0.3s ease-in-out;
}
.weoffer2 .weofferSlider .item h2 {
  position: relative;
  font-size: 24px;
  color: var(--clr-neutral-800);
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
}
.weoffer2 .weofferSlider .item p {
  color: var(--clr-neutral-600);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.weoffer2 .weofferSlider .item .icon {
  position: relative;
  width: auto;
  height: 56px;
  transition: all 0.3s ease-in-out;
}
.weoffer2 .weofferSlider .item a {
  position: relative;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.weoffer2 .weofferSlider .item a img {
  width: 30px;
  margin-left: 0;
  transition: all 0.3s ease-in-out;
}
.weoffer2 .weofferSlider .item a:hover img {
  margin-left: 10px;
}
.weoffer2 .weofferSlider .item:hover {
  background-color: var(--clr-primary-500);
}
.weoffer2 .weofferSlider .item:hover h2,
.weoffer2 .weofferSlider .item:hover p {
  color: var(--clr-neutral-100);
}
.weoffer2 .weofferSlider .item:hover img {
  filter: brightness(0) invert(1);
}
.weoffer2 .swiperNav {
  position: absolute;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f6f6 !important;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.weoffer2 .swiperNav:hover {
  background-color: var(--clr-primary-500) !important;
}
.weoffer2 .swiperNav:hover img {
  filter: brightness(0) invert(1);
}
.weoffer2 .swiperNav.swiper-button-prev {
  margin-left: -60px;
}
.weoffer2 .swiperNav.swiper-button-next {
  margin-right: -60px;
}
.weoffer2 .swiperNav.swiper-button-next img {
  transform: scaleX(-1);
}

.team {
  position: relative;
}
.team .item {
  position: relative;
  flex-direction: column;
}
.team .item img {
  width: 100%;
}
.team .item .details {
  position: relative;
  width: 100%;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-neutral-100);
}
.team .item .details h3 {
  color: var(--clr-primary-500);
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 1;
}
.team .item .details p {
  color: var(--clr-primary-500);
  font-weight: 500;
  margin: 0;
}

.productsPage {
  position: relative;
}
.productsPage.bg1 {
  position: relative;
  padding: 150px 0;
  background-image: url("../images/bg/bg1.jpg");
  background-position: center center;
  background-size: cover;
}
.productsPage.bg2 {
  position: relative;
  padding: 150px 0;
  background-image: url("../images/bg/bg2.jpg");
  background-position: top center;
  background-size: cover;
}
.productsPage .abouImg {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 20%;
}
.productsPage .abouImg .img1 {
  position: relative;
  width: 80%;
  margin-left: 20%;
  right: 0;
  background-color: var(--clr-primary-500);
  overflow: hidden;
  aspect-ratio: 11/14;
}
@media (max-width: 768px) {
  .productsPage .abouImg .img1 {
    position: relative;
    display: block;
  }
}
.productsPage .abouImg .img1 img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.productsPage .abouImg .img2 {
  position: absolute;
  width: 60%;
  left: 0;
  bottom: 0;
  background-color: var(--clr-secondary-500);
  aspect-ratio: 1/1;
  border: 15px solid var(--clr-neutral-100);
  border-width: 15px 15px 0 0;
}
.productsPage .abouImg .img2 img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.productsPage.wire {
  z-index: 2;
}
.productsPage.wire::after {
  position: absolute;
  content: "Wire";
  font-size: 350px;
  font-weight: 700;
  color: #ededee;
  opacity: 0.7;
  line-height: 0.7;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.productsPage.bar {
  z-index: 2;
}
.productsPage.bar::after {
  position: absolute;
  content: "Bars";
  font-size: 350px;
  font-weight: 700;
  color: #ededee;
  opacity: 0.7;
  line-height: 0.7;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.productsPage .swiper {
  overflow: visible;
  z-index: 0;
}
.productsPage .swiper.leftHidden::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: var(--clr-neutral-200);
  right: 100%;
  z-index: 3;
}
.productsPage .swiper.leftHidden2::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: var(--clr-neutral-100);
  right: 100%;
  z-index: 3;
}
.productsPage .swiper.rightHidden::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: var(--clr-neutral-100);
  left: 100%;
  z-index: 3;
}
.productsPage .swiper.rightHiddengreay::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: var(--clr-neutral-200);
  left: 100%;
  z-index: 3;
}
.productsPage .swiper .swiper-slide {
  opacity: 0.6;
}
.productsPage .swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.productsPage .box {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 20px 30px;
  align-items: center;
  border: 1px solid var(--clr-primary-500);
  background-color: var(--clr-neutral-100);
  height: 100%;
}
@media (max-width: 768px) {
  .productsPage .box {
    flex-direction: column;
  }
}
.productsPage .box .icon {
  min-width: 100px;
  padding: 0 15px;
  display: flex;
  justify-content: center;
}
.productsPage .box h3 {
  font-size: 20px;
  color: var(--clr-primary-500);
  font-weight: 600;
}
.productsPage .box p {
  color: var(--clr-neutral-900);
  font-weight: 400;
  line-height: 1.4;
}
.productsPage .box2 {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 20px 30px;
  align-items: center;
  background-color: var(--clr-neutral-100);
  height: 100%;
  border: 1px solid var(--clr-neutral-100);
  border-top: 6px solid var(--clr-neutral-100);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
}
.productsPage .box2:hover {
  border: 1px solid var(--clr-primary-500);
  border-top: 6px solid var(--clr-primary-500);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .productsPage .box2 {
    flex-direction: column;
  }
}
.productsPage .box2 .icon {
  min-width: 100px;
  padding: 0 15px;
  display: flex;
  justify-content: center;
}
.productsPage .box2 h3 {
  font-size: 20px;
  color: var(--clr-primary-500);
  font-weight: 600;
}
.productsPage .box2 p {
  color: var(--clr-neutral-900);
  font-weight: 400;
  line-height: 1.4;
}
.productsPage .greybox {
  background-color: #f7f7f7;
  color: var(--clr-neutral-900);
  padding: 18px;
  border-radius: 15px;
  border: 1px solid var(--clr-neutral-600);
  height: 100%;
}
.productsPage .greybox h3 {
  font-size: 18px;
  color: var(--clr-neutral-900);
}
.productsPage .greybox p {
  font-size: 13px;
}
.productsPage .accordion {
  --bs-accordion-border-color: var(--clr-neutral-700);
}
.productsPage .accordion .accordion-button {
  font-size: 18px;
}
.productsPage .accordion .accordion-item:first-of-type,
.productsPage .accordion .accordion-item:first-of-type .accordion-button,
.productsPage .accordion .accordion-item:last-of-type,
.productsPage .accordion .accordion-item:last-of-type .accordion-button {
  border-radius: 0 !important;
}
.productsPage .accordion .accordion-button:not(.collapsed),
.productsPage .accordion .accordion-item {
  box-shadow: none;
  background-color: #f7f7f7;
  color: var(--clr-neutral-900);
}
.productsPage .accordion .accordion-button:focus {
  box-shadow: none;
}
.productsPage .accordion p {
  font-weight: 400;
}
.productsPage .accordion .accordion-button::after {
  width: 30px;
  height: 30px;
  background-color: #cfcfcf;
  border-radius: 50%;
  background-position: center center;
  background-image: url("../images/icons/png/right-arrow2.png");
  background-repeat: no-repeat;
  background-size: 40%;
}
.productsPage .accordion .accordion-button:not(.collapsed)::after {
  transform: none;
  background-image: url("../images/icons/png/dash.png");
  background-size: 60%;
}
.productsPage {
  /* Container for the whole table */
}
.productsPage .table-wrapper {
  display: flex;
  gap: 10px;
}
.productsPage {
  /* The Left Label Column (Sizes, Finish, etc.) */
}
.productsPage .labels-column {
  flex: 0 0 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 330px; /* Aligns with data rows below image/header */
}
.productsPage .label-item {
  height: 80px;
  display: flex;
  align-items: center;
  font-weight: bold;
  color: var(--clr-primary-500);
  background-color: var(--clr-neutral-100);
  font-size: 15px;
  padding: 20px;
}
.productsPage {
  /* Product Columns */
}
.productsPage .product-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.productsPage .header-box {
  background-color: var(--clr-primary-500);
  color: white;
  text-align: center;
  padding: 15px 5px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 2px;
  min-height: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.productsPage .header-box span {
  font-weight: normal;
  font-size: 14px;
}
.productsPage .img-box {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.productsPage .img-box img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.productsPage .data-box {
  background-color: var(--clr-neutral-100);
  height: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--clr-neutral-600);
}
.productsPage .packing-box {
  height: 160px; /* Larger box for packing details */
}
.productsPage {
  /* --- RESPONSIVE MOBILE VIEW --- */
}
@media (max-width: 768px) {
  .productsPage .table-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .productsPage .labels-column {
    display: none; /* Hide the sidebar labels on mobile */
  }
  .productsPage .product-column {
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  .productsPage .img-box {
    height: 220px;
  }
  .productsPage .header-box {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .productsPage .data-box {
    height: auto;
    min-height: 50px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: transparent;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 5px;
  }
  .productsPage {
    /* Injects the label text before the value on mobile */
  }
  .productsPage .data-box::before {
    content: attr(data-label);
    font-weight: bold;
    color: var(--clr-primary-500);
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
}

.contact-page {
  position: relative;
}
.contact-page label {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-neutral-600);
}
.contact-page input,
.contact-page select,
.contact-page textarea {
  position: relative;
  width: 100%;
  border-radius: 0;
  font-size: 16px;
  padding: 15px 15px;
  border: 1px solid var(--clr-neutral-400);
}
.contact-page input:focus,
.contact-page select:focus,
.contact-page textarea:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--clr-primary-500);
}
.contact-page input::-moz-placeholder, .contact-page select::-moz-placeholder, .contact-page textarea::-moz-placeholder {
  color: var(--clr-neutral-400);
  font-weight: 400;
}
.contact-page input::placeholder,
.contact-page select::placeholder,
.contact-page textarea::placeholder {
  color: var(--clr-neutral-400);
  font-weight: 400;
}
.contact-page input:invalid,
.contact-page select:invalid,
.contact-page textarea:invalid {
  color: grey; /* Default text color */
}
.contact-page input[type=tel],
.contact-page select[type=tel],
.contact-page textarea[type=tel] {
  width: calc(100% - 0px);
}
.contact-page .iti--separate-dial-code .iti__selected-dial-code,
.contact-page .iti__country {
  font-size: 16px !important;
}
.contact-page .btn1 {
  border: 0;
  color: #fff;
}
.contact-page .btn1 span {
  color: #fff;
}
.contact-page .box {
  position: relative;
  border: 1px solid var(--clr-neutral-400);
  background-color: var(--clr-neutral-100);
  padding: 30px 5px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.contact-page .box h2 {
  font-size: 28px;
  margin: 0;
  margin-top: 10px;
  color: var(--clr-neutral-700);
}
.contact-page .box p {
  text-align: center;
  color: var(--clr-neutral-800);
  font-weight: 400;
  color: var(--clr-neutral-500);
  font-size: 15px;
}
.contact-page .box .arrow {
  width: 30px;
}

.investor {
  position: relative;
}
.investor .tab-list-wrapper {
  position: relative;
  top: -70px;
}
.investor .accordion {
  --bs-accordion-border-color: var(--clr-neutral-700);
}
.investor .accordion .accordion-button {
  font-size: 18px;
}
.investor .accordion .accordion-item:first-of-type,
.investor .accordion .accordion-item:first-of-type .accordion-button,
.investor .accordion .accordion-item:last-of-type,
.investor .accordion .accordion-item:last-of-type .accordion-button {
  border-radius: 0 !important;
}
.investor .accordion .accordion-button:not(.collapsed),
.investor .accordion .accordion-item {
  box-shadow: none;
  background-color: #f7f7f7;
  color: var(--clr-neutral-900);
}
.investor .accordion .accordion-button:focus {
  box-shadow: none;
}
.investor .accordion p {
  font-weight: 400;
}
.investor .accordion .accordion-button::after {
  width: 30px;
  height: 30px;
  background-color: #cfcfcf;
  border-radius: 50%;
  background-position: center center;
  background-image: url("../images/icons/png/right-arrow2.png");
  background-repeat: no-repeat;
  background-size: 40%;
}
.investor .accordion .accordion-button:not(.collapsed)::after {
  transform: none;
  background-image: url("../images/icons/png/dash.png");
  background-size: 60%;
}

.certificate {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  text-align: center;
}
.certificate img {
  width: 100%;
  border: 1px solid var(--clr-neutral-800);
  margin-bottom: 5px;
  box-shadow: rgba(17, 12, 46, 0) 0px 48px 100px 0px;
  outline: 2px solid var(--clr-neutral-100);
  transition: all 0.6s;
}
.certificate:hover img {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  border: 1px solid var(--clr-secondary-500);
  outline: 2px solid var(--clr-secondary-500);
}

.tableGrade .thead-dark {
  background-color: #f8f9fa;
}
.tableGrade th {
  vertical-align: middle;
  text-align: center;
  font-size: 0.9rem;
}
.tableGrade td {
  font-size: 0.85rem;
  text-align: center;
}
.tableGrade tbody tr:nth-of-type(3n + 1) > * {
  background-color: #e6e7e8; /* White */
}
.tableGrade {
  /* Second row in the cycle of 3 */
}
.tableGrade tbody tr:nth-of-type(3n + 2) > * {
  background-color: #fefefe; /* Light Gray */
}
.tableGrade {
  /* Third row in the cycle of 3 */
}
.tableGrade tbody > tr:nth-of-type(3n + 3) > * {
  background-color: #bbdbf3; /* Light Blue (matching your image) */
}
.tableGrade .table-bordered,
.tableGrade .table-bordered th,
.tableGrade .table-bordered td {
  border: 1px solid #adafb1 !important; /* Replace with your hex code */
}

footer .footerTitle {
  position: relative;
  font-size: 20px;
  padding-bottom: 5px;
}
footer .footerLink {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #4a4a4a;
}
footer a {
  font-size: 15px;
  color: #616161;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer a:hover {
  color: var(--clr-secondary-500);
}
footer p {
  font-size: 15px;
  font-weight: 400;
  color: #616161;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: left;
}
footer .social {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 10px;
}
footer .social li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #4a4a4a;
  border-radius: 50%;
}
footer .social li a img {
  width: 16px;
  height: 16px;
}
footer .social li a:hover {
  background-color: var(--clr-primary-400);
}

.yt-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 7px;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 400;
}
.yt-link .icon {
  width: 50px;
}/*# sourceMappingURL=style.css.map */