@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;
}
/* cursor */
/* Custom cursor styles - matches your image */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    filter: contrast(1);
    transform: translate(-50%, -50%);
    transition: transform 0.15s cubic-bezier(.22,.68,.43,1.01), opacity 0.2s, mix-blend-mode 0.2s;
    opacity: 100;
    mix-blend-mode: difference;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
#custom-cursor.active {
  opacity: 1 !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%;
  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;
}
.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;
}
}