@import "tailwindcss";

/*Font Variables */
*{
    font-family: 'Urbanist', sans-serif;
}
.fs-7xl{
    font-size: 72px;
    line-height: 120%;
    font-weight: 600;
}
.fs-6xl{
    font-size: 60px;
    line-height: 120%;
    font-weight: 600;
}
.fs-5xl{
    font-size: 48px;
    line-height: 150%;
    font-weight: 700;
}
.fs-4xl{
    font-size: 44px;
    line-height: 150%;
    font-weight: 700;
}
.fs-3xl{
    font-size: 36px;
    line-height: 120%;
    font-weight: 600;
}
.fs-2xl{
    font-size: 32px;
    line-height: 120%;
    font-weight: 600;
}
.fs-xl{
    font-size: 26px;
    line-height: 150%;
    font-weight: 600;
}
.fs-lg-medium{
    font-size: 24px !important;
    line-height: 150% !important;
    font-weight: 500 !important;
}
.fs-lg-semibold{
    font-size: 24px;
    line-height: 150%;
    font-weight: 600;
}
.fs-md-medium{
    font-size: 20px;
    line-height: 150%;
    font-weight: 500;
}
.fs-md-semibold{
    font-size: 20px;
    line-height: 150%;
    font-weight: 600;
}
.fs-base-medium{
    font-size: 18px;
    line-height: 150%;
    font-weight: 500;
}
.fs-base-bold{
    font-size: 18px;
    line-height: 150%;
    font-weight: 700;
}
/* .fs-sm-medium{
    font-size: 16px;
    line-height: 150%;
    font-weight: 500;
} */
.fs-sm-semibold{
    font-size: 16px;
    line-height: 150%;
    font-weight: 600;
}
.fs-xs{
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
}




/* Color variables */

:root {
   --bg: #F5F5F7;
  --text: #1A1A1A;
  --blue-1: #85DAF9;
  --blue-2: #3B54A1;
  --blue-3: #5684C1;
  --blue-4: #2F3F93;
  --blue-gradient: linear-gradient( 90deg, #2F3F93 3%, #3B54A1 26%, #5684C1 59%, #85DAF9 100%);
  --black-1: #1A1A1A;
  --black-2: #262626;
  --gray-1: #706D79;
  --gray-2: #808080;
  --white-1: #F5F5F7;
  --white-2: #ffffff;
}
.dark-theme-html {
  --bg: #1A1A1A;
  --text: #ffffff;

}
.dark-impact{
  background: transparent !important;
  color: inherit;
}

body {
  background: var(--bg);
  color: var(--text);
  transition: background 0.5s ease, color 0.5s ease;
}
/* Color classes */
.blue-text-1 {
  color: var(--blue-1);
}
.blue-bg-1 {
  background-color: var(--blue-1);
}
.blue-text-2 {
  color: var(--blue-2);
}
.blue-bg-2 {
  background-color: var(--blue-2);
}
.blue-text-3 {
  color: var(--blue-3);
}
.blue-bg-3 {
  background-color: var(--blue-3);
}
.blue-text-4 {
  color: var(--blue-4);
}
.blue-bg-4 {
  background-color: var(--blue-4);
}
.blue-gradient {
  background: var(--blue-gradient);
}
.blue-text-gradient {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.black-text-1 {
  color: var(--black-1);
}
.black-bg-1 {
  background-color: var(--black-1);
}
.black-text-2 {
  color: var(--black-2);
}
.black-bg-2 {
  background-color: var(--black-2);
}
.gray-text-1 {
  color: var(--gray-1);
}
.gray-bg-1 {
  background-color: var(--gray-1);
}
.gray-text-2 {
  color: var(--gray-2);
}
.gray-bg-2 {
  background-color: var(--gray-2);
}
.white-text-1 {
  color: var(--white-1);
}
.white-bg-1 {
  background-color: var(--white-1);
}
.white-text-2 {
  color: var(--white-2);
}
.white-bg-2 {
  background-color: var(--white-2);
}

.desc-card{
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}
/* new added css */
.bg-active{
background: linear-gradient(95.58deg, #2F3F93 3%, #3B54A1 26%, #5684C1 59%, #85DAF9 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
position: relative;
}

.bg-active::after{
  content: "";
      position: absolute;
      inset: 0;
      border-radius: 7px;
      padding: 1.3px; /* border thickness */
      background: linear-gradient(to right, #34d399, #3b82f6); /* green to blue */
      -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      z-index: -1;
}

    @keyframes fadeInUp {
          0% { opacity: 0; transform: translateY(40px); }
          100% { opacity: 1; transform: translateY(0); }
        }
        .animate-fadeInUp {
          animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) both;
        }
        .delay-100 {
          animation-delay: 0.15s;
        }


  .gradient-border1 {
      background-image: url("../img/Walkwel-Gradient.png");
      background-repeat: no-repeat;
      background-size: cover;
      border-radius: 52px;
    }

.footer input::placeholder,
.footer textarea::placeholder{
  color: #706D79 !important;
}


.custom-select {
  appearance: none; /* removes default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
 background: white url("data:image/svg+xml,%3Csvg width='17' height='10' viewBox='0 0 17 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.1665 1.25L8.6665 8.75L1.1665 1.25' stroke='%23706D79' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;  background-size: 12px;
}


/* ===============RIDHIMA CSS===================== */
      
/* Delay cards */
/* Step cards initial state */
.step-card {
  opacity: 0.3;
  transition: opacity 1s;
}

/* When fully visible */
.step-card.visible {
  opacity: 1;
}
.clients_acheivment::before{
  content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgb(247 247 250 / 59%);
    height: 100%;
    width: 7.1%;
    z-index: 9;
}
/* Dark mode override */
.dark-theme-html .clients_acheivment::before {
  background: rgb(0 0 0 / 0.1);
}
.dark-theme-html .clients_acheivment::after {
  background: rgb(0 0 0 / 0.1);
}
.clients_acheivment::after{
content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgb(247 247 250 / 59%);
    height: 100%;
    width: 14.1%;
    z-index: 9;
}
/* Black border by default */
.step-card .step-border {
  border-bottom: 3px solid #262626; /* black-2 */
  transition: border-image 0.6s, border-color 0.6s;
  border-image: none;
}

/* Blue gradient border when visible */
.step-card.visible .step-border {
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #2F3F93 3%, #3B54A1 26%, #5684C1 59%, #85DAF9 100%);
  border-image-slice: 1;
}

/* Add at the end of your CSS file */
.card-1:hover .card-text{
  background: var(--blue-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

.dark-impact-active {
  background-color: #181A20;
  transition: background-color 0.4s ease;
}
.dark-theme .black-text-1,
.dark-theme .black-text-2,
.dark-theme .gray-text-1,
.dark-theme .gray-text-2 {
  color: #fff !important;
}
.dark-theme .step-card {
  /* background: #23242a !important; */
  color: #fff !important;
}
.dark-theme .step-border {
  border-bottom-color: #fff !important;
}

/* 60%  { transform: translate(0, 110px); }
80%  { transform: translate(-80px, 60px); } */

/* slider */
/* Center arrows below Swiper */
/* Animate shadow-bottom-3.svg in a larger, smoother circular path */
@keyframes move-in-circle {
  0%   { transform: translate(0, 0); }
  12.5%  { transform: translate(40px, 10px); }
  25%  { transform: translate(60px, 30px); }
  37.5% { transform: translate(70px, 50px); }
  50%  { transform: translate(60px, 70px); }
  62.5% { transform: translate(40px, 90px); }
  75%  { transform: translate(20px, 80px); }
  87.5% { transform: translate(10px, 40px); }
  100% { transform: translate(0, 0); }
}
.animate-move-circle {
  animation: move-in-circle 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform;
    animation-delay: 10s;
}


@keyframes move-in-circle-back {
  0%   { transform: translate(0, 0); }
  12.5%  { transform: translate(-10px, 30px); }
  25%  { transform: translate(-30px, 60px); }
  37.5% { transform: translate(-60px, 80px); }
  50%  { transform: translate(-80px, 60px); }
  62.5% { transform: translate(-70px, 30px); }
  75%  { transform: translate(-40px, 10px); }
  87.5% { transform: translate(-10px, 0px); }
  100% { transform: translate(0, 0); }
}
.animate-move-circle-back {
  animation: move-in-circle-back 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform;
}

/* Dark style for tech stack cards (overrides and fallback for Tailwind purging) */
.tech-card {
  background: #071024;
  color: #ffffff;
  border: 1px solid #122033;
  box-shadow: 0 6px 18px rgba(3, 10, 18, 0.45);
}
.tech-card .icon {
  background: #0d1b2a;
  border: 1px solid #163048;
}
.tech-card .label {
  color: #ffffff;
}
/* cursor */
/* Custom cursor is opt-in. Native cursor remains visible unless enabled on the page. */
@media (min-width: 768px) {
  html.has-custom-cursor,
  html.has-custom-cursor body,
  html.has-custom-cursor a,
  html.has-custom-cursor button,
  html.has-custom-cursor [role="button"],
  html.has-custom-cursor summary,
  html.has-custom-cursor input,
  html.has-custom-cursor textarea,
  html.has-custom-cursor select,
  html.has-custom-cursor label {
    cursor: none !important;
  }
}
#custom-cursor {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    background: rgba(133, 218, 249, 0.12);
    border: 2px solid #85DAF9;
    box-shadow: 0 0 10px rgba(133, 218, 249, 0.55), 0 0 22px rgba(133, 218, 249, 0.18);
    transition: width 0.22s cubic-bezier(.22,.68,.43,1.01),
                height 0.22s cubic-bezier(.22,.68,.43,1.01),
                border-color 0.2s ease,
                background 0.2s ease,
                box-shadow 0.2s ease;
}
#custom-cursor.active {
    width: 46px;
    height: 46px;
    border-color: rgba(47, 63, 147, 0.9);
    background: rgba(47, 63, 147, 0.14);
    box-shadow: 0 0 18px rgba(47, 63, 147, 0.4), 0 0 6px rgba(133, 218, 249, 0.25);
}
@media (max-width: 767px) {
    #custom-cursor { display: none !important; }
}

/* Welna Chatbot Layout */
.chatbot-widget {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.chatbot-window {
  width: 400px;
  max-width: 95vw;
  /* background: #fff; */
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(47,63,147,0.18);
  overflow: hidden;
  display: none;
  flex-direction: column;
  margin-bottom: 12px;
}
.welna-header {
  background: #2F3F93;
  padding: 22px 28px 16px 28px;
  border-radius: 22px 22px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.welna-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.welna-bot-icon {
  width: 48px;
  height: 48px;
}
.welna-status {
  color: #43EE7D;
  display: flex;
  align-items: center;
  gap: 6px;
}
.welna-status-dot {
   background-color: #43EE7D;
  width: 10px;
  height: 10px;
  border-radius: 50%;
/* Hide specific btn on viewports smaller than 425px */
@media (max-width: 424px) {
  a.hidden.lg\:block.btn-primary-d2.py-2\.5.px-5.text-\[13px\] {
    display: none !important;
  }
}
/* Also hide nav mobile button (inside the mobile menu) on very small screens */
@media (max-width: 424px) {
  nav a.btn-primary-d2 {
    display: none !important;
  }
}
  display: inline-block;
}
.welna-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 12px;
  display: flex;
  align-items: center;
}
.welna-body {
 padding: 0 0 37px 0;
    min-height: 320px;
    max-height: 540px;
    overflow-y: auto;
    background: #f7f7fa;
    display: flex
;
    flex-direction: column;
    gap: 0;
}
.chat-row {
  display: flex;
  align-items: flex-end;
  margin: 48px 18px 0 18px;
  position: relative;
}
.chat-row.bot {
  flex-direction: row;
}
.chat-row.user {
  flex-direction: row-reverse;
}
.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-bottom: 6px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(47,63,147,0.08);
}
.chat-bubble {
  position: relative;
  padding: 25px 18px;
  border-radius: 16px;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(47,63,147,0.06);
  max-width: 90%;
  word-break: break-word;
}
.chat-bubble.bot {
  margin-left: 12px;
  border-bottom-left-radius: 4px;
  background-color: #5684C1;
  color: #fff;
}
.chat-bubble.user {
  margin-right: 12px;
  border-bottom-right-radius: 4px;
}
.chat-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;

 position: absolute;
 color: #888888;
  left: 10px;
  bottom: -25px;
}
.chat-check {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url('../img/delivered.svg') no-repeat center/contain;
}
.chat-check.read {
  background: url('../img/check.svg') no-repeat center/contain;
}
.chat-actions {
  
  margin-top: 8px;
      display: block;
    width: 35%;
    padding: 0 10px;
    background: #2F3F93;
    border-radius: 10px;
}
.chat-actions button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.chat-actions img {
  width: 20px;
  height: 20px;
}
.chat-quick-replies {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  margin: 30px 18px 0 18px;
}
.chat-quick-replies button {
  border: 1px solid #e5eafc;
  border-radius: 12px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.chat-quick-replies button:hover {
  background: #e5eafc;
}
.welna-form {
  display: flex;
  border-top: 1px solid #e5eafc;
  padding: 14px 18px;
  background: #fff;
  gap: 8px;
  border-radius: 0 0 22px 22px;
}
.welna-form input {
  flex: 1;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  outline: none;
  background: #f7f7fa;
  margin-right: 8px;
  box-shadow: 0 1px 2px rgba(47,63,147,0.04);
}
.welna-send-btn {
  background: none;
  border: none;
  border-radius: 10px;
  padding: 0 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media (max-width: 500px) {
  .chatbot-window {
    width: 98vw;
    min-width: 0;
    border-radius: 12px;
    margin-bottom: 8px;
  }
  .welna-header {
    font-size: 17px;
    padding: 14px 12px;
  }
  .welna-body {
    min-height: 120px;
    max-height: 220px;
    font-size: 15px;
  }
  .welna-form {
    padding: 10px 8px;
  }
}

/* about us */
/* Add to your global.css for perfect card look */
.bg-white {
  background: #fff;
}
.shadow-lg {
  box-shadow: 0 8px 32px rgba(47,63,147,0.10);
}

@media (max-width: 900px) {
  .p-14 {
    padding: 2rem;
  }
}
 .swiper-container {
        width: 100%;
        height: 100%;
      }

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

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

      swiper-slide {
        width: 30%;
            margin-bottom: 88px;
      }

swiper-container::part(button-prev),
swiper-container::part(button-next) {
  width: 44px;
  height: 44px;
  background-color: white !important;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(47, 63, 147, 0.1);
  /* position: relative; */
  overflow: hidden;
  z-index: 99;
      bottom: 0 !important;
    top: unset !important;
}
swiper-container::part(button-prev){
    left: -242px !important;
    right: 0 !important;
    margin: auto;
}
swiper-container::part(button-next) {
  right: -242px !important;
  left: 0 !important;
  margin: auto;
}


/* Overlay your image */
swiper-container::part(button-prev)::before,
swiper-container::part(button-next)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* perfectly centers the image */
    width: 44px;
    height: 44px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* scale image to fit */
  z-index: 5;
  pointer-events: none;
}

.mySwiper .swiper{
  padding-bottom: 80px !important;
}

swiper-container::part(button-prev)::before {
    background-image: url(../img/Button-prev.png) !important;
    background: #fff;
    background-size: contain !important;
}

swiper-container::part(button-next)::before {
  background-image: url('../img/Button-next.png');
}
swiper-container::part(button-prev) svg,
swiper-container::part(button-next) svg {
  display: none !important; /* or use opacity: 0 */
}


.swiper-pagination {
    z-index: 1 !important;
}
.swiper-pagination {
  position: absolute;
  bottom: 16px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  z-index: 10;
  display: flex;
  gap: 8px; /* spacing between bullets */
}

/* Make arrows vertically centered */
.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 2px 8px rgba(47, 63, 147, 0.1);
  z-index: 11;
}

/* Position prev to the left */
.swiper-button-prev {
  left: 0;
}

/* Position next to the right */
.swiper-button-next {
  right: 0;
}
swiper-container::part(bullet) {
  background-color: #000;
  width: 14px;
  height: 3.75px;
  border-radius: 45px;
  opacity: 1;
}

swiper-container::part(bullet-active) {
    width: 14px;
  height: 3.75px;
  border-radius: 45px;
  background: linear-gradient(
    95.58deg,
    #2F3F93 3%,
    #3B54A1 26%,
    #5684C1 59%,
    #85DAF9 100%
  );
}
/* a.hover-btn:hover{
background: var(--blue-gradient) !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
} */

a.hover-btn:hover span{
  transform: rotate(45deg) !important;
}
a.hover-btn:hover span svg{
  fill: #5684C1 !important;
}
a.hover-btn:hover span svg path {
  fill: #5684C1 !important;
}
a.hover-btn {
  transition: all 0.2s ease-in-out;
}

a.hover-btn span {
  transition: transform 0.2s ease-in-out;
   transform: rotate(0deg) ;
}

a.hover-btn span svg {
  transition: fill 0.2s ease-in-out;
}

.slidermain_box swiper-container::part(button-prev){
      left: -290px !important;
}

.slidermain_box swiper-container::part(button-next) {
    right: -290px !important;
}

    footer span{
      flex-wrap: unset !important;
    }

/* new added css */
.clients_acheivment{
  position: relative;
}

.innovation_box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
    bottom: 0;
    background: rgb(247 247 250 / 59%);
    height: 100%;
    width: 200px;
    z-index: 99;
}

.innovation_box::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
    bottom: 0;
    background: rgb(247 247 250 / 59%);
    height: 100%;
    width: 200px;
    z-index: 99;
}


/* service card hover */
.service_card {
  position: relative;
  transition: transform 0.3s ease;
}


 .service_card-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    transform: translateY(75%);
    transition: transform 0.5s cubic-bezier(0.39, 0.58, 0.57, 1), opacity 0.3s;
    opacity: 0.92;
    z-index: 2;
  }
  .service_card:hover .service_card-caption,
  .group:hover .service_card-caption {
    transform: translateY(0);
    opacity: 1;
  }



.industry_card_img {  
border-radius: 22px !important;
  overflow: hidden; 
}

.industry_card_img img {
  transition: 0.6s;
}

.industry_card_img img:hover {
  transform: scale(1.1);
}

.industry_card:hover .industry_card_img img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
/* a.hover-btn1:hover{ */
  /* transition: transform 0.3s ease; */
/* color: var(--blue-text-gradient) !important; */
/* } */

.industry_card:hover a {
    background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.industry_card:hover a svg{
 filter: brightness(0) saturate(100%) invert(66%) sepia(86%) saturate(203%) hue-rotate(156deg) brightness(95%) contrast(96%) !important;
}

.industry_card:hover .icon-hover {
  opacity: 1;
}

.icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #f3f4f6; /* bg-gray-100 */
  border-radius: 9999px; /* rounded-full */
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  transition: opacity 0.5s ease;
}

.icon-default {
  opacity: 1;
}

.icon-hover {
  opacity: 0;
}

.icon-wrapper:hover .icon-default {
  opacity: 0;
}

.icon-wrapper:hover .icon-hover {
  opacity: 1;
}
  .label-blog{
      background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(44px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    }
  .gradient-border1.blog_news{
           background-position: center !important;
  }


/* ========================Circle animation ============================*/
  .container_about {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }
 
        .image-wrapper {
            position: relative;
        }
 
        .rotating-image {
            animation: spin-slow 30s linear infinite;
        }
        /* Animation keyframes */
        @keyframes spin-slow {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
 
        /* Speed variants */
        .animate-spin-slow {
            animation: spin-slow 10s linear infinite;
        }
 
        .animate-spin-medium {
            animation: spin-slow 6s linear infinite;
        }
 
        .animate-spin-fast {
            animation: spin-slow 4s linear infinite;
        }
 
        /* Hover effects */
        .rotating-image:hover img {
            transition: box-shadow 0.3s ease;
        }
 
        /* Optional: Pause on hover */
        .image-wrapper:hover .rotating-image {
            animation-play-state: paused;
        }
        .techstack_sec::before{
          content:"";
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          bottom: 0;
          height: 318px;
          background-color: #f5f5f7;
    width: 100%;
    z-index: 9;
        }

body{
  overflow-x: hidden !important;
}
/* Prevent fixed/absolute dropdown panels from causing sideways page scroll.
   `clip` (unlike `hidden`) does not create a scroll container, so the sticky navbar keeps working. */
html{
  overflow-x: clip;
}
.celebrate_slider swiper-slide {
  margin-bottom: 88px;
  height: auto;
}
 
.celebrate_slider swiper-slide > div {
  width: 100%;
  height: 100%;
}
/* ======================responisve  start ======================== */
@media (min-width:1400px) and (max-width:1600px){
  .main_content_box .fs-5xl {
    font-size: 32px !important;
  }
  .slider_box .fs-base-medium {
    font-size: 14.2px !important;
  }
   .clients_acheivment::before{
    width: 6.2%;
  }
 
  .clients_acheivment::after{
    width: 6.2%;
  }
  .bottom_portfolio_bar {
    /* flex-wrap: unset !important; */
  }
   .portfolio_heading span {
    font-size: 20px !important;
  }
    .industries_sec 
  {
    flex-wrap: unset !important;
  }
      .portfolio_heading span {
        font-size: 20px !important;
    }
        .slider_box .fs-base-medium {
        font-size: 14.2px !important;
    }
    .main_content_box .fs-5xl{
    font-size: 32px !important;
    }
    .bottom_portfolio_bar .fs-base-medium{
      font-size: 13px !important;
      margin-right: 10px !important;
      width: 70px !important;
    }
      .innovation_box::after,
   .innovation_box::before{
    content: unset !important;
  }
  .portfolio_heading{
    gap: 10px !important;
  }
}

@media (min-width:1200px) and (max-width: 1399px) {
  .portfolio_heading{
    gap: 10px !important;
  }
  .main_content_box .portfolio_content {
    min-height: 45px;
  }
  .content_prtfolio_sec {
    padding: 16px !important;
  }
  .celebrate_slider {
    padding-right: 48px !important;
    padding-left: 48px !important;
  }
  .slider_box .fs-base-medium {
    font-size: 13.5px !important;
  }
  .walkwel_logo_video{
    height: 500px !important;
  }
  .image-wrapper {
    overflow: hidden !important;
}
  /* .about_heading_hero{
    margin-top: -170px !important;
  } */

  .techstack_sec{
    max-height: 700px !important;
  }
  .heading_main_hero{
    font-size: 65px  !important;
    gap: 0 !important;
    line-height: 75px !important;
  }
  .scroll_word_inner span {
    font-size: 65px !important;
  }
  .image_portfolio_sec,
  .content_prtfolio_sec{
    padding: 16px !important;
  }
  .bottom_portfolio_bar .fs-base-medium {
    margin-right: 8px !important;
    font-size: 14px !important;
}
.celebrate_slider{
  padding-right: 48px !important;
  padding-left: 48px !important;
}
.slider_box .fs-base-medium{
        font-size: 13.5px !important;
}
    .innovation_box::after,
   .innovation_box::before{
    content: unset !important;
  }
  .browse_img{
    min-height: 395px !important;
  }
  .review_card{
    padding: 18px !important;
  }
  .left_img_project{
            max-width: 600px !important;
            width: 600px !important;
            margin-bottom: 50px !important;
  }
  .bottom_portfolio_bar{
    flex-wrap: unset !important;
  }
 
  .spacing_box.clients_acheivment{
    padding-left: 0 !important;
     padding-right: 0 !important;
  }
 
  .bottom_portfolio_bar{
    gap: 10px !important;
  }
  .portfolio_heading span {
    font-size: 20px !important;
  }
  .industries_sec ,
  .portfolio_heading{
    flex-wrap: unset !important;
  }
    .portfolio_heading a {
    font-size: 14px !important;
  }
  .main_project_box{
            min-height: 400px;
  }
  .banner_sec {
    min-height: 80vh !important;
  }
  .project_number_sec{
    padding-top: 0 !important;
            min-height: 400px;
  }

  .fs-6xl {
    font-size: 45px;
  }
  .fs-5xl {
    font-size: 32px;
  }
  .fs-4xl {
    font-size: 28px;
  }
  .fs-3xl {
    font-size: 24px;
  }
  .fs-2xl {
    font-size: 20px;
  }
  .fs-lg-medium {
    font-size: 20px;
  }
   .step-card h3 br{
    display: none !important;
  }
  .spacing_box{
    padding-left:20px !important;
     padding-right:20px !important;
  }
  .social_iconss svg{
    width: 20px !important;
    height: 20px !important;
  }
  .step-card h3{
    font-size: 22px !important;
    line-height: 28px !important;
  }
  footer span,
    footer ul li,
    .footer input ,
    .footer textarea,
    .footer select{
    font-size: 16px !important;
  }
  .footer label{
    font-size: 16px !important;
  }
  .banner_sec p.fs-lg-medium{
    font-size: 18px !important;
  }
  .card-2 .fs-lg-medium{
      font-size: 18px !important;
  }

    .portfolio_heading span{
    font-size: 20px !important;
  }
  .portfolio_heading a{
    font-size: 14px !important;
  }
    .industry_page .scroll_word_inner span {
    font-size: 56px !important;
}
 .scroll_word_wrapper1 span.item {
    display: flex;
    align-items: center;
}
.step-card h3 {
    min-height: 66px;
}
.step-card p {
font-size: 14px !important;
}
.service_card-caption a {
    font-size: 14px !important;
}
.spacing_box.clients_acheivment {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
 
.clients_acheivment::before{
    width: 2.6%
  }
 
  .clients_acheivment::after{
    width: 2.6%
  }
}
@media (min-width:992px) and (max-width: 1199px) {
  .portfolio_heading{
    gap: 14px !important;
  }
  .slider_box .fs-base-medium {
    font-size: 14px !important;
  }
  .portfolio_heading span {
    font-size: 20px !important;
  }
     .container_about{
      width: 90%;
        margin: auto;
        overflow: hidden;
  }
     .blogs_details p{
    font-size: 17px !important;
    margin-bottom: 20px !important;
   }
  .service_card-caption h3 {
   font-size: 18px !important;
  }
    .service_card-caption a{
      font-size: 14px !important;
    }
  .card_size ,   .card_size .span-1{
    font-size: 16px !important;
  }
  nav ul li a{
    font-size: 15px !important;
  }
    .innovation_box::after,
   .innovation_box::before{
    content: unset !important;
  }
    .scroll_word_wrapper1{
    height: 300px !important;

   }
   .industry_page .scroll_word_inner span {
    font-size: 50px !important;
}
  .scroll_word_inner span {
    font-size: 55px !important;
}
     .logo_img{
    height: 40px !important;
    margin-bottom: 20px !important;
    object-fit: contain !important;
    object-position: left !important;
  }
    footer span {
    flex-wrap: wrap !important;
}
  .left_img_project{
            max-width: 500px !important;
            width: 500px !important;
            margin-bottom: 50px !important;
  }
    .portfolio_heading span{
    font-size: 20px !important;
  }
    /* .industries_sec , */
  .portfolio_heading,
  .bottom_portfolio_bar{
    /* flex-wrap: unset !important; */
  }

  .main_project_box{
            min-height: 400px;
  }
  .banner_sec {
    min-height: 70vh !important;
  }
  .project_number_sec{
    padding-top: 0 !important;
            min-height: 400px;
  }
  
  .fs-6xl {
    font-size: 35px;
  }
  .fs-5xl {
    font-size: 32px;
  }
  .fs-4xl {
    font-size: 28px;
  }
  .fs-3xl {
    font-size: 24px;
  }
  .fs-2xl {
    font-size: 20px;
  }
  .fs-lg-medium {
    font-size: 20px;
  }
   .step-card h3 br{
    display: none !important;
  }
  .spacing_box{
    padding-left:20px !important;
     padding-right:20px !important;
  }
  .social_iconss svg{
    width: 20px !important;
    height: 20px !important;
  }
  .step-card h3{
    font-size: 22px !important;
    line-height: 28px !important;
  }
  footer span,
    footer ul li,
    .footer input ,
    .footer textarea,
    .footer select{
    font-size: 16px !important;
  }
  .footer label{
    font-size: 16px !important;
  }
  .banner_sec p.fs-lg-medium{
    font-size: 18px !important;
  }
  .card-2 .fs-lg-medium{
      font-size: 18px !important;
  }
  .slider_box .fs-base-medium {
font-size: 14px !important;
  }
}
@media (min-width:768px) and (max-width: 991px) {
  .slider_box .fs-base-medium {
    font-size: 16px !important;
  }
  .clients_acheivment::before{
    width: 22%;
  }
 .portfolio_heading span {
    font-size: 20px !important;
  }
  .clients_acheivment::after{
    width: 22%;
  }
   .container_about{
      width: 90%;
        margin: auto;
        overflow: hidden;
        min-height: 85vh !important;
  }
  .techstack_sec {
    min-height: 836px !important;
}
  .techstack_sec::before{
 height: 200px !important;
  }
    .blogs_details p{
    font-size: 16px !important;
    margin-bottom: 20px !important;
   }
    p.about-description.fs-lg-medium{
    font-size: 18px !important;
            width: 80%;
        margin: auto;
  }
.service_card-caption h3 {
   font-size: 22px !important;
  }
    .service_card-caption a{
      font-size: 14px !important;
    }
    .innovation_box::after,
   .innovation_box::before{
    content: unset !important;
  }
     .scroll_word_wrapper1{
    height: 300px !important;

   }
   .industry_page .scroll_word_inner span {
    font-size: 45px !important;
}
 .scroll_word_inner span {
    font-size: 55px !important;
}
.review_card {
    padding: 38.5px !important;
}
  .logo_img{
    height: 75px !important;
    margin-bottom: 20px !important;
    object-fit: contain !important;
    object-position: left !important;
  }
  footer span {
    flex-wrap: wrap !important;
}
 
  .fs-6xl {
    font-size: 35px;
  }
  .fs-5xl {
    font-size: 32px;
  }
  .fs-4xl {
    font-size: 28px;
  }
  .fs-3xl {
    font-size: 24px;
  }
  .fs-2xl {
    font-size: 20px;
  }
  .fs-lg-medium {
    font-size: 20px;
  }
   .step-card h3 br{
    display: none !important;
  }
  .spacing_box{
    padding-left:20px !important;
     padding-right:20px !important;
  }
  .social_iconss svg{
    width: 20px !important;
    height: 20px !important;
  }
  .step-card h3{
    font-size: 22px !important;
    line-height: 28px !important;
  }
  footer span,
    footer ul li,
    .footer input ,
    .footer textarea,
    .footer select{
    font-size: 16px !important;
  }
  .footer label{
    font-size: 16px !important;
  }
  .banner_sec p.fs-lg-medium{
    font-size: 18px !important;
  }
  .card-2 .fs-lg-medium{
      font-size: 18px !important;
  }
  .slider_box .fs-base-medium {
font-size: 16px !important;
  }
  .portfolio_heading span{
    font-size: 20px !important;
  }
  .portfolio_content {
    min-height: 100px;
}
.contact_us h1{
  font-size: 45px !important;
}
.contact_us p{
  font-size: 18px !important;
  line-height: 24px !important;
}
.clients_acheivment::before {
    width: 3%;
}
.clients_acheivment::after{
  width: 0%;
}
}
@media (max-width: 767px) {
  .clients_acheivment::before{
    width: 0px;
  }
 .slidermain_box swiper-container::part(button-prev) {
    left: -230px !important;
  }
  .slidermain_box swiper-container::part(button-next) {
    right: -230px !important;
  }
  .clients_acheivment::after{
    width: 0px;
  }
#custom-cursor{
  display: none !important;
}
div#chatbot-window,
.chatbot-widget {
    display: none !important;
}
    .star_logo , .footer img{
    display: none !important;
  }
  .scroll_word_inner span img {
    min-height: 66px !important;
}
  .container_about{
    min-height: 40vh !important;
            position: absolute;
        top: 0px;
        width: 90%;
        margin: auto;
        overflow: hidden;
  }
  .scroll_word_wrapper {
    height: 88px !important;
    margin-top: -20px !important;
}
  .scroll_word_wrapper {
    height: 88px !important;
    margin-top: -20px !important;
}
  .techstack_sec::before{
    content: unset !important;
  }
  .blogs_details h3{
     font-size: 24px !important;
     line-height: 33px !important;
  }
   .blogs_details p{
    font-size: 16px !important;
   }

  .form_description p br{
    display: none !important;
  }
 /* .industry_page .scroll_word_wrapper {
    height: 58px !important;
}
 .industry_page .scroll_word_wrapper span.scroll_word_inner span{
  height: 58px !important;
 } */
  p.about-description.fs-lg-medium{
    font-size: 18px !important;
  }
.service_card-caption h3 {
   font-size: 18px !important;
  }
    .service_card-caption a{
      font-size: 13px !important;
    }
  .innovation_box::after,
   .innovation_box::before{
    content: unset !important;
  }
    .scroll_word_inner span {
    justify-content: center !important;
}
.industry_page .scroll_word_inner span {
    font-size: 40px !important;
}
  /* .scroll_word_wrapper,
  .scroll_word_inner {
    height: 40px !important;
} */
.scroll_word_inner span {
    font-size: 40px !important;
}
  /*  */
    footer span {
    flex-wrap: wrap !important;
}

  .fs-6xl {
    font-size: 29px;
  }
  .fs-5xl {
    font-size: 32px;
  }
  .fs-4xl {
    font-size: 28px;
  }
  .fs-3xl {
    font-size: 24px;
  }
  .fs-2xl {
    font-size: 20px;
  }
  .fs-lg-medium {
    font-size: 20px;
  }
  .banner_sec br,
   .step-card h3 br{
    display: none !important;
  }
  .spacing_box{
    padding-left:20px !important;
     padding-right:20px !important;
  }
  .social_iconss svg{
    width: 20px !important;
    height: 20px !important;
  }
  .step-card h3{
    font-size: 22px !important;
    line-height: 28px !important;
  }
  footer span,
    footer ul li,
    .footer input ,
    .footer textarea,
    .footer select{
    font-size: 16px !important;
  }
  .banner_sec p.fs-lg-medium{
    font-size: 18px !important;
  }
  .card-2 .fs-lg-medium{
      font-size: 18px !important;
  }
  swiper-container::part(bullet) {
    width: 9px !important;
}
swiper-container::part(button-next) {
    right: -214px !important;
}
swiper-container::part(button-prev) {
    left: -214px !important;
}
.slidermain_box swiper-container::part(button-prev) {
      left: -230px !important;
}
.slidermain_box swiper-container::part(button-next) {
   right: -230px !important;
}
a.card-text {
  font-size: 14px !important;
}
.card-1 p,
.service_para {
  font-size: 15px !important;
}
.scroll_word_wrapper1 {
    height: 300px !important;
}
.footer h2 {
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 12px !important;
}
.contact_us h1{
  font-size: 34px !important;
}
.contact_us p{
  font-size: 18px !important;
  line-height: 24px !important;
}
}

@media (max-width:320px){
.clients_acheivment::before{
    width: 0px;
  }
 
  .clients_acheivment::after{
    width: 0px;
  }
  .fs-6xl {
    font-size: 25px !important;
}
.banner_sec  h1{
  font-size: 33px !important;
}
}


/* new media queries */
@media (min-width: 1120px) and (max-width: 1401px) {
    .fs-7xl{
  font-size: 64px;
}
}
@media (min-width: 769px) and (max-width: 1120px){
  .fs-7xl{
  font-size: 56px;
}   
}
@media (min-width: 426px) and (max-width: 769px) {
  .fs-7xl{
  font-size: 40px;
}   
}
@media (min-width: 320px) and (max-width: 426px) {
  .fs-7xl{
  font-size: 32px;
}
}
/* -- Full-width video background hero (About, Portfolio, Industry) -- */
.hero-fw {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-fw-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(13,15,26,0.94) 0%,
    rgba(13,15,26,0.80) 40%,
    rgba(46,60,145,0.28) 70%,
    rgba(13,15,26,0.62) 100%
  );
}
.hero-fw-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 48px;
}
@media (max-width: 1024px) { .hero-fw-content { padding: 72px 32px; } }
@media (max-width: 640px)  { .hero-fw-content { padding: 90px 20px; } }

/* -- Stat chip (used in hero fw section) -- */
.stat-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(138,226,255,0.12);
  border-radius: 14px;
  padding: 12px 20px;
  text-align: center;
  flex: 1;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), border-color 0.25s, background 0.25s;
  cursor: default;
}
.stat-chip:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(138,226,255,0.3) !important;
  background: rgba(255,255,255,0.08) !important;
}


/* nav bar css header 16-June-2026 */
      * { font-family: 'Urbanist', sans-serif; box-sizing: border-box; }
      :root {
        --deep-blue: #2E3C91;
        --light-blue: #8AE2FF;
        --white: #FFFFFF;
        --beige: #F5F4D6;
        --peach: #F0C9A5;
        --pale-green: #B4EDC6;
        --dark-bg: #0D0F1A;
        --dark-card: #131628;
        --dark-mid: #1a1f3a;
      }
      html { overflow-x: clip; }
      body { background: var(--dark-bg); color: var(--white); overflow-x: hidden; }

      /* NAV */
      .nav-glass {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 50;
        background: rgba(13,15,26,0.8);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(138,226,255,0.08);
      }
      .nav-mega-panel {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        width: min(1060px, calc(100vw - 2rem));
        z-index: 300;
      }

      /* HERO — Full-width video background */
      .hero-fw {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
      }
      .hero-fw-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(120deg,
          rgba(13,15,26,0.94) 0%,
          rgba(13,15,26,0.80) 40%,
          rgba(46,60,145,0.28) 70%,
          rgba(13,15,26,0.62) 100%
        );
      }
      .hero-fw-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        padding: 80px 48px;
      }
      @media (max-width: 1024px) { .hero-fw-content { padding: 72px 32px; } }
      @media (max-width: 640px) { .hero-fw-content { padding: 64px 20px; } }
      /* Trusted worldwide ticker */
      .trust-ticker-track {
        display: inline-flex;
        align-items: center;
        gap: 48px;
        white-space: nowrap;
        animation: ticker 26s linear infinite;
      }

      .gradient-text-d2 {
        background: linear-gradient(135deg, var(--light-blue) 0%, var(--beige) 60%, var(--peach) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .tag-d2 {
        display: inline-flex; align-items: center; gap: 6px;
        background: rgba(138,226,255,0.1);
        border: 1px solid rgba(138,226,255,0.25);
        border-radius: 100px;
        padding: 6px 14px;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--light-blue);
      }
      .btn-primary-d2 {
        background: var(--light-blue);
        color: var(--dark-bg);
        font-weight: 800;
        border-radius: 12px;
        padding: 14px 28px;
        font-size: 14px;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
      }
      .btn-primary-d2:hover { background: #6DD5F6; transform: translateY(-1px); }
      .btn-ghost-d2 {
        color: rgba(255,255,255,0.6);
        font-weight: 600;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        transition: color 0.2s;
      }
      .btn-ghost-d2:hover { color: white; }
      .stat-chip {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(138,226,255,0.12);
        border-radius: 14px;
        padding: 12px 20px;
        text-align: center;
        flex: 1;
      }
      
      /* Ticker */
      .ticker-track {
        display: flex;
        white-space: nowrap;
        animation: ticker 28s linear infinite;
      }
      @keyframes ticker { to { transform: translateX(-50%); } }

      /* SERVICES — horizontal scroll tabs */
      .service-tab-btn {
        padding: 10px 20px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s;
        white-space: nowrap;
        color: rgba(255,255,255,0.45);
        border: 1px solid rgba(255,255,255,0.08);
        background: transparent;
      }
      .service-tab-btn.active {
        background: var(--deep-blue);
        border-color: var(--light-blue);
        color: var(--light-blue);
      }
      .service-panel { display: none; }
      .service-panel.active { display: grid; }

      /* WalkwelIQ d2 */
      .iq-card-d2 {
        border-radius: 20px;
        padding: 32px;
        border: 1px solid rgba(138,226,255,0.12);
        position: relative;
        overflow: hidden;
        transition: transform 0.3s;
      }
      .iq-card-d2:hover { transform: translateY(-4px); }

      /* Case study carousel — legacy (kept for safety) */
      .cs-track { display: flex; gap: 24px; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; padding-bottom: 8px; }
      .cs-track::-webkit-scrollbar { display: none; }
      .cs-card { min-width: 380px; scroll-snap-align: start; border-radius: 20px; overflow: hidden; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
      @media (max-width: 640px) { .cs-card { min-width: 85vw; } }

      /* ─── IMPACT STORIES — Project Spotlight Slider ─── */
      .is-container { border: 1px solid rgba(255,255,255,0.07); border-radius: 24px; overflow: hidden; position: relative; }
      .is-progress { height: 3px; width: 0%; background: var(--light-blue); position: absolute; top: 0; left: 0; z-index: 20; pointer-events: none; }
      .is-slide { display: none; flex-direction: row; min-height: 560px; }
      .is-slide.is-active { display: flex; animation: is-fadein 0.5s cubic-bezier(0.4,0,0.2,1) both; }
      @keyframes is-fadein { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
      .is-left { flex: 1; padding: 56px 60px; display: flex; flex-direction: column; justify-content: center; gap: 26px; background: var(--dark-card); position: relative; overflow: hidden; }
      .is-left::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--is-accent, var(--light-blue)); }
      .is-right { width: 42%; flex-shrink: 0; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--dark-mid); }
      .is-right-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 40px 40px; }
      .is-right-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, var(--is-glow, rgba(138,226,255,0.16)) 0%, transparent 68%); pointer-events: none; }
      .is-mono-ring { width: 200px; height: 200px; border-radius: 50%; border: 2px solid var(--is-accent, var(--light-blue)); display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; animation: is-ring-pulse 4s ease-in-out infinite; background: rgba(13,15,26,0.75); backdrop-filter: blur(10px); }
      .is-mono-ring::before { content: ''; position: absolute; inset: 10px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06); pointer-events: none; }
      .is-mono-text { font-size: 52px; font-weight: 900; letter-spacing: -2px; color: var(--is-accent, var(--light-blue)); text-shadow: 0 0 40px var(--is-glow, rgba(138,226,255,0.5)); }
      @keyframes is-ring-pulse { 0%,100%{ box-shadow: 0 0 40px var(--is-glow,rgba(138,226,255,0.15)), inset 0 0 40px rgba(0,0,0,0.5); } 50%{ box-shadow: 0 0 90px var(--is-glow,rgba(138,226,255,0.32)), inset 0 0 40px rgba(0,0,0,0.5); } }
      .is-orbit { position: absolute; backdrop-filter: blur(14px); background: rgba(13,15,26,0.8); border: 1px solid rgba(255,255,255,0.13); border-radius: 100px; padding: 7px 14px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.82); white-space: nowrap; z-index: 3; display: flex; align-items: center; gap: 7px; }
      .is-orbit-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--is-accent, var(--light-blue)); flex-shrink: 0; }
      @keyframes is-orb-a { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-8px,-14px)} }
      @keyframes is-orb-b { 0%,100%{transform:translate(0,0)} 50%{transform:translate(10px,-10px)} }
      @keyframes is-orb-c { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-6px,12px)} }
      @keyframes is-orb-d { 0%,100%{transform:translate(0,0)} 50%{transform:translate(9px,8px)} }
      .is-stat-val { font-size: clamp(28px,3.2vw,44px); font-weight: 900; line-height: 1; color: var(--is-accent, var(--light-blue)); }
      .is-stat-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.3); margin-top: 5px; }
      .is-tech-chip { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.52); opacity: 0; transform: translateY(7px); transition: opacity 0.3s, transform 0.3s; }
      .is-slide.is-active .is-tech-chip { opacity: 1; transform: translateY(0); }
      .is-nav-row { display: flex; align-items: stretch; border-top: 1px solid rgba(255,255,255,0.06); background: rgba(13,15,26,0.95); }
      .is-nav { display: flex; flex: 1; }
      .is-nav-tab { flex: 1; padding: 20px 20px; cursor: pointer; border-top: 2px solid transparent; transition: border-color 0.3s, background 0.3s; user-select: none; }
      .is-nav-tab:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.06); }
      .is-nav-tab.is-active { border-top-color: var(--is-nav-accent, var(--light-blue)); background: rgba(255,255,255,0.016); }
      .is-nav-tab:hover:not(.is-active) { background: rgba(255,255,255,0.01); }
      .is-nav-num { font-size: 10px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 4px; }
      .is-nav-name { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.45); transition: color 0.3s; line-height: 1.3; }
      .is-nav-tab.is-active .is-nav-name { color: white; }
      .is-nav-industry { font-size: 11px; color: rgba(255,255,255,0.22); margin-top: 3px; }
      .is-arrow { width: 44px; flex-shrink: 0; align-self: stretch; display: flex; align-items: center; justify-content: center; cursor: pointer; background: transparent; border: none; color: rgba(255,255,255,0.3); transition: color 0.2s, background 0.2s; }
      .is-arrow:hover { color: var(--light-blue); background: rgba(138,226,255,0.06); }
      .is-arrow:first-child { border-right: 1px solid rgba(255,255,255,0.06); }
      .is-arrow:last-child { border-left: 1px solid rgba(255,255,255,0.06); }
      @media (max-width: 900px) {
        .is-slide { flex-direction: column; }
        .is-right { width: 100%; height: 280px; }
        .is-left { padding: 36px 28px; gap: 20px; }
        .is-mono-ring { width: 150px; height: 150px; }
        .is-mono-text { font-size: 38px; }
      }
      @media (max-width: 640px) {
        .is-orbit { display: none; }
        .is-nav-industry { display: none; }
        .is-nav-tab { padding: 14px 10px; }
        .is-nav-name { font-size: 10px; }
        .is-left { padding: 28px 20px; }
      }

      /* Number counter */
      .proof-num { font-size: 30px; font-weight: 900; line-height: 1.3; }
      .sd-band-num.proof-num {font-size: 36px !important;}

      /* Industry pills */
      .ind-pill {
        border-radius: 100px;
        padding: 14px 22px;
        font-size: 14px;
        font-weight: 700;
        border: 1px solid rgba(255,255,255,0.08);
        background: var(--dark-card);
        cursor: pointer;
        transition: all 0.25s;
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255,255,255,0.6);
      }
      .ind-pill:hover { border-color: var(--light-blue); color: var(--light-blue); background: rgba(46,60,145,0.3); }

      /* Security - timeline style */
      .sec-timeline { position: relative; }
      .sec-timeline::before { content: ''; position: absolute; left: 23px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--deep-blue), var(--light-blue)); opacity: 0.3; }

      /* Testimonials - stacked with overlap */
      .testi-card-d2 {
        background: var(--dark-card);
        border-radius: 20px;
        padding: 36px;
        border: 1px solid rgba(255,255,255,0.06);
        position: relative;
        overflow: hidden;
      }

      /* CTA gradient */
      .cta-d2 {
        background: linear-gradient(135deg, var(--deep-blue) 0%, #1a2060 50%, var(--dark-bg) 100%);
        position: relative;
        overflow: hidden;
      }
      .cta-d2::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(138,226,255,0.2) 0%, transparent 70%);
      }

      /* Footer */
      footer { background: #080A12; border-top: 1px solid rgba(255,255,255,0.06); }

      /* Scrollbar */
      ::-webkit-scrollbar { width: 6px; }
      ::-webkit-scrollbar-track { background: var(--dark-bg); }
      ::-webkit-scrollbar-thumb { background: var(--deep-blue); border-radius: 3px; }

      /* ── WalkwelIQ ambient orbs ── */
      @keyframes iq-float1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-18px,-28px) scale(1.08)} }
      @keyframes iq-float2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(22px,20px) scale(0.94)} }
      @keyframes iq-float3 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(-12px,18px)} 66%{transform:translate(16px,-10px)} }
      .iq-orb { position:absolute; border-radius:50%; pointer-events:none; filter:blur(60px); }

      /* ── Trusted worldwide panel ── */
      .trust-logo-chip {
        display:flex; flex-direction:column; align-items:center; gap:6px;
        background:rgba(255,255,255,0.04); border:1px solid rgba(138,226,255,0.1);
        border-radius:14px; padding:14px 8px;
        transition: border-color 0.25s, background 0.25s, transform 0.25s;
      }
      .trust-logo-chip:hover { background:rgba(138,226,255,0.07); border-color:rgba(138,226,255,0.25); transform:translateY(-3px); }
      .iq-card-d2 { transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.3s; }
      .iq-card-d2:hover { transform: translateY(-10px) !important; border-color: rgba(138,226,255,0.35) !important; box-shadow: 0 28px 70px rgba(46,60,145,0.55); }
      .iq-card-d2::after { content: ''; position: absolute; left: 0; top: 12%; bottom: 12%; width: 3px; background: linear-gradient(to bottom, var(--light-blue), var(--pale-green)); border-radius: 0 3px 3px 0; transform: scaleY(0); transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); transform-origin: center; }
      .iq-card-d2:hover::after { transform: scaleY(1); }
      /* Icon hover */
      .iq-icon { transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s; }
      .iq-card-d2:hover .iq-icon { transform: scale(1.15) rotate(-8deg); box-shadow: 0 0 28px rgba(138,226,255,0.3); }
      /* Shimmer sweep */
      .iq-shimmer { position: absolute; inset: 0; background: linear-gradient(108deg, transparent 38%, rgba(138,226,255,0.06) 50%, transparent 62%); transform: translateX(-160%); transition: none; border-radius: inherit; pointer-events: none; z-index: 1; }
      .iq-card-d2:hover .iq-shimmer { transform: translateX(160%); transition: transform 0.7s ease; }
      /* Stat chips */
      .stat-chip { transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), border-color 0.25s, background 0.25s; cursor: default; }
      .stat-chip:hover { transform: translateY(-4px) scale(1.05); border-color: rgba(138,226,255,0.3) !important; background: rgba(255,255,255,0.08) !important; }
      /* Service tab active pulse */
      @keyframes tabpulse { 0%,100%{ box-shadow:0 0 0 rgba(138,226,255,0); } 50%{ box-shadow:0 0 16px rgba(138,226,255,0.28); } }
      .service-tab-btn.active { animation: tabpulse 3s ease-in-out infinite; }
      /* CS card hover */
      .cs-card { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s; }
      .cs-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

      /* ── Impact Stories — device mockup + floating tech logos ── */
      .is-device-wrap { position: relative; z-index: 2; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
      .is-device-img { max-height: 420px; max-width: 82%; object-fit: contain; transform: rotate(-6deg) translateX(6%); filter: drop-shadow(0 24px 56px rgba(0,0,0,0.7)); }
      .is-proj-badge { position: absolute; top: 16px; left: 16px; z-index: 6; background: rgba(13,15,26,0.9); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 9px 16px; display: flex; align-items: center; gap: 10px; }
      .is-proj-logo-img { height: 26px; max-width: 108px; object-fit: contain; }
      .is-tf-icon { position: absolute; pointer-events: none; user-select: none; opacity: 0.1; z-index: 1; filter: brightness(50) saturate(0); }
      @keyframes is-tf-a { 0%,100%{transform:translate(0,0) rotate(0deg) scale(1)} 50%{transform:translate(-10px,-16px) rotate(12deg) scale(1.06)} }
      @keyframes is-tf-b { 0%,100%{transform:translate(0,0) rotate(0deg) scale(1)} 50%{transform:translate(13px,-10px) rotate(-9deg) scale(0.93)} }
      @keyframes is-tf-c { 0%,100%{transform:translate(0,0) rotate(0deg) scale(1)} 50%{transform:translate(-8px,15px) rotate(7deg) scale(1.05)} }
      @keyframes is-tf-d { 0%,100%{transform:translate(0,0) rotate(0deg) scale(1)} 50%{transform:translate(11px,-13px) rotate(-11deg) scale(0.94)} }
      @keyframes is-tf-e { 0%,100%{transform:translate(0,0) rotate(0deg) scale(1)} 50%{transform:translate(-7px,11px) rotate(5deg) scale(1.04)} }
      @keyframes is-tf-f { 0%,100%{transform:translate(0,0) rotate(0deg) scale(1)} 50%{transform:translate(9px,-8px) rotate(-7deg) scale(0.96)} }
      @media (max-width: 900px) { .is-device-img { max-height: 230px; transform: none; } .is-tf-icon { width: 30px !important; } }


/* SLICK SLIDER CSS */

    .client-voices-grid .slick-track {
        display: flex !important;
    }

    .client-voices-grid .slick-slide {
      height: inherit !important;   /* ADD THIS */
    }

    .client-voices-grid .slick-slide > div {
      height: 100%;                 /* ADD THIS */
    }

    /* Testimonials - stacked with overlap */
    .testi-card-d2 {
      background: var(--dark-card);
      border-radius: 20px;
      padding: 36px !important;
      border: 1px solid rgba(255, 255, 255, .06);
      position: relative;
      overflow: hidden;
      min-height: 260px;

      /* ADD THESE THREE LINES */
      display: flex !important;
      flex-direction: column !important;
      height: 100% !important;
    }
      .testi-avatar {
      width: 42px;
      height: 42px;
      min-width: 42px;
      min-height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--deep-blue), var(--light-blue));
      color: #fff;
      font-size: 13px;
      font-weight: 800;
    }


    .testi-review {
      flex: 1;
      min-height: 150px;
    }

    .testi-footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .client-voices-grid .slick-list {
      margin: 0;
    }

    .client-voices-grid .slick-slide {
      margin: 0 12px;
    }

    .client-voices-grid .slick-track {
      display: flex !important;
    }

    .client-voices-grid {
      margin: 0 -12px;
    }

    .client-voices-grid .slick-slide {
      padding: 0 12px;
      box-sizing: border-box;
    }


    .slick-prev,
    .slick-next {
      z-index: 10;
    }

    .slick-prev {
      left: -40px;
    }

    .slick-next {
      right: -40px;
    }

    /* d2-home-sections.css fallback */
    .is-container {
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 24px;
      overflow: hidden;
      position: relative
    }

    .is-progress {
      height: 3px;
      width: 0%;
      background: var(--light-blue);
      position: absolute;
      top: 0;
      left: 0;
      z-index: 20;
      pointer-events: none
    }

    .is-slide {
      display: none;
      flex-direction: row;
      min-height: 520px
    }

    .is-slide.is-active {
      display: flex;
      animation: is-fadein .5s cubic-bezier(.4, 0, .2, 1) both
    }

    @keyframes is-fadein {
      from {
        opacity: 0;
        transform: translateX(16px)
      }

      to {
        opacity: 1;
        transform: translateX(0)
      }
    }

    .is-left {
      flex: 1;
      padding: 48px 52px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 22px;
      background: var(--dark-card);
      position: relative;
      overflow: hidden
    }

    .is-left::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--is-accent, var(--light-blue))
    }

    .is-right {
      width: 42%;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--dark-mid)
    }

    .is-right-bg {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
      background-size: 40px 40px
    }

    .is-right-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, var(--is-glow, rgba(138, 226, 255, .16)) 0%, transparent 68%);
      pointer-events: none
    }

    .is-stat-val {
      font-size: clamp(26px, 3vw, 40px);
      font-weight: 900;
      line-height: 1;
      color: var(--is-accent, var(--light-blue))
    }

    .is-stat-label {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: rgba(255, 255, 255, .3);
      margin-top: 5px
    }

    .is-device-wrap {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .is-device-img {
      max-height: 380px;
      max-width: 82%;
      object-fit: contain;
      transform: rotate(-6deg) translateX(6%);
      filter: drop-shadow(0 24px 56px rgba(0, 0, 0, .7))
    }

    .is-proj-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 6;
      background: rgba(13, 15, 26, .9);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 12px;
      padding: 9px 16px
    }

    .is-proj-logo-img {
      height: 26px;
      max-width: 108px;
      object-fit: contain
    }

    .is-orbit {
      position: absolute;
      backdrop-filter: blur(14px);
      background: rgba(13, 15, 26, .8);
      border: 1px solid rgba(255, 255, 255, .13);
      border-radius: 100px;
      padding: 7px 14px;
      font-size: 11px;
      font-weight: 700;
      color: rgba(255, 255, 255, .82);
      white-space: nowrap;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 7px
    }

    .is-orbit-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--is-accent, var(--light-blue));
      flex-shrink: 0
    }

    .is-nav-row {
      display: flex;
      align-items: stretch;
      border-top: 1px solid rgba(255, 255, 255, .06);
      background: rgba(13, 15, 26, .95)
    }

    /* Impact Stories bottom nav: show 2 tabs at a time */
    .is-nav {
      flex: 1;
      overflow: hidden;
      position: relative
    }

    .is-nav-track {
      display: flex;
      width: 100%;
      transition: transform .35s cubic-bezier(.4, 0, .2, 1);
      will-change: transform
    }

    .is-nav-tab {
      flex: 0 0 50%;
      padding: 18px 20px;
      cursor: pointer;
      border-top: 2px solid transparent;
      transition: border-color .3s, background .3s;
      user-select: none
    }

    .is-nav-tab:not(:last-child) {
      border-right: 1px solid rgba(255, 255, 255, .06)
    }

    .is-nav-tab.is-active {
      border-top-color: var(--is-nav-accent, var(--light-blue));
      background: rgba(255, 255, 255, .016)
    }

    .is-nav-num {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .22);
      margin-bottom: 4px
    }

    .is-nav-name {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255, 255, 255, .45);
      line-height: 1.3
    }

    .is-nav-tab.is-active .is-nav-name {
      color: #fff
    }

    .is-arrow {
      width: 44px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, .3);
      transition: color .2s, background .2s
    }

    .is-arrow:hover {
      color: var(--light-blue);
      background: rgba(138, 226, 255, .06)
    }

    .is-arrow:first-child {
      border-right: 1px solid rgba(255, 255, 255, .06)
    }

    .is-arrow:last-child {
      border-left: 1px solid rgba(255, 255, 255, .06)
    }

    @media(max-width:900px) {
      .is-slide {
        flex-direction: column
      }

      .is-right {
        width: 100%;
        height: 260px
      }

      .is-left {
        padding: 32px 24px
      }
    }

    .testi-card-d2 {
      background: var(--dark-card);
      border-radius: 20px;
      padding: 36px;
      border: 1px solid rgba(255, 255, 255, .06);
      position: relative;
      overflow: hidden
    }

    .ih-scroll-indicator {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: rgba(255, 255, 255, .35);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      transition: color .2s
    }

    .ih-scroll-indicator:hover {
      color: var(--light-blue)
    }

    .ih-scroll-indicator svg {
      animation: ih-scroll-bounce 2s ease-in-out infinite
    }

    @keyframes ih-scroll-bounce {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(6px)
      }
    }

    @keyframes pulse-glow {

      0%,
      100% {
        opacity: 1;
        box-shadow: 0 0 0 rgba(138, 226, 255, 0)
      }

      50% {
        opacity: .7;
        box-shadow: 0 0 12px rgba(138, 226, 255, .4)
      }
    }

    .featured-spotlight-visual {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(138, 226, 255, .15);
      box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
      background: radial-gradient(ellipse 80% 70% at 50% 30%, rgba(46, 60, 145, .4) 0%, var(--dark-mid) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 280px;
      padding: 32px
    }

    .featured-spotlight-visual img {
      max-height: 340px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .6))
    }

    * {
      font-family: 'Urbanist', sans-serif;
      box-sizing: border-box;
    }

    :root {
      --deep-blue: #2E3C91;
      --light-blue: #8AE2FF;
      --white: #FFFFFF;
      --beige: #F5F4D6;
      --peach: #F0C9A5;
      --pale-green: #B4EDC6;
      --dark-bg: #0D0F1A;
      --dark-card: #131628;
      --dark-mid: #1a1f3a;
    }

    body {
      background: var(--dark-bg);
      color: var(--white);
      overflow-x: hidden;
      margin: 0;
    }

    .nav-glass {
      background: rgba(13, 15, 26, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(138, 226, 255, 0.08);
    }

    .gradient-text-d2 {
      background: linear-gradient(135deg, var(--light-blue) 0%, var(--beige) 60%, var(--peach) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .tag-d2 {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(138, 226, 255, 0.1);
      border: 1px solid rgba(138, 226, 255, 0.25);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--light-blue);
    }

    .btn-primary-d2 {
      background: var(--light-blue);
      color: var(--dark-bg);
      font-weight: 800;
      border-radius: 12px;
      padding: 14px 28px;
      font-size: 14px;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .btn-primary-d2:hover {
      background: #6DD5F6;
      transform: translateY(-1px);
    }

    .btn-ghost-d2 {
      color: rgba(255, 255, 255, 0.6);
      font-weight: 600;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: color 0.2s;
    }

    .btn-ghost-d2:hover {
      color: white;
    }

    footer {
      background: #080A12;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--dark-bg);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--deep-blue);
      border-radius: 3px;
    }

    .shell {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 48px;
    }

    @media(max-width:1024px) {
      .shell {
        padding: 0 32px;
      }
    }

    @media(max-width:640px) {
      .shell {
        padding: 0 20px;
      }
    }

    @keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

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

    [data-animate] {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    [data-animate].is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    [data-animate][data-delay="1"] {
      transition-delay: 0.1s;
    }

    [data-animate][data-delay="2"] {
      transition-delay: 0.2s;
    }

    [data-animate][data-delay="3"] {
      transition-delay: 0.3s;
    }

    /* ── FILTER TABS ── */
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-btn {
      padding: 9px 20px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 700;
      border: 1px solid rgba(255, 255, 255, 0.09);
      background: rgba(255, 255, 255, 0.04);
      color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.2s;
    }

    .filter-btn:hover {
      border-color: rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.8);
    }

    .filter-btn.active {
      background: var(--light-blue);
      color: #0D0F1A;
      border-color: var(--light-blue);
    }

    /* ── PROJECT CARDS ── */
    .showcase-section .projects-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      padding-bottom: 8px;
    }

    @media(max-width:900px) {
      .showcase-section .projects-grid {
        grid-template-columns: 1fr;
      }
    }

    .proj-card {
      border-radius: 20px;
      overflow: hidden;
      background: var(--dark-card);
      border: 1px solid rgba(255, 255, 255, 0.07);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: auto;
    }

    .proj-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--card-accent, rgba(138, 226, 255, 0.15));
    }

    .proj-thumb {
      position: relative;
      height: 90px;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      overflow: hidden;
      padding: 16px;
      background: linear-gradient(135deg, rgba(var(--thumb-rgb, 138, 226, 255), 0.12) 0%, rgba(13, 15, 26, 0.88) 100%);
    }

    /* Small fade behind the top row so logo + title read clean */
    .proj-thumb::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 64px;
      background: linear-gradient(to bottom, rgba(13, 15, 26, 0.92) 0%, rgba(13, 15, 26, 0.0) 100%);
      z-index: 1;
      pointer-events: none;
    }

    /* Treat the thumbnail as a logo badge (top-right) */
    .proj-thumb img {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 64px;
      height: 64px;
      object-fit: contain;
      padding: 8px;
      border-radius: 14px;
      background: rgba(13, 15, 26, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(10px);
      filter: drop-shadow(0 16px 38px rgba(0, 0, 0, 0.55));
      transition: transform 0.25s ease, opacity .25s ease;
      border-color .25s ease;
      opacity: 0.96;
    }

    .proj-card:hover .proj-thumb img {
      transform: translateY(-2px) scale(1.02);
      opacity: 1;
      border-color: rgba(138, 226, 255, 0.28);
    }

    /* Title aligned with logo badge (top row), no extra empty space below */
    .proj-thumb-title {
      position: absolute;
      top: 18px;
      left: 18px;
      right: 96px;
      font-size: 18px;
      font-weight: 900;
      color: #fff;
      z-index: 2;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Keep all project card headers the same height (image + non-image cards) */
    .proj-header {
      height: 90px;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 16px 24px;
      overflow: hidden;
    }

    .proj-initial {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 90px;
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
      line-height: 1;
      pointer-events: none;
      transition: -webkit-text-stroke 0.3s;
    }

    .proj-card:hover .proj-initial {
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    }

    .proj-name {
      font-size: 22px;
      font-weight: 900;
      color: #fff;
      position: relative;
      z-index: 1;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .proj-body {
      padding: 20px 24px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .proj-url {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-decoration: none;
      margin-bottom: 12px;
      opacity: 0.7;
      transition: opacity 0.2s;
    }

    .proj-url:hover {
      opacity: 1;
    }

    .proj-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.48);
      line-height: 1.65;
      margin-bottom: 16px;
      flex: 1;
    }

    .proj-stats {
      display: flex;
      gap: 20px;
      margin-bottom: 16px;
      padding: 12px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .proj-stat {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .proj-stat-val {
      font-size: 15px;
      font-weight: 800;
      color: #fff;
    }

    .proj-stat-lbl {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.3);
    }

    .proj-techs {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 16px;
    }

    .proj-tech {
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.5);
    }

    .proj-quote {
      font-size: 13px;
      font-style: italic;
      color: rgba(255, 255, 255, 0.35);
      border-left: 2px solid var(--card-accent, rgba(138, 226, 255, 0.25));
      padding-left: 12px;
      line-height: 1.5;
    }

    .proj-quote-by {
      font-size: 11px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.3);
      font-style: normal;
      margin-top: 4px;
    }

    /* accent line at bottom */
    .proj-accent-line {
      height: 3px;
      background: var(--card-accent, var(--light-blue));
      opacity: 0.5;
      transition: opacity 0.3s;
    }

    .proj-card:hover .proj-accent-line {
      opacity: 1;
    }

    .client-voices-section {
      padding: 100px 0;
      background: #06050e;
      background-image: radial-gradient(ellipse 55% 45% at 20% 50%, rgba(138, 226, 255, 0.05) 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 80% 50%, rgba(180, 237, 198, 0.04) 0%, transparent 60%);
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    /* 
    .client-voices-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    } */

    @media(max-width:1024px) {
      .client-voices-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── Full-width video hero (matches services page width) ── */
    .hero-fw {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-fw-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(120deg, rgba(13, 15, 26, 0.94) 0%, rgba(13, 15, 26, 0.80) 40%, rgba(46, 60, 145, 0.28) 70%, rgba(13, 15, 26, 0.62) 100%);
    }

    .hero-fw-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      padding: 80px 48px;
    }

    @media(max-width:1024px) {
      .hero-fw-content {
        padding: 72px 32px;
      }
    }

    @media(max-width:640px) {
      .hero-fw-content {
        padding: 64px 20px;
      }
      .sd-band-num.proof-num {
          font-size: 24px !important;
          line-height: 1.3 !important;
      }
      .proof-num {
          font-size: 24px !important;
          line-height: 1.3 !important;
      }
    }

    .stat-chip {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(138, 226, 255, 0.12);
      border-radius: 14px;
      padding: 12px 20px;
      text-align: center;
      flex: 1;
      transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s, background 0.25s;
      cursor: default;
    }

    .stat-chip:hover {
      transform: translateY(-4px) scale(1.05);
      border-color: rgba(138, 226, 255, 0.3) !important;
      background: rgba(255, 255, 255, 0.08) !important;
    }
