@import url("https://fonts.googleapis.com/css2?family=Inter+Display:wght@100..900&display=swap");

@font-face {
  font-family: "TWK Lausanne";
  src:
    url("../fonts/TWKLausanne1-350.woff2") format("woff2"),
    url("../fonts/TWKLausanne1-350.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TWK Lausanne";
  src:
    url("../fonts/TWKLausanne1-450.woff2") format("woff2"),
    url("../fonts/TWKLausanne1-450.woff") format("woff");
  font-weight: 450;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TWK Lausanne";
  src:
    url("../fonts/TWKLausanne1-550.woff2") format("woff2"),
    url("../fonts/TWKLausanne1-550.woff") format("woff");
  font-weight: 550;
  font-style: normal;
  font-display: swap;
}

:root {
  --twk-font: "TWK Lausanne", sans-serif;
  --inter-font: "Inter Display", sans-serif;
  --bg: #060a12;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-hover: rgba(255, 255, 255, 0.07);
  --accent: #4f8ef7;
  --accent2: #7c5cfc;
  --accent3: #2dd4bf;
  --text: #e8edf5;
  --muted: #7a849a;
  --sidebar-w: 190px;
  --white-para: rgba(255, 255, 255, 0.75);
  --heading-dark: rgba(2, 46, 47, 1);
  --heading: rgba(2, 46, 47, 0.9);
  --para: rgba(2, 46, 47, 0.75);
  --dot-inactive: #d7dce6;
  --white-heading: rgba(255, 255, 255, 0.9);

  --img-active-w: 560px;
  --img-active-h: 360px;
  --img-inactive-w: 150px;
  --img-inactive-h: 190px;
  --img-inactive-w: 243px;
  --img-inactive-h: 177px;
  --img-gap: 22px;

  /* text slider sizing */
  --text-active-w: 640px;
  --text-inactive-w: 300px;
  --text-gap: 40px;
  --new-hover: #c1c9ff47;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--twk-font);
  background-color: #f9faff;
  overflow-x: clip;
}

.section-padding {
  padding: clamp(50px, 5vw, 80px) 0;
}

.section-padding-md {
  padding: clamp(50px, 5vw, 100px) 0;
}

.section-padding-lg {
  padding: clamp(65px, 5vw, 120px) 0;
}

p {
  font-family: var(--twk-font);
  font-weight: 350;
  font-size: 16px;
  line-height: 1.5;
  color: #c0c0c3;
  margin: 0;
}

h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: var(--twk-font);
  margin: 0;
}

h1 {
  font-weight: 550;
}

h2 {
  font-weight: 450;
}

.pb-none {
  padding-bottom: 0 !important;
}

.align-center {
  align-items: center;
}

.bin-container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.bin-btn {
  --primary-color: #5879fb;
  --secondary-color: #fff;
  --hover-color: #111;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  font-family: var(--twk-font);
  border: 0;
  border-radius: 12px;
  color: var(--secondary-color);
  padding: 0.8em 1.3em;
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  font-weight: 450;
  display: inline-flex;
  background:
    linear-gradient(180deg,
      rgba(92, 237, 224, 0.6) 0%,
      rgba(52, 135, 128, 0) 60.71%),
    #576bff;
  font-size: 14px;
}

.bin-btn .arrow {
  margin-top: 0px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}

.bin-btn .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}

.bin-btn.outline-bin-btn {
  backdrop-filter: blur(27.600000381469727px);
  border: 1px solid #ffffff33;
  background: #ffffff12;
  transition: all .3s ease-in-out;
}

.bin-btn.outline-bin-btn .arrow {
  background: transparent;
}

.bin-btn:hover {
  /* background-color: var(--hover-color); */
  background: linear-gradient(180deg, rgba(90, 230, 218, 0.6) 0%, rgba(52, 135, 128, 0) 60.71%), #4757d1;
  color: var(--secondary-color);
}

.bin-btn:hover .arrow {
  background: var(--secondary-color);
}

.bin-btn:hover .arrow:before {
  right: 0;
}

.bin-btn.outline-bin-btn:hover {
  background: #f7f7f938 !important;
}

.bin-heading h2 {
  font-family: var(--twk-font);
  font-weight: 450;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--heading-dark);
  text-align: center;
  margin: 0;
  margin-bottom: 16px;
}

.bin-heading p {
  max-width: 683px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: var(--para);
  font-weight: 350;
  font-size: 16px;
  font-family: var(--twk-font);
}

.bin-heading.white h2 {
  color: white;
}

.bin-heading.white p {
  color: var(--white-para);
}

.bin-heading {
  margin-bottom: clamp(40px, 3vw, 64px);
}

.bin-heading.mb-none {
  margin-bottom: 0;
}

/* new nav */

.site-header {
  background: transparent !important;
  position: fixed !important;
  width: 100% !important;
  transition: all 0.3s ease;
  top: 0;
  z-index: 999;
}

.site-header {
  background: transparent;
}

.site-header.scrolled {
  padding: 10px 0;
}

.site-header.fixed {
  transform: translateY(0);
}

.site-header.hide {
  transform: translateY(-100%);
}

.site-header.scrolled .main-navigation ul>li.menu-item-has-children>i {
  color: white;
}

.site-header.scrolled {
  box-shadow: unset;
  background: unset;
  backdrop-filter: unset;
  border-bottom: unset;
}

.site-header.scrolled .uk-container.uk-container-large {
  position: relative;
  z-index: 0;
  max-width: 800px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 6, 50, 0.14) 100%);
  box-shadow: 0px 2px 2px 0px #06126c33;
  padding: 0 10px;
}

.site-header.scrolled .uk-container.uk-container-large::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;

  background: linear-gradient(125.41deg,
      rgba(43, 214, 206, 0.3) 0.7%,
      rgba(42, 46, 216, 0.3) 99.8%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.site-header .uk-container.uk-container-large {
  transition: all ease-in-out 0.4s;
  position: relative;
  z-index: 9999;
}


.site-header.scrolled .uk-container.uk-container-large::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  backdrop-filter: blur(19.799999237060547px);
  inset: 0;
  z-index: -1;
  border-radius: 16px;
    pointer-events: none;
}

.site-header a {
  color: #fff;
  transition: color 0.3s ease;
}

.site-header .custom-logo {
  padding: 10px 0;
  height: auto;
  width: 112px;
}

.site-header.scrolled #primary-menu>ul>li>a {
  color: #000;
}

.site-header.scrolled .site-branding {
  padding: 10px 0;
}

.main-navigation ul>li>a {
  font-family: var(--twk-font);
  font-weight: 550;
  font-size: 14px;
}

.offcanvas .bin-btn {
  margin: 12px 20px;
}

.main-navigation ul>li>a {
  color: #9d9d9d;
}

/* new nav */
.hero-banner-section {
  background-color: #000;
  height: calc(100vh - 96px);
  position: relative;
  overflow: hidden;
}



.hero-banner-section h1,
.common-banner-section h1 {
  font-size: clamp(40px, 3vw, 64px);
  line-height: 1.05;
  background: linear-gradient(90deg,
      #576bff 0.92%,
      #ecf3ff 50.46%,
      #576bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  width: 100%;
  padding-bottom: clamp(22px, 3vw, 30px);
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease forwards;
  font-weight: 550;
}

.common-banner-section h1 {
  font-size: clamp(37px, 3vw, 64px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-banner-section>.bin-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translateY(-50%);
  top: 42%;
  position: relative;
  z-index: 1;
}

.banner-text {
  text-align: center;
  position: relative;
  z-index: 2;
}

.banner-text::before {
  position: absolute;
  content: "";
  background-image: url(../img/banner-text-bg.png);
  top: -53px;
  left: -50px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 250px;
  height: 250px;
  opacity: 0.16;
}

.banner-text p {
  max-width: 746px;
  width: 100%;
  margin: 0 auto;
  font-weight: 450;
  line-height: 1.7;
}

.hero-banner-section .banner-text p,
.common-banner-section p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
  color: #c0c0c3;
}

.common-banner-section .h1.banner-title {
  margin-bottom: 0;
}

.banner-text .btn-wrapper {
  margin-top: clamp(35px, 3vw, 40px);
  display: flex;
  gap: 12px;
  justify-content: center;
}

.hero-banner-section video {
  display: block;
  opacity: 1;
  position: absolute;
  object-fit: contain;
  bottom: 0;
  height: auto;
  width: 1000px;
  transform: translateX(-50%);
  left: 50%;
  pointer-events: none;
}

.hero-banner-section>.bin-container::before,
.hero-banner-section>.bin-container::after {
  content: '';
  position: absolute;
  background: linear-gradient(to right, rgb(0 0 0) 0%, rgb(0 0 0 / 65%) 40%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
  bottom: -110px;
  pointer-events: none;
}

.hero-banner-section>.bin-container::after {
  background: linear-gradient(to left, rgb(0 0 0) 0%, rgb(0 0 0 / 65%) 40%, rgba(0, 0, 0, 0) 100%);
}

.marquee-section {
  padding: 25px 0;
  background: #fff;
  display: flex;
  overflow: clip;
  border-bottom: 1px dashed #c2c3cc;
}

.marquee-section>div {
  display: flex;
  align-items: center;
}

.marquee-text {
  flex-shrink: 0;
}

.marquee-text p {
  color: var(--para);
  margin: 0;
  margin-right: 30px;
  font-family: var(--twk-font);
}

.marquee-wrapper {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-track img {
  height: 22px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.3s;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* banner-badge-slider */
.wrap {
  display: inline-flex;
  gap: 0px;
  align-items: center;
  border-radius: 24px;
  box-shadow: 0px 0px 2.51px 0px #00000040;
  border: 0.7px solid #ffffff1a;
  width: fit-content;
  height: 40px;
  background: rgba(50, 49, 49, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 20px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}


.stack-side {
  position: relative;
  flex-shrink: 0;
  width: 50px;
  height: 2px;
}

.stack-card {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.65s ease;
  top: -10px;
  left: 10px;
  border: 2px solid white;
}

.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.stack-card .badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.38);
  border-radius: 20px;
  padding: 4px 13px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
}

/* ── Content ── */
.content-side {
  flex: 1;
  width: max-content;
  position: relative;
}

.panel {
  position: absolute;
  top: 0;
  left: 9px;
  width: 100%;
  opacity: 0;
  transition:
    opacity 260ms ease,
    transform 200ms ease;
  pointer-events: none;
}

.panel.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}



.panel h2 {
  font-size: 12px;
  color: rgb(255, 255, 255, 0.9);
  line-height: 1.3;
  font-weight: 550;
  font-size: 12px;
  margin: 0;
  width: max-content;
}

.panel p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.panel h2 {
  opacity: 0;
  transition: opacity 250ms ease, transform 250ms ease;
  -webkit-transition: opacity 250ms ease, transform 250ms ease;
  -moz-transition: opacity 250ms ease, transform 250ms ease;
  -ms-transition: opacity 250ms ease, transform 250ms ease;
  -o-transition: opacity 250ms ease, transform 250ms ease;
}

.panel.active h2 {
  opacity: 1;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  background: #f5f5f3;
  border: 1px solid #e5e5e2;
  border-radius: 20px;
  padding: 6px 14px;
  color: #555;
}

/* ── Dots ── */
.dots {
  display: flex;
  gap: 6px;
  margin-top: 24px;
  display: none;
}

.dot {
  height: 7px;
  width: 7px;
  border-radius: 4px;
  background: #d0d0cc;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.35s;
}

.dot.active {
  background: #1a1a1a;
  width: 20px;
}

.grid {
  display: grid;
  gap: 20px;
}

.top-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
}

.bottom-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* CARD */

.help-business-section .card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  overflow: hidden;
  position: relative;
  pointer-events: auto !important;
}

.help-business-section .card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 16px;

  background: linear-gradient(125.41deg,
      rgba(43, 214, 206, 0.3) 0.7%,
      rgba(42, 46, 216, 0.3) 99.8%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.help-business-section .card:hover {
  transform: translateY(-5px) !important;
}


.help-business-section .card.large {
  padding: 28px;
}

.help-business-section .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.help-business-section .card-header h3 {
  font-family: var(--twk-font);
  font-weight: 450;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0%;
}

.help-business-section .arrow {
  font-size: 10px;
  opacity: 0.6;
  transition: 0.3s;
  padding: 6px 9px;
  background-color: #f9faff;
  border: 1px solid #c7c8cc;
  color: var(--para);
  border-radius: 8px;
}

.help-business-section .card .arrow:hover {
  transform: translateX(5px);
  opacity: 1;
}

.help-business-section .top-grid .card p {
  max-width: 308px;
  width: 100%;
}

/* TEXT */
.help-business-section .card p {
  font-size: 14px;
  color: #416263;
  line-height: 1.5;
}

/* IMAGES */
.help-business-section .card img {
  width: 100%;
  margin-top: 16px;
  border-radius: 12px;
}

.help-business-section .top-grid .card img {
  max-height: 316px;
}

.help-business-section .bottom-grid .card p {
  max-width: 237px;
}

.help-business-section .bottom-grid .card img {
  width: auto;
}

.web-solutions-section {
  background-color: #000000;
}

/* ── Animated background ── */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: drift linear infinite;
}

.orb1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #0043ff, #00000059 75%);
  bottom: -266px;
  left: -100px;
  animation-duration: 6s;
}

.orb2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #4f2da0, transparent 70%);
  bottom: -100px;
  right: -80px;
  animation-duration: 8s;
  animation-direction: reverse;
}

.orb3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #090680, transparent 70%);
  bottom: 100px;
  left: 30%;
  animation-duration: 18s;
}

.orb4 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #326e94, transparent 70%);
  top: 32%;
  right: 20%;
  animation-duration: 10s;
  animation-delay: -8s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  20% {
    transform: translate(70px, -45px) scale(1.08);
  }

  40% {
    transform: translate(-50px, 65px) scale(0.94);
  }

  60% {
    transform: translate(60px, 35px) scale(1.1);
  }

  80% {
    transform: translate(-35px, -55px) scale(0.97);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* ── Page layout ── */
.web-soln-box {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.web-soln-box .tabs {
  padding-left: 0;
}

.web-soln-box .tabs li {
  margin-bottom: 14px;
}

.web-soln-box .bin-heading>p {
  color: #bfbfbf;
  max-width: 511px;
  width: 100%;
}

/* ── Main glass card ── */
.web-solutions-section .card {
  width: 100%;
  max-width: 1200px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(79, 142, 247, 0.06);
  position: relative;
  z-index: 0;
  padding: 14px;
  height: 100%;
}

.web-solutions-section .card::before {
  position: absolute;
  content: "";
  width: 76%;
  height: 100%;
  background-image: url(../img/graph-grid.png);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  top: 0;
  right: 0;
}

.web-solutions-section .titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0px 5px 0;
}

.web-solutions-section .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.optimize-div {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.dot-r {
  background: #ff5f57;
}

.dot-y {
  background: #febc2e;
}

.dot-g {
  background: #28c840;
}

.card-body {
  display: flex;
  height: 100%;
}

/* ── Sidebar ── */
.sidebar {
  width: 249px;
  flex-shrink: 0;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(33px);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 10px 14px;
}

.brand-icon {
  width: 91px;
  height: auto;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.web-solutions-section .badge p {
  font-size: 14px;
  font-weight: 450;
  color: white;
  display: flex;
  align-items: center;
  gap: 7px;
}

.web-solutions-section .badge {
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: drop-shadow(0px 2px 2px rgba(107, 107, 107, 0.1));
  width: 184px;
  margin-left: 10px;
}

.web-solutions-section ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  user-select: none;
  border: 1px solid transparent;
  position: relative;
  margin-left: 10px;
}

.web-solutions-section ul li p {
  color: white;
  font-size: 16px;
  font-weight: 450;
}

.tab:hover {
  background: var(--glass-hover);
  color: var(--text);
}

.tab.active {
  background: linear-gradient(92.54deg,
      rgba(150, 145, 49, 0.25) 2.14%,
      rgba(50, 189, 116, 0.25) 98.47%);

  border-color: rgba(79, 142, 247, 0.25);
  box-shadow:
    0 0 16px rgba(79, 142, 247, 0.12) inset,
    0 2px 8px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  position: relative;
  z-index: 1;
  font-weight: 500;
  border-radius: 10px;
}

.tab.active::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(92.74deg,
      #969131 1.94%,
      rgba(255, 255, 255, 0) 50.73%,
      #32be74 99.52%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.tab.active .tab-icon {
  color: var(--accent);
}

.tab-icon {
  font-size: 1rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  display: inline-flex;
}


.content .gif-img {
  display: flex;
  gap: 115px;
  margin-top: clamp(30px, 3vw, 73px);
  justify-content: space-between;
  align-items: start;
}

.content .gif-img img {
  max-width: 443px;
  height: auto;
}

.content .gif-img img:first-child {
  max-width: 186px;
  height: auto;
}

.web-solutions-section .content {
  display: grid;
}

.web-solutions-section .panel {
  padding: 50px 75px;
  grid-area: 1 / 1;
  position: relative;
}

.web-solutions-section .content .panel h3 {
  font-size: 24px;
  font-weight: 550;
  margin-bottom: 8px;
  color: white;
}

.web-solutions-section .content .panel p {
  color: rgb(255, 255, 255, 75%);
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 465px;
  margin-bottom: 22px;
  font-size: 16px;
}

.web-soln-cta {
  text-align: center;
  margin: 100px auto 20px;
  padding: 0 75px;
}

.optimize-div>div>h3 {
  font-family: var(--twk-font);
  font-weight: 550;
  font-size: 24px;
  line-height: 44px;
  letter-spacing: -4%;
  color: white;
}

.optimize-div>div {
  position: relative;
  z-index: 0;
  padding-left: 12px;
}

.optimize-div>div::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 70%;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
}

.optimize-div>div:first-child::before {
  background-color: #2bd6ce;
}

.optimize-div>div:nth-child(2)::before {
  background-color: #576bff;
}

.counter {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}



.counter>div {
  position: relative;
  overflow: hidden;
  background: #ecedf8;
  padding: 34px;
  border-radius: clamp(10px, 3vw, 24px);
  height: 231px;
  width: 282px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color 0.35s ease, color 0.35s ease;
}

.counter>div:hover {
  background-color: var(--new-hover);
}

.counter>div>p {
  font-family: var(--twk-font);
  font-weight: 550;
  font-size: clamp(27px, 3vw, 40px);
  letter-spacing: -0.04em;
  color: var(--heading-dark);
  margin: 0;
}

.counter>div>span {
  font-family: var(--twk-font);
  font-weight: 350;
  font-size: 14px;
  line-height: 1.5;
  color: var(--heading-dark);
}

.counter-section .bin-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.counter-section .bin-heading h2 {
  text-align: start;
  max-width: 484px;
  width: 100%;
  margin: 0;
}

.counter-section .bin-heading p {
  text-align: end;
  max-width: 468px;
  width: 100%;
  color: var(--para);
  font-weight: 350;
  margin: 0;
}

/* core-services */
.core-services {
  background-color: #105e60;
}

.service-cards {
  position: relative;
}

.service-card-wrapper {
  position: sticky;
  top: 120px;
}

.service-card {
  position: relative;
  background-color: white;
  z-index: 0;
  padding: 20px 15px;
  overflow: hidden;
  display: flex;
  border-radius: clamp(10px, 3vw, 24px);
  align-items: center;
  gap: 40px;
  margin-bottom: 25px;

}

.service-card:not(:last-child) {
  margin-bottom: 25px;
}

.service-card::before {
  content: "";
  position: absolute;
  background-image: url(../img/services-bg.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.service-card>.service-img {
  width: 441px;
  height: 441px;
  overflow: hidden;
  border-radius: clamp(10px, 3vw, 18px);
}

.service-card>.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.service-card:hover>.service-img img {
  transform: scale(1.1);
}

.service-card span {
  background-color: #eeeeee;
  border-radius: 42px;
  opacity: 0.9;
  font-size: 14px;
  font-weight: 550;
  color: rgba(28, 67, 68, 0.9);
  padding: 10px 15px;
  margin-bottom: clamp(18px, 3vw, 27px);
  display: inline-block;
}

.service-card h3 {
  color: var(--heading);
  font-size: 24px;
  font-weight: 550;
  margin-bottom: clamp(12px, 3vw, 18px);
}

.service-card p {
  color: var(--para);
}

.service-card p:not(:last-child) {
  margin-bottom: 10px;
}

.core-services .service-card ul {
  margin-top: 40px;
}

.service-card ul,
.process-content ul,
.contact-text ul {
  margin-top: 25px;
  list-style: none;
  padding-left: 0;
}

.process-content ul {
  margin-top: 40px;
}

.service-card ul li,
.process-content li,
.contact-text ul li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
}

.service-card ul li {
  color: rgba(2, 46, 47, 0.9);
  font-family: var(--twk-font);
  font-weight: 350;
  font-size: 16px;
}

.service-card ul li::before,
.process-content li::before,
.contact-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 24px;
  height: 24px;
  background: url("../img/round-tick.png") no-repeat center;
  background-size: contain;
}

.service-content {
  max-width: 511px;
  width: 100%;
}

.progress-fill {
  background: #11bab5;
  will-change: left, width;
  transition: none !important;
}

.process-section {
  padding: clamp(50px, 7vw, 100px) 0;
}

.process-tab-item.active a,
.process-tab-item:hover a {
  color: #11bab5;
  opacity: 0.9;
}

.processes>div:not(:last-child) {
  border-right: 1px solid #cacacc;
}

.processes>.process-tab-item {
  padding: 15px 60px;
}

.processes-div>div {
  margin-top: clamp(40px, 5vw, 90px);
}

.processes-div {
  padding: 0 clamp(20px, 5vw, 82px) clamp(20px, 5vw, 35px);
  gap: 30px;
}

.processes-div .bin-btn {
  margin-top: 20px;
}

.process-img {
  width: 100%;
  height: 100%;
  min-width: 200px;
}

.process-section .bin-heading p {
  max-width: 535px;
  width: 100%;
}

.process-content h4 {
  font-family: var(--twk-font);
  font-style: normal;
  font-weight: 550;
  font-size: clamp(20px, 3vw, 24px);
  display: flex;
  align-items: center;
  color: var(--heading);
  margin-bottom: 12px;
}

.process-content p {
  font-family: var(--twk-font);
  font-weight: 350;
  font-size: 16px;
  color: var(--para);
}

.process-content {
  transform: unset;
}

.process-content ul li {
  font-family: var(--twk-font);
  font-weight: 350;
  font-size: 16px;
  color: var(--heading);
}

.processes a {
  font-family: var(--twk-font);
  font-weight: 450;
  font-size: 16px;
  color: var(--heading);
}

.two-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 45px;
}

.digital-growth-section .two-grid {
  column-gap: 40px;
  row-gap: 30px;
  align-items: center;
}

.accordion {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 5px;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px 31px;
  transition: all 0.3s ease-in-out;
}

.accordion-item.slideup-content:hover h3 {
  color: var(--heading);
  transition: all 0.3s ease-in-out;
}

.accordion-item.active {
  opacity: 1;
  border-color: #d9ddff;
  background: #fff;
  transform: scale(1);
  padding: 20px 31px;
}


.accordion-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.accordion-header .icon {
  flex-shrink: 0;
  padding: 5px;
  background-color: #d9edef;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.accordion-header h3 {
  font-family: var(--twk-font);
  font-weight: 450;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.3;
  color: var(--heading);
}

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

.accordion-content-inner {
  padding: 0 24px 24px;
}

.accordion-item.slideup-content.animate {
  opacity: .4;
}

.accordion-item.active.slideup-content.animate {
  opacity: 1;
}

.accordion-content p {
  font-family: var(--twk-font);
  font-weight: 350;
  font-size: 14px;
  color: var(--para);
  padding-left: 48px;
  margin-top: 10px;
}

.digital-img>img {
  border-radius: clamp(10px, 3vw, 24px);
}

.three-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(283px, 1fr));
  gap: 24px;
}

.work-card {
  background-color: white;
  position: relative;
  z-index: 0;
  padding: 32px;
  border-radius: clamp(10px, 3vw, 24px);
  box-shadow: 0px 0px 12px 0px #001B4024;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.work-section .work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(125.41deg, rgba(43, 214, 206, 0.3) 0.7%, rgba(42, 46, 216, 0.3) 99.8%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: add, add;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.work-card::before {
  content: "";
  position: absolute;
  background-image: url(../img/work-with-bg.png);
  background-size: cover;
  width: 95%;
  height: 95%;
  background-repeat: no-repeat;
  inset: 0;
  top: 0px;
  left: 0px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: clamp(10px, 3vw, 24px);
  z-index: -1;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: clamp(10px, 3vw, 24px);
  background: #576bff1a;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.work-card:hover {
  box-shadow: none;
  transform: translateY(-4px) !important;
}

.work-card .icon-div {
  padding: 7px;
  background-color: #d9edef;
  margin-bottom: 24px;
  display: inline-block;
  border-radius: 8px;
}

.work-card svg {
  max-width: 22px;
  max-height: 22px;

}

.work-card p {
  font-family: var(--twk-font);
  font-weight: 350;
  font-size: 14px;
  color: var(--para);
  line-height: 1.6;
}

.work-card h3 {
  margin-bottom: 14px;
  font-family: var(--twk-font);
  font-weight: 450;
  font-size: 20px;
  line-height: 24.2px;
  letter-spacing: 0%;
  color: var(--heading);
}

.modern-technology-section {
  margin: clamp(40px, 5vw, 80px) 0 0;
}

.modern-technology-section>.bin-container>div.two-grid {
  background: #c3caff;
  border-radius: 28px;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 22px 70px;
  gap: 20px;
  overflow: hidden;
  position: relative;
}

.modern-technology-section .bin-header h2 {
  font-weight: 450;
  font-size: clamp(30px, 3vw, 40px);
  letter-spacing: -0.04em;
  color: var(--heading-dark);
  text-align: start;
  max-width: 387px;
  width: 100%;
  margin-bottom: 12px;
}

.modern-technology-section .bin-header p {
  font-family: var(--twk-font);
  font-weight: 350;
  font-size: 16px;
  color: var(--para);
  margin-top: 10px;
  width: 85%;
}

/* ── SOLAR WRAPPER ── */
.solar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 432px;
  position: relative;

}

.daily-tools-section .solar {
  --scale: 1 !important;
}

.solar {
  --size: 432px;
  --scale: 1;
  width: calc(var(--size) * var(--scale));
  height: calc(var(--size) * var(--scale));
  position: relative;
  flex-shrink: 0;
}

.solar>* {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}


.ring-outer {
  width: calc(432px * var(--scale));
  height: calc(432px * var(--scale));
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #f3f5ff 10%, #f3f5ff 35%, #e2e6ff 20%, #e2e6ff 52%, #cfd5ff 50.6%, #cfd5ff 70%);
  animation: pulse-ring 4s ease-in-out infinite;
  -webkit-animation: pulse-ring 4s ease-in-out infinite;
}

@keyframes pulse-ring {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.012);
    -webkit-transform: translate(-50%, -50%) scale(1.012);
    -moz-transform: translate(-50%, -50%) scale(1.012);
    -ms-transform: translate(-50%, -50%) scale(1.012);
    -o-transform: translate(-50%, -50%) scale(1.012);
  }
}



/* ── SUN ── */
.sun {
  width: calc(138px * var(--scale));
  height: calc(138px * var(--scale));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  overflow: hidden;

}

.sun img,
.sun svg {
  object-fit: contain;
  animation: spin-sun 8s linear infinite;
}

@keyframes spin-sun {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}


.orbit-track {
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  width: calc(432px * var(--scale));
  height: calc(432px * var(--scale));
  background: transparent;
}


.orbit-c {
  width: calc(432px * var(--scale));
  height: calc(432px * var(--scale));
  border-radius: 50%;
  z-index: 4;
  animation: spin-cw 28s linear infinite;
}

@keyframes spin-cw {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ── PLANET ── */
.planet {
  position: absolute;
  width: calc(66px * var(--scale));
  height: calc(66px * var(--scale));
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 calc(4px * var(--scale)) calc(18px * var(--scale)) rgba(80, 80, 180, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
  animation: unspin 28s linear infinite;
}

@keyframes unspin {
  to {
    transform: rotate(-360deg);
  }
}

.planet-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  background: #fff;
}

.planet:hover .planet-inner {
  transform: scale(1.13);
}

.planet img {
  width: calc(32px * var(--scale));
  height: calc(32px * var(--scale));
  object-fit: contain;
  pointer-events: none;
}

.planet:hover {
  box-shadow: 0 calc(6px * var(--scale)) calc(28px * var(--scale)) rgba(80, 80, 180, 0.38);
}


.planet-label {
  position: absolute;
  bottom: calc(-26px * var(--scale));
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a2e;
  color: #fff;
  font-size: calc(0.62rem * var(--scale));
  font-weight: 700;
  padding: calc(3px * var(--scale)) calc(8px * var(--scale));
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 20;
  font-family: var(--twk-font);
}

.planet:hover .planet-label {
  opacity: 1;
}

.faq-section .bin-heading {
  text-align: left;
  margin-bottom: 0;
}

.faq-section .bin-heading p {
  max-width: 384px;
  width: 100%;
  text-align: left;
  margin: unset;
}

.faq-section .bin-heading h2 {
  text-align: left;
}

.partner-img {
  height: 35px;
  width: auto;
}

.partner-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partners-info {
  background-color: #ecedf8;
  width: 306px;
  height: 195px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  border-radius: clamp(10px, 3vw, 24px);
  margin-top: clamp(32px, 3vw, 48px);
}

.review-info {
  display: flex;
  gap: 15px;
  align-items: center;
}

.review-info span {
  font-family: var(--twk-font);
  font-weight: 350;
  font-size: 14px;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px #001e521a;
  overflow: hidden;
}

.faq-item.slideup-content.animate {
  transition: all .3s ease-in-out;
}

/* Gradient Border */
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(125.41deg,
      rgba(43, 214, 206, 0.3) 0.7%,
      rgba(42, 46, 216, 0.3) 99.8%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding: 16px 20px;
}

.faq-header h3 {
  font-family: var(--twk-font);
  font-weight: 450;
  font-size: 20px;
  line-height: 24px;
  color: var(--heading);
}

.faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon i {
  transition: transform 0.35s ease;
  color: #143e45;
  font-size: 14px;
}

.faq-item.active .faq-icon i {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-content-inner {
  padding: 0 24px 24px;
}

.faq-content p {
  font-family: var(--twk-font);
  font-style: normal;
  font-weight: 350;
  font-size: 14px;
  color: var(--para);
}

.faq-content p:not(:first-child) {
  margin-top: 10px;
}

.faq-item.active {
  background: white;
}

.faq-item:hover:not(.faq-item.active) {
  background: var(--new-hover);
}

.cta-banner {
  background: linear-gradient(90deg, #5ab8ec 0%, #344099 100%);
  overflow: hidden;
}

.cta-banner .outline-bin-btn {
  text-align: center;
  margin: 36px auto 0;

}

.cta-banner .bin-heading {
  position: relative;
  text-align: center;
}

.cta-banner .bin-heading h2 {
  position: relative;
  z-index: 0;
}

.cta-banner .bin-heading h2::before {
  content: '';
  position: absolute;
  opacity: 0.3;
  background-image: url(../img/banner-text-bg.png);
  background-size: contain;
  height: 36vh;
  top: 14vh;
  left: 8vw;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  width: 36vw;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: -1;

}

.cta-banner .bin-heading p {
  color: #fff;
  font-weight: 350;
}

/* about us  page */
.our-mission-section>div>div {
  display: flex;
  align-items: center;
  gap: clamp(40px, 3vw, 64px);
}

.our-mission-section>div>div>div {
  width: 45%;
}

.masonry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  min-width: 588px;

}

.masonry-grid>div {
  overflow: hidden;
}

.masonry-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Top row */
.img1 {
  width: 330px;
  height: 300px;
}

.img2 {
  width: 234px;
  height: 300px;
}

/* Bottom row */
.img3 {
  width: 233px;
  height: 271px;
}

.img4 {
  width: 330px;
  height: 271px;
}

.mission-content.bin-heading {
  color: #406163;
}

.mission-content.bin-heading p {
  margin-top: 20px;
}

.masonry-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masonry-grid>div {
  overflow: hidden;
  border-radius: 23px;
}

.bin-text h2 {
  font-family: var(--twk-font);
  font-weight: 450;
  font-style: 450;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -3%;
}

.bin-text p {
  font-family: TWK Lausanne;
  font-weight: 350;
  font-style: 350;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 22px;
  color: #406163;
  text-align: justify;
}

.partner-powered-section .bin-heading p {
  max-width: 540px;
}

.partner-powered-section {
  background-color: #ecedf8;
}

.partner-powered-section .our-team-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.partner-powered-section .our-team-container:hover img {
  transform: scale(1.1);
}

.partner-powered-section .our-team-container {
  padding: 0;
  height: 364px;
  position: relative;
  overflow: hidden;
}

.partner-powered-section .our-team-container .entry-content {
  padding: 0 18px 20px;
}

.partner-powered-section .entry-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  color: #fff;

  /* Only the title is visible initially */
  transform: translateY(calc(100% - 42px));
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}

.partner-powered-section .entry-content h3 {
  margin: 0;
}

.partner-powered-section .entry-content p {
  margin-top: 16px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .3s ease .15s,
    transform .3s ease .15s;
  color: white;
}

@media (hover: hover) {
  .partner-powered-section .our-team-container:hover .blur-layer {
    height: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    bottom: 0;
    top: unset;
  }

  .partner-powered-section .our-team-container:hover .entry-content {
    transform: translateY(0);
  }

  .partner-powered-section .our-team-container:hover .entry-content p {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: none) {
  .partner-powered-section .our-team-container .blur-layer {
    background: rgba(15, 15, 20, .45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
  }

  .partner-powered-section .our-team-container .entry-content {
    transform: translateY(0);
  }

  .partner-powered-section .our-team-container .entry-content p {
    opacity: 1;
    transform: translateY(0);
  }
}

.our-story-section {
  overflow: hidden;
}

.our-story-section .bin-heading p {
  max-width: 440px;
}

.our-story-section .bin-heading {
  margin-bottom: 40px;
}

.our-values-section .work-card::before {
  display: none;
}

.our-values-section .work-card::after {
  background: linear-gradient(109.1deg, #eaedff 2.91%, #f6f8ff 98.08%);
  -webkit-mask: unset;
  z-index: -1;
}

.our-values-section .work-card {
  border: 1px solid #E4E8FF;
  box-shadow: none;
  transform: none !important;
}

.our-values-section .work-card:hover,
.work-section.industry-challenges-section .work-card:hover {
  transform: unset !important;
  box-shadow:
    0px 5px 12px 0px #4049A51A,
    0px 22px 22px 0px #4049A517,
    0px 49px 29px 0px #4049A50D,
    0px 87px 35px 0px #4049A503,
    0px 136px 38px 0px #4049A500;

}

.our-values-section .work-card .icon-div {
  background-color: white;
}

.faces-behind-section .bin-heading h2,
.faces-behind-section .bin-heading p {
  text-align: left;
  margin-left: 0;
}

.faces-behind-section .member-slider {
  display: block;
}

.faces-behind-section .tabs {
  min-width: 280px;
}

.faces-behind-section .tabs li {
  width: fit-content;
}

.faces-behind-section .tab-wrapper {
  position: relative;
  z-index: 0;
  min-width: 0;
  width: 100%;
  max-width: 894px;
}

.faces-behind-section .member-slider {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.faces-behind-section .member-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.faces-behind-section .we-do-wrapper .team-navigation {
  display: none;
}

.faces-behind-section .we-do-wrapper .team-navigation {
  position: absolute;
  top: -60px;
  right: 15px;

}

.faces-behind-section .our-team-container {
  background-color: #105e60;
  padding: 43px 21px 0;
}

.team-navigation button {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.team-navigation .team-prev {
  margin-right: 9px !important;
}

/* faces-behind section */

/* faces behind */

.member-slider {
  width: 100%;
  display: block;
  position: relative;
}

.member-slider .slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.member-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}

.member-slider .slick-slide {
  display: block !important;
  height: auto;
  outline: none;
}

.member-slider .slick-slide>div {
  margin: 0 10px;
}

.member-slider .our-team-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  /* height: unset; */
}

/* image */
.member-slider .our-team-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* overlay */
.member-slider .blur-layer {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

/* text */
.member-slider .entry-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
}

.team-navigation {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.team-navigation button {
  cursor: pointer;
  border: 1px solid #ccc;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

.member-slider {
  margin: 20px 0;
}

.team-slide img {
  width: 100%;
  display: block;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}

.team-navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.team-navigation button {
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 5px;

  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #daddee;
  background: #fff;
  cursor: pointer;
  color: #5a5f77;
  transition:
    background 0.2s,
    border-color 0.2s;
}

/* -------------- industry page ---------------------- */
.container-img {
  position: sticky;
  top: 100px;
  height: 500px;
}

.container-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.industry-specific-section .content-container h2 {
  font-family: var(--twk-font);
  font-weight: 550;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0%;
}

.industry-specific-section .content-container p {
  font-family: var(--twk-font);
  font-weight: 350;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #406163;
  max-width: 486px;
  width: 100%;
  margin-top: 16px;
}


.industry-specific-section .bin-heading h2,
.industry-specific-section .bin-heading p {
  text-align: left;
  margin-left: 0;
}

.industry-specific-section .bin-heading p {
  max-width: 502px;
}

.industry-specific-section {
  position: relative;
}

.container-img>div {
  width: 506px;
  height: 507px;
}

.container-img>div>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(10px, 3vw, 24px);
}

.industry-specific-section .bin-heading {
  background-color: #f9faff;
}

.content-container {
  position: relative;
  will-change: transform;
  z-index: 1;
}

.industry-specific-section {
  position: relative;
  overflow: visible;
}

.step {
  height: 57vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container-img {
  position: sticky;
  top: 120px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 0.4s;
}

.sticky-img.active {
  opacity: 1;
}

.we-do-section.why-business-section .bin-heading {
  display: block;
  text-align: center;
}

.we-do-section.why-business-section {
  background-color: #ecedf8;
}

.we-do-section.why-business-section .bin-heading h2,
.we-do-section.why-business-section .bin-heading p {
  text-align: center;
  max-width: 553px;
  margin-left: auto;
  margin-right: auto;
}

.we-do-section.why-business-section ul.tabs {
  max-width: 306px;
}

.industry-specific-section .two-grid {
  display: grid;
  overflow: clip;
}

.industry-specific-cards {
  display: none;
}

.work-section.industry-challenges-section .work-card::before {
  background: linear-gradient(109.1deg, #eaedff 2.91%, #f6f8ff 98.08%);
  background-image: linear-gradient(109.1deg,
      rgb(234, 237, 255) 2.91%,
      rgb(246, 248, 255) 98.08%);
  background-size: auto;
  -webkit-mask: unset;
  z-index: -1;
  border-radius: clamp(10px, 3vw, 24px);
  height: 100%;
  width: 100%;
}

.work-section.industry-challenges-section {
  background: none;
}

.work-section.industry-challenges-section .work-card::after {
  background: none;
}

.work-section.industry-challenges-section .work-card {
  background-color: #eaedff;
  padding: 46px 32px;
  box-shadow: none;
  border: 1px solid #576BFF1A;

}

.work-section.industry-challenges-section .work-card .icon-div {
  background-color: #ffffff;
}

/* digital services */
.services-card {
  display: flex;
}

.card-wrapper {
  background-color: #105e60;
  border-radius: clamp(10px, 3vw, 24px);
  padding: 16px;
  display: flex;
  width: 588px;
  gap: clamp(10px, 3vw, 18px);
  align-items: center;
  box-sizing: border-box;

}

.card-wrapper .img-container {
  min-width: 222px;
  min-height: 255px;
  height: 100%;
  width: 100%;
}

.card-wrapper .bin-btn.outline-bin-btn {
  border: none;
}

.card-wrapper .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.card-wrapper h3 {
  font-family: var(--twk-font);
  font-weight: 550;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0%;
  color: white;
  margin-bottom: 10px;
}

.card-wrapper p {
  font-family: var(--twk-font);
  font-weight: 350;
  font-size: 16px;
  line-height: 24px;
  color: var(--white-para);
}

.card-wrapper .card-content {
  padding: 22px 16px;
}

.card-wrapper .card-content .bin-btn {
  margin-top: 26px;
}

.digital-services-card .slick-track {
  margin: 0;
}

.future-tech-section .slick-list {
  margin: 0 -10px;
}

.services-card .slick-slide {
  height: inherit;
}

.services-card .card-wrapper {
  height: 100%;
  display: flex;
}

.services-card {
  width: calc(100% - ((107vw - 1350px) / 2));
  margin-left: auto;
  overflow: visible;
}

.services-card .card-wrapper {
  margin: 0 10px;
}

.services-card {
  position: relative;
}

.services-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  background: #f9faff;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  mask-image: linear-gradient(to right, transparent, #f9faff);
  -webkit-mask-image: linear-gradient(to right, #0000, #f9faff, #f9faff);
}

.card-wrapper .card-content .bin-btn.outline-bin-btn:hover {
  background-color: #ffffff73;
}

.digital-services .bin-heading h2,
.digital-services .bin-heading p {
  text-align: left;
  margin-left: 0;
  max-width: 498px;
}

.digital-services .bin-container {
  position: relative;
}

.digital-services-card .slick-track {
  opacity: 1 !important;

}

.slider-btns {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 12px;
}

.digital-services .slick-dots {
  bottom: -40px;
  text-align: left;
}

.slider-btns>span {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #daddee;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #5a5f77;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.slider-btns>span:hover {
  background: var(--new-hover);
}

.digital-services {
  overflow: clip;
}

/* future tech */
.future-tech-section {
  background-image: url(../img/future-tech-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.future-tech-section .card-wrapper {
  max-width: 384px;
  height: 100%;
  padding: 28px 24px;
}

.future-tech-section .card-wrapper p {
  margin-top: 10px;
  font-size: 14px;
}

.future-tech-section .card-wrapper h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.future-tech-section.digital-services .slider-btns>span:hover {
  background: rgb(255, 255, 255, 0.6);
}


.future-tech-section .services-card::after {
  display: none;
}

.future-tech-section .bin-heading h2,
.future-tech-section .bin-heading p {
  color: white;
}

.future-tech-section .card-wrapper {
  position: relative;
  border: 1px solid transparent;
  border-radius: clamp(10px, 3vw, 24px);

  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 50.21%);

  background-clip: padding-box, border-box;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 0;
  overflow: hidden;
}

.future-tech-section .card-wrapper::after {
  content: "";
  position: absolute;
  width: 174px;
  height: 172px;
  background-image: url(../img/banner-bg.png);
  opacity: 0.8;
  right: -37px;
  bottom: -70px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.future-tech-section .card-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: clamp(10px, 3vw, 24px);
  background: linear-gradient(125.41deg,
      rgba(43, 214, 206, 0.3) 0.7%,
      rgba(42, 46, 216, 0.3) 99.8%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: add, add;
  mask-composite: add, add;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.services-card .slick-track {
  display: flex !important;
}

.services-card .slick-slide {
  height: auto !important;
}

.digital-services.future-tech-section .slick-dots {
  display: none !important;
}

.digital-services.future-tech-section .card-wrapper .card-content {
  padding-right: 10px;
}

/*market we sreve */
.map-wrapper {
  position: relative;
  max-width: 100%;
  text-align: center;
  overflow: visible;
  width: 804px;
  margin: 0 auto;
  margin-top: clamp(20px, 7vw, 120px);
}

.map-wrapper>svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-img {
  width: 100%;
  display: block;
  z-index: 1;
  position: relative;
}

/* PIN */
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}

.map-pin .dot {
  width: 14px;
  height: 14px;
  background: #2a46d8;
  border-radius: 50%;
  box-shadow:
    0 0 10px rgba(42, 70, 216, 0.8),
    0 0 25px rgba(42, 70, 216, 0.4);
  display: block;
}

/* pulse ring */
.map-pin .dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(42, 70, 216, 0.4);
  animation: pulse 1.5s infinite;
}

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

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

/* TOOLTIP BOX */
.map-tooltip {
  position: absolute;
  min-width: 291px;
  max-width: 291px;

  background: #fff;
  border-radius: clamp(10px, 3vw, 24px);
  padding: 24px 27px 24px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;

  z-index: 99;
  bottom: 38px;
  border: 1px solid #bfddf2;
  left: -24px;
}

.map-tooltip::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 20px;

  width: 0;
  height: 0;

  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 16px solid rgba(255, 255, 255, 0.88);
  filter: drop-shadow(0px 3px 1px #bfddf2);
}

.map-pin:hover .map-tooltip,
.map-pin.active .map-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.map-tooltip ul li {
  margin-top: 10px;
  font-size: 14px;
}

.map-below-tooltip {
  display: none;
}

.map-tooltip ul {
  text-align: left;
  padding-left: 22px;
  margin: 0;
}

.map-tooltip h4 {
  margin: 0 0 6px;
}

.map-tooltip p {
  margin: 0;
  font-size: 13px;
  color: #555;
}

/* HEADER */
.tooltip-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

/* CIRCULAR IMAGE */
.avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  /* border: 2px solid #2a46d8; */
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TITLE */
.title h4 {
  margin: 0;
  font-family: var(--twk-font);
  font-weight: 550;
  font-size: 14px;
  line-height: 27px;
  letter-spacing: 0%;
  color: #1b4344;
}

.title p {
  margin: 0;
  font-size: 12px;
  color: #aaa;
}

/* LIST */
.tooltip-list {
  margin: 0;
  padding-left: 16px;
}

.tooltip-list li {
  font-size: 14px;
  color: #416263;
  margin-bottom: 6px;
  font-weight: 350;
  text-align: left;
}

/* -------career page ------------ */
.potential-img {
  width: 560px;
  height: 400px;
}

.potential-img img {
  border-radius: clamp(10px, 3vw, 24px);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.potential-div-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-left: 12px;
}

.potential-div-wrapper h4 {
  font-weight: 550;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -4%;
}

.potential-div-wrapper p {
  font-weight: 350;
  font-size: 14px;
  color: #658082;
  text-transform: uppercase;
}

.potential-div-wrapper>div {
  position: relative;
  z-index: 0;
  padding-left: 12px;
}

.potential-div>p {
  font-size: 14px !important;
}


.potential-div-wrapper>div::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 90%;
  left: -10px;
  z-index: 1;
  background-color: #0b9595;
}

.potential-section .bin-heading h2,
.potential-section .bin-heading p {
  text-align: left;
  margin-left: 0;
  max-width: 540px;
}

.potential-section .two-grid {
  align-items: center;
}



/* potential matters */
/* bin-life */
.bin-life-section .bin-heading p {
  max-width: 483px;
}

/* search position */
.open-position-section {
  background-color: black;
}

.open-position-section .bin-heading h2,
.open-position-section .bin-heading p {
  color: white;
  text-align: left;
  margin-left: 0;
}

.open-position-section .bin-heading p {
  color: #bfbfbf;
}

.controls {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  /* flex-wrap: wrap; */
}

.controls>div,
.controls>select {
  max-width: 384px;
  border: 1px solid #333333;
  width: 100%;
  font-family: var(--twk-font);
  color: rgb(255, 255, 255, 0.54);
}

.search-box {
  /* flex: 1 1 260px; */
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid #333333;
  border-radius: 10px;
  padding: 0 16px;
  min-width: 215px;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 14px;
  padding: 13px 0;
  font-family: var(--twk-font);
}

select {
  color: rgb(255, 255, 255, 0.54);
}

.search-box input::placeholder {
  color: rgb(255, 255, 255, 0.54);
}

.search-box svg {
  flex-shrink: 0;
  color: rgb(255, 255, 255, 0.54);
}

select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 13px 40px 13px 16px;
  font-size: 14px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1L5 5L9 1' stroke='%239a9a9e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  /* min-width: 170px; */
}

select:focus,
.search-box:focus-within,
input:focus {
  outline: none;
  border-color: #474747;
  background-color: #191919;
  color: white;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 5vw, 130px);
  padding: 26px 4px;
  border-bottom: 1px solid rgb(255, 255, 255, 0.2);
}

.row>div {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.row.is-hidden {
  display: none;
}

.role-title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 450;
  color: #e5e5e5;
  flex: 1 1 260px;
  min-width: 0;
  max-width: 587px;
}

.meta {
  display: flex;
  align-items: center;
  gap: clamp(20px, 5vw, 125px);
  flex-shrink: 0;
}

.meta span {
  font-size: 16px;
  min-width: 100px;
  font-weight: 350;
  color: rgb(255, 255, 255, 0.8);
  ;
}

.apply-btn:hover {
  background: #ffffff;
}

.empty-state {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 15px;
}

.empty-state.is-visible {
  display: block;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}

.page-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: white;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  min-width: 38px;
  transition: background 0.15s ease;
  font-family: var(--twk-font);
}

.page-btn.active {
  background: white;
  color: #0b0b0c;
  border-color: white;
  font-weight: 600;
}

.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* bin-life */
.bin-services {
  background: linear-gradient(120deg, #000101 40%, #15176c 100%);
  border-radius: 28px;
  padding: 33px 60px 33px 29px;
  width: 100%;
  /* box-shadow: 0 30px 60px rgba(11, 17, 48, 0.35); */
}

.bin-life-section .bin-services .two-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 760px) {
  .bin-life-section .bin-services .two-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ LEFT: IMAGE PANEL ============ */
.img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* aspect-ratio: 4/3; */
  background: #000;
  width: 661px;
  height: 557px;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}

.nav-arrow {
  position: absolute;
  bottom: 10px;
  transform: translateY(-50%);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 10px 14px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #daddee;
  background: #fff;
  cursor: pointer;
  color: #5a5f77;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.nav-arrow:hover {
  background: #e9e9e9;
  /* transform: translateY(-50%) scale(1.08); */
}

/* .nav-arrow:hover svg path{
  fill: white;
} */

.nav-arrow.prev {
  left: calc(50% - 25px);
}

.nav-arrow.next {
  left: calc(50% + 25px);
}

.img-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============ RIGHT: SERVICE LOGO / PINWHEEL ============ */
.service-logo {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.service-logo img {
  min-width: 390px;
  height: 390px;
  object-fit: cover;
}

.service-icon.active img {
  opacity: 1;
}

.service-icon img {
  max-width: 23px;
    max-height: 23px;
    object-fit: contain;
    opacity: 30%;
    transition: opacity .3s ease-in-out;
    /* ADDED */
    filter: brightness(0) invert(1);
    min-width: 23px;
}

.service-icon:hover img {
  opacity: 100%;
}

.service-logo>.logo-bg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.service-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  text-align: center;
  pointer-events: none;
}

.service-heading h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 350;
  line-height: 1.25;
  transition: opacity 0.2s ease;
}

/* icon ring */
.service-logo>ul {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-logo>ul li {
  position: absolute;
  width: 15%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  font-family: var(--twk-font);
  font-weight: 450;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
}

.service-logo>ul li:nth-child(1) {
  top: 21%;
  left: 32%;
}

.service-logo>ul li:nth-child(2) {
  top: 20%;
  left: 64.4%;
}

.service-logo>ul li:nth-child(3) {
  top: 40%;
  left: 84%;
}

.service-logo>ul li:nth-child(4) {
  top: 70.6%;
  left: 79.1%;
}

.service-logo>ul li:nth-child(5) {
  top: 85.6%;
  left: 52.9%;
}

.service-logo>ul li:nth-child(6) {
  top: 72.8%;
  left: 26.1%;
}

.service-logo>ul li:nth-child(7) {
  top: 46.4%;
  left: 18.6%;
}

/* the button just fills its li — no positioning logic here anymore */
.service-icon {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--slate);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.service-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.service-icon:hover {
  color: #fff;
  transform: scale(1.12);
}

/* .service-icon.active::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid var(--accent);
    border-radius: 50%;
} */
.service-icon {
  color: #555;
  /* Default icon color */
  background: transparent;
  transition: all 0.3s ease;
}

.service-icon:hover g,
.service-icon.active g {
  color: #fff;
  opacity: 1;
}

/* delivery process */
.svg-div {
  width: 79px;
  height: 79px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0px 1px 2px 0px #001e521a;
  background: #ecedf8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-process-text {
  text-align: center;
  max-width: 204px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.delivery-process {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.delivery-process-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 0;
}

.delivery-process-wrapper::after {
  content: "";
  position: absolute;
  background-image: url(../img/dotted-line.png);
  top: 45px;
  background-position: center;
  width: 80%;
  height: 2px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}

.delivery-process-text p {
  font-weight: 350;
  font-size: 14px;
}

.ai-assist-section {
  background: linear-gradient(180deg, #ecedf8 0%, #f9faff 100%);
}

.daily-tools-section .we-do-wrapper ul.tabs li {
  font-size: 14px;
}

.reliability-section {
  background-color: black;
}

.reliability-cards {
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.reliability-card {
  border-radius: clamp(10px, 3vw, 24px);
  position: relative;
  background-color: black;
  padding: 46px 160px 46px 41px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50.21%);
  overflow: hidden;
  height: 100%;
  transition: background .5s ease-in-out;
  -webkit-transition: background .5s ease-in-out;
  -moz-transition: background .5s ease-in-out;
  -ms-transition: background .5s ease-in-out;
  -o-transition: background .5s ease-in-out;
}

.reliability-card:hover {
  background: #171717;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.reliability-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: clamp(10px, 3vw, 24px);
  background: linear-gradient(125.41deg,
      rgba(43, 214, 206, 0.3) 0.7%,
      rgba(42, 46, 216, 0.3) 99.8%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: add, add;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.reliability-card::after {
  content: "";
  position: absolute;
  width: 174px;
  height: 172px;
  background-image: url(../img/banner-bg.png);
  opacity: 0.8;
  right: -20px;
  bottom: -20px;
  background-repeat: no-repeat;
  background-size: contain;
}

.reliability-section .bin-heading h2 {
  color: white;
}

.reliability-section .bin-heading p {
  color: #bfbfbf;
}

.card-badge {
  background-color: #292929;
  padding: 8px 10px;
  width: fit-content;
  border-radius: 8px;
  margin-bottom: 20px;
  color: var(--white-heading);
  font-size: 14px;
}

.reliability-card-content h3 {
  font-family: var(--twk-font);
  font-weight: 450;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0%;
  color: var(--white-heading);
}

.reliability-card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reliability-card-content p {
  font-family: var(--twk-font);
  font-weight: 350;
  font-size: 14px;
  line-height: 1.2;
  color: var(--white-para);
}

.loader span {
  font-family: var(--twk-font);
  font-weight: 550;
  font-size: 16px;
  line-height: 20px;
  padding-top: 10px;
  display: block;
  color: var(--white-para);
}

.daily-tools-section .we-do-wrapper ul.tabs li {
  width: fit-content;
  padding: 12px 16px !important;
}

.daily-tools-section.we-do-wrapper ul.tabs li.active {
  padding: 12px 16px !important;
}

.daily-tools-section .we-do-wrapper {
  width: 100%;
}

.daily-tools-section .we-do-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.daily-tools-section .we-do-wrapper {
  padding: 30px;
}

.daily-tools-section .we-do-wrapper ul.tabs li {
  background-color: #E7EAFF;
  border: 1px solid #00000033;
  margin-bottom: 8px !important;
}

/* testimonial*/

.testimonial-section {
  overflow: hidden;
  position: relative;
}

.testimonial-light .testi-content p {
  color: #2f5358;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.5;
}

.testimonial-dark .testi-content p {
  color: rgb(255, 255, 255, 0.9);
}

.testimonial-section .slider-btns {
  right: unset;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
}

.testimonial-slider .slick-slide {
  padding: 0 12px;
  height: inherit;
  display: flex;
}

.testimonial-slider .slick-track {
  display: flex;

}

.testimonial-slider .slick-list {
  margin: 0 -10px;
}

.testi-content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.testimonial-slider .testimonial-light,
.testimonial-slider .testimonial-dark {
  border-radius: clamp(10px, 3vw, 24px);
}

.testimonial-slider .testimonial-light {
  padding: 27px;
  margin: 0 10px;
}

.testimonial-slider .testimonial-dark {
  padding: 27px;
}

.video-trigger svg {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.user-profile {
  display: flex;
  gap: 10px;
  align-items: center;

}

.user-img {
  width: 43px;
  height: 43px;
  min-width: 43px;
  min-height: 43px;
  border-radius: 12px;
  overflow: hidden;
}

.user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-dark .user-profile .user-img {
  display: none;
}

.testimonial-light .quote img,
.testimonial-light .testi-logo img {
  max-height: 30px;
  width: auto;
}

/* CARD */

.testimonial-card {
  border-radius: clamp(10px, 3vw, 24px);
  overflow: hidden;
  height: 100%;
}

.testimonial-light {
  background: linear-gradient(117deg, #ecedf8 0%, #dfe2ff 100%);
  padding: 34px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 28px;
  min-height: 420px;
  max-height: 420px;
}

/* ===========================
   DARK CARD
=========================== */
.testimonial-dark {
  background: #105e60;
  color: #fff;
  padding: 26px;
  display: flex;
  gap: 24px;
  align-items: center;
  min-height: 420px;
  flex-direction: row;

}

@media (max-width: 991px) {
  /* .testimonial-dark {
    flex-direction: column;
  } */
}

/* ===========================
   TESTIMONIAL-HEADER
=========================== */

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 32px; */
  position: relative;
  z-index: 0;
}

.testimonial-header::before {
  content: "";
  position: absolute;
  border: 1px dashed black;
  top: 50%;
  width: 70%;
  left: 56%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 10%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.testimonial-logo img {
  max-width: 150px;
}

.testimonial-quote img {
  width: 42px;
}

/* ===========================
   CONTENT
=========================== */

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #355055;
}

.testimonial-dark .testimonial-content p {
  color: #fff;
}

/* ===========================
   USER
=========================== */

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-user img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
}

.testimonial-user h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.testimonial-user span {
  font-size: 14px;
  color: #6b6b6b;
}

.testimonial-light .user-profile span {
  color: rgb(2, 46, 47, 0.6);
  font-size: 14px;
}

.testimonial-dark.testimonial-light .user-profile span {
  font-weight: 350;
  font-size: 14px;
  color: rgb(255, 255, 255, 0.6);
}

.user-profile p {
  font-weight: 450;
  font-size: 16px;
  line-height: 24px;
  color: rgb(2, 46, 47, 0.8);
}

.testimonial-dark .user-profile p {
  color: white;
}

/* ===========================
   VIDEO
=========================== */

.video-trigger {
  position: relative;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  width: 240px;
  min-width: 240px;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  max-width: 240px;
}

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

/* play icon */

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, .35);
    backdrop-filter: blur(10px); */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 34px;
  transition: 0.3s;
}

.video-trigger:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.12);
  -webkit-transform: translate(-50%, -50%) scale(1.12);
  -moz-transform: translate(-50%, -50%) scale(1.12);
  -ms-transform: translate(-50%, -50%) scale(1.12);
  -o-transform: translate(-50%, -50%) scale(1.12);
}

/* ===========================
   NAV
=========================== */

.testimonial-nav {
  display: flex;

  justify-content: center;

  gap: 18px;

  margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
  width: 52px;

  height: 52px;

  border-radius: 50%;

  border: 1px solid #ddd;

  background: #fff;

  cursor: pointer;

  transition: 0.3s;

  font-size: 20px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #105e60;

  color: #fff;
}

/* ===========================
   MODAL
=========================== */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.video-modal video {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 991px) {

  .testimonial-light,
  .testimonial-dark {
    min-height: auto;
  }

  /* 
  .video-trigger {
    width: 100%;

    min-width: 100%;
  } */

  .video-trigger img {
    height: 100%;
  }
}

@media (max-width: 767px) {
  .testimonial-light {
    padding: 24px;
  }

  .testimonial-dark {
    padding: 20px;
  }

  .testimonial-content p {
    font-size: 16px;
  }

  .video-trigger img {
    height: 335px;
    width: 100%;
    object-fit: cover;
  }
}

.testimonial-slider {
  display: flex;
  gap: 24px;

}

.testimonial-card {
  flex: 0 0 calc(50% - 12px);
}

@media (max-width: 991px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 640px) {
  .meta {
    gap: 0px;
    width: 100%;
  }

  .apply-btn {
    align-self: flex-start;
    padding: 7px 10px;
    font-size: 13px;
  }

  .row {
    gap: 20px;
  }
}

@media (max-width: 1540px) {
  .digital-services-card .card-wrapper {
    max-width: 540px;
  }
}

@media (max-width: 1240px) {
  .services-card .card-wrapper {
    flex-direction: column;
  }

  .services-card {
    padding: 20px 0 20px 20px;
  }

  .digital-services .slick-dots {
    bottom: -10px;
  }

  .digital-services .slider-btns {
    position: absolute;
    bottom: 0;
    right: 30px;
  }

  .digital-services .slider-btns {
    position: unset;
  }

  .digital-services .services-card .slick-list {
    margin: 0;
  }

  .future-tech-section .services-card .slick-list,
  .services-card .slick-list {
    margin: 0 -10px;
  }

  .img-wrapper {
    aspect-ratio: 4/3;
    width: unset;
    height: unset;
  }

  .service-logo img {
    min-width: unset;
    height: unset;
  }

  .bin-services {
    padding: 20px;
  }

  .service-logo>ul li:nth-child(1) {
    top: 21%;
    left: 32%;
  }

  .service-logo>ul li:nth-child(2) {
    top: 20%;
    left: 62.4%;
  }

  .service-logo>ul li:nth-child(3) {
    top: 40%;
    left: 81%;
  }

  .service-logo>ul li:nth-child(4) {
    top: 69.6%;
    left: 76.1%;
  }

  .service-logo>ul li:nth-child(5) {
    top: 84.6%;
    left: 51.8%;
  }

  .service-logo>ul li:nth-child(6) {
    top: 72.8%;
    left: 24.1%;
  }

  .service-logo>ul li:nth-child(7) {
    top: 46.4%;
    left: 14.6%;
  }
}

@media (max-width: 1180px) {
  .content .gif-img {
    flex-wrap: wrap;
    gap: 15px;
  }

  /* .content .gif-img img:first-child {
        width: 189px;
        height: 166px;
    } */

  .process-content li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 17px;
  }
}

@media (max-width: 1080px) {
  .counter>div {
    width: calc(24% - 10px);
    height: 200px;
  }

  .we-do-section.why-business-section ul.tabs {
    max-width: 100%;
  }

  .potential-img {
    width: 100%;
  }

  .potential-section .two-grid {
    gap: 15px;
  }

  .reliability-card {
    border-radius: clamp(10px, 3vw, 24px);
    position: relative;
    background-color: black;
    padding: clamp(30px, 3vw, 46px) clamp(40px, 3vw, 100px) clamp(30px, 3vw, 46px) clamp(30px, 3vw, 41px);
  }

  .card-body {
    gap: 20px;
  }

  .web-soln-box {
    min-height: unset;
  }

  .map-tooltip {
    position: absolute;
    min-width: 187px;
    max-width: 265px;
  }
}

@media (max-width: 960px) {
  .header-right .bin-btn {
    display: none;
  }
}

@media (max-width: 990px) {
  .our-mission-section>div>div {
    flex-direction: column;
  }

  .our-mission-section>div>div>div {
    width: 100%;
    min-width: unset;
  }

  .masonry-grid>div {
    width: unset;
  }

  .masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    column-gap: 15px;
    row-gap: 10px;
  }

  .img1 {
    grid-column: span 2 / span 2;
    height: 300px;
  }

  .img2 {
    grid-column-start: 3;
    height: 300px;
  }

  .img3 {
    grid-row-start: 3;
    height: 217px;
  }

  .img4 {
    grid-column: span 2 / span 2;
    height: 217px;
    grid-row-start: 3;
  }

  .industry-specific-section .two-grid {
    display: none;
  }

  .industry-specific-section .industry-specific-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .step {
    height: unset;
  }

  .industry-specific-card {
    border-radius: clamp(10px, 3vw, 24px);
    overflow: hidden;
    border: 1px solid #b8b8b8;
    margin-top: 15px;
  }

  .industry-specific-card .industry-img {
    max-height: 350px;
    overflow: hidden;
  }

  .industry-specific-card>div>img {
    width: 100%;
    object-fit: cover;
  }

  .industry-specific-card>.step p {
    margin-top: 10px;
  }

  .industry-specific-card>.step {
    padding: 20px;
  }

  .modern-technology-section>.bin-container>div {
    gap: 50px;
    flex-direction: column;
  }

  .solar-wrap {
    padding-bottom: 30px;
    padding-top: 35px;
  }

  .svg-div {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }

  .delivery-process-text h3 {
    font-size: 18px;
  }

  .delivery-process-text {
    gap: 2px;
    width: 100%;
  }

  .delivery-process-wrapper::after {
    top: 27px;
  }

  .services-card {
    width: unset;
    margin-left: unset;
    overflow: hidden;
  }

  .future-tech-section .card-wrapper {
    max-width: 100%;
  }

  .services-card::after {
    display: none !important;
  }

  .faces-behind-section .bin-heading p {
    max-width: 470px;
  }

  .daily-tools-section .solar {
    --scale: 1 !important;
  }

  .story-slide img {
    min-width: unset !important;
  }
}

@media (max-width: 880px) {
  .digital-growth-section .two-grid {
    grid-template-columns: 1fr;
  }

  .modern-technology-section>.bin-container>div {
    padding: 22px 42px;
  }

  .digital-img,
  .digital-img img {
    width: 100%;
  }

  .accordion {
    max-width: 100%;
  }

  .service-card-wrapper {
    position: unset;
  }

  .daily-tools-section .solar {
    --scale: 0.8 !important;
  }

  .counter-section .bin-heading h2 {
    margin: clamp(6px, 1.7vw, 14px);
  }

  .partners-info {
    margin: clamp(32px, 3vw, 48px) auto;
  }

  .testimonial-slider {
    padding-bottom: 20px;
  }
}

@media (max-width: 880px) {
  .counter>div {
    width: calc(49% - 7px);
  }

  .counter-section .bin-heading {
    flex-direction: column;
    align-items: center;
  }

  .counter-section .bin-heading h2,
  .counter-section .bin-heading p {
    text-align: center;
  }

  .service-card {
    flex-direction: column;
    padding: 20px 25px;
  }

  .service-card>.service-img {
    width: 100%;
    height: 300px;
  }

  .faq-section .two-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-section .bin-heading p {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
  }



  .faq-section .bin-heading h2 {
    text-align: center;
  }

  .process-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {

  .hero-banner-section {
    height: calc(100vh - 92px);
  }


  .marquee-section>div {
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }

  .marquee-text {
    margin: 0 auto;
  }

  .marquee-section>div br {
    display: none;
  }

  .marquee-track img {
    height: 15px;
  }

  .marquee-track {
    gap: 20px;
  }

  .marquee-section {
    padding: 17px 0;
  }

  /* .tab-content .solar {
    --size: 431px;
  } */

  .card-body {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: column;
    gap: 13px;
  }

  .web-solutions-section .sidebar>ul {
    display: flex;
    flex-direction: row;
    height: 100%;
  }

  .web-soln-box .tab {
    white-space: nowrap;
  }

  .content .gif-img {
    row-gap: 30px;
  }

  .web-solutions-section .titlebar {
    display: none;
  }

  .web-soln-cta {
    margin: 50px auto 20px;
  }

  .web-solutions-section .sidebar>ul {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .web-solutions-section .sidebar>ul::-webkit-scrollbar {
    display: none;
  }

  .web-solutions-section .sidebar>ul {
    flex: 0 0 auto;
    margin: 0;
  }

  .reliability-cards {
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .sidebar>div:first-child {
    display: flex;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .top-grid {
    grid-template-columns: 1fr;
  }

  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .row>div {
    flex-direction: column;
    row-gap: 20px;
  }

  .role-title {
    flex: unset;
  }

  .controls {
    flex-wrap: wrap;
  }

  .position-search .controls>select,
  .position-search .controls>div {
    max-width: 100%;
  }

  .daily-tools-section .we-do-wrapper .tab-wrapper {
    margin-top: 0;
  }

  .delivery-process-wrapper::after {
    transform: translateX(-50%) rotate(90deg);
    top: 50%;
    width: 50%;
    left: 25px;
  }

  .delivery-process {
    flex-direction: row;
  }

  .delivery-process-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .delivery-process-text {
    text-align: left;
    max-width: 100%;
  }

  .processes>.process-tab-item {
    padding: 10px 40px;
  }

  .industry-specific-section .industry-specific-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .web-solutions-section .panel {
    padding: 10px;
  }

  .content .gif-img {
    padding: 0px;
  }

  .web-solutions-section .panel {
    padding: 50px 45px;
  }

  .faces-behind-section .we-do-wrapper .team-navigation {
    position: unset;
    text-align: center;
  }

  .web-solutions-section .badge {
    margin-bottom: 0;
  }

  .brand {
    padding: 0px 10px;
  }

  .testimonial-slider {
    display: flex;
    gap: 24px;
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .faq-header {
    padding: 18px;
  }

  .faq-header h3 {
    font-size: 20px;
  }

  .faq-content-inner {
    padding: 0 18px 18px;
  }

  .web-soln-box {
    padding: 0;
  }

  .hero-banner-section h1 br {
    display: none;
  }

  .web-solutions-section .card::before {
    left: 0 !important;
    top: 18%;
  }
}

/* ── RESPONSIVE: stack on small screens ── */
@media (max-width: 680px) {
  .hero-banner-section>.bin-container {
    transform: translateY(-50%);
    top: 50%;
  }

  .stack-card {
    width: 19px;
    height: 19px;
  }

  .wrap {
    width: 215px;
    height: 32px;
  }

  .marquee-text p {
    margin-right: 0px;
  }

  .section {
    flex-direction: column;
    padding: 36px 24px;
  }

  .service-card {
    padding: 14px !important;
  }

  .copy {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .copy p {
    max-width: 100%;
  }

  .solar-wrap {
    min-height: unset;
    width: 100%;
  }

  .process-content-wrapper {
    min-height: 280px;
  }

  .accordion-item.active,
  .accordion-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .work-section .three-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(283px, 1fr));
    gap: 10px;
  }

  .testimonial-wrapper {
    margin: 0 -7px;
  }

  .member-slider {
    margin-top: 0;
  }

  .map-below-tooltip {
    margin-top: 10px;
  }

  .our-team-container {
    border-radius: 15px;
  }

  .service-card ul li::before,
  .process-content li::before {
    top: -5px;
  }

  .process-container {
    margin: 40px auto 0;
  }

  .processes>.process-tab-item {
    padding: 5px 18px;
  }

  .process-content ul {
    margin-top: 30px;
  }

  .testimonial-header::before {
    display: none;
  }

  .video-trigger img {
    height: 260px;
  }

  .video-trigger {
    border-radius: 9px;
  }

  .service-card ul li::before,
  .process-content li::before {
    width: 23px;
  }

  .watermark.slideup-content {
    transform: translateY(20px);
    transition-duration: 0.6s;
  }

  .watermark.slideup-content.animate {
    transform: translateY(0);
  }

  .watermark {
    padding: 30px 0;
  }

  .counter {
    gap: 15px;
  }

  .bin-heading h2 br,
  .bin-heading p br {
    display: none;
  }
}

@media (max-width: 580px) {
  .service-card>.service-img {
    width: 100%;
    height: 210px;
  }

  .modern-technology-section>.bin-container>div.two-grid {
    padding: 20px;
  }

  .testimonial-slider .testimonial-dark,
  .testimonial-slider .testimonial-light {
    padding: 19px;
  }

  .digital-services .card-wrapper {
    max-width: unset;
  }

  .service-heading h3 {
    font-size: 16px;
    word-break: break-word;
  }



  .counter>div {
    width: calc(49% - 5px);
    padding: 15px;
    height: 180px;
  }

  .newsletter-form {
    width: 100%;
  }

  .delivery-process-wrapper::after {
    transform: translateX(-50%) rotate(90deg);
    top: 50%;
    width: 80%;
    left: 25px;
  }

  .delivery-process {
    flex-direction: row;
  }

  .delivery-process-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .delivery-process-text {
    text-align: left;
    max-width: 100%;
  }

  .testimonial-card.dark .testimonal-header {
    flex-direction: column;
  }

  .sidebar {
    flex-direction: column;
    gap: 10px;
  }

  .web-solutions-section .sidebar>ul {
    margin: 0;
  }

  .sidebar>div:first-child {
    display: flex;
    gap: 10px;
  }

  .web-solutions-section .panel {
    padding: 10px;
  }

  .brand-icon {
    width: 70px;
  }

  .web-solutions-section .badge p {
    font-size: 12px;
  }

  .web-solutions-section .tab p {
    font-size: 14px;
  }

  .web-solutions-section .tab {
    padding: 6px 9px;
  }

  .web-solutions-section .sidebar>ul li {
    margin-bottom: 0;
  }

  .daily-tools-section .solar {
    --scale: 0.7 !important;
  }

  .testimonial-slider .testimonial-dark {
    border-radius: 15px;
    flex-direction: column;
  }

  .video-trigger {
    width: 100%;
  }

  .row {
    flex-direction: column;
  }

  .apply-btn {
    align-self: flex-start;
    padding: 7px 10px;
    font-size: 13px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .daily-tools-section .solar {
    --scale: 0.5 !important;
  }
}

/* Final home css  */
.home-work-section {
  background: #105e60;
}

.home-work-section .bin-heading h2 {
  color: #ffffff;
}

.home-work-section .bin-heading p {
  color: #c3d7d7;
}

.home-work-section .bin-btn {
  margin: clamp(30px, 3vw, 45px) auto 0;
  display: flex;
  justify-content: center;
  width: fit-content;
}

.about-bin-wrapper {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: clamp(10px, 3vw, 24px);
  overflow: hidden;
}

.about-bin-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #5ab8ec 0%, #344099 100%);
  opacity: 0.6;
}

.about-bin-wrapper .bin-heading {
  max-width: 713px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-left: 8px;
}

.blur-layer {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-mask-image: linear-gradient(to top,
      rgba(0, 0, 0, 1) 100%,
      rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0));
  z-index: 1;
}

/* Final home css  */
/* new css  */
.ring-bin-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh;        */
  /* text-align: center; */
}

/* new fotter  */
/* ── Newsletter Bar ── */
.newsletter {
  /* background: #1a1a1a;
      border-bottom: 1px solid #2a2a2a; */
  padding: 40px 0 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.newsletter-text h2>a {
  font-size: 20px;
  font-weight: 550;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0;
}

.newsletter-text p {
  font-size: 0.85rem;
  color: #888;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form .wpcf7-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-form .wpcf7-response-output {
  display: none;
}

.newsletter-form input[type="email"] {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  color: #ccc;
  padding: 13px 16px;
  font-size: 0.875rem;
  border-radius: 12px;
  outline: none;
  max-width: 260px;
  width: 100%;
  transition: border-color 0.2s;
  background: transparent;
  font-family: var(--twk-font);
}

.newsletter-form form p {
  position: relative;
  font-family: var(--twk-font);
  font-weight: 350;
}

.newsletter-form .wpcf7-not-valid-tip {
  position: absolute;
  font-size: 14px;
  font-family: var(--twk-font);
  font-weight: 350;
}

.newsletter-form input[type="email"]::placeholder {
  color: #cfcfcf;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #e1e1e1;
  background-color: #191919;
  color: white;
}

.newsletter-form .wpcf7-submit.bin-btn br {
  display: none;
}

.newsletter-form .wpcf7-submit.bin-btn span,
.webinar-form span {
  display: inline-flex;
  text-align: center;
  align-items: center;
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px dashed rgb(255, 255, 255, .1);
}

/* ── Main Footer ── */

.new-footer {
  background: #0e0f0f;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.new-footer.section-padding {
  padding: clamp(40px, 3vw, 60px) 0;
}

.footer-main {
  padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 5vw, 175px);
}

/* .footer-grid {
      display: flex;
      justify-content: space-between;
    } */
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  /* flex: 1 1 180px;  */
  min-width: 160px;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 550;
  color: #fff;
  margin-bottom: 18px;
  text-transform: capitalize;
  letter-spacing: 0%;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;

  padding: 0;
  margin: 0;
}

/* .footer-col ul li a {
  color: rgb(255, 255, 255, .6) !important;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  font-weight: 350;
}

.footer-col ul li:hover a {
  text-decoration: underline 1px #e2e2e2;
  color: #e2e2e2 !important;
  transition: 0.3s ease;
} */

/* .footer-col ul li {
  margin-bottom: 10px;
} */
.footer-col ul li a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 350;
  transition: color 0.3s ease;
}

/* Animated underline */
.footer-col ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  /* Adjust distance from text */
  width: 100%;
  height: 1px;
  background: #e2e2e2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-col ul li:hover a {
  color: #e2e2e2 !important;
}

.footer-col ul li:hover a::after {
  transform: scaleX(1);
}



.footer-col:last-child li:last-child>a:last-child {
  text-decoration: #c3c3c3 underline;
}

/* Contact column */
.contact-info p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-info a {
  color: #e8a838;
  text-decoration: none;
  font-size: 0.85rem;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ── Bottom Bar ── */
.footer-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 2;

  position: relative;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgb(255, 255, 255, 0.3);
}

.footer-bottom p a {
  color: rgb(255, 255, 255, 0.3);
  text-decoration: none;
}

.footer-bottom p a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #2a2a2a;
  border-radius: 4px;
  transition: background 0.2s;
}

.social-links a:hover {
  background: #d6d6d6;
}

.social-links svg {
  width: 15px;
  height: 15px;
  fill: #ccc;
}

.social-links a:hover svg {
  fill: #111;
}

.footer-bottom-right {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-bottom-right a {
  font-size: 0.78rem;
  color: rgb(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-right a:hover {
  color: #ccc;
}

.footer-bottom-right ul {
  display: flex;
  gap: 10px;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

/* ── Watermark ── */
.watermark {
  text-align: center;
  padding: 20px 0 60px;
  overflow: hidden;
  padding: 20px 0;
}

.watermark span {
  font-size: 173px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  user-select: none;
  display: block;
  line-height: 1;
  opacity: 20%;
  font-family: var(--primary-font);
}

.new-footer::after {
  content: "";
  position: absolute;
  bottom: -60px;

  width: 100%;
  height: 400px;
  background: radial-gradient(circle at center, rgba(42, 46, 216, 1) 0%, rgba(42, 46, 216, 0.6) 25%, rgba(42, 46, 216, 0.2) 45%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
  animation: lightMove 4s ease-in-out infinite alternate;

}

.watermark>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Responsive ── */

@media (max-width: 1220px) {
  .process-img {
    text-align: center;
    margin: 20px auto;
    max-width: 400px;
  }
}

/* Tablet: 3 columns per row */
@media (max-width: 992px) {
  .footer-col {
    flex: 1 1 calc(33.333% - 30px);
  }
}

/* Small tablet: 2 columns per row */
@media (max-width: 768px) {
  .footer-col {
    flex: 1 1 calc(50% - 30px);
  }
}

/* Mobile: 1 column per row */
@media (max-width: 480px) {
  .footer-grid {
    flex-direction: column;
    gap: 25px;
  }

  .footer-col {
    flex: 1 1 100%;
    margin-top: 10px;
  }
}

@media (max-width: 760px) {
  .map-pin {
    pointer-events: none;
  }

  .map-tooltip {
    display: none;
  }

  .map-below-tooltip {
    display: block;
    /* margin-top: 20px; */
    padding: 16px;
    border: 1px solid #bfddf2;
    border-radius: 12px;
    background: #fff;
  }

  .map-below-wrapper {
    position: relative;
    z-index: 0;
    margin-top: clamp(20px, 3vw, 30px);
  }

  .map-below-tooltip {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    border: 1px solid #bfddf2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 0;
  }
}

/* animations css */

.slideup-content {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.slideup-content.animate {
  opacity: 1;
  transform: translateY(0);
}

.watermark .slideup-content {
  transition:
    opacity 1.5s ease,
    transform 1.5s ease;
}

.web-solutions-section .content {
  position: relative;
}

.web-solutions-section .content {
  position: relative;
  overflow: hidden;
}

.web-solutions-section .tab-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;

  transform: translateY(20px);

  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s ease;
}

.web-solutions-section .tab-content.active {
  opacity: 1;
  visibility: visible;
  position: relative;

  transform: translateY(0);
}

.section-heading {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
  will-change: transform, opacity;
}

.section-heading.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.right-slide.animate {
  opacity: 1;
  transform: translateX(0);
}

.right-slide {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.left-slide.animate {
  opacity: 1;
  transform: translateX(0);
}

.left-slide {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

/* cursor animation */
.typewriter-cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blink 0.7s infinite;
  font-weight: 400;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* new-megamenu */

.new-megamenu-content {
  width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 45px;
  list-style: none;
}

.nav-menu>li {
  position: relative;
}

.nav-menu>li>a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 0;
  display: block;
}

.new-megamenu-content {
  position: relative;
}

.mega-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 16px;
  border: 1px solid;

  border-image-source: linear-gradient(125.41deg, rgba(43, 214, 206, 0.3) 0.7%, rgba(42, 46, 216, 0.3) 99.8%);


  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: add, add;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@media (min-width:960px) {


  .mega-menu {
    width: 629px;
    display: flex;
    gap: 18px;
    padding: 12px;
    border-radius: 32px;
    background: rgba(8, 12, 35, 0.72);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    border: 1px solid rgba(92, 115, 255, 0.28);
    box-shadow:
      0 30px 70px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: 0.35s ease;
    z-index: 999;
    backdrop-filter: blur(8px);
    background: linear-gradient(180deg, #040826 0%, #000 100%);
    position: relative;
    isolation: isolate;
  }



  .new-megamenu-content,
  .mega-menu {
    position: relative;
    z-index: 999;
  }

  .mega-column {
    flex: 1;
    padding: 20px;
    border-radius: clamp(10px, 3vw, 24px);
    background: rgba(6, 9, 28, 0.55);
    border: 1px solid #ffffff1a;
  }



  .has-mega-menu:hover .new-megamenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    -webkit-transform: translateX(-50%) translateY(0);
    -moz-transform: translateX(-50%) translateY(0);
    -ms-transform: translateX(-50%) translateY(0);
    -o-transform: translateX(-50%) translateY(0);
  }

  .new-megamenu-content {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
  }

}
  .has-mega-menu::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;

    z-index: -1;
    pointer-events: none;
    height:calc(100vh + 170px);
  }

  .has-mega-menu:hover::before {
    opacity: 1;
    visibility: visible;
  }


.mega-column h3 {
  color: #686a7b;
  margin-bottom: 8px;
  font-family: var(--twk-font);
  font-weight: 550;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0%;
}

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

.mega-column li {
  margin-bottom: 8px;
}

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

.mega-column a {
  color: #fff;
  font-family: var(--twk-font);
  font-weight: 550;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0%;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  transition: 0.3s;
}


.mega-menu .icon {
  width: 33px;
  height: 33px;
  min-width: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 20px;
}



.mega-column a:hover .arrow {
  opacity: 1;

  transform: translateX(5px);
}

.has-mega-menu {
  position: relative;
}

/* Blur overlay */
.mega-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  /* optional dark tint */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;

  z-index: 999;
}




.new-megamenu-content-content {
  display: block;
}

.mega-column a {
  color: white !important;
}

.mega-column li a {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 19px;
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  transition: 0.3s ease;
  padding-left: 8px;
}

/* Arrow */
.mega-column li a::after {
  content: "";
  position: absolute;
  right: 18px;
  width: 8px;
  height: 10px;
  margin-left: auto;
  background: url("../img/right-chevron.svg") center/contain no-repeat;
  opacity: 0;
  transition: 0.3s ease;
  opacity: 0;
  transition: 0.3s ease;
}

/* Hover */
.mega-column li:hover a {
  background: rgba(255, 255, 255, 0.08);
}

.mega-column li:hover a::after {
  opacity: 1;
}


@media (max-width: 1240px) {
  .nav-arrow {
    padding: 0;
    width: 33px;
    height: 33px;
  }
}

@media (max-width: 1135px) {
  .nav-arrow.next {
    left: calc(50% + 25px);
  }

  .nav-arrow.prev {
    left: calc(50% - 25px);
  }
}

@media (max-width: 959px) {
  .offcanvas .offcanvas__logo {
    background: #576bff57;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 6, 50, 0.14) 100%);
    box-shadow: 0px 2px 2px 0px #06126c33;
  }


}

/* mobile navigaion */
@media (max-width: 991px) {
  .mega-column span {
    position: unset !important;
    width: 100% !important;
    height: unset !important;
    -webkit-transform: unset !important;
    transform: unset !important;
    -moz-transform: unset !important;
    -ms-transform: unset !important;
    -o-transform: unset !important;
    background: none !important;
    color: #f2f2f2 !important;
  }

  /* Hide WP generated submenu for mega menu item */
  #primary-menu1 li.has-mega-menu>.sub-menu {
    display: none !important;
  }


  /* Hide custom mega menu initially */
  #primary-menu1 .new-megamenu-content {
    display: none;
  }

  #primary-menu1 li.has-mega-menu>.sub-menu {
    display: none !important;
  }

  .new-megamenu-content {
    position: static;
    display: none;
    width: 100%;
    background: transparent;
    padding: 0 20px;
  }

  .menu-item-has-children.active .new-megamenu-content {
    display: block;
  }


  .mega-menu {
    display: block;
    width: 100%;
    border: unset;
    padding: 0;
    box-shadow: unset;
  }

  .has-mega-menu::before {
    display: none;
  }

  .mega-column {
    width: 100%;
    margin-bottom: 30px;
  }

  html.menu-open,
  body.menu-open {
    overflow: hidden;
    height: 100%;
  }

  .mega-column h3 {
    color: var(--white-heading);
    font-size: 16px;
    margin-bottom: 15px;
  }


  .mega-column ul {
    display: block !important;
  }

  .mega-column a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    padding-bottom: 6px;
  }

  .mega-column li a {
    padding: 0 0 10px 0 !important;
  }

  .mega-column .icon {
    width: 35px !important;
    height: 35px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px;
    position: unset !important;

  }

  /* Disable hover mega menu on mobile */
  #primary-menu1 .has-mega-menu:hover .new-megamenu-content {
    display: none;
    opacity: 0;
    visibility: hidden;
  }

  .mega-column .icon svg path {
    stroke: #fff !important;
  }

  /* Only show mega menu when JS opens it */
  #primary-menu1 .has-mega-menu.open .new-megamenu-content {
    display: block;
    opacity: 1;
    visibility: visible;
  }


  /* Default hidden */
  #primary-menu1 .new-megamenu-content {
    display: none;
    opacity: 0;
    visibility: hidden;
  }

}

/* 404 */
.error-404 .page-header {
  text-align: center;
  padding-top: clamp(40px, 5vw, 80px);
  margin-bottom: 20px;
  text-align: center;
}

.error-404 {
  text-align: center;
}

/* story slider */

.our-story-section .dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 46px;
}

.our-story-section .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7dce6;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.our-story-section .dot.active {
  background: #1e8a7e;
  transform: scale(1.15);
}

/* ---------- IMAGE SLIDER ---------- */
.img-viewport {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.img-viewport.dragging {
  cursor: grabbing;
}

.img-track {
  display: flex;
  align-items: flex-end;
  height: var(--img-active-h);
  gap: var(--img-gap);
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

.img-slide {
  flex: 0 0 auto;
  width: var(--img-inactive-w);
  height: var(--img-inactive-h);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0.38;
  filter: grayscale(0.35);
  transform: scale(0.96);
  cursor: pointer;
  transition:
    width 0.55s cubic-bezier(0.65, 0, 0.35, 1),
    height 0.55s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 0.5s ease,
    filter 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.5s ease;
  /* box-shadow: 0 6px 20px rgba(16,38,59,.06); */
}

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

.img-slide.active {
  width: var(--img-active-w);
  height: var(--img-active-h);
  opacity: 1;
  filter: none;
  transform: scale(1);
  /* box-shadow: 0 18px 40px rgba(16,38,59,.18); */
}

/* ---------- TEXT SLIDER ---------- */
.text-viewport {
  position: relative;
  width: 100%;
  margin: 34px 0 0;
  height: 160px;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.text-viewport.dragging {
  cursor: grabbing;
}

.text-track {
  display: flex;
  align-items: flex-start;
  gap: var(--text-gap);
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

.text-slide {
  flex: 0 0 auto;
  width: var(--text-inactive-w);
  text-align: left;
  opacity: 0.32;
  transition:
    width 0.55s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 0.5s ease;
  display: flex;
  gap: 40px;
}

.text-slide.active {
  width: var(--text-active-w);
  opacity: 1;
}

.text-slide .year {
  font-family: var(--twk-font);
  font-weight: 550;
  font-style: 550;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -4%;
  vertical-align: middle;
  color: rgba(2, 46, 47, 1);
  min-width: 68px;
  line-height: 1.1;
}

.text-slide:not(.active) .year {
  color: #b9c1cd;
}

.text-slide h3 {
  margin: 4px 0 clamp(12px, 3vw, 30px);
  font-family: var(--twk-font);
  font-weight: 450;
  font-size: 24px;
  letter-spacing: -3%;
  color: rgba(2, 46, 47, 1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-slide.active h3 {
  white-space: normal;
}

.text-slide p {
  margin: 0;
  line-height: 1.6;
  font-family: var(--twk-font);
  font-weight: 350;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--para);
}

/* nav arrows */
.nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.nav button {
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 5px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #daddee;
  background: #fff;
  cursor: pointer;
  color: #5a5f77;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    border-color 0.2s ease;
}

.nav button:hover,
.team-navigation button:hover {
  background: #eef1f6;
}

.nav button:active {
  transform: scale(0.92);
}

@media (max-width: 922px) {
  .digital-services-card .slick-track {
    margin: 0 -10px;
  }

}

/* ---------- TABLET / MOBILE: plain single-slide carousel ---------- */
@media (max-width: 900px) {
  .img-viewport {
    height: 260px;
  }

  .img-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform: none !important;
    gap: 0;
  }

  .img-slide {
    position: absolute;
    inset: 0;
    margin: 0 auto;
    width: 100% !important;
    max-width: 420px;
    height: 100% !important;
    left: 50%;
    transform: translateX(-50%) scale(1) !important;
    opacity: 0;
    filter: none;
    transition: opacity 0.5s ease;
  }

  .img-slide.active {
    opacity: 1;
  }

  .story {
    padding: 0 20px;
  }

  .text-viewport {
    height: 150px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .text-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform: none !important;
    gap: 0;
  }

  .text-slide {
    position: absolute;
    inset: 0;
    width: 100% !important;
    opacity: 0;
    transition: opacity 0.5s ease;
    flex-direction: row;
  }

  .text-slide.active {
    opacity: 1;
  }

  .text-slide h3 {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .story h1 {
    font-size: 26px;
  }

  .text-slide {
    flex-direction: column;
    gap: 6px;
  }

  .text-slide .year {
    font-size: 24px;
  }


}

/* contact page */
.contact-section {
  background: #ECEDF8;
  padding-bottom: 192px;
}

.contact-text {
  max-width: 484px;
}

.contact-text {
  max-width: 466px;
  width: 100%;
}

.contact-text h2 {
  margin-bottom: 20px;
}

.contact-text ul {
  margin-top: clamp(40px, 3vw, 64px);
  color: var(--text-3);
}

/* Form Container */
.contact-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;

}


.contact-form .wpcf7 {
  background: #fff;
  padding: 24px;
  border-radius: 28px;
  box-shadow: 3px 11px 24px 0px #426ED714,
    12px 43px 44px 0px #426ED712,
    27px 96px 60px 0px #426ED70A,
    76px 266px 77px 0px #426ED700;

}

.contact-form .wpcf7 p {
  font-family: var(--twk-font);
  font-weight: 350;
  font-size: 16px;
  width: 100%;
  color: var(--para);

}

.contact-form .wpcf7 p label {
  color: var(--heading-dark);
  font-weight: 450;
}

.privacy-text a {
  text-decoration: underline;
  color: var(--heading-dark);
  transition: color .3s ease-in-out;
  -webkit-transition: color .3s ease-in-out;
  -moz-transition: color .3s ease-in-out;
  -ms-transition: color .3s ease-in-out;
  -o-transition: color .3s ease-in-out;
  font-size: 14px;
}

.privacy-text a:hover {
  color: var(--accent);
}

.privacy-text {
  line-height: 1.3;
  text-align: center;
  font-size: 14px;
}

.contact-form .wpcf7-form>p:nth-of-type(1),
.contact-form .wpcf7-form>p:nth-of-type(2),
.contact-form .wpcf7-form>p:nth-of-type(3),
.contact-form .wpcf7-form>p:nth-of-type(4),
.contact-form .wpcf7-form>p:nth-of-type(6),
.contact-form .wpcf7-form>p:nth-of-type(7) {
  width: calc(50% - 5px);
}

.contact-form p input,
.contact-form p select {
  margin-top: 8px;
}

.contact-form p {
  margin-bottom: clamp(10px, 3vw, 18px);
}

/* .contact-form .wpcf7-form>p:nth-of-type(3) {
  max-width: 22%;
}

.contact-form .wpcf7-form>p:nth-of-type(4) {
  width: 66%;
} */
.contact-form .wpcf7-form>p:nth-of-type(3) {
  width: 122px;
  flex: 0 0 122px;
}

.contact-form .wpcf7-form>p:nth-of-type(4) {
  flex: 1;
  width: auto;
}

.contact-form p select.wpcf7-form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Inputs & Selects */
.contact-form .wpcf7 input:not([type="submit"]),
.contact-form .wpcf7 select,
.contact-form .wpcf7 textarea {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  /* border: 1px solid #DADDEE; */
  border: 1px solid #00000033;
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
  color: #222;
  box-sizing: border-box;
  transition: all .3s ease;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

/* Textarea */
.contact-form .wpcf7 textarea {
  height: 140px;
  padding: 16px 18px;
  resize: vertical;
}

/* Placeholder */
.contact-form ::placeholder {
  color: rgba(2, 46, 47, 0.3);
  font-family: var(--twk-font);
}

.contact-form {
  max-width: 542px;
  margin-left: auto;
}

/* Focus */
.contact-form .wpcf7 input:focus,
.contact-form .wpcf7 select:focus,
.contact-form .wpcf7 textarea:focus {
  outline: none;
  border-color: #5B63FF;
  /* box-shadow: 0 0 0 3px rgba(91, 99, 255, .12); */
}

/* Submit Button */
.contact-form .wpcf7-submit {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all .3s ease;
  text-align: center;
  justify-content: center;
  font-family: var(--twk-font);
}

.contact-form .wpcf7-submit span {
  display: inline-flex;
  align-items: center;
}


.contact-form .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(91, 99, 255, .25);
}

/* Validation Messages */
.contact-form .wpcf7-not-valid-tip {
  margin-top: 5px;
  font-size: 12px;
}

.contact-form .wpcf7-response-output {
  margin-top: 20px !important;
}

.wpcf7-not-valid-tip {
  display: inline-block;
}

/* Spinner */
.contact-form .wpcf7-spinner {
  display: none;
}

.contact-form .wpcf7 select.placeholder {
  color: #999;
}

.contact-form .wpcf7-not-valid-tip {
  font-size: 14px;
  font-weight: 350;
}

.contact-form .wpcf7 select.placeholder {
  color: rgba(2, 46, 47, .3);
}


.contact-form .wpcf7 select {
  color: var(--heading-dark);
}

.contact-form .wpcf7 select[name="country-code"] {
  color: var(--heading-dark);
}


.reach-out-section {
  margin-top: -81px;
}

.reach-out-card .icon-img {
  margin-bottom: clamp(20px, 3vw, 51px);
}

.reach-out-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  z-index: 1;
  padding: 32px;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
}

.reach-out-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(125.41deg,
      rgba(43, 214, 206, 0.3) 0.7%,
      rgba(42, 46, 216, 0.3) 99.8%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: -1;
}

.reach-out-card h3 {
  font-family: var(--twk-font);
  font-weight: 450;
  font-size: clamp(18px, 3vw, 20px);
  line-height: 24.2px;
  margin-bottom: clamp(10px, 3vw, 20px);
}

.reach-out-card>p {
  font-size: 14px;
}

.reach-out-card .bottom-div {
  margin-top: 30px;
  text-decoration: underline;
}

.reach-out-card:last-child .bottom-div {
  text-decoration: none;
}

.reach-out-card .bottom-div>a,
.reach-out-card .bottom-div>p {
  color: var(--heading-dark);
  font-family: var(--twk-font);
  font-weight: 450;
  font-size: 16px;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}

.reach-out-card .bottom-div>a:hover {
  color: var(--para);
}

.reach-out-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 5px 12px 0px #4049A51A, 0px 22px 22px 0px #4049A517, 0px 49px 29px 0px #4049A50D, 0px 87px 35px 0px #4049A503, 0px 136px 38px 0px #4049A500;

}

.map-section iframe {
  width: 100%;
  border: 3px solid white;
  border-radius: clamp(10px, 3vw, 15px);
  -webkit-border-radius: clamp(10px, 3vw, 15px);
  -moz-border-radius: clamp(10px, 3vw, 15px);
  -ms-border-radius: clamp(10px, 3vw, 15px);
  -o-border-radius: clamp(10px, 3vw, 15px);
  height: 594px;

}

.map-section h2 {
  margin-bottom: clamp(20px, 3vw, 32px);
}

.map-section .map {
  background: white;
  border-radius: clamp(10px, 3vw, 24px);
  -webkit-border-radius: clamp(10px, 3vw, 24px);
  -moz-border-radius: clamp(10px, 3vw, 24px);
  -ms-border-radius: clamp(10px, 3vw, 24px);
  -o-border-radius: clamp(10px, 3vw, 24px);
  padding: 12px;
}

.user-img {
  margin-top: clamp(20px, 4vw, 64px);
  display: flex;
  gap: 10px;
  align-items: center;
}

.user-profile-img {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(30px, 3vw, 64px);
}

.user-profile-img img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;

}

.user-profile-img img:not(:first-child) {
  margin-left: -15px;
}

.expert-info h4 {
  font-size: 14px;
  font-weight: 450;
}

.expert-info p {
  font-size: 14px;
  font-weight: 350;
}

.contact-section {
  font-family: var(--twk-font);
}

/* Responsive */
@media (max-width:1380px) {
  .map-section iframe {
    height: 530px;
  }
}

@media (max-width:980px) {
  .contact-section .two-grid {
    grid-template-columns: 1fr;
  }

  .contact-text {
    max-width: 100%;
  }

  .contact-form {
    max-width: 100%;
  }
}

@media (max-width:768px) {

  .contact-form .wpcf7 {
    padding: 20px;
  }

  .contact-form .wpcf7 p {
    font-size: 16px;
  }

  .contact-form .wpcf7 input:not([type="submit"]),
  .contact-form .wpcf7 select,
  .contact-form .wpcf7 textarea {
    font-size: 15px;
    /* height: 52px; */
  }



}

@media (max-width:580px) {


  .contact-form .wpcf7-form>p:nth-of-type(1),
  .contact-form .wpcf7-form>p:nth-of-type(2),
  .contact-form .wpcf7-form>p:nth-of-type(3),
  .contact-form .wpcf7-form>p:nth-of-type(4),
  .contact-form .wpcf7-form>p:nth-of-type(6),
  .contact-form .wpcf7-form>p:nth-of-type(7) {
    width: 100%;
  }

  .contact-form p input,
  .contact-form p select {
    margin-top: 5px;
  }

  .map-section iframe {
    height: 400px;
  }

  .privacy-text {
    line-height: 1.3;
  }

}

/* single team */
.single-team-section .director-card {
  display: flex;
  align-items: start;
}

.single-team-section .featured-image {
  position: sticky;
  top: 100px;
}

.leader-ship-container .entry-container h2 a {
  font-family: var(--twk-font);
  color: var(--heading-dark);
}


.burger__menu {
  background: none !important;
}
.mega-column .icon img{
  width:20px;
  height: 20px;
  object-fit: cover;
}

@media(max-width:959px){

  .mega-menu-overlay,
  .has-mega-menu::before {
      pointer-events:none !important;
  }

  .site-header {
      z-index:99999 !important;
  }

  .offcanvas:not(.show) {
      pointer-events:none;
  }

}