:root {
  --theme-color: #0D5EF4;
  --theme-color2: #F20F10;
  --title-color: #0F2239;
  --body-color: #4D5765;
  --smoke-color: #F3F7FB;
  --black-color: #000000;
  --white-color: #ffffff;
  --light-color: #72849B;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #ecf1f9;
  --title-font: "Jost", sans-serif;
  --body-font: "Roboto", sans-serif;
  --icon-font: "Font Awesome 5 Free";
  --main-container: 1380px;
  --container-gutters: 24px;
  --section-space: 70px;
  --section-space-mobile: 50px;
  --section-title-space: 30px;
  --ripple-ani-duration: 5s;
  --font-large: 40px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
header.sticky {
  background-color: #111;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 2.5rem !important;
}
header .btn-gradient {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  width: 140px;
  height: 47px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(137.02deg, #EEFF00 1.7%, #1C84A3 86.13%);
  border: none;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease;
}
header .btn-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(137.02deg, #EEFF00 1.7%, #1C84A3 86.13%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
header .btn-gradient:hover {
  background: transparent;
  color: #fff;
}
header .btn-gradient:hover::before {
  opacity: 1;
}

a.header-link {
  font-size: 12px;
  color: #ECECEC;
}

a.header-link:hover {
  background: linear-gradient(137.02deg, #EEFF00 1.7%, #1C84A3 86.13%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body {
  font-family: "Poppins", sans-serif;
}

p,
a,
h1,
h2,
h3,
h4,
h5,
h6,
div,
button,
span,
li, strong,
ul {
  font-family: "Poppins", sans-serif;
}

h1.heading {
  font-size: 102px;
}

h2.sub-heading {
  font-size: 46px;
  color: #090914;
  font-weight: 600;
}

p {
  font-size: 16px;
  color: #A1A1AA;
}

h3.min-heading {
  font-size: 32px;
  font-weight: 500;
}

.section-bg {
  background-color: #F8F8F8;
}

@media (max-width: 768px) {
  h1.heading {
    font-size: 35px;
  }
  h2.sub-heading {
    font-size: 30px;
    color: #090914;
    font-weight: 600;
  }
  h3.min-heading {
    font-size: 20px;
    font-weight: 500;
  }
}
.gradient-btn {
  position: relative;
  padding: 12px 30px;
  border: none;
  background: transparent;
  color: #000;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}

.gradient-btn::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(to right, #A3DD64, #155D9D, #A3DD64, #3F2A6C, #1261A1, #A3DD64, #155D9D);
  border-radius: inherit;
  z-index: -2;
}

.gradient-btn::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: white;
  border-radius: inherit;
  z-index: -1;
  transition: background 0.4s ease;
}

.gradient-btn:hover::after {
  background: conic-gradient(from 90deg at 50% 50%, #A3DD64 -43.35deg, #155D9D 52.25deg, #A3DD64 143.17deg, #3F2A6C 223.38deg, #1261A1 266.07deg, #A3DD64 316.65deg, #155D9D 412.25deg);
  color: #fff;
}

.primay-btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  color: #000;
  background: transparent;
  border-radius: 50px;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
  background-color: #fff;
}

.primay-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  /* border thickness */
  background: conic-gradient(from 90deg at 50% 50%, #A3DD64 -43.35deg, #155D9D 52.25deg, #A3DD64 143.17deg, #3F2A6C 223.38deg, #1261A1 266.07deg, #A3DD64 316.65deg, #155D9D 412.25deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
  transition: all 0.4s ease;
}

.primay-btn:hover {
  color: #fff;
  background: conic-gradient(from 90deg at 50% 50%, #A3DD64 -43.35deg, #155D9D 52.25deg, #A3DD64 143.17deg, #3F2A6C 223.38deg, #1261A1 266.07deg, #A3DD64 316.65deg, #155D9D 412.25deg);
}

.primay-btn:hover::before {
  -webkit-mask: none;
  mask: none;
  padding: 0;
}

.secondary-btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  border-radius: 50px;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
  background-color: #0B081C;
}

.secondary-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  /* border thickness */
  background: conic-gradient(from 90deg at 50% 50%, #A3DD64 -43.35deg, #155D9D 52.25deg, #A3DD64 143.17deg, #3F2A6C 223.38deg, #1261A1 266.07deg, #A3DD64 316.65deg, #155D9D 412.25deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
  transition: all 0.4s ease;
}

.secondary-btn:hover {
  color: #fff;
  background: conic-gradient(from 90deg at 50% 50%, #A3DD64 -43.35deg, #155D9D 52.25deg, #A3DD64 143.17deg, #3F2A6C 223.38deg, #1261A1 266.07deg, #A3DD64 316.65deg, #155D9D 412.25deg);
}

.secondary-btn:hover::before {
  -webkit-mask: none;
  mask: none;
  padding: 0;
}

a.btn-one {
  color: #FF675E;
  text-decoration: none;
  transition: color 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
}

a.btn-one i {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.4s ease;
  transform: rotate(45deg);
}

/* Hover effects */
a.btn-one:hover {
  color: #000;
}

a.btn-one:hover i {
  transform: rotate(90deg);
}

a.btn-two {
  color: #9B24F6;
  text-decoration: none;
  transition: color 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
}

a.btn-two i {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.4s ease;
  transform: rotate(45deg);
}

/* Hover effects */
a.btn-two:hover {
  color: #000;
}

a.btn-two:hover i {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .secondary-btn {
    padding: 10px 10px;
    font-size: 9px;
    border-radius: 50px;
  }
  .primay-btn {
    padding: 10px 10px;
    font-size: 9px;
    border-radius: 50px;
  }
}
section.banner {
  height: 900px;
  margin-top: 116px;
}

.section-space {
  padding: 100px 0px;
}

.bg-trans {
  background: rgba(90, 61, 61, 0.2117647059);
  border: 1px solid rgba(159, 159, 159, 0.6392156863);
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  margin: auto;
  padding: 15px;
  border-radius: 25px;
}

.video-wrapper .video-section {
  border: 1.2px solid #B3FF00;
  filter: drop-shadow(0px 24px 84px rgba(115, 115, 115, 0.35));
  border-radius: 12px;
  /* Optional: smooth corner */
  overflow: hidden;
  /* Prevent video overflow beyond border-radius */
  max-width: 100%;
}
.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
}

section.video-wrapper {
  margin-top: -400px;
}

.theme-item {
  position: relative;
}

.theme-title {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  color: #fff;
  padding: 10px;
  border-radius: 25px;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.4117647059);
  width: -moz-fit-content;
  width: fit-content;
}

.carousel-section {
  overflow: hidden;
}

.carousel-section .owl-carousel .owl-stage {
  padding-left: 0 !important;
}

.carousel-section .owl-theme .owl-nav {
  /* margin-top: 10px; */
  width: 100%;
  position: absolute;
  top: -300px;
  right: 0px;
  left: 0px;
  display: flex;
  justify-content: end;
}

.carousel-section .owl-carousel .owl-stage-outer {
  overflow: unset;
}

.carousel-section .owl-carousel .owl-nav .owl-next,
.carousel-section .owl-carousel .owl-nav .owl-prev {
  width: 50px;
  border: 1px solid #000000;
  border-radius: 22px;
  height: 50px;
  font-size: 30px;
}

.carousel-section .owl-carousel .owl-nav .owl-next.disabled,
.carousel-section .owl-carousel .owl-nav .owl-prev.disabled {
  border: 1px solid #CECECF;
}

.carousel-section .owl-carousel .owl-nav .owl-next:focus,
.carousel-section .owl-carousel .owl-nav .owl-prev:focus {
  outline: 0;
}

.carousel-container {
  max-width: 1340px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  width: 100%;
}

.carousel-container .owl-carousel .owl-item {
  position: relative;
  overflow: hidden;
  /* Required for border radius and overlay containment */
  border-radius: 5px;
}

/* Black overlay with ::before */
.innovative .owl-carousel .owl-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.11);
  z-index: 1;
  pointer-events: none;
  /* Let clicks pass through */
  border-radius: 5px;
}

/* Ensure image and text are below overlay */
.innovative .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  z-index: 0;
  position: relative;
}

.item-height {
  gap: 10px;
}

.innovative .owl-carousel .item-height img {
  height: 245px;
}

.awaits-sec .owl-carousel .owl-item .card img {
  height: 137px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 40% !important;
  margin-top: -72px;
}

.awaits-sec .card {
  border: 1px solid #C3C3C3;
  position: relative;
  z-index: 1;
  width: 420px;
}

.awaits-sec .item {
  height: 480px !important;
  margin: auto;
  display: flex;
  justify-content: center;
}

.carousel-section.awaits-sec .owl-theme .owl-nav {
  top: -227px;
}

.carousel-dot-position .owl-theme .owl-nav {
  top: -200px;
}

.carousel-dots-position .owl-theme .owl-nav {
  top: -250px;
}

.min-heading {
  font-size: 32px;
}

.name-wrapper {
  bottom: 20px;
  padding: 20px;
}

.leader-wrappers img {
  height: 508px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.sec-text {
  color: #A1A1AA;
}

.custom-list li {
  font-family: "Inter";
  font-size: 21px;
}

.sec-padding {
  padding: 80px 10px;
}

.innovation-sec {
  height: 100vh;
}

.bg-from-data {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.innovation-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.innovation-sec > .container {
  position: relative;
  z-index: 2;
}

.innovation-item {
  position: relative;
  width: 218px;
  font-size: 21px !important;
  font-family: "Inter";
  border: 0 !important;
  color: #808080 !important;
}

.innovation-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #fff, #95FFDF);
}

.innovation-item:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #fff, #95FFDF);
}

.innovation-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #808080, #808080);
}

.innovation-item.active {
  background: transparent !important;
  color: #fff !important;
  border: 0 !important;
  width: 218px;
  overflow: hidden;
}

.section-title {
  background: linear-gradient(180deg, #FFFFFF 0%, #95FFDF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fade-slide-up {
  animation: fadeSlideUp 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.innovation-box2::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 78px;
  bottom: 120px;
  width: 1px;
  background: linear-gradient(to bottom, #fff, #95FFDF);
}

.innovation-box2 {
  position: relative;
}

.sec-number, p {
  font-size: 21px;
  font-family: "Poppins";
}

/*kpi*/
.kpi-box {
  background: rgba(0, 0, 0, 0.65);
  padding: 30px 20px;
  position: relative;
  z-index: 1;
}

.kpi-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: conic-gradient(from 90deg at 50% 50%, #1261A1 -63.21deg, #155D9D 0.49deg, #A3DD64 115.79deg, #3F2A6C 242.25deg, #1261A1 296.79deg, #155D9D 360.49deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  border-radius: inherit;
}

/* Top row */
.kpi-wrapper .row:nth-child(1) .col-md-4:first-child .kpi-box {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.kpi-wrapper .row:nth-child(1) .col-md-4:last-child .kpi-box {
  border-top-right-radius: 12px;
}

.kpi-bottom-left {
  border-bottom-left-radius: 12px;
}

.kpi-bottom-right {
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}

.kpi-box::before {
  border-radius: inherit;
}

.sec-text {
  color: #A1A1AA;
}

.min-sub-heading {
  font-size: 48px;
}

.innovation-sec {
  height: 100vh;
  position: relative;
}

.bg-from-data {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}

.innovation-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.innovation-sec > .container {
  position: relative;
  z-index: 2;
}

.innovation-item {
  position: relative;
  width: 218px;
  font-size: 21px !important;
  border: 0 !important;
  color: #808080 !important;
}

.innovation-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #fff, #95FFDF);
}

.innovation-item:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #fff, #95FFDF);
}

.innovation-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #808080, #808080);
}

.innovation-item.active {
  background: transparent !important;
  color: #fff !important;
  border: 0 !important;
  width: 218px;
  overflow: hidden;
}

.section-title {
  background: linear-gradient(180deg, #FFFFFF 0%, #95FFDF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fade-slide-up {
  animation: fadeSlideUp 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.innovation-box2::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 78px;
  bottom: 120px;
  width: 1px;
  background: linear-gradient(to bottom, #fff, #95FFDF);
}

.innovation-box2 {
  position: relative;
}

.sec-number, p {
  font-size: 21px;
  font-family: "Poppins";
}

/*kpi*/
.kpi-box {
  background: rgba(0, 0, 0, 0.65);
  padding: 30px 20px;
  position: relative;
  z-index: 1;
}

.kpi-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: conic-gradient(from 90deg at 50% 50%, #1261A1 -63.21deg, #155D9D 0.49deg, #A3DD64 115.79deg, #3F2A6C 242.25deg, #1261A1 296.79deg, #155D9D 360.49deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  border-radius: inherit;
}

/* Top row */
.kpi-wrapper .row:nth-child(1) .col-md-4:first-child .kpi-box {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.kpi-wrapper .row:nth-child(1) .col-md-4:last-child .kpi-box {
  border-top-right-radius: 12px;
}

.kpi-bottom-left {
  border-bottom-left-radius: 12px;
}

.kpi-bottom-right {
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}

.kpi-box::before {
  border-radius: inherit;
}

.footer-section {
  background-color: #000;
}

.newsletter-box .newsletter-content {
  color: #fff;
}

.contact-btn {
  position: relative;
  display: inline-block;
  padding: 10px 28px;
  color: #fff;
  background: linear-gradient(137.02deg, #EEFF00 1.7%, #1C84A3 86.13%);
  border-radius: 50px;
  border: none;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
}

.contact-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px; /* Border thickness */
  background: linear-gradient(137.02deg, #EEFF00 1.7%, #1C84A3 86.13%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.contact-btn:hover {
  background: transparent;
}

.contact-btn:hover::before {
  opacity: 1;
}

button.btn.submit-btn {
  background: #0B081C;
  border: 1px solid #000;
  color: #fff;
  padding: 10px 30px;
  position: absolute;
  right: 8px;
}

button.btn.submit-btn:hover {
  background: #ffffff;
  border: 1px solid #000;
  color: #000000;
  padding: 10px 30px;
  position: absolute;
  right: 8px;
}

.social-icons-footer .social-icon {
  width: 45px;
  height: 45px;
  border: 1px solid grey;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
  z-index: 1;
}

.social-icons-footer .social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(137.02deg, #EEFF00 1.7%, #1C84A3 86.13%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  border-radius: 50%;
}

.social-icons-footer .social-icon i {
  position: relative;
  z-index: 2;
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* Hover effect */
.social-icons-footer .social-icon:hover {
  transform: scale(1.1);
}

.social-icons-footer .social-icon:hover::before {
  opacity: 1;
}

a.links {
  color: #d0d0d0;
}

a.links:hover {
  background: linear-gradient(137.02deg, #EEFF00 1.7%, #1C84A3 86.13%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-image {
  z-index: -1;
}

