@charset "UTF-8";
html {
  font-size: 62.5%;
  box-sizing: border-box;
  overflow-x: hidden;
}
html ::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  html {
    font-size: 55%;
  }
}

/* 2. Now apply box-sizing to all elements */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

.overflow-hidden {
  overflow: hidden !important;
}

body {
  box-sizing: inherit;
  font-family: "Montserrat-Regular", Arial, sans-serif;
  font-size: 1.6rem;
  color: #f8f8f8;
  position: relative;
  background-color: #0f2923;
  background-repeat: no-repeat;
  background-size: cover;
}
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

::selection {
  background-color: #0f2923;
  color: #ffffff;
}

.no-scroll {
  overflow: hidden;
}


@font-face {
  font-family: "Montserrat-Regular";
  src: url('../font/TTF/Montserrat-Regular.ttf') format('ttf'),
    url('../font/OTF/Montserrat-Regular.otf') format('otf'),
    url('../font/EOT/Montserrat-Regular.eot') format('eot'),
    url('../font/SVG/Montserrat-Regular.svg') format('svg'),
    url('../font/WOFF/Montserrat-Regular.woff') format('woff'),
    url('../font/WOFF2/Montserrat-Regular.woff2') format('woff2'), ;
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "Montserrat-Semi";
  src: url('../font/TTF/Montserrat-SemiBold.ttf') format('ttf'),
    url('../font/OTF/Montserrat-SemiBold.otf') format('otf'),
    url('../font/EOT/Montserrat-SemiBold.eot') format('eot'),
    url('../font/SVG/Montserrat-SemiBold.svg') format('svg'),
    url('../font/WOFF/Montserrat-SemiBold.woff') format('woff'),
    url('../font/WOFF2/Montserrat-SemiBold.woff2') format('woff2'), ;
  /* Legacy iOS */
  font-weight: 600;
  /* SemiBold */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Bold";
  src: url('../font/TTF/Montserrat-Bold.ttf') format('ttf'),
    url('../font/OTF/Montserrat-Bold.otf') format('otf'),
    url('../font/EOT/Montserrat-Bold.eot') format('eot'),
    url('../font/SVG/Montserrat-Bold.svg') format('svg'),
    url('../font/WOFF/Montserrat-Bold.woff') format('woff'),
    url('../font/WOFF2/Montserrat-Bold.woff2') format('woff2'), ;
  /* Legacy iOS */
  font-weight: 700;
  /* Bold */
  font-style: normal;
  font-display: swap;
}



.lines-container {
  position: fixed;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  max-width: 1320px;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
@media (max-width: 956px) {
  .lines-container {
    display: none;
  }
}
.lines-container .verticle-line {
  display: block;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.0588235294);
  position: relative;
  /* alag delay har line pe */
}
.lines-container .verticle-line:nth-child(1)::before {
  animation-delay: 0s;
  animation-duration: 6s;
}
.lines-container .verticle-line:nth-child(2)::before {
  animation-delay: 2s;
  animation-duration: 8s;
}
.lines-container .verticle-line:nth-child(3)::before {
  animation-delay: 0.5s;
  animation-duration: 7s;
}
.lines-container .verticle-line:nth-child(4)::before {
  animation-delay: 3s;
  animation-duration: 9s;
}
.lines-container .verticle-line:nth-child(5)::before {
  animation-delay: 1.5s;
  animation-duration: 5s;
}
.lines-container .verticle-line::before {
  content: "";
  display: block;
  height: 5rem;
  width: 1px;
  position: absolute;
  top: -5%;
  left: 0;
  background: linear-gradient(to bottom, #0f2923, #8af135, #6bfdd9);
  animation: upDown linear infinite;
}

.section-bg-img {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: -2;
  top: 0;
  left: 0;
}
.section-bg-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.custom-tooltip {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  transition: opacity, transform 0.2s ease;
  background-image: linear-gradient(90deg, #6bfdd9, #8af135);
  display: block;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  z-index: 9999;
}

.container-auto {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-transform: capitalize;
  font-family: "Montserrat-semi";
  transition: all 0.5s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
}
@media (max-width: 767px) {
  .btn {
    padding: 1rem 2rem;
  }
}
.btn--primary {
  background-size: 200% auto;
  color: #0f2923;
  background-image: linear-gradient(to left, #6bfdd9 0%, #8af135 50%, #6bfdd9 100%);
}
.btn--primary:hover {
  background-position: right center;
}
.btn--secondary {
  background-color: #0f2923;
  color: #ffffff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.btn--secondary:hover {
  color: #0f2923 !important;
}
.btn--secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15%;
  width: 0;
  height: 100%;
  background: #ffffff;
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn--secondary:hover::before {
  width: 130%;
  left: 0;
  transform: skew(0deg);
}

.bg-gradient {
  background: linear-gradient(90deg, #6bfdd9, #8af135);
}
.bg-primary {
  background-color: #0f2923;
}
.bg-primary-light {
  background-color: #243c3d;
}

.bg-gradient-hvr {
  background-size: 200% auto;
  background-image: linear-gradient(to left, #6bfdd9 0%, #8af135 50%, #6bfdd9 100%);
  transition: all 1s;
}
.bg-gradient-hvr:hover {
  background-position: right center; /* change the direction of the change here */
}

.cl-gradient {
  /* The gradient itself */
  background-image: linear-gradient(to left, #6bfdd9 0%, #8af135 50%, #6bfdd9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  /* Make the gradient visible through the glyphs */
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  background-position: left center;
  background-repeat: no-repeat;
  transition: all 0.5s;
}
.cl-gradient:hover {
  background-position: right center; /* change the direction of the change here */
}
.cl-primary {
  color: #0f2923;
}
.cl-white {
  color: #ffffff;
}

.f-sb {
  font-family: "Montserrat-semi";
}
.f-bold {
  font-family: "Montserrat-bold", Arial, sans-serif;
}

.heading--primary {
  font-size: clamp(3rem, 6vw + 1rem, 7.2rem);
  line-height: 1.2;
  font-family: "Montserrat-semi";
}
.heading--tertiary {
  font-size: 1.6rem;
  text-transform: capitalize;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.heading--tertiary::before {
  content: "";
  display: block;
  height: 1rem;
  width: 1rem;
  background-image: linear-gradient(90deg, #6bfdd9, #8af135);
  border-radius: 50%;
}
.heading--secondary {
  font-size: clamp(3rem, 3vw + 1rem, 4.2rem);
  font-family: "Montserrat-semi";
  line-height: 1.2;
}
.heading--secondary-sm {
  font-size: 2rem;
  font-family: "Montserrat-semi";
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .heading--secondary-sm {
    font-size: 1.8rem;
  }
}
.heading--secondary-md {
  font-size: 2.2rem;
  font-family: "Montserrat-semi";
  text-transform: capitalize;
}
.heading--sm {
  font-size: 1.8rem;
  font-family: "Montserrat-semi";
  text-transform: capitalize;
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-size: 200% auto;
  background-image: linear-gradient(to left, #8af135 0%, #6bfdd9 40%, #8af135 100%);
  transition: all 0.3s;
}
.arrow img {
  height: 2rem;
  width: 2rem;
  transition: all 0.3s;
}
.arrow:hover {
  background-position: right center; /* change the direction of the change here */
}
.arrow:hover img {
  transform: rotate(40deg);
}
.arrow--primary {
  height: 5rem;
  width: 5rem;
}
.arrow--lg {
  height: 6rem;
  width: 6rem;
}

.text {
  font-size: 1.6rem;
}
.text-cp {
  text-transform: capitalize;
}

.shine-glass-effect {
  position: relative;
  cursor: pointer;
}
.shine-glass-effect:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 9;
}
.shine-glass-effect:hover:after {
  height: 250%;
  transition: all 600ms linear !important;
  background-color: transparent;
}

.img-box {
  position: relative;
}

.img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
  overflow: hidden;
}

.img-box img.img-hover {
  opacity: 0;
  z-index: 2;
}

.img-box:hover img.img-hover {
  opacity: 1;
  transform: scale(1.05); /* slight zoom */
}

.img-box:hover img.img-default {
  opacity: 0;
  transform: scale(1.05); /* match zoom */
}

.video__thumnail {
  border-radius: 15px;
  overflow: hidden;
  height: 600px;
}
@media (max-width: 500px) {
  .video__thumnail {
    height: 400px;
  }
}
.video__container {
  position: relative;
  border-radius: 15px;
  margin-bottom: 10rem;
}
.video__container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.video__container i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0f2923;
  font-size: 3rem;
  cursor: pointer;
  height: 8.4rem;
  width: 8.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  animation: pulseShadow 2s infinite ease-in-out;
}
@media (max-width: 500px) {
  .video__container i {
    top: 35%;
  }
}
.video__container i:hover {
  color: #0f2923;
  border-color: #0f2923;
}

.icon {
  height: 4rem;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 50%;
}
.icon i {
  font-size: 1.8rem;
  color: #ffffff;
}
.icon--primary {
  background-color: #0f2923;
}
.icon--primary:hover {
  background-color: #ffffff;
}
.icon--primary:hover i {
  color: #0f2923;
}

.macbook-wrapper {
  position: relative;
  width: 100%;
  height: 70rem;
}

.video-inside-mac {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 77%;
  transform: translate(-50%, -50%);
  height: 84%;
  overflow: hidden;
  border-radius: 8px;
}

.video-inside-mac video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.macbook-image {
  width: 100%;
  height: 100%;
  display: block;
}

.iphone-wrapper {
  position: relative;
  width: 100%;
  height: 80%;
  overflow: hidden;
}

.video-inside-iphone {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 74%;
  transform: translate(-50%, -52%);
  height: 99%;
  overflow: hidden;
  border-radius: 61px;
}
.video-inside-iphone video {
  width: 100%;
  height: 92%;
  object-fit: cover;
  display: block;
  overflow: hidden;
}

.iphone-image {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.iphone-wrapper {
  position: relative;
  width: 100%;
  height: 80%;
  overflow: hidden;
}
@media (max-width: 1400px) {
  .iphone-wrapper {
    width: 83%;
  }
}

.custom-list {
  list-style: none;
  padding-left: 0;
  margin-top: 3.5rem;
  margin-bottom: 0.4rem;
}
.custom-list p {
  margin-bottom: 1rem;
}
.custom-list li {
  position: relative;
  color: #ffffff;
  padding-left: 3rem;
}
.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  transform: translateY(-50%);
  height: 1.3rem;
  width: 1.3rem;
  background-image: linear-gradient(90deg, #6bfdd9, #8af135);
  transform: rotate(-45deg);
  padding-left: -1rem;
}

.unorder-list {
  list-style: none;
  padding-left: 0;
}
.unorder-list li {
  position: relative;
  color: #ffffff;
  padding-left: 3rem;
}
.unorder-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0.5rem;
  width: 0.5rem;
  background-image: linear-gradient(90deg, #6bfdd9, #8af135);
  transform: rotate(-45deg);
  padding-left: -1rem;
  border-radius: 50%;
}

.kewrd {
  margin: 2.3rem 0;
  font-size: 1rem;
}
.kewrd ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.kewrd ul li {
  padding: 0.2rem 0.8rem;
  text-transform: capitalize;
  border-radius: 50px;
  border: 1px solid #8f8f8f;
  background-image: linear-gradient(90deg, #6bfdd9, #8af135);
  color: #0f2923;
  font-family: "Montserrat-semi";
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #e0e0e0;
}
.comparison-table th,
.comparison-table td {
  padding: 1.5rem;
  text-align: left;
  vertical-align: top;
}
.comparison-table thead th {
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
}
.comparison-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  font-weight: 600;
  background: none;
  width: 180px;
  font-size: 1.8rem;
  background-color: #0f2923;
}
.comparison-table td {
  background-color: #243c3d;
}
@media (max-width: 768px) {
  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table th,
  .comparison-table td,
  .comparison-table tr {
    display: block;
  }
  .comparison-table thead {
    display: none;
  }
  .comparison-table tr {
    margin-bottom: 1rem;
    background: #243c3d;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  .comparison-table td {
    padding: 1rem;
    border: none;
    position: relative;
  }
  .comparison-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
    color: #8af135;
  }
  .comparison-table td:first-child {
    background: #6bfdd9;
    color: #0f2923;
    width: 100%;
  }
}

@keyframes upDown {
  0% {
    top: -5%;
  }
  100% {
    top: 100%;
  }
}
@keyframes moveslideRight {
  0% {
    right: 0;
  }
  50% {
    right: 6%;
  }
  100% {
    right: 0;
  }
}
@keyframes moveslideLeft {
  0% {
    left: 0;
  }
  50% {
    left: 6%;
  }
  100% {
    left: 0;
  }
}
@keyframes spiner {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 0 0 rgba(163, 255, 203, 0.6);
  }
  50% {
    box-shadow: 0 0 25px 10px rgba(163, 255, 203, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(163, 255, 203, 0.6);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-section {
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.8s, opacity 1.3s ease-in-out;
}

.fade-section.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideup {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(-50%);
  }
}
.header {
  position: relative;
  z-index: 100;
  background-color: #2a4741;
  max-width: 1280px;
  margin: auto;
  border-radius: 88px;
  padding: 10px;
  margin: 2rem auto;
}
@media (max-width: 767px) {
  .header {
    border-bottom: 1px solid gray;
  }
}
.header .custom-tooltip {
  opacity: 0;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__list {
  display: flex;
  align-items: center;
}
.header__list .active {
  color: #6bfdd9;
}
@media (max-width: 1200px) {
  .header__list .active {
    color: #000000;
  }
}
.header__nav {
  padding: 0rem 3rem;
  border-radius: 50px;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .header__nav {
    padding: 0rem 2rem;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #6bfdd9, #8af135);
    border-radius: 0%;
    color: #0f2923;
    z-index: 100;
    overflow: scroll;
  }
  .header__nav .header__list {
    flex-direction: column;
    align-items: start;
    padding: 10rem 0;
  }
  .header__nav .header__list a {
    height: 4.4rem;
    font-size: 2.2rem;
  }
  .header__nav .header__list a:hover {
    color: #0f2923;
  }
  .header__nav-hidden {
    left: -100%;
  }
}
.header__nav ul li {
  position: relative;
}
.header__nav ul li > a {
  display: block;
  transition: all 0.3s ease;
  height: 6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.2rem;
  font-family: "Montserrat-semi";
}
.header__nav ul li > a i {
  transition: all 0.3s;
}
.header__nav ul li > a:hover {
  color: #6bfdd9;
}
.header__nav ul li {
  /* Main Dropdown */
}
@media (min-width: 1200px) {
  .header__nav ul li.dropdown:hover::after {
    transform: rotate(-45deg) translateX(3px);
  }
  .header__nav ul li.dropdown ul {
    min-width: 230px;
    background-image: linear-gradient(to left, #8af135, #6bfdd9);
    visibility: hidden;
    opacity: 0;
    flex-direction: column;
    z-index: 1000;
    border-radius: 15px;
    padding: 1.5rem 0;
    transition: all 0.3s;
    position: absolute;
  }
  .header__nav ul li.dropdown ul li a {
    padding: 0.5rem 15px;
    height: auto;
    display: flex;
    justify-content: space-between;
    color: #666f6f;
    font-family: "Montserrat-semi";
  }
  .header__nav ul li.dropdown ul li a:hover {
    color: #0f2923;
  }
  .header__nav ul li.dropdown > ul {
    top: 100%;
    left: 0;
    transform: scaleY(0);
    transform-origin: 0 0 0;
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    visibility: hidden;
    opacity: 0;
  }
  .header__nav ul li.dropdown:hover > ul {
    display: flex;
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  .header__nav ul li {
    /* Sub Dropdown */
  }
  .header__nav ul li.sub-dropdown i {
    transform: rotate(-90deg);
  }
  .header__nav ul li.sub-dropdown > ul {
    top: 0;
    left: 100%;
    transform: scalex(0);
    transform-origin: 0 0 0;
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    visibility: hidden;
    opacity: 0;
  }
  .header__nav ul li.sub-dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scalex(1);
  }
}
@media (max-width: 1200px) {
  .header__nav ul li {
    /* Main dropdown */
  }
  .header__nav ul li.dropdown ul {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }
  .header__nav ul li.dropdown.active > ul {
    max-height: max-content;
    padding: 1rem 2rem;
  }
  .header__nav ul li {
    /* Sub dropdown */
  }
  .header__nav ul li.sub-dropdown ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .header__nav ul li.sub-dropdown.active ul {
    max-height: 300px;
  }
}
.header__btn {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1200px) {
  .header__btn .btn {
    display: none;
  }
}
.header__menu {
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.header__menu span {
  height: 3px;
  width: 3rem;
  background-color: #0f2923;
}
@media (max-width: 1200px) {
  .header__menu {
    display: flex;
  }
}
.header__close {
  padding: 3rem 0;
  border-bottom: #1a1a1a;
  width: 0;
  display: none;
  align-items: end;
  justify-content: end;
  position: absolute;
  right: 15%;
  z-index: 100;
}
@media (max-width: 1200px) {
  .header__close {
    display: block;
  }
}
.header__close i {
  font-size: 4rem;
  color: #f8f8f8;
  background-color: #243c3d;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.header__close i:hover {
  background-color: #0f2923;
}

.footer {
  color: #0f2923;
  padding-top: 11rem;
  padding-bottom: 4rem;
}
.footer__heading {
  font-size: clamp(2.5rem, 6vw + 1rem, 6.7rem);
  font-family: "Montserrat-bold", Arial, sans-serif;
  font-weight: 900;
}
.footer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6.4rem;
}
.footer__container {
  padding: 6rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 389px repeat(3, 1fr);
  gap: 4rem;
  justify-items: center;
}
@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    justify-items: start;
  }
}
@media (max-width: 767px) {
  .footer__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer__icons {
  display: flex;
  gap: 1.2rem;
}
.footer__icon a {
  height: 4rem;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f2923;
  border-radius: 50%;
}
.footer__icon i {
  font-size: 1.8rem;
  color: #ffffff;
}
.footer__links {
  margin-top: 3.4rem;
}
.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.hero-2 {
  overflow: hidden;
  position: relative;
}
.hero-4 {
  margin-top: -11rem;
}
@media (max-width: 1200px) {
  .hero-4 {
    margin-top: 5rem;
  }
}
.hero-4__container {
  display: grid;
  grid-template-columns: 45% 1fr;
  height: 100vh;
  align-items: center;
}
@media (max-width: 1200px) {
  .hero-4__container {
    grid-template-columns: 100%;
    gap: 5rem;
  }
}
.hero-4__container .heading--primary {
  font-size: clamp(3rem, 6vw + 1rem, 6.2rem);
  line-height: 1;
}
.hero-4__video {
  height: 100vh;
}
@media (max-width: 1200px) {
  .hero-4__video {
    overflow: hidden;
    height: 50vh;
  }
}
.hero-4__video video {
  max-width: unset;
  height: 100%;
}
@media (max-width: 1200px) {
  .hero-4__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }
}
.hero-3 {
  height: 180rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  .hero-3 {
    height: 100rem;
  }
}
.hero__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media (max-width: 956px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 5rem;
    margin-top: 8rem;
  }
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6%;
  height: 88vh;
  align-items: center;
}
@media (max-width: 992px) {
  .hero__grid {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
    gap: 7rem;
  }
}
@media (max-width: 576px) {
  .hero__content {
    padding: 0;
  }
}
.hero .hero__col-right {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.hero .hero__col-right::before, .hero .hero__col-right::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 10rem;
  z-index: 2;
  pointer-events: none;
}
.hero .hero__col-right::before {
  top: 0%;
  background: linear-gradient(to bottom, rgba(36, 60, 61, 0.9) 0%, rgba(36, 60, 61, 0.6) 30%, rgba(36, 60, 61, 0.2) 60%, transparent 100%);
}
.hero .hero__col-right::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(15, 41, 35, 0.95) 0%, rgba(15, 41, 35, 0.7) 35%, rgba(15, 41, 35, 0.2) 70%, transparent 100%);
}
.hero .hero__img-grid {
  column-count: 2;
  width: 100%;
  animation: slideup 40s linear infinite;
  overflow: hidden;
}
.hero .hero__imge {
  break-inside: avoid;
  margin-bottom: 2rem;
  overflow: hidden;
}
.hero .hero__imge:nth-child(3n+1) {
  height: 28rem;
}
.hero .hero__imge:nth-child(3n+2) {
  height: 38rem;
}
.hero .hero__imge:nth-child(3n+3) {
  height: 40rem;
}
.hero .hero__imge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.hero .hero__imge:hover img {
  transform: scale(1.03);
}
.hero__imges {
  align-self: center;
  justify-self: center;
  position: relative;
  /* height: 80%; */
}
.hero__img {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.hero__img img {
  width: 100%;
  height: 100%;
}
.hero__bg-img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.hero__box {
  padding: 1.5rem 3rem;
  width: 21rem;
  color: #0f2923;
  background-color: #ffffff;
  text-transform: capitalize;
  font-family: "Montserrat-semi";
  border-radius: 15px;
  position: absolute;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero__box {
    padding: 1.5rem;
    width: 17rem;
  }
  .hero__box p {
    font-size: 1.2rem;
  }
  .hero__box span {
    font-size: 3.2rem !important;
  }
}
.hero__box::after {
  content: "";
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to right, #8af135, #6bfdd9);
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  transition: all 0.3s;
  z-index: -1;
}
.hero__box:hover::after {
  top: 0;
}
.hero__count {
  display: flex;
  gap: 2rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation: moveslideRight 3s linear infinite;
  align-items: center;
  justify-content: center;
}
.hero__count span {
  font-size: 4.2rem;
}
.hero__users {
  bottom: 5%;
  animation: moveslideLeft 3s linear infinite;
}
.hero__users-images {
  margin-top: 2rem;
  display: flex;
}
@media (max-width: 767px) {
  .hero__users-images {
    margin-top: 1rem;
  }
}
.hero__users-images img:not(:first-child) {
  margin-left: -1.6rem;
}
@media (max-width: 767px) {
  .hero__users-images img:not(:first-child) {
    margin-left: -1.9rem;
  }
}
.hero__users-images img {
  height: 4rem;
  width: 4rem;
  object-fit: cover;
  border-radius: 50%;
}
.hero__flex {
  display: flex;
  flex-direction: column;
}
.hero__flex .heading--primary {
  line-height: 1;
}
.hero .hero__flex-left {
  max-width: 755px;
  width: 100%;
  margin-left: 6rem;
  margin-right: auto;
  margin-top: 5rem;
}
.hero__video-2 {
  width: 28%;
  border-radius: 25px;
  overflow: hidden;
  position: absolute;
  top: 29%;
  right: 10%;
  z-index: 10;
}
@media (max-width: 992px) {
  .hero__video-2 {
    width: 60%;
  }
}
.hero__video VIDEO {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero__text {
  max-width: 784px;
  width: 100%;
  margin: 1.8rem auto;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.banner {
  height: 380px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner__container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner a {
  transition: all 0.3s;
}
.banner a:hover {
  color: #6bfdd9;
}

.services__2 {
  padding: 11.2rem 0;
  margin: auto;
  border-radius: 10px;
}
.services__2-title {
  text-align: center;
}
.services__2-text {
  max-width: 646.91px;
  margin: 3rem auto;
}
.services__2-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(34rem, 1fr));
  gap: 2.3rem;
  margin-top: 6rem;
}
.services__2 .heading--secondary-md {
  margin-bottom: 2rem;
}
.services__2-card {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  cursor: pointer;
  background-color: #243c3d;
  transition: all 0.3s;
  line-height: 22.5px;
  letter-spacing: 0.3px;
}
.services__2-content {
  padding: 2.8rem 2.4rem;
}
.services__2-icon {
  height: 3.2rem;
  width: 3.2rem;
  margin-bottom: 2.4rem;
}
.services__2-icon img {
  width: 100%;
  filter: brightness(0) invert(1) contrast(1.2);
}
.services__2 .heading--tertiary-main {
  margin: 1rem 0;
}
.services__head-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media (max-width: 1200px) {
  .services__head-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.services__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 8rem;
}
.services__text p {
  margin-bottom: 4rem;
}
.services__slider {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  margin-top: 6.4rem;
}
.services {
  /* Pagination Styling */
}
.services__pagination {
  margin-top: 4.8rem;
}
.services__pagination .swiper-pagination {
  position: relative !important; /* outside swiper */
  text-align: center;
}
.services__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #243c3d; /* default color */
  opacity: 1;
  margin: 0 3px !important;
  border-radius: 10px;
  transition: all 0.5s ease;
}
.services__pagination .swiper-pagination-bullet-active {
  width: 3rem;
  background: linear-gradient(90deg, #6bfdd9, #8af135); /* active color */
}
.services__item {
  display: block;
  width: 100%;
  background-image: url(/asset/images/service-item-bg-shape.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #243c3d;
  padding: 4.2rem 3rem;
  border-radius: 15px;
}
.services__item-head {
  display: flex;
  align-self: center;
  justify-content: space-between;
}
.services__icon {
  height: 6rem;
  width: 6rem;
}
.services__icon img {
  height: 100%;
  width: 100%;
}

.contact {
  padding-top: clamp(9rem, 9%, 19rem);
  padding-bottom: 9rem;
  position: relative;
  z-index: 2;
}
.contact__headings {
  max-width: 595px;
  margin: auto;
  text-align: center;
}
.contact__col p {
  line-height: 22.5px;
  letter-spacing: 0.2px;
}
.contact__col p strong {
  font-weight: 700;
}
.contact__col p a {
  text-decoration: underline;
}
.contact__img {
  max-width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.contact__img img {
  height: 100%;
  width: 100%;
}
.contact__icons {
  position: absolute;
  right: -3%;
  bottom: -3%;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  background-color: #0f2923;
  padding: 2rem;
  border-radius: 15px;
  z-index: 10;
}
.contact__icons i {
  font-size: 3rem;
}
.contact__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 6rem;
  gap: clamp(3rem, 2vw, 6rem);
}
.contact__form-main .card-content {
  padding: 2rem;
  display: flex;
  flex-flow: column;
  gap: 3.5rem;
}
.contact__form-main .form-group {
  margin-bottom: 1.5rem;
}
.contact__form-main .label {
  display: block;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.contact__form-main .required {
  color: #ef4444;
}
.contact__form-main .form-group-input {
  position: relative;
  margin-bottom: 2rem;
}
.contact__form-main .form-group-input::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2px;
  width: 0;
  background-color: #0f2923;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.contact__form-main .form-group-input:focus-within::after {
  width: 100%;
}
.contact__form-main .input,
.contact__form-main .textarea {
  width: 100%;
  padding: 2.5rem;
  border: none;
  outline: none;
  background: transparent;
  color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}
.contact__form-main .input::placeholder,
.contact__form-main .textarea::placeholder {
  color: #e0e0e0;
}
.contact__form-main .input:focus,
.contact__form-main .textarea:focus {
  border-bottom: none;
}
.contact__form-main .textarea {
  width: 100%;
  resize: none;
  height: 50rem;
}
.contact__form-main .error-message {
  font-size: 1.2rem;
  color: red;
  display: none;
}
.contact__form-main .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 2remhug7 dse3y7 6GR;
  margin-top: 3rem;
}
.contact__form-main .radio-item {
  position: relative;
}
.contact__form-main .radio-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.contact__form-main .radio-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  border: 2px solid #e5e7eb;
  border-radius: 9999px;
  background: white;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  text-align: center;
  min-height: 40px;
  color: #000000;
}
.contact__form-main .radio-label:hover {
  background-color: #f9fafb;
}
.contact__form-main .radio-input:checked + .radio-label {
  border-color: #0f2923;
  background-color: #0f2923;
  color: white;
}
.contact__form-main .submit-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: #0f2923;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}
.contact__form-main .submit-btn:hover:not(:disabled) {
  background-color: #2563eb;
}
.contact__form-main .submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact__form-main .toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0.375rem;
  color: white;
  font-weight: 500;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.contact__form-main .toast.show {
  transform: translateX(0);
}
.contact__form-main .toast.success {
  background-color: #10b981;
}
.contact__form-main .toast.error {
  background-color: #ef4444;
}
.contact__form-main .error-message {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: none;
}
.contact__form-main .form-group.error .input,
.contact__form-main .form-group.error .textarea {
  border-color: #ef4444;
}
.contact__form-main .form-group.error .error-message {
  display: block;
}
@media (max-width: 640px) {
  .contact__form-main .radio-group {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__form-main .card-content {
    padding: 1.5rem;
  }
}
.contact__form .form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact__form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact__form .form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__form .form-group.full-width {
  grid-column: 1/-1;
}
.contact__form label {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  background-image: url(/asset/images/service-item-bg-shape.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #243c3d;
  border: 2px solid linear-gradient(90deg, #6bfdd9, #8af135);
  color: #ffffff;
  padding: 1.4rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  outline: none;
  transition: border-color 0.2s;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: #9ca3af;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: #374151;
}
.contact__form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}
.contact__form select option {
  background-color: #000000;
  color: white;
}
.contact__form textarea {
  height: 15rem;
  resize: none;
  padding-top: 0.75rem;
}
.contact__form {
  /* Mobile responsiveness */
}
@media (max-width: 768px) {
  .contact__form .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact__form body {
    padding: 1rem;
  }
}
@media (max-width: 992px) {
  .contact .contact__container {
    grid-template-columns: 1fr;
  }
  .contact .contact__img {
    max-width: 696px;
    width: 100%;
    margin: auto;
  }
}

.map {
  height: 70rem;
  width: 100%;
}
@media (max-width: 767px) {
  .map {
    height: 40rem;
  }
}
.map iframe {
  height: 100%;
  width: 100%;
}

.clients {
  padding: 10rem 0;
}
.clients__headings {
  text-align: center;
  max-width: 420px;
  width: 100%;
  margin: auto;
}
.clients__headings h2 {
  margin-top: 0.8rem;
}
.clients__headings p {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .clients__slider {
    margin-top: 5rem;
  }
}
.clients__slider .splide {
  max-width: 100%;
  margin: auto;
}
.clients__slider .splide ul {
  display: flex;
  align-items: center;
}
.clients__slider .splide__track {
  padding: 2rem 0;
  cursor: grab;
}
@media (max-width: 767px) {
  .clients__slider .splide__track {
    overflow: visible;
  }
}
.clients__slider .splide__track:active {
  cursor: grabbing;
}
.clients__slider .splide__slide {
  background-image: url(/asset/images/service-item-bg-shape.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #243c3d;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0.4;
  transition: all 0.5s ease;
  position: relative;
  padding: 3rem;
  user-select: none;
  box-sizing: border-box;
  overflow: visible;
  /* allow border to extend slightly */
}
.clients__slider .splide__slide.is-active {
  opacity: 1 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.clients__slider .splide__slide::before {
  --gap: 10px;
  --width: 2px;
  --color: #f2572d;
  --size: 0px;
  content: "";
  position: absolute;
  inset: calc(-1 * (var(--gap) + var(--width)));
  padding: calc(var(--gap) + var(--width));
  outline: var(--width) solid var(--color);
  outline-offset: calc(var(--gap) / -3);
  mask: conic-gradient(at var(--size) var(--size), rgba(0, 0, 0, 0) 75%, #000 0) 0 0/calc(100% - var(--size)) calc(100% - var(--size)), linear-gradient(#000 0 0) content-box;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 768px) {
  .clients__slider .splide__slide::before {
    --gap: 3px;
    --width: 3px;
  }
}
.clients__slider .splide__slide.is-active::before {
  --size: 25px;
}
@media (max-width: 768px) {
  .clients__slider .splide__slide.is-active::before {
    --size: 15px;
  }
}
.clients__slider .testimonial-text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.clients__slider .testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.clients__slider .testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.clients__slider .testimonial-author .info {
  font-size: 14px;
}
.clients__slider .testimonial-author .info strong {
  display: block;
}
.clients__slider {
  /* Arrows */
}
.clients__slider .splide__arrows {
  margin-top: 20px;
  text-align: center;
  display: flex;
  align-items: end;
  justify-content: end;
}
.clients__slider .splide__arrow {
  background: #eee;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: #333;
  position: absolute;
  font-size: 1.6rem;
}
.clients {
  /* Custom Pagination */
}
.clients .custom-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 4rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .clients .custom-pagination {
    display: none;
  }
}
.clients .custom-pagination img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  border: 4px solid transparent;
  transition: 0.2s;
  opacity: 0.5;
  transition: all 0.8s;
}
.clients .custom-pagination img.active {
  border-color: #ff5e00;
  transform: scale(1.2);
  opacity: 1;
}
.clients .custom-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.5rem;
  margin-top: 4rem;
}
.clients .custom-arrows button {
  height: 4.5rem;
  width: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.clients .custom-arrows button img {
  width: 60%;
}
.clients .custom-arrows button:nth-child(1) {
  transform: rotate(227deg);
}
.clients .custom-arrows button:nth-child(2) {
  transform: rotate(-315deg);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto 2rem;
}
.accordion .active {
  border-color: #000000;
  background-image: linear-gradient(90deg, #6bfdd9, #8af135) !important;
  color: #0f2923;
  transition: all 0.3s;
}
.accordion .active .accordion-content {
  height: max-content;
}
.accordion .active .accordion-header {
  color: #0f2923;
  background: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.accordion-item {
  border-radius: 20px;
  transition: all 0.3s;
  color: #0f2923;
  overflow: hidden;
  transition: all 0.3s;
}
.accordion-item:hover {
  border-color: #000000;
}
.accordion-item:hover .accordion-arrow {
  background-color: #000000;
  color: #ffffff;
}

.accordion-header {
  display: grid;
  grid-template-columns: 1fr 3rem;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
  font-weight: 600;
  font-size: 2rem;
  transition: color 0.3s ease;
  background-image: url(/asset/images/service-item-bg-shape.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #243c3d;
  padding: 2.6rem 2.2rem;
}

.accordion-arrow {
  transition: transform 0.35s ease, background-color 0.3s ease, color 0.3s ease;
  font-size: 1.6rem;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-arrow.rotate {
  background-color: #000000;
  color: #ffffff;
  transform: rotate(180deg);
}

.accordion-content {
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
}

.accordion-inner {
  padding: 2rem 2.2rem;
}

.story__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 1130px;
  width: 100%;
  margin: auto;
  margin-top: 7.2rem;
}
@media (max-width: 956px) {
  .story__container {
    max-width: 700px;
  }
}
.story__item {
  transition: all 0.3s;
}
.story__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 2rem rgba(26, 26, 26, 0.2);
}
.story__item {
  display: grid;
  padding: 2.5rem;
  background-color: #243c3d;
  background-image: url(/asset/images/service-item-bg-shape.svg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
}
@media (max-width: 500px) {
  .story__item {
    padding: 1.8rem 1rem;
  }
}
.story__item:nth-child(odd) {
  grid-template-columns: 1.4fr 1fr;
}
@media (max-width: 956px) {
  .story__item:nth-child(odd) {
    grid-template-columns: 1fr;
  }
}
.story__item:nth-child(even) {
  grid-template-columns: 1fr 1.4fr;
}
@media (max-width: 956px) {
  .story__item:nth-child(even) {
    grid-template-columns: 1fr;
  }
}
.story__item:nth-child(even) .story__img {
  grid-column: 2;
}
@media (max-width: 956px) {
  .story__item:nth-child(even) .story__img {
    grid-column: 1;
  }
}
.story__item:nth-child(even) .story__text {
  grid-row: 1;
}
@media (max-width: 956px) {
  .story__item:nth-child(even) .story__text {
    grid-row: 2;
  }
}
.story__case--text-img {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  padding: 2.5rem;
  background-color: #243c3d;
  background-image: url(/asset/images/service-item-bg-shape.svg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
}
@media (max-width: 956px) {
  .story__case--text-img {
    grid-template-columns: 1fr;
  }
}
.story__img {
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
}
.story__img img,
.story__img video {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
@media (max-width: 500px) {
  .story__img {
    height: 300px;
  }
}
.story__text {
  padding-top: 1.6rem;
  padding-left: 4.8rem;
  padding-right: 7rem;
  display: flex;
  align-self: stretch;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 500px) {
  .story__text {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}
.story__text .heading--tertiary-main {
  font-weight: 600;
}
.story__logo {
  max-width: 131px;
  margin-bottom: 2rem;
}
.story__logo img {
  height: 100%;
  width: 100%;
}
.story__kewrd {
  margin: 2.3rem 0;
  font-size: 1.1rem;
}
.story__kewrd ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.story__kewrd ul li {
  padding: 0.5rem 1.2rem;
  text-transform: capitalize;
  border-radius: 50px;
  border: 1px solid #8f8f8f;
  background-image: linear-gradient(90deg, #6bfdd9, #8af135);
  color: #0f2923;
}
.story__footer {
  border-top: 1px solid #e0e0e0;
  padding-top: 2rem;
}
.story__footer ul {
  margin-top: 1.5rem;
  text-transform: capitalize;
  font-size: 1.4rem;
  color: #ffffff;
  display: flex;
  gap: 0.7rem;
}
.story__footer ul li {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.story__footer ul li::before {
  content: "";
  height: 1rem;
  width: 1rem;
  display: block;
  background-image: linear-gradient(90deg, #6bfdd9, #8af135);
  border-radius: 50%;
}
.story__footer-heading {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.story__footer-heading h2 {
  font-size: 3rem;
  font-weight: 600;
}
.story__footer-heading span {
  font-size: 1.844rem;
  font-weight: 600;
}
@media (max-width: 956px) {
  .story .story__case--img-text,
  .story .story__case--text-img {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story .story__case--text-img .story__img {
    grid-row: 1;
  }
  .story .story__text {
    padding: 2rem;
  }
  .story .story__img {
    height: 300px;
  }
}

/* .industry {
  padding: 9rem 0;
} */
.industry__title {
  max-width: 611px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.industry__headings {
  font-size: 5rem;
  font-weight: 700;
}
@media (max-width: 992px) {
  .industry__headings {
    font-size: 3rem;
  }
}
.industry__headings span {
  color: #0f2923;
}
.industry__container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  position: relative;
}
@media (max-width: 992px) {
  .industry__container {
    grid-template-columns: 100%;
  }
}
.industry__left {
  position: sticky;
  top: 80px;
  height: auto;
  align-self: start;
}
@media (max-width: 992px) {
  .industry__left {
    top: 10%;
  }
}
.industry__right ul {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}
.industry__right ul li a {
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 2.4rem;
  width: 100%;
  background-color: #243c3d;
  border-radius: 15px;
  transition: all 0.3s;
}
.industry__right ul li a:hover {
  background-color: #e0e0e0;
  color: #0f2923;
  transform: scale(0.98);
}
@media (max-width: 992px) {
  .industry .industry__right {
    position: relative;
  }
  .industry .industry__right ul {
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
  }
  .industry .industry__right ul li {
    position: sticky;
    top: 20%;
    z-index: 1;
    transition: transform 0.3s ease, z-index 0.3s ease;
    margin-bottom: 1rem;
  }
  .industry .industry__right ul li:nth-child(1) {
    z-index: 1;
  }
  .industry .industry__right ul li:nth-child(2) {
    z-index: 2;
  }
  .industry .industry__right ul li:nth-child(3) {
    z-index: 3;
  }
  .industry .industry__right ul li:nth-child(4) {
    z-index: 4;
  }
  .industry .industry__right ul li:nth-child(5) {
    z-index: 5;
  }
  .industry .industry__right ul li:nth-child(6) {
    z-index: 6;
  }
  .industry .industry__right ul li:nth-child(7) {
    z-index: 7;
  }
  .industry .industry__right ul li a {
    display: block;
    background-color: #243c3d;
    border-radius: 15px;
    padding: 2.4rem;
  }
}

.faq {
  padding: 9rem 0;
}
.faq__container {
  display: grid;
  grid-template-columns: 429px 1fr;
  gap: 3rem;
  position: relative;
}
@media (max-width: 992px) {
  .faq__container {
    grid-template-columns: 100%;
  }
}
.faq__card {
  width: 100%;
  height: 391px;
  position: sticky;
  top: 50px;
  background-image: url(/asset/images/service-item-bg-shape.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #243c3d;
  border-radius: 25px;
}
@media (max-width: 992px) {
  .faq__card {
    position: unset;
  }
}
.faq__content {
  max-width: 244px;
  margin: 3.2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.faq .heading--secondary-sm {
  margin-top: 2.2rem;
}
.faq .text {
  margin-top: 1.8rem;
}
.faq__btn {
  margin-top: 2.8rem;
}

.portfolio {
  padding: 11.4rem 0;
}
.portfolio--heading {
  font-size: 3rem;
  font-weight: 700;
}
.portfolio__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .portfolio__container {
    grid-template-columns: 1fr;
  }
}
.portfolio__item {
  border-radius: 15px;
  overflow: hidden;
  height: 635px;
  background-color: #243c3d;
  background-image: url(/asset/images/service-item-bg-shape.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.portfolio__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.portfolio .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.portfolio .img-box img.img-hover {
  opacity: 0;
  z-index: 2;
}
.portfolio .img-box:hover img.img-hover {
  opacity: 1;
  transform: scale(1.05); /* slight zoom */
}
.portfolio .img-box:hover img.img-default {
  opacity: 0;
  transform: scale(1.05); /* match zoom */
}
.portfolio .workSlides__img {
  height: 70%;
  border-radius: 15px;
  overflow: hidden;
}
.portfolio .workSlides__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.portfolio .workSlides__content {
  padding: 2rem 2.5rem;
}
.portfolio .workSlides__kewrd {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  text-transform: capitalize;
}
.portfolio .workSlides__kewrd ul {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.portfolio .workSlides__kewrd li {
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.0588235294);
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.0588235294);
}

.portHero {
  padding-top: 18rem;
  padding-bottom: 5rem;
}
@media (max-width: 1400px) {
  .portHero {
    padding-top: 4rem;
  }
}
.portHero__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 5rem;
}
.portHero__title {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.portHero__right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 4rem;
}
.portHero__item span {
  font-size: 1.5rem;
}
.portHero__item h3 {
  font-size: 1.8rem;
}
.portHero__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .portHero__img {
    aspect-ratio: unset;
    height: 40rem;
  }
}
.portHero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portHero__details h2 {
  font-size: clamp(2rem, 3vw + 1rem, 4rem);
}
.portHero__box {
  border: 1px solid #e9eaeb;
  justify-content: space-between;
  text-align: center;
  border-radius: 15px;
}
.portHero__box-container {
  margin-top: 5.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .portHero__box-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .portHero__box-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.portHero__inner {
  padding: 2.7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.portHero__tertiary {
  font-size: 2.2rem;
  font-weight: 700;
}

.portDetails {
  margin-bottom: 10.5rem;
}
.portDetails__container {
  max-width: 882px;
  width: 100%;
  margin: auto;
}
.portDetails__video-lg {
  width: 100%;
  aspect-ratio: 16/12;
  overflow: hidden;
  border-radius: 15px;
}
@media (max-width: 1400px) {
  .portDetails__video-lg {
    height: 80rem;
  }
}
@media (max-width: 900px) {
  .portDetails__video-lg {
    height: 60rem;
  }
}
@media (max-width: 767px) {
  .portDetails__video-lg {
    height: 40rem;
  }
}
.portDetails video {
  width: 100%;
  height: 100%;
  border-radius: 35px;
}
@media (max-width: 767px) {
  .portDetails video {
    object-fit: cover;
    border-radius: 10px;
  }
}
.portDetails__table {
  border-radius: 15px;
}
.portDetails__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media (max-width: 768px) {
  .portDetails__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.portDetails__grid video {
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.93);
}
@media (max-width: 768px) {
  .portDetails__col {
    margin-top: -5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.portDetails__col-lg {
  grid-column: 1/-1;
  padding: 8.7rem;
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .portDetails__col-lg {
    padding: 0;
  }
}
.portDetails__col-sm {
  padding: 4rem;
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .portDetails__col-sm {
    padding: 0;
  }
}
.portDetails--secondary {
  font-size: clamp(2rem, 3vw + 1rem, 4.5rem);
  line-height: 1;
  font-weight: 700;
}
.portDetails__grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .portDetails__grid-3 {
    grid-template-columns: 1fr;
  }
}

.about__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .about__container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.about__img {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 610px;
  aspect-ratio: 1/1;
}
.about__img .about__inner-img {
  display: block;
  height: 87%;
  width: 87%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 50%;
  overflow: hidden;
}
.about__img .about__inner-img::after {
  content: "";
  display: block;
  height: 87%;
  width: 87%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: #0f2923;
  border-radius: 50%;
  z-index: 0;
}
.about__img .about__inner-img img {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 122%;
  object-fit: cover;
  z-index: 10;
}
.about__img .spiner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spiner 20s linear infinite;
  display: block;
}
.about__img .person {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 87%;
  height: auto;
  object-fit: contain;
}
.about__infos {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.4rem;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .about__infos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.about__infos-icon {
  grid-row: 1/-1;
}
.about__contact {
  display: grid;
  grid-template-columns: 4rem 1fr;
  grid-template-rows: repeat(2, 1fr);
  align-items: center;
  column-gap: 1.5rem;
  padding: 3rem 0;
}
.about__contact p {
  text-transform: capitalize;
}
.about__year {
  padding: 2.8rem 1.8rem;
  background-color: #243c3d;
  border-radius: 15px;
  text-transform: capitalize;
}
.about__year h2 {
  font-size: 6rem;
}
@media (max-width: 767px) {
  .about__year h2 {
    font-size: 2.8rem;
  }
}

.scrolling-text {
  overflow: hidden;
  width: 100%;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  gap: 6rem;
}
@media (max-wdith: 767px) {
  .scrolling-text {
    gap: 2rem;
  }
}

.rail {
  display: flex;
  gap: 8rem;
}
@media (max-wdith: 767px) {
  .rail {
    gap: 2rem;
  }
}

.category {
  color: #0f2923;
  font-size: clamp(2.2rem, 3vw + 1rem, 3.5rem);
  font-weight: 600 !important;
  clear: both;
  display: inline-block;
  white-space: nowrap;
  line-height: 20px;
  font-family: sans-serif;
  font-family: "Montserrat-semi";
}
.category::after {
  content: "✦"; /* ya koi aur unicode symbol */
  font-size: 3.5rem;
  display: inline-block;
  display: block;
  float: left;
  margin-left: -7rem;
}

.skils__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
}
@media (max-width: 1200px) {
  .skils__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .skils__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.skils__title {
  max-width: 605px;
  width: 100%;
  margin-bottom: 6rem;
}
.skils__item {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding: 2.5rem;
  background-image: url(/asset/images/service-item-bg-shape.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #243c3d;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .skils__item {
    justify-content: space-between;
  }
}
.skils__icon {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #243c3d;
  border: 1px solid #666f6f;
}
.skils .heading--secondary {
  display: flex;
}

.work__accordion-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 4rem;
}

@media (max-width: 900px) {
  .work__accordion-container {
    grid-template-columns: 1fr;
  }
  .work__accordion-container .work__accordion__left {
    grid-row: 2;
  }
}
/* Left Side Image */
.work__accordion__left {
  height: 604px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 15px;
}

.work__accordion__image {
  position: absolute;
  inset: 0;
  width: 0px;
  height: 620px;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: width 1s, opacity 1s ease, transform 1.2s ease;
  overflow: hidden;
  border-radius: 15px;
}

.work__accordion__image.active {
  opacity: 1;
  transform: scale(1);
  width: 100%;
}

/* Right Side Accordion */
.work__accordion__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.work__accordion__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.0588235294);
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 8px;
  padding: 1.2rem 1rem;
}

.work__accordion__header {
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  padding-right: 2rem;
  transition: color 0.4s ease;
}

.work__accordion__header::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.6rem;
  transition: transform 0.4s, color 0.4s;
}

.work__accordion__item.active .work__accordion__header {
  color: #6bfdd9;
}

.work__accordion__item.active .work__accordion__header::after {
  content: "−";
  color: #0a532c;
  transform: rotate(180deg);
  font-size: 2rem;
}

.work__accordion__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s ease;
}

.work__accordion__item.active .work__accordion__content {
  max-height: 300px;
  opacity: 1;
}

.work__accordion__content p {
  color: #ffffff;
  margin-top: 1rem;
  line-height: 1.6;
}

/* Scrollbar style for right side */
.work__accordion__right::-webkit-scrollbar {
  width: 8px;
}

.work__accordion__right::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .work__accordion__left {
    height: 450px;
  }
}
.pricing__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .pricing__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .pricing__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pricing__card {
  padding: 2.8rem;
  border-radius: 15px;
}
.pricing__icon {
  margin-bottom: 1.8rem;
}
.pricing .text, .pricing-price {
  margin-top: 1.8rem;
}
.pricing-price {
  display: flex;
  align-self: end;
  gap: 0.5rem;
}
.pricing-price span {
  padding-top: 2rem;
}
.pricing__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .pricing__item:nth-child(1) {
    grid-column: 1/-1;
  }
}
.pricing__list ul {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.pricing__list ul li {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  position: relative;
}
.pricing__list ul li::before {
  content: "✔";
  height: 1.8rem;
  width: 1.8rem;
  display: block;
  background-color: #ffffff;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #0f2923;
  font-weight: 700;
  display: flex;
  align-self: center;
  justify-content: center;
}
.pricing__popular {
  position: relative;
  overflow: hidden;
}
.pricing__popular::after {
  content: "Popular";
  display: block;
  z-index: 10;
  position: absolute;
  top: 25px;
  right: -52px;
  font-family: "Montserrat-semi";
  text-transform: capitalize;
  width: 19rem;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(90deg, #6bfdd9, #8af135);
  color: #0f2923;
  transform: rotate(45deg);
}

.blogs__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 7.5rem;
  row-gap: 8rem;
}
@media (max-width: 1024px) {
  .blogs__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .blogs__container {
    grid-template-columns: 1fr;
  }
}
.blogs__item:hover img {
  transform: scale(1.2);
}
.blogs__img {
  overflow: hidden;
  border-radius: 15px;
  height: 272px;
}
.blogs__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.blogs .heading--secondary-sm {
  margin-top: 1.8rem;
}
.blogs button {
  margin-top: 2.5rem;
  font-weight: 900;
  font-family: "Montserrat-bold", Arial, sans-serif;
}

.circle-btn {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #0d1f1f;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: spin 20s linear infinite;
  overflow: hidden;
}
.circle-btn .text {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  fill: #63ffd3;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-20deg); /* adjust rotation like image */
}

.arrow--circle {
  font-size: 30px;
  color: #63ffd3;
  transform: rotate(90deg);
}

@keyframes spin {
  to {
    transform: rotate(340deg);
  }
}
.approuch__title {
  text-align: center;
  max-width: 553px;
  margin: auto;
}
.approuch__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem;
  margin-bottom: 3.2rem;
  margin-top: 7rem;
}
@media (max-width: 900px) {
  .approuch__container {
    grid-template-columns: 1fr;
  }
}
.approuch__item {
  background-color: #243c3d;
  padding: 2.5rem 2.8rem;
  border-radius: 15px;
}
.approuch__item-head {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 2.2rem;
}
.approuch__counter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  justify-content: space-between;
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1060px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .approuch__counter {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 2rem;
    top: 80%;
  }
}
@media (max-width: 500px) {
  .approuch__counter {
    top: 75%;
  }
}
.approuch__counter .heading--secondary {
  display: flex;
}

.video__thumnail {
  position: relative;
}
.video__thumnail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9));
}

.team__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 6rem;
}
@media (max-width: 1200px) {
  .team__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .team__container {
    grid-template-columns: 1fr;
  }
}
.team__item {
  background-color: #243c3d;
  border-radius: 25px;
  overflow: hidden;
}
.team__item:hover img {
  transform: scale(1.1);
}
.team__item:hover .team__social {
  top: 80%;
  opacity: 1;
}
.team__img {
  height: 285px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .team__img {
    height: 315px;
  }
}
.team__img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.team__info {
  padding: 2.2rem;
}
.team__social {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 1rem;
  background-image: linear-gradient(90deg, #6bfdd9, #8af135);
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  opacity: 0;
  transition: all 0.3s;
}
/* 
.moments {
  padding: 14rem 0;
  padding-top: 8rem;
} */
.moments__headings {
  max-width: 235px;
}
.moments__container .left {
  flex: 1;
}
.moments__container .tabs {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 5rem;
}
.moments__container .tab-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  color: #aaa;
  transition: color 0.3s ease;
}
.moments__container .tab-btn.active {
  color: #6bfdd9;
}
.moments__container {
  /* 🔹 underline element */
}
.moments__container .tab-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #8af135;
  width: 0;
  transition: left 0.3s ease, width 0.3s ease;
}
.moments__container .tab-pane {
  display: none;
}
.moments__container .tab-pane.active {
  display: flex;
  gap: 7rem;
}
.moments__container .tab-text {
  line-height: 1.6;
  animation: fadeIn 2s;
}
.moments__container .right {
  flex: 1.7;
  column-count: 2;
  gap: 20px;
  animation: fadeIn 2s;
  margin-top: -25rem;
}
.moments__container .right a {
  display: inline-block;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.moments__container .right img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.moments__container .right a:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .moments__container .container {
    flex-direction: column;
  }
  .moments__container .tab-pane.active {
    flex-direction: column;
  }
  .moments__container .right {
    margin-top: 0;
  }
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3rem;
  row-gap: 2.5rem;
}
@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .gallery__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gallery__grid img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 35rem;
  cursor: pointer;
}
.gallery__item::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  background-color: rgba(36, 60, 61, 0.6);
  z-index: 1;
  scale: 0;
  transition: all 0.3s;
}
.gallery__item:hover::after {
  scale: 1;
}
.gallery__item:hover i {
  opacity: 1;
}
.gallery__item i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0f2923;
  font-size: 2rem;
  cursor: pointer;
  height: 6.4rem;
  width: 6.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  animation: pulseShadow 2s infinite ease-in-out;
  z-index: 6;
  opacity: 0;
  cursor: pointer;
}
.gallery__item i:hover {
  color: #0f2923;
  border-color: #0f2923;
}
.gallery__thumbnail {
  height: 100%;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
.custom-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 4rem;
}
.custom-pagination img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    border-radius: 50%;
    border-width: 4px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    transition: 0.8s;
}
.custom-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-top: 4rem;
    gap: 1.5rem;
}
.custom-arrows button:nth-child(1) {
    transform: rotate(227deg);
}
.custom-arrows button {
    height: 4.5rem;
    width: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
}

.custom-pagination img.active {
    transform: scale(1.2);
    opacity: 1;
    border-color: rgb(255, 94, 0);
}

