@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Inter:wght@100..900&display=swap');

:root {
  --primary-color: #0052cc;
  --secondary-color: #00b8d9;
  --text-color: #001f2a;
  --bg-color: #f6f5ef;
  --white: #ffffff;
  --corporate-one: #72bb6f;
  --corporate-two: #0b89ef;
  --corporate-three: #ef7d00;
  --corporate-four: rgb(27, 29, 58);
  --dark-blue: #253745;
  --txt: #292d34;
  --dark-222: #222222;
  --phos-green: #ffd70a;
  --phos-red: #ff6b6b;
  --highlight-yellow: #f8c82f;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 992px){
  html, body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain; 
  }
  
  body {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  * {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
}

body {
  font-family: Plus Jakarta Sans, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  /* padding: 20px; */
  overflow: hidden;
}

p {
  font-size: 1.1rem;
  line-height: 155.556%;
  color: #001f2a;
}

#my-scrollbar {
  width: 100%;
}

.navbar {
  transition: all 0.3s ease;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  z-index: 100000;
}
.navbar .nav-item {
  display: flex;
  align-items: center;
}
.navbar .nav-link img {
  height: 20px;
  width: 20px;
}

.navbar-nav.icon-navbar {
  width: fit-content;
}

.navbar.scrolled {
  background-color: #f6f5ef;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.navbar-brand img {
  height: 40px;
}

.navbar-toggler-v2 {
  position: relative;
  width: 40px;
  height: 34px;
  background: none;
  border: none;
  outline: none;
}

.navbar-toggler-v2:not(.collapsed) .icon-bar.middle-bar {
  display: none;
}
.navbar-toggler-v2 input {
  display: none;
}

.icon-bar {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 5px;
}

.top-bar {
  top: 6px;
}

.middle-bar {
  top: 15px;
}

.bottom-bar {
  top: 24px;
}

#menu-toggle:checked + .icon-bar.top-bar {
  transform: rotate(45deg);
  top: 15px;
}

#menu-toggle:checked + .icon-bar.middle-bar {
  opacity: 0;
}

#menu-toggle:checked ~ .icon-bar.bottom-bar {
  transform: rotate(-45deg);
  top: 15px;
}

.nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.highlight {
  background-color: var(--highlight-yellow);
  color: var(--text-color);
  text-decoration: none !important;
  border-radius: 12px;
  padding-left: 6px;
  padding-right: 6px;
  display: inline;
}

.hero-section {
  padding: 100px 0 100px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  /*
    background: linear-gradient(135deg, #f6f5ef, #fffef7);
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, .2); */
}

section.hero-section p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.4;
}

section.hero-section {
  padding-bottom: 3rem;
  padding-top: 170px;
  margin-bottom: 50px;
}

.hero-section .txt {
  margin: 0 2rem;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.features-section,
.solutions-section,
.frameworks-section,
.testimonials-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.feature-card,
.framework-card,
.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover,
.framework-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.solution-card {
  background-color: #fff;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
  box-shadow: 20px 20px 40px #001f2a14, 40px 40px 120px #001f2a0a;
}

.solutions-container {
  display: flex;
  transition: all 0.3s ease;
  gap: 1rem;
}

.solutions-section .icon-wrapper img.icon,
.why-section .icon-wrapper img.icon {
  height: 40px;
  width: 40px;
}

.solutions-left,
.solutions-right {
  overflow: hidden;
  height: max-content;
  transition: flex 0.3s ease;
  background-color: #fff;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
  box-shadow: 20px 20px 40px #001f2a14, 40px 40px 120px #001f2a0a;
}
.solutions-left {
  width: 65%;
}
.solutions-right {
  width: 35%;
}

.solution-block-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.solutions-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.solutions-right:not(.expand-right) {
  width: 35%;
}
.solutions-right.expand-right {
  width: 65%;
}

.solutions-left:not(.expand-left) {
  width: 35%;
}
.solutions-left.expand-left {
  width: 65%;
}

.solution-block-images {
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: relative;
  gap: 1rem;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
}

.solution-block-images .solutions-bg {
  z-index: 1;
  background-color: #98eab3;
  position: absolute;
  inset: 0%;
  height: 72%;
}

.solution.left-wrapper,
.solution.right-wrapper {
  z-index: 2;
}

img.solutions-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 13.43px;
  box-shadow: 6.71px 6.71px 67.13px #0000000d;
}

.solutions-left,
.solutions-right {
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.solutions-images {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}

.solution-block-images.images-visible {
  max-height: 300px;
  opacity: 1;
  padding: 1.5rem;
}

.solutions-container .desc {
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  width: 100%;
}

.solutions-left {
  justify-content: center;
}

.solutions-right {
  justify-content: center;
}

.solutions-container .icon-wrapper {
  color: var(--text-color);
  margin-right: 10px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.solutions-container .solutions-left .icon-wrapper {
  background-color: #f8c82f;
}
.solutions-container .solutions-right .icon-wrapper {
  background-color: #a3e4fe;
}

.solutions-container h3 {
  font-weight: 500;
  margin-bottom: 1rem;
}

.solutions-container p {
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  color: white;
  padding-top: 100px;
  padding-bottom: 100px;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

input{
  box-shadow: none !important;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.data-management-section {
  padding: 100px 0;
  background-color: var(--bg-color);
}

.data-management-tabs {
  max-width: 800px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.tab-button {
  background-color: transparent;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-button::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.tab-button.active {
  color: var(--primary-color);
}

.tab-button.active::after {
  width: 100%;
}

.tab-content {
  position: relative;
  height: calc(100vh * 4);
  overflow: hidden;
  transition: transform 0.5s ease;
}

.tab-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.green-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--corporate-one);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.green-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.green-button-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.button-panels-contain {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: -1;
}
.custom-btn {
  background-color: #00c26e;
  border-color: #00c26e;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 194, 110, 0.4);
}

.custom-btn:hover {
  background-color: #00a85e;
  border-color: #00a85e;
  color: #fff;
  box-shadow: 0 15px 30px rgba(0, 168, 94, 0.5);
  transform: translateY(-5px);
}

.custom-btn:active {
  background-color: #008c50;
  border-color: #008c50;
  box-shadow: none;
  transform: translateY(0);
}

section.trusted-by {
  position: relative;
  padding-top: 100px;
}

section.trusted-by .container {
  background: #001e29;
  padding: 100px 0;
  border-radius: 1rem;
  padding-top: 250px;
  color: #fff;
}

.images-container {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 400px;
  margin-top: -70px;
}

.image-wrapper {
  position: absolute;
  width: 60%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: fit-content;
}

.image-wrapper.img-1 {
  top: 30%;
  z-index: 3;
 /* transform: translateX(30%); */
}

.image-wrapper.img-2 {
  left: 20%;
  top: 0;
  z-index: 2;
  width: fit-content;
}

.hero-section {
  padding-bottom: 1.5rem;
}

.image-wrapper.img-3 {
  top: 15%;
  right: 0;
  z-index: 3;
  width: fit-content;
  /* transform: translateX(-30%); */
}

.image-wrapper.img-3 img,
.image-wrapper.img-1 img {
  width: 450px;
}

.image-wrapper.img-2 img {
  width: 700px;
}

/*
.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.img-1.image-wrapper:hover{
    transform: translateX(60%) translateY(-10px);
}
.img-3.image-wrapper:hover{
    transform: translateX(-40%) translateY(-10px);
}
    */

.trusted-by .swiper-container {
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
  overflow: hidden;
}

.trusted-by .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}

.trusted-by .swiper-slide img {
  max-width: 100px;
  max-height: 80px;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .trusted-by .swiper-slide img {
    max-width: 120px;
    max-height: 100px;
  }
}

@media (min-width: 1024px) {
  .trusted-by .swiper-slide img {
    max-width: 140px;
    max-height: 90px;
  }
}

.trusted-by .swiper-slide img {
  filter: brightness(0) invert(61%) sepia(12%) saturate(304%) hue-rotate(152deg)
    brightness(88%) contrast(93%);
}

.trusted-by .swiper-wrapper {
  display: flex;
  align-items: center;
}

.trusted-by .txt {
  margin: 1.5rem 2rem;
}

.trusted-by .grid-area {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.trusted-by .grid-area .item {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 500px;
  height: 100%;
  gap: 1rem;
}

.trusted-by .grid-area .item .desc {
  font-size: 1.5rem;
  line-height: 133.33%;
  font-weight: 500;
}

.trusted-by .grid-area .item .number {
  text-align: center;
  letter-spacing: -1px;
  font-size: 7rem;
  font-weight: 700;
  line-height: 100%;
}

.item:nth-child(1) .number {
  color: #98eab3;
}

.item:nth-child(2) .number {
  color: #a3e4fe;
}

.item:nth-child(3) .number {
  color: #f8c82f;
}

.competitive-advantage {
  padding-top: 100px;
  background-color: var(--bg-color);
  position: relative;
}

.competitive-advantage h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.competitive-advantage p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.advantage-item span {
  color: var(--text-color);
  margin-right: 10px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.65rem;
}

.competitive-advantage h1 {
  max-width: 800px;
  margin: 2rem auto;
}

.competitive-advantage h1 .highlight {
  background-color: #98eab3;
}

.advantage-slider {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap;
  gap: 20px;
  height: auto !important;
}

.advantage-slider .swiper-slide {
  height: auto !important;
}

.advantage-slider .advantage-item {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: white;
  padding: 2rem;
  height: 100%;
}

.advantage-slider .advantage-item h5 {
  letter-spacing: normal;
  font-size: 28px;
  font-weight: 700;
  line-height: 128.57%;
}

.advantage-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 65px;
  min-width: 65px;
  padding: 12px;
  border-radius: 10px;
  background-color: #f1f1f17a;
}

.reliable-data {
  padding: 100px 0;
  background-color: var(--white);
}

.reliable-data h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.data-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.tab-button {
  background-color: transparent;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-button::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.tab-button.active {
  color: var(--primary-color);
}

.tab-button.active::after {
  width: 100%;
}

.tab-content {
  position: relative;
  height: calc(100vh * 4);
  overflow: hidden;
  transition: transform 0.5s ease;
}

.tab-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.tab-pane.active {
}

.forest-pattern {
  width: 100%;
  height: 174px;
  background-image: url(./images/slide-pattern.svg);
  background-repeat: repeat-x;
  background-size: auto 209px;
  animation: slide-pattern 10s linear infinite;
  filter: opacity(0.5) grayscale(1);
  left: 0;
  bottom: 0;
  margin-top: -6rem;
}

.forest-pattern.v2 {
  width: 100%;
  height: 194px;
  background-image: url(./images/slide-pattern.svg);
  animation: slide-pattern 19s linear infinite;
  background-repeat: repeat-x;
  background-size: auto 209px;
  filter: opacity(0.5) grayscale(1);
  left: 0;
  bottom: 0;
  margin-top: -8rem;
  opacity: 0.2;
}

@keyframes slide-pattern {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -100% 0;
  }
}

/* sticky section */

.sticky-container {
  position: relative;
}
.sticky-wrapper {
  top: 0;
  position: sticky;
  background: #f6f5ef;
  z-index: 100003;
  height: 85px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.sticky-area .sticky-section .icon img {
  height: 40px;
  width: 40px;
}
.sticky-nav {
  padding: 10px 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  background: #fff;
}

.sticky-nav a {
  padding: 10px 20px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.sticky-section {
  padding: 50px 20px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  position: sticky;
  top: 60px;
  height: 50vh;
  margin-bottom: 2rem;
}

.sticky-nav a.active {
  background-color: #001f2a;
  color: #fff;
}

.sticky-nav a {
  border-radius: 10px;
  padding: 0.5rem 1.5rem;
}

.sticky-nav {
  margin-bottom: 2rem;
  z-index: 10009;
}

.sticky-section {
  background: #001f2a;
  color: #fff;
  width: 100%;
  height: 640px;
  border-radius: 15px;
  border: 0;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  align-items: center;
}

.sticky-section .area {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

.sticky-section .area.bg-pattern {
  width: 100%;
  height: 100%;
}

.sticky-section .area {
  width: 50% !important;
}
.sticky-section .area.bg-pattern {
  background: url(./images/patterns/3.svg);
  background-size: 358px;
  background-position: bottom;
  background-repeat: repeat-y;
}

.sticky-nav-link.active {
  color: #fff;
  background-color: #4caf50;
  border-radius: 5px;
}

.sticky-area .sticky-section .icon {
  color: var(--text-color);
  margin-right: 10px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.65rem;
}

.sticky-area .sticky-section:nth-child(n) .icon {
  background-color: #98eab3;
}

.sticky-area .sticky-section:nth-child(2n) .icon {
  background-color: #a3e4fe;
}

.sticky-area .sticky-section:nth-child(3n) .icon {
  background-color: #f8c82f;
}

.sticky-area .sticky-section:nth-child(4n) .icon {
  background-color: #ffd1dc;
}

.sticky-section .area:has(.icon) {
  display: flex;
  align-items: center;
  max-width: 500px;
  margin: auto;
  text-align: center;
}

.sticky-section .area h5 {
  letter-spacing: -0.5px;
  font-size: 48px;
  line-height: 116.6%;
}

.sticky-section .area p {
  font-size: 18px;
  line-height: 155.556%;
  color: #fff;
}

.sticky-nav {
  max-width: 500px;
  gap: 0 !important;
  display: flex;
  padding: 5px !important;
  border-radius: 15px;
  margin: 0 auto 1.5rem auto;
}

.sticky-nav > a {
  flex: 1 !important;
  padding: 0.5rem;
  text-align: center;
}

html.lenis,
html.lenis body {
  height: auto;
}

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

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

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

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.button-special {
  pointer-events: auto;
  cursor: pointer;
  background: var(--bg-color);
  border: none;
  padding: 1.5rem 3rem;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.8, 1);
  text-decoration: none;
  font-size: 1.2rem;
}

.button-special span {
  display: block;
  mix-blend-mode: difference;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.8, 1);
  color: var(--white);
  font-weight: 600;
}

.button-special:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #000;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
  transition: clip-path 0.4s cubic-bezier(0.2, 1, 0.8, 1),
    -webkit-clip-path 0.4s cubic-bezier(0.2, 1, 0.8, 1);
}

.button-special:hover {
}

.button-special:hover:before {
  background: #000;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.button-special.effect-2 {
}

.button-special.effect-2 {
  background: #000;
  color: #fff !important;
  transition: all 0.2s linear 0s;
}
.button-special.effect-2:before {
  content: "";
  font-family: FontAwesome;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0 50% 50% 0;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: all 0.2s linear 0s;
}
.button-special.effect-2:hover {
  text-indent: 30px;
}
.button-special.effect-2:hover:before {
  transform: scale(1, 1);
  text-indent: 0;
}

.sm-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

@media (min-width: 992px) {
  .dropdown:not(.static-dropdown):hover .dropdown-menu {
    display: block;
  }

  .nav-item .dropdown-menu {
    top: 100%;
  }
}

.dropdown-menu {
  background: white;
  min-width: 100%;
  display: none;
  position: absolute;
  border: 0;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  width: max-content;
  padding: 1rem 0.2rem;
}

.dropdown-menu a {
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  color: var(--corporate-one);
}

.dropdown-toggle {
  display: flex;
  align-items: center;
}

#navbarNav .dropdown-toggle::after {
  right: 0;
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 1 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
  transition: transform 0.3s ease-in-out;
  border: none;
  width: 12px;
}

.stylish-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.stylish-button:hover {
  background-color: #0056b3;
  box-shadow: 0px 6px 20px rgba(0, 86, 179, 0.5);
}

.stylish-button span {
  margin-right: 8px;
  transition: margin-right 0.3s ease;
}

.stylish-button i {
  transition: transform 0.3s ease;
}

.stylish-button:hover span {
  margin-right: 12px;
}

.stylish-button:hover i {
  transform: translateX(4px);
}

.stylish-button.style-one {
  background-color: #1f9947;
  box-shadow: 0px 4px 15px rgba(31, 153, 71, 0.4);
}

.stylish-button.style-one:hover {
  background-color: #187d3a;
  box-shadow: 0px 6px 20px rgba(24, 125, 58, 0.5);
}

.stylish-button.style-two {
  background-color: #007bff;
  box-shadow: 0px 4px 15px rgba(0, 123, 255, 0.3);
}

.stylish-button.style-two:hover {
  background-color: #0056b3;
  box-shadow: 0px 6px 20px rgba(0, 86, 179, 0.5);
}

section.why-section .items {
  padding-left: 0;
  list-style: none;
}

section.why-section .items .item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  min-height: 175px;
}

section.why-section .items .item .icon-wrapper {
  color: var(--text-color);
  margin-right: 10px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.65rem;
  aspect-ratio: 1;
}

section.why-section .items .item .title {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 1.3rem;
}

section.why-section .items .item.bg-1 .icon-wrapper {
  background-color: #98eab3;
}

section.why-section .items .item.bg-2 .icon-wrapper {
  background-color: #a3e4fe;
}

section.why-section .items .item.bg-3 .icon-wrapper {
  background-color: #ffe5a0;
}

section.why-section .items .item.bg-4 .icon-wrapper {
  background-color: #FFCDD2;
}

section.why-section .items .item.bg-5 .icon-wrapper {
  background-color: #C8E6C9;
}

section.why-section .items .item.bg-6 .icon-wrapper {
  background-color: #D1C4E9;
}

section.why-section .items .item.bg-7 .icon-wrapper {
  background-color: #FFCCBC;
}

section.why-section .items .item.bg-8 .icon-wrapper {
  background-color: #F0F4C3; 
}

section.why-section .items .item.bg-9 .icon-wrapper {
  background-color: #55efc4;
}

section.why-section .items .item.bg-10 .icon-wrapper {
  background-color: #E1BEE7;
}

section.why-section .items .item:not(:last-child) {
  border-bottom: 1px solid rgb(4, 20, 26, 0.1);
}

section.why-section h1 {
  font-size: 2.5rem;
  font-weight: 700;

}
.why-section{
  position: relative;
}
.why-section .swiper-container {
  padding: 20px 0 60px;
}

.why-section .swiper-slide {
  height: auto;
}

.why-section .swiper-button-next,
.why-section .swiper-button-prev {
  color: #34a853;
}
.why-section .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  margin: 3px;
}
.why-section .swiper-pagination-bullet-active {
  background-color: #333;
}

.why-section .item {
  height: 100%;
  margin-bottom: 0;
}
.why-features-slider {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.why-features-slider .swiper-slide {
  width: auto;
  height: auto;
}
/* .sustainability-leaders */

.sustainability-leaders {
  position: relative;
  padding-top: 80px;
}

.sustainability-leaders,
.advantage-slider {
  overflow-x: hidden;
}

.leaders-slider {
  width: 100%;
  overflow: visible;
}

.leaders-slider .swiper-wrapper {
  display: flex;
  transition-property: transform;
}

.leaders-slider .swiper-slide {
  flex-shrink: 0;
  width: auto;
  height: 100%;
  position: relative;
}

.leaders-slider .swiper-button-next,
.leaders-slider .swiper-button-prev {
  color: #000;
}

.leaders-slider .swiper-button-next:after,
.leaders-slider .swiper-button-prev:after {
  font-size: 24px;
}

.sustainability-leaders .leader-item img {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 75px;
  margin-top: 50px;
}

.sustainability-leaders .company {
  font-weight: 600;
}

.sustainability-leaders .swiper {
  width: 100%;
  height: 100%;
}

.sustainability-leaders .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sustainability-leaders .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustainability-leaders .swiper-button-next:after,
.sustainability-leaders .swiper-button-prev:after {
  font-size: 24px;
}

.sustainability-leaders .swiper-button-next {
  position: absolute;
  right: 0%;
  bottom: 0%;
  top: auto;
  color: #001f2a33;
  border: 1px solid #001f2a33 !important;
  border-radius: 50%;
  width: 48px;
  height: 48px;
}
.sustainability-leaders .swiper-button-prev {
  position: absolute;
  right: 60px;
  bottom: 0%;
  top: auto;
  color: #001f2a33;
  border: 1px solid #001f2a33 !important;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  left: auto;
}

.sustainability-leaders .swiper-button-next:hover {
  color: var(--corporate-one);
  border-color: var(--corporate-one) !important;
}

.sustainability-leaders .swiper-button-prev:hover {
  color: var(--corporate-one);
  border-color: var(--corporate-one) !important;
}

.leaders-slider {
  position: relative;
  padding-bottom: 100px;
}

.leaders-slider .swiper-pagination {
  text-align: left;
}

.leaders-slider .swiper-pagination-bullet-active {
  background-color: #333;
}
.leaders-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 3px !important;
}

.leader-item {
  text-align: left;
}

/* section blog */

section.blog-section {
  padding: 80px 0;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.blog-title {
  padding: 20px;
  margin: 0;
}

.read-more {
  color: #1f9947;
  text-decoration: none;
  margin: 0 1rem 0.5rem 1rem;
  gap: 0.5rem;
  align-items: center;
  transition: all 0.2s ease;
  font-weight: 600;
  display: inline-flex;
}

.blog-card:hover .read-more {
  gap: 0.2rem;
}

.blog-card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #1f9947;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.blog-card:hover a::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.blog-card:hover a {
  transform: translateX(5px);
}

/* footer */
.site-footer {
  background-color: #001f2a;
  color: #fff;
  border-radius: 15px;
  padding: 1rem;
  overflow: hidden;
  margin-top:50px;
}
.footer-logo .logo {
  max-height: 40px !important;
}

.get-demo {
  padding-top: 4.5rem;
  padding-left: 4rem;
  border-bottom: 1px solid #fff3;
}

.get-demo .col-lg-7 {
  padding-right: 6rem;
}

.get-demo img {
  z-index: 1;
  border-radius: 8.9px;
  transform: translate(12%, -40px);
  box-shadow: 14.84px 14.84px 103.87px #011f291a;
}

.get-demo .images {
  position: relative;
}

.get-demo .img-2 {
  position: absolute;
  left: -10%;
  z-index: 11111;
  max-height: 160px;
  left: -30%;
  top: auto;
  bottom: -15%;
}

.get-demo .button-special:before {
  background-color: #fff;
}

.get-demo .button-special {
  background-color: #001f2a;
  margin-bottom: 50px;
}
.get-demo h1 {
  margin-bottom: 2rem;
}

.get-demo .highlight {
  background-color: #a3e4fe;
}

.certied {
  padding: 2rem 4.5rem;
  display: flex;
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.certied .left {
  z-index: 1000;
}

.certied-img {
  border-radius: 12px;
  overflow: hidden;
}

.certied .left h5 {
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 133%;
}

.certied .images {
  display: flex;
  gap: 1rem;
}

.leader-item h5 {
  font-size: 1.2rem;
  font-weight: 700;
}

.leader-item p {
  font-size: 1rem;
}

.invert {
  filter: invert(1) brightness(1000);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 2rem 4.5rem;
}

.footer-logo img:not(.social-icon) {
  margin-bottom: 1rem;
}

.footer-logo img.social-icon {
  filter: invert(1);
  height: 15px;
}

.footer-logo span {
  display: block;
  max-width: 250px;
  padding-left: 10px;
}

@media (min-width: 1200px) {
  .footer-nav-column {
    width: 200px;
  }
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-nav-column h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-nav-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-nav-column ul li {
  margin-bottom: 10px;
}

.footer-nav-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-nav-column h4 {
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
}

.footer-nav-column li a {
  transition: opacity 0.3s ease-in-out;
  opacity: 0.8;
  font-size: 18px;
  line-height: 155.556%;
}

.footer-nav-column li a:hover {
  opacity: 1;
}

.footer-bottom a {
  color: #001f2a;
}

.copyr {
  opacity: 0.6;
  font-weight: 500;
  font-size: 1rem;
  line-height: 150%;
}

.footer-bottom .footer-links {
  font-weight: 500;
  font-size: 1rem;
  line-height: 150%;
  margin-bottom: 1rem;
}

.footer-bottom a:after.item:not(:last-child) {
  content: " ";
  position: relative;
  border-right: 1px solid;
  padding-left: 1rem;
  color: rgb(0, 31, 42, 0.2);
}

.footer-social-icons {
  padding-left: 10px;
  margin-top: 1rem;
  display: flex;
}

.footer-social-icons > a {
  background-color: #fff3;
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 5px;
  color: #fff;
  font-size: 1.1rem;
}

.footer-social-icons > a:hover {
  background-color: #4d636a;
}

.footer-social-icons > a svg {
  width: fit-content;
  height: fit-content;
}

/* mobil */

.d-mobile {
  display: none;
}

@media (max-width: 1200px) {
  .sticky-section .area {
    width: 100% !important;
  }
}

@media (max-width: 992px) {
  section.collab-section{
    padding-top: 0px !important;
  }
  .image-wrapper.img-3 img,
  .image-wrapper.img-1 img {
    width: 140px;
  }
  .solution-block-images {
    flex-direction: column;
    overflow: visible;
  }
  .sticky-section {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }
  .navbar .nav-item {
    display: block;
  }
  .trusted-by .grid-area {
    grid-template-columns: auto;
  }
  .trusted-by .image-wrapper {
    position: relative !important;
    left: 0 !important;
  }
  .trusted-by .image-wrapper img {
    height: auto;
    max-width: 100%;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section .button-special {
    margin-bottom: 2rem;
  }
  section.trusted-by {
    padding-top: 1rem;
  }
  .trusted-by .images-container {
    position: relative;
    padding: 0 1.5rem;
  }
  section.trusted-by .container {
    padding: 0 0 2rem 0 !important;
  }
  .image-wrapper.img-1,
  .image-wrapper.img-3 {
    transform: none;
    top: 0;
  }
  .trusted-by {
    background: #001e29;
    border-radius: 1rem;
  }
  .trusted-by .grid-area .item .number {
    font-size: 3.5rem;
  }

  .trusted-by .grid-area .item .desc {
    font-size: 1.2rem;
  }
  .hero-section .txt {
    margin: 0;
  }
  .advantage-slider .advantage-item h5 {
    font-size: 1.5rem;
  }

  .competitive-advantage h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .sticky-section#measure .area.area-2,
  .sticky-section#analyze .area.area-2 {
    order: 1;
  }
  .sticky-nav {
    width: 100%;
  }
  .features-section,
  .solutions-section,
  .frameworks-section,
  .testimonials-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .container.solutions-container {
    flex-direction: column;
  }

  .solutions-left.expand-left {
    width: 100% !important;
  }

  .solutions-right {
    width: 100% !important;
  }

  .solutions-left.expand-left {
    gap: 1rem;
  }

  .solution.left-wrapper,
  .solution.right-wrapper {
    height: 100%;
    position: relative;
  }

  .solutions-container .desc {
    padding: 2.5rem;
  }

  img.solutions-image {
    position: relative;
  }

  .solutions-left,
  .solutions-right {
    width: 100% !important;
    height: auto !important;
  }
  .solution-block-images .solutions-bg {
    width: 100% !important;
    height: auto !important;
  }

  .solution-block-images {
    max-height: 380px;
    opacity: 1;
    padding: 1.5rem;
  }

  section.why-section h1 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
  }

  .why-section .highlight{
    display: inline-block;
  }
  section.why-section .items .item .title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  .leaders-slider {
    padding-bottom: 100px;
  }
  .leader-item h5 {
    font-size: 1.1rem;
    font-weight: 500;
  }

  .leader-item p {
    font-size: 1rem;
  }
  .leader-item h5 {
    font-size: 1.1rem;
    font-weight: 500;
  }

  .leader-item p {
    font-size: 1rem;
  }

  .sustainability-leaders {
    padding-top: 50px;
  }

  section.blog-section {
    padding: 40px 0;
  }

  .blog-card {
    margin-bottom: 1.5rem;
  }

  h3.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 10px;
  }

  .read-more {
    margin: 0 1rem 0.5rem 0.5rem;
  }
  .get-demo img {
    position: relative;
    transform: none;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
  }

  .get-demo .col-lg-7 {
    padding-right: 0;
  }
  .certied {
    flex-direction: column;
  }

  .certied .images {
    flex-wrap: wrap;
  }

  .get-demo .button-special {
    margin-bottom: 1.5rem;
  }
  .get-demo {
    padding: 1.5rem;
  }

  img.img-fluid.img-2 {
    position: absolute;
    right: -5%;
    left: auto;
    top: 64%;
    width: 50%;
  }

  .certied {
    padding: 1rem 1.5rem;
  }
  .footer-top {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 2rem;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-nav-column {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column-reverse;
  }
  .image-wrapper.img-1 {
    top: 0;
    transform: translate(80%, 20%);
    left: auto !important;
  }
  .image-wrapper.img-3 {
    transform: translate(60%, -51%);
  }
  .button-special {
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem;
  }
  .button-special span {
    font-weight: 500;
  }
  .container {
    --bs-gutter-x: 3rem;
  }
  .trusted-by .txt {
    margin: 0.5rem 1rem;
  }
  .competitive-advantage {
    padding: 50px 0 0 0;
  }
  #navbarNav {
    background-color: #f6f5ef;
    padding: 1rem;
    position: absolute;
    right: 0;
    left: 0;
    top: 60px;
    box-shadow: 0 100px 100px #00000029;
  }
  .sticky-section .area h5 {
    font-size: 2.1rem;
  }
  button:focus:not(:focus-visible) {
    box-shadow: none !important;
  }

  #navbarNav .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
  }

  .navbar-nav .dropdown-menu {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    padding-left: 1rem;
  }

  #navbarNav .dropdown-toggle::after {
    right: 0;
    position: absolute;
  }

  .navbar-nav.icon-navbar {
    width: 100%;
  }

  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 1 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
    transition: transform 0.3s ease-in-out;
    border: none;
    width: 15px;
  }

  #navbarNav .dropdown {
    margin: 0 !important;
  }

  .dropdown-toggle.show:after {
    transform: rotate(180deg);
  }
  .d-mobile {
    display: block;
  }
  .get-demo-btn {
    text-align: center;
  }
  .get-demo-btn .btn,
  .get-demo-btn .button-special {
    margin-bottom: 0;
  }
  .get-demo-btn .button-special {
    margin-top: 1rem;
  }
  .footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .navbar .nav-item {
    justify-content: center;
  }
  .hero-section .cover-bg{
    position: absolute;
    margin-top: 0 !important;
  }
}

/* animasyonlar için iyileştirmelei */

* {
  will-change: auto;
}

.animated-element {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.transition-element {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@keyframes slide-in {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.slide-in {
  animation: slide-in 0.5s ease forwards;
}

.gpu-acc {
  transform: translate3d(0, 0, 0);
}

.sticky-element {
  position: sticky;
  top: 0;
}

.hover-effect {
  transition: all 0.3s ease;
}

.hover-effect:hover {
  transform: scale(1.05);
}

.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-load.loaded {
  opacity: 1;
}

/* ----- */

.list-with-check {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 992px) {
  .list-with-check {
    flex-direction: column;
    gap: 0;
  }
}

.list-with-check ul {
  margin-bottom: 0;
}

.list-with-check li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  line-height: 155.556%;
  color: #fff;
  margin-bottom: 0.5rem;
}

.list-with-check li::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url("./images/icons/check.svg");
  background-size: contain;
}

.shape-wrapper .box {
  background-color: #ef7d00;
  padding: 0.5rem 1rem 0.5rem 3rem;
  border-radius: 8px;
  position: absolute;
}

.shape-wrapper {
  position: relative;
  min-width: 600px;
  transform: scale(0.8);
}
.shape-wrapper .box {
  font-weight: 500;
}
.shape-wrapper .box.box-1 {
  left: 35%;
}

.shape-wrapper .box.box-2 {
  left: 63%;
  top: 10%;
}

.shape-wrapper .box.box-3 {
  right: 5%;
  top: 32%;
}
.shape-wrapper .box.box-4 {
  right: 5%;
  top: 60%;
}
.shape-wrapper .box.box-5 {
  right: 15%;
  top: 78%;
}
.shape-wrapper .box.box-6 {
  right: 28%;
  bottom: -5%;
}
.shape-wrapper .box.box-7 {
  left: 17%;
  bottom: 8%;
}
.shape-wrapper .box.box-8 {
  left: 0%;
  bottom: 32%;
}
.shape-wrapper .box.box-9 {
  left: 0%;
  top: 32%;
}
.shape-wrapper .box.box-10 {
  left: 15%;
  top: 10%;
}

.shape-wrapper .module-icon {
  position: absolute;
  background: white;
  width: 52px;
  height: 52px;
  left: 8%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 0.2rem;
  border: 3px solid #ef7d00;
}

/* @media (min-width: 500px) and (max-width: 570px){
  .shape-wrapper {
      transform: scale(0.60);
      left: -25%
  }
}

@media (min-width: 570px) and (max-width: 992px){
  .shape-wrapper {
      transform: scale(0.65);
      left: -15%;
  }
} */

@media (min-width: 500px) and (max-width: 570px) {
  .shape-wrapper {
    transform: scale(0.6);
    left: -20%;
  }
  .shape-wrapper .box {
    padding: 0.3rem 0.7rem 0.3rem 2rem;
    font-size: 0.8rem;
  }
}

@media (min-width: 570px) and (max-width: 992px) {
  .shape-wrapper {
    transform: scale(0.7);
    left: -10%;
  }
  .shape-wrapper .box {
    padding: 0.4rem 0.8rem 0.4rem 2.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 500px) {
  .shape-wrapper {
    transform: scale(0.5);
    left: -35%;
  }
}
@media (max-width: 450px) {
  .shape-wrapper {
    transform: scale(0.4);
    left: -45%;
  }
}
@media (max-width: 400px) {
  .shape-wrapper {
    transform: scale(0.4);
    left: -65%;
  }
}
@media (max-width: 376px) {
  .shape-wrapper {
    transform: scale(0.3);
    left: -70%;
  }
}
@media (max-width: 376px) {
  .shape-wrapper {
    transform: scale(0.3);
    left: -85%;
  }
}

section.contact-section {
  padding-bottom: 60px;
  padding-top: 60px;
  margin-bottom: 2rem;
  background: url(./images/contact-bg.jpg);
  min-height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
}

.contact-section {
  background: #fff;
}

.contact-section .title-wrapper h5 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0;
  color: #fff;
}

.contact-section .title-wrapper h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.contact-section .container .img-fluid {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 50%;
  padding: 1rem;
  aspect-ratio: 1;
  width: 450px;
  height: 450px;
}

@media (max-width: 768px) {
  .contact-section .container .img-fluid {
    width: 200px;
    height: 200px;
  }
}

.contact-section form input,
.contact-section form textarea {
  height: 50px;
  border: 0 !important;
  margin-bottom: 1rem;
  box-shadow: none !important;
  border: 2px solid transparent !important;
}

.contact-section form input:focus,
.contact-section form textarea:focus {
  border: 2px solid var(--green-two) !important;
}

.contact-section form textarea {
  resize: none;
  height: 150px;
  border: 0;
}

.contact-section .text p {
  font-size: 1rem;
  color: #f1f1f1;
  line-height: 1.4rem;
  margin: 0 0 15px;
}

.contact-section input {
  height: 50px;
}

.contact-section input,
.contact-section textarea {
  border: 0 !important;
  margin-bottom: 1rem;
  box-shadow: none !important;
  border: 2px solid transparent !important;
}

.contact-section textarea {
  resize: none !important;
}

.contact-section .button-special {
  background: transparent !important;
}

.hero-section .cover-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.hero-section {
  position: relative;
}
.hero-section .cover-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.hero-section .container .row,
.hero-section .container .row > div{
    height: 100% !important;
}

.hero-section .container .row > div{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.hero-section .cover-bg + .container {
  /* padding-bottom: 80px; */
}

/* hero new ---- */
section.hero-section .button-special {
  background: none;
  filter: invert(1);
}

.hero-section .cover-bg {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  filter: brightness(0.4);
  z-index: -1111;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

@media (max-width: 768px) {

}

section.hero-section * {
  color: #f1f1f1;
}

@media (min-width: 992px){
  .hero-section .cover-bg + .container {
    height: 100% !important;
    display: flex;
    align-items: center;
    margin-bottom: 0 !important;
  }
  section.hero-section{
    height: 100vh;
  }
}

@media (max-width: 992px) {
  .navbar:not(.scrolled) .navbar-toggler-v2 {
    filter: invert(1);
  }
  .hero-section {
    clip-path: none;
    padding-bottom: 1rem !important;
  }
}

@media (max-width: 1299px){
  
  .hero-section .cover-bg {
    position: absolute !important;
    background-attachment: scroll;
  }
  .hero-section,
  .cover-bg {
      height: auto !important;
  }
  .hero-section{
    position: relative;
  }
}

@media (min-width: 1300px){
  section.hero-section p {
      position: absolute;
      bottom: 5px;
      max-width: 920px;
  }
}

@media (min-width: 992px) {
  .navbar:not(.scrolled) .dropdown-toggle::after {
    filter: invert(1);
  }

  .navbar:not(.scrolled) .nav-link {
    color: #fff !important;
  }
  .navbar:not(.scrolled) .nav-link img {
    filter: invert(1);
  }

  .navbar:not(.scrolled) .button-special.sm-btn {
    filter: invert(1);
    background: transparent;
  }
}

.navbar:not(.scrolled) .navbar-brand img {
  content: url('./images/logo-white.svg');
}

.navbar.scrolled .navbar-brand img {
  content: url('./images/logo.svg');
}

@media (max-width: 992px) {
  .navbar:not(.scrolled) .navbar-brand img {
    content: url('./images/logo-white.svg');
  }
}

.hero-section .cover-bg {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1111;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

.hero-section .cover-bg {
  background-image: linear-gradient(
    135deg,
    rgba(0, 82, 204, 0.8),
    rgba(0, 184, 217, 0.8),
    rgba(114, 187, 111, 0.7) 
  ), url('./images/cover-bg.jpg');
  filter: brightness(0.5) contrast(1.2);
}


section.collab-section {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}


section.collab-section .card {
  position: relative;
  text-align: center;
  border: 0;
  background: url(./images/cover-bg.jpg);
  background-size: cover;
  background-position: center;
  animation: backgroundMove 40s infinite linear;
  color: var(--white);
  /*  padding: 40px;*/
  border-radius: 10px;
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  overflow: hidden;
}

section.collab-section .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 30, 41, 0.8); */
  z-index: 0;
  backdrop-filter: sepia(.5) brightness(0.16);
  /* background-image: linear-gradient(135deg, rgba(0, 82, 204, 0.8), rgba(0, 184, 217, 0.8), rgba(114, 187, 111, 0.7)), url(./assets/images/cover-bg.jpg); */

  
/* section.collab-section .card:after{
  content: " ";
  background: rgba(0,0,0,.4);
  left: 0;
  right: 0;
  bottom: 0;
  top:0;
  position: absolute;
} */
}

section.collab-section .card h3 {
  font-size: 2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

section.collab-section .card p {
  font-size: 1.1em;
  margin-bottom: 0;
  color: var(--white);
}

section.collab-section .button-special {
  background: transparent;
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 5px;
  transition: background 0.3s;
}

section.collab-section .button-special:hover {
}
section.collab-section .card * {
  z-index: 11000;
}

@keyframes backgroundMove {
  0% { background-position: 0 0; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}


.collab-section .button-special::before {
  background: #ef7d00;
  color: #fff;
}

.collab-section .button-special span {
  mix-blend-mode: hard-light;
}

.collab-section .button-special:hover:before {
  background: #ef7d00;
}

.collab-section .items {
  padding-left: 0;
  list-style: none;
}

.collab-section .items .item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

.collab-section .items .item .icon-wrapper {
  color: var(--text-color);
  margin-right: 10px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.65rem;
  aspect-ratio: 1;
}

.collab-section .items .desc{
  text-align: left;
}

.collab-section .items .item .title {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: .5rem;
}

.collab-section .items .item.bg-1 .icon-wrapper {
  background-color: #98eab3;
}

.collab-section .items .item.bg-2 .icon-wrapper {
  background-color: #a3e4fe;
}

.collab-section .items .item.bg-3 .icon-wrapper {
  background-color: #ffe5a0;
}

.collab-section .items .item.bg-4 .icon-wrapper {
  background-color: #FFCDD2;
}

.collab-section .items .item.bg-5 .icon-wrapper {
  background-color: #C8E6C9;
}

.collab-section .items .item.bg-6 .icon-wrapper {
  background-color: #D1C4E9;
}

.collab-section .items .item.bg-7 .icon-wrapper {
  background-color: #FFCCBC;
}

.collab-section .items .item.bg-8 .icon-wrapper {
  background-color: #F0F4C3; 
}

.collab-section .items .item.bg-9 .icon-wrapper {
  background-color: #55efc4;
}

.collab-section .items .item.bg-10 .icon-wrapper {
  background-color: #E1BEE7;
}

.collab-section .items .item:not(:last-child) {
  border-bottom: 1px solid rgb(255, 255, 255, 0.2);
}

.collab-section h1 {
  font-size: 2.5rem;
  font-weight: 700;

}
.collab-section .icon-wrapper img.icon {
  height: 40px;
  width: 40px;
}
.collab-section .boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

@media(max-width: 992px){
  .collab-section .boxes {
    padding: 0 !important;
  }
  section.collab-section .card{
    padding: 1rem;
  }
  .collab-section .boxes .box:not(.box-3) canvas {
    width: 185px !important;
    height: 185px !important; 
  }
}
@media(max-width: 500px){
  .collab-section .boxes {
    grid-template-columns: repeat(1, 1fr);
  }
}

.collab-section .boxes .box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; */
}

.collab-section .boxes .box canvas {
  width: 100% !important;
  height: auto !important;
}

.collab-section .boxes .box h6.classic-title{
  font-size: 1rem;
  color: #333;
  font-weight: 800;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 1rem;
}

@media (min-width: 992px) and (max-width: 1200px){
  .collab-section .boxes .box canvas {
    width: 205px !important;
    height: 205px !important; 
  }
  .collab-section .boxes .box{
    align-items: center;
  }
  .collab-section .title-wrapper {
    width: 100%;
  }
}
@media (max-width: 991.8px){
  .collab-section .boxes .box canvas {
    width: 200px !important;
    height: 200px !important; 
  }
}
@media (min-width: 1200px){
  .collab-section .boxes .box canvas {
    width: 185px !important;
    height: 185px !important; 
  }
}

.collab-section .content:has(.items) {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collab-section h6.mini-title {
  text-align: left;
  color: gray;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .85rem;
  margin-bottom: 0;
}

.modal-backdrop.fade.show {
  z-index: 1111111;
}

.modal {
  z-index: 1111112;
}

.form-label{
  color: #4d4d4d;
  font-weight: 600;
  text-transform: uppercase;
  font-size: .85rem;
}

.form-control{
  height: 45px;
  border-radius: 5px
}

.modal-header {
  border-bottom: 0;
}

.modal-content{
  overflow: hidden;
}

.button-special-alt {
  pointer-events: auto;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 1.5rem 3rem;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.8, 1);
  text-decoration: none;
  font-size: 1.2rem;
}

.button-special-alt span {
  display: block;
  mix-blend-mode: difference;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.8, 1);
  color: var(--white);
  font-weight: 600;
}

.button-special-alt:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--bg-color);
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
  transition: clip-path 0.4s cubic-bezier(0.2, 1, 0.8, 1),
    -webkit-clip-path 0.4s cubic-bezier(0.2, 1, 0.8, 1);
}

.button-special-alt:hover:before {
  background: var(--bg-color);
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.button-special-alt.sm-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .navbar:not(.scrolled) .button-special-alt.sm-btn {
    filter: invert(1);
    background: transparent;
  }
}