html {
  scroll-behavior: smooth;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");

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

.reveal-text {
  overflow: hidden;
  display: inline-block;
}

.reveal-text span {
  display: inline-block;
  transform: translateY(100%);
}

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gradient-blue: linear-gradient(90deg, #0064d9 0%, #2489ff 100%);
  --border-line: #666666;
  --btn-color: #3772ff;
}

ul {
  padding: 0px;
  margin: 0px;
}

html {
  background-color: black;
}

body {
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #000;
  font-family: "Poppins", sans-serif !important;
  background-color: black;
}

a {
  text-decoration: none;
}

.topbar {
  padding: 10px 0px;
  background: #004b8b;
}

.fa-phone {
  transform: rotate(90deg);
}

p {
  color: #6c6c6c;
  font-weight: 500;
  font-size: 16px;
}

.topbar ul {
  justify-content: end;
  margin-bottom: 0px;
  display: flex;
  gap: 15px;
  padding: 0px;
  line-height: normal;
  color: #fff;
}

.topbar ul li i {
  margin-right: 10px;
}

.topbar ul li a {
  color: #fff;
}

.topbar ul li {
  list-style: none;
}

.logo img {
  max-width: 280px;
}

/* animation menu hamburger */
.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

@media (max-width: 1023px) {
  .menu-btn {
    display: flex;
  }
}

.menu-btn .menu-btn__lines,
.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #fff;
  transition: all 0.4s ease-in-out;
}

.scrolled .menu-btn .menu-btn__lines {
  background: #000000;
}

.scrolled .menu-btn .menu-btn__lines::after {
  background: #000000;
}

.scrolled .menu-btn .menu-btn__lines::before {
  background: #000000;
}

.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.menu-btn .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.menu-btn .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #fff;
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #fff;
}

.scrolled .menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #000;
}

.scrolled .menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #000;
}

.expand-btn:after {
position: absolute;
    top: 49%;
    right: 11px;
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    opacity: 0.75;
    transform: translateY(-50%) rotate(0);
    transition: 0.25s;
}

.expand-btn.open {
  color: var(--btn-color);
}

.expand-btn.open:after {
  transform: translateY(-50%) rotate(180deg);
}

header.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
}

header .blue_logo {
  display: none;
}

.scrolled ul li a {
  color: #2a2a2a !important;
}

header.scrolled .global_btn {
  color: white !important;
}

header.navbar.sticky.scrolled .blue_logo {
  display: block;
}

header.navbar.sticky.scrolled .white_logo {
  display: none;
}

header.navbar.sticky.scrolled {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

header.navbar.sticky.hidden {
  transform: translateY(-100%);
  /* Slide up */
}

/* navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1023px) {
  .navbar {
    padding: 10px 20px;
  }
}

.navbar.sticky {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
}

.navbar .logo {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.navbar .menu-items {
  display: flex;
  align-items: center;
}

.navbar .menu-items::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background-color: #222;
}

.navbar .menu-items::-webkit-scrollbar {
  width: 6px;
  background-color: #222;
}

.navbar .menu-items::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}

@media (max-width: 1023px) {
  .navbar .menu-items {
    scrollbar-gutter: stable;
    position: fixed;
    top: 0px;
    left: 0;
    display: block;
    width: 350px;
    height: 100%;
    padding-top: 30px;
    padding-bottom: 100px;
    padding-right: 10px;
    background: #000;
    overflow-y: auto;
    transform: translateX(-100vh);
    transition: 0.3s ease-out;
  }

  .navbar .menu-items.open {
    transform: translateY(0);
  }
}

.navbar .menu-items>li>.menu-item {
  padding: 1.5rem 2rem;
}

@media (max-width: 1023px) {
  .navbar .menu-items>li>.menu-item {
    padding: 1rem 1rem;
  }
}

.navbar .menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1023px) {
  .navbar .menu-items li a {
    padding: 10px 1rem;
  }
}

.navbar .dropdown {
  position: unset;
}

.header_outer {
  position: relative;
}

@media (min-width: 1024px) {
  .navbar .dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 50px;
    transition: 0.6s;
  }

  .navbar .dropdown:hover>.expand-btn:after {
    transform: translateY(-50%) rotate(180deg);
  }
}

@media (min-width: 1024px) {

  .navbar .dropdown .dropdown-right .expand-btn:after,
  .navbar .dropdown .dropdown-left .expand-btn:after {
    right: 0.625rem;
  }
}

@media (min-width: 1024px) {
  .navbar .dropdown-menu li a:hover {
    color: #a5d5ff;
  }

  .navbar .dropdown-menu li a {
    color: #000;
  }

  .navbar .dropdown-menu {
    position: absolute;
    top: 155px;
    opacity: 0;
    right: 0;
    display: block;
    left: 0;
    width: 70%;
    left: 50%;
    transform: translate(-50%, -0%);
    padding: 15px 15px;
    background: #fff;
    border-radius: 5px 5px 5px 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
}

@media (max-width: 1023px) {
  .navbar .dropdown-menu {
    display: none;
    position: relative;
    top: 0;
    width: 100%;
    padding-left: 1rem;
    overflow: hidden;
  }
}

.dropdown-menu li a {
  display: unset !important;
  padding: 15px 0;
  display: inline-block !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  font-family: "Archivo", sans-serif !important;
}

.navbar .menu-right {
  top: 0;
  left: 100%;
}

@media (max-width: 1023px) {
  .navbar .menu-right {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    padding-left: 1.5rem;
  }

  .navbar .menu-right:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: #000;
    transform: translateY(-50%);
  }
}

.navbar .menu-left {
  top: 0;
  left: -100%;
}

@media (max-width: 1023px) {
  .navbar .menu-left {
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 1.5rem;
  }

  .navbar .menu-left:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: #000;
    transform: translateY(-50%);
  }
}

.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 14px;
  transition: 0.25s;
}

.navbar .menu-item:hover {
  color: var(--btn-color) !important;
}

.navbar .menu-item:hover {
  color: #004682;
}

.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .navbar .dropdownMega {
    position: inherit !important;
  }
}

@media (min-width: 1024px) {
  .navbar .mega-menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 650px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
  }
}

@media (max-width: 1023px) {
  .navbar .mega-menu {
    position: relative;
    display: none;
    padding-left: 0;
  }
}

.navbar .mega-menu .content {
  display: flex;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  background: #171b27;
  -webkit-box-shadow: 0 20px 50px 0 #000;
  box-shadow: 0 20px 50px 0 #000;
}

@media (max-width: 1023px) {
  .navbar .mega-menu .content {
    grid-template-columns: auto;
  }
}

@media (min-width: 1024px) {
  .navbar .mega-menu .content {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 1023px) {
  .navbar .mega-menu .content .col {
    padding: 0;
    width: 100%;
  }
}

.navbar .category .content .col .img-wrapper {
  margin: 1rem 0;
}

.navbar .blog .content {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 1024px) {
  .navbar .blog .content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.navbar .blog .content .col .img-wrapper {
  margin-bottom: 1rem;
}

.navbar .blog .content .col .menu-title {
  font-weight: normal;
}

.navbar .blog .content .col .menu-title a {
  transition: 0.25s;
}

.navbar .blog .content .col .menu-title a:hover {
  color: #ff5722;
}

.navbar .content .col {
  display: flex;
  flex-direction: column;
}

.navbar .content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}

.navbar .content .col .img-wrapper:hover img {
  transform: scale(1.1);
}

.navbar .content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.navbar .content .col img {
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease-in-out;
}

.navbar .content .col .menu-title {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.125rem;
  border-left: 2px solid #ff5722;
  padding-left: 0.625rem;
}

@media (max-width: 1023px) {
  .navbar .content .col .menu-title {
    font-size: 0.875rem;
  }
}

.navbar .content .col p {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 0.813rem;
  line-height: 1.6rem;
  color: #fff;
}

.navbar .content .col .mega-links {
  padding-left: 1rem;
  border-left: 1px solid #3c3c3c;
}

@media (max-width: 1023px) {
  .navbar .content .col .mega-links {
    border-left: 0;
    padding-left: 0;
  }

  .navbar .content .col .mega-links li {
    margin: 0;
  }

  .navbar .content .col .mega-links li a {
    padding: 0 0.5rem;
  }
}

.navbar .content .col .mega-links li {
  margin: 1rem 0;
}

.navbar .content .col .mega-links li a {
  padding: 0;
}

@media (max-width: 1023px) {
  .overflow {
    overflow: hidden;
  }
}

@media (max-width: 1023px) {
  .overlay {
    position: fixed;
    z-index: 500;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .overlay.overlay--active {
    opacity: 1;
    visibility: visible;
  }
}

/* ============ Full Page Slider ================= */
.creative-fullpage--slider {
  background-color: #ffffff;
  z-index: 2;
  width: 100%;
  position: relative;
  flex-direction: column;
  height: 100vh;
  font-size: 16px;
  display: flex;
  clip-path: none !important;
}

.creative-fullpage--slider .slider-inner {
  background: #000;
  height: 100vh;
  position: relative;
}

.creative-fullpage--slider .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: left;
  flex-direction: column;
  overflow: hidden;
}

.creative-fullpage--slider .swiper-slide .slider-inner img {
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

.creative-fullpage--slider .swiper-slide .slider-inner video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
  position: absolute;
  top: 31%;
  left: 50px;
  z-index: 1;
}

.creative-fullpage--slider .swiper-slide .slider-inner::after {
  content: "";
  position: absolute;
  width: 101%;
  height: 100%;
  top: 0;
  left: -1px;
  background-color: #0000007a;
  background-image: radial-gradient(at center right,
      #ffffff00 50%,
      #00000096 100%);
}

.swiper-slide .slider-inner .swiper-content .title-area .tag {
  color: #ffffff;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 0px;
}

.swiper-slide .slider-inner .swiper-content .title-area .title {
  margin-top: 50px;
  color: #fff;
  font-size: 4vw;
  font-weight: 900;
  line-height: 1.1;
  text-transform: capitalize;
  text-decoration: none;
}

.swiper-slide .slider-inner .swiper-content p.disc {
  font-size: 20px;
  width: 100%;
  margin-top: 15px;
  margin: 20px 0px 40px 0px;
  font-weight: 400;
  line-height: 32px;
  color: #ffffffb0;
}

.creative-btn--wrap .creative-slide--btn {
  color: #ffffff;
  margin-left: 18px;
  font-size: 1.4em;
  transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
  font-weight: 400;
  display: inline-flex;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  outline: none;
  outline-color: transparent;
  box-shadow: none;
  will-change: transform;
  backface-visibility: hidden;
}

.creative-btn--circle .circle {
  position: absolute;
  right: calc(100% - 10px);
  top: 0;
  bottom: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  clip-path: circle(25% at 50% 50%);
  transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle .circle-fill {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 100%;
  background-color: var(--btn-color);
  will-change: transform;
  transform: scale(0);
  z-index: 1;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1),
    background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle-icon {
  transform: translate(-100%, 0%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 2;
  transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle-icon .icon-arrow {
  width: 20px;
  height: 20px;
  stroke: none;
  fill: #ffffff;
}

.creative-btn--circle .circle-outline {
  fill: transparent;
  width: 13px;
  stroke: var(--btn-color);
  stroke-width: 7px;
  /* 👈 size yahan increase karo */
}

.creative-btn--wrap .creative-slide--btn .creative-btn--label {
  margin-left: 4pt;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn .creative-btn__border {
  position: absolute;
  left: 4pt;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {
  transform: translateX(18px);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {
  transform: scale(0, 1);
}

.creative-btn--wrap .creative-slide--btn:hover {
  margin-left: 38px !important;
}

.creative-btn--wrap .creative-slide--btn:hover .circle {
  clip-path: circle(50% at 50% 50%);
}

.creative-btn--wrap .creative-slide--btn:hover .circle-fill {
  transform: scale(1, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .circle-icon {
  transform: translate(0%, 0%);
  opacity: 1;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-next,
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
  bottom: 5%;
  top: unset;
  transform: scale(1);
  transition: all 0.4s;
  background-color: #ffffff00;
  backdrop-filter: blur(20px);
  height: 85px;
  width: 85px;
  line-height: 85px;
  border-radius: 50%;
  transition: all 0.4s;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-next {
  right: 50px;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
  left: 50px;
}

.swiper-container-h .slider-pagination-area {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: unset;
  right: unset;
  bottom: 80px;
  left: 50% !important;
  transform: translateX(-50%);
  width: 500px;
  z-index: 1;
}

.swiper-container-h .slider-pagination-area .slide-range {
  font-size: 16px;
  font-weight: 500;
  margin: 0 15px;
  color: #ffffff;
  line-height: 0;
  position: absolute;
  font-size: 20px;
}

.swiper-container-h .slider-pagination-area .slide-range.one {
  left: -50px;
}

.swiper-container-h .slider-pagination-area .slide-range.three {
  right: -50px;
}

.swiper-container-h .slider-pagination-area .swiper-pagination {
  bottom: 0 !important;
  width: 500px !important;
}

.swiper-container-h .slider-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-container-h .swiper-button-next::after {
  content: "\f061";
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  background: none;
  color: #ffffff;
  font-size: 60px;
}

.swiper-container-h .swiper-button-prev::after {
  content: "\f060";
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  background: none;
  color: #ffffff;
  font-size: 60px;
}

.swiper-container-h .swiper-button-next:hover,
.swiper-container-h .swiper-button-prev:hover {
  background: #ffffff0d;
}

/* ====================== Responsive Ipad =============================== */
@media (max-width: 991px) {
  .creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
    width: 100%;
    text-align: center;
    left: 0;
  }

  .creative-fullpage--slider .swiper-container-h .swiper-button-next,
  .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }

  .swiper-container-h .slider-pagination-area {
    width: 200px !important;
  }

  .swiper-container-h .swiper-button-next::after,
  .swiper-container-h .swiper-button-prev::after {
    font-size: 30px;
  }

  .creative-fullpage--slider .swiper-container-h .swiper-button-next,
  .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    background: #ffffff3b;
  }

  .swiper-container-h .slider-pagination-area .swiper-pagination {
    bottom: 0 !important;
    width: 200px !important;
  }
}

/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
  .swiper-slide .slider-inner .swiper-content .title-area .title {
    font-size: 64px;
  }

  .swiper-slide .slider-inner .swiper-content .title-area .tag {
    margin-bottom: 0px;
  }

  .swiper-slide .slider-inner .swiper-content p.disc {
    margin: 20px auto 20px auto;
    font-size: 16px;
    width: 95%;
  }

  .swiper-container-h .slider-pagination-area {
    display: none;
  }

  .swiper-slide .slider-inner .swiper-content p.disc br {
    display: none;
  }
}

.coffee-button {
  position: fixed;
  z-index: 9;
  top: 20px;
  right: 20px;
  background-color: #ffc107;
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.coffee-button:hover {
  background-color: #ffd54f;
}

.coffee-icon {
  font-size: 24px;
  line-height: 1;
}

.slider-pagination-area {
  display: none !important;
}

.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

.swiper.marquee-swiper {
  mask-image: linear-gradient(to right,
      transparent 0%,
      white 10%,
      white 90%,
      transparent 100%);
}

.our_clients .swiper-wrapper.marquee-swiper {
  transition-timing-function: linear;
  align-items: center;
}

footer .our_clients {
  display: flex;
  gap: 35px;
}

footer .our_clients img {
  width: 85%;
  object-fit: contain;
}

.our_clients .swiper-slide.marquee-swiper {
  width: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our_clients {
  margin-top: -80px;
  position: relative;
  z-index: 9;
}

.our_clients .swiper-slide.marquee-swiper svg {
  filter: brightness(0) invert(1);
}

.global_heading {
  font-size: clamp(26px, 2vw, 38px);
  font-weight: 600;
}

.global_subline {
  font-size: clamp(14px, 1.2vw, 18px);
}

.what_set_apart h2 {
  color: white;
}

.global_btn {
  background: #3772ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: 0.6s;
}

.global_btn:before {
  content: "";
  top: 0;
  transform: translateX(100%);
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  animation: slide 2s infinite;
  background: linear-gradient(to right,
      rgba(64, 235, 241, 0) 0,
      rgba(255, 254, 253, 56%) 50%,
      rgba(255, 254, 253, 28%) 99%,
      rgba(64, 235, 241, 0) 100%);
}

.global_btn:hover {
  background-color: #0448e9;
  color: var(--color-white);
  transition: 0.6s;
  transform: scale(1.05);
}

/* ----------------------aboutus---------------------------------------- */


.we_are_innovators .count-digit{

color: black;

}


.icon_our_values img{ 

  width: 36px;

}




.value_box p{ color: white;}

.value_box .count_box:after{

    position: absolute;
    content: "";
    top: 11px;
    width: 88%;
    left: 31px;
    height: 1px;
    background-color: white;

}


.value_box h5{ color: white; font-weight: 600; margin-top: 25px;}


.value_box .count_box{

color: white;
font-weight: 600;
position: relative;
font-size: 15px;
margin-bottom: 28px;

}

.our_values{ padding: 80px 0; }

.our_values .global_heading{ color: white;}


.outer_mission_vission{ 

  position: relative;

}

.outer_mission_vission:after{

      content: '';
    width: 185px;
    height: 185px;
    position: absolute;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    right: 0;
    top: 0;

} 

.outer_mission_vission:before{
    content: '';
    width: 185px;
    height: 185px;
    position: absolute;
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
    left: 0;
    bottom: 0;


}




.mission_vission h3{

  font-weight: 600;

}

.vission_box{ padding: 50px;}


.mission_vission{ 

  padding: 80px 0;
  background-color: white;

}

    .timeline-section {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      height: 100vh;
      padding: 40px;
      overflow: hidden;
    }

    .left-side {
      width: 40%;
      padding-right: 40px;
    }

    .left-side h1 {
      font-size: 60px;
      margin-bottom: 20px;
    }

    .left-side p {
      color: #333;
      font-size: 18px;
      line-height: 1.6;
    }

    .right-side {
      width: 60%;
      position: relative;
      border-left: 1px solid #ccc;
      padding-left: 50px;
    }

    .timeline-slider {
      height: 400px;
      overflow: hidden;
    }

    .timeline-item {
      outline: none;
    }

    .year {
      font-weight: bold;
      font-size: 22px;
      color: #000;
      margin-bottom: 10px;
    }

    .content {
      color: #555;
      font-size: 16px;
      line-height: 1.6;
      max-width: 100%;
    }

    .slick-vertical .slick-slide {
      height: auto !important;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 20px 0;
    }

    /* Arrows */
    .arrows {
      display: flex;
      flex-direction: column;
      position: absolute;
      left: -30px;
      top: 50%;
      transform: translateY(-50%);
    }

    .arrow {
      cursor: pointer;
      background: #000;
      color: #fff;
      border: none;
      padding: 8px 10px;
      margin: 5px 0;
      border-radius: 50%;
      font-size: 14px;
      transition: 0.3s;
    }

    .arrow:hover {
      background: #555;
    }

    @media (max-width: 768px) {
      .timeline-section {
        flex-direction: column;
      }
      .left-side, .right-side {
        width: 100%;
      }
    }

.our_history{ background-color: white;}

.we_are_innovators .count-title{      color: #6c6c6c;
    font-weight: 600;}

.we_are_innovators{ background-color: white; padding: 80px 0;}

.we_are_innovators p{ line-height: 28px; font-weight: 500; }

.about_us .global_heading {
  color: white;
}

.about_us img {
  object-fit: cover;
}

.about_us {
  padding: 60px 0;
  margin-top: -2px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.about_us p {
  color: #ffffffb0;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.8;
  /* responsive line height */
}

.icon_aprt_box img {
  aspect-ratio: 1 / 1 !important;
}

.what_set_apart_box:hover {
  background-color: var(--btn-color);
  transition: 0.6s;
  transform: scale(1.2);
}

.what_set_apart_box:hover img {
  filter: brightness(0) invert(1);
}

.what_set_apart_box h3 {
  color: var(--color-white);
  font-size: clamp(18px, 2.5vw, 26px);
  margin: 25px 0 15px;
  font-weight: 600;
}

.what_set_apart_points {
  position: relative;
}

.what_set_apart_points:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1px;
  width: 100%;
  background-color: var(--border-line);
}

.what_set_apart_box {
  border-right: 1px solid var(--border-line);
  /* border color apne hisaab se */
  padding: 40px 20px;
  height: 100%;
  position: relative;
  z-index: 9;
  transition: 0.6s;
}

.col-md-4:last-child .what_set_apart_box {
  border-right: none;
}

/* ----------------------servics---------------------------------------- */

.services_all {
  padding-bottom: 60px;
}

.vertical-slide-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.vertical-slider-box {
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 88px;
  position: sticky;
  bottom: 5vh;
  transition: 0.3s;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgb(161 161 161 / 25%);
  backdrop-filter: blur(79px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

.vertical-slider-box:not(:last-child) {
  margin-bottom: 32px;
}

.vertical-slider-box:nth-child(1) {
  z-index: 10;
  background-image: url(../../../images/blockchain-development-services-bg.jpg);
  background-size: cover;
}

.vertical-slider-box:nth-child(2) {
  z-index: 9;
  background-image: url(../../../images/slide-bg-2.jpg);
  bottom: 18vh;
  width: calc(100% - 2vw);
  margin: 0 auto 32px;
  background-size: cover;
}

.vertical-slider-box:nth-child(3) {
  z-index: 8;
  background-image: url(../../../images/slide-bg-3.jpg);
  bottom: 16vh;
  width: calc(100% - 4vw);
  margin: 0 auto 32px;
  background-size: cover;
}

.vertical-slider-box:nth-child(4) {
  z-index: 7;
  background-image: url(../../../images/slide-bg-4.jpg);
  bottom: 14vh;
  width: calc(100% - 6vw);
  margin: 0 auto 32px;
  background-size: cover;
}

.vertical-slider-box:nth-child(5) {
  z-index: 6;
  background-image: url(../../../images/slide-bg-5.jpg);
  bottom: 12vh;
  width: calc(100% - 8vw);
  margin: 0 auto 32px;
  background-size: cover;
}

.vertical-slider-box:nth-child(6) {
  z-index: 5;
  background-image: url(../../../images/slide-bg-6.jpg);
  bottom: 10vh;
  width: calc(100% - 10vw);
  margin: 0 auto;
  background-size: cover;
}

.vertical-slider-box:nth-child(7) {
  z-index: 4;
  background-image: url(../../../images/blockchain-development-services-bg.jpg);
  bottom: 8vh;
  width: calc(100% - 12vw);
  margin: 0 auto;
  background-size: cover;
}

.vertical-slider-box:nth-child(8) {
  z-index: 3;
  background-image: url(../../../images/slide-bg-2.jpg);
  bottom: 6vh;
  width: calc(100% - 14vw);
  margin: 0 auto 32px;
  background-size: cover;
}

.vertical-slider-box:nth-child(9) {
  z-index: 2;
  background-image: url(../../../images/slide-bg-3.jpg);
  bottom: 4vh;
  width: calc(100% - 16vw);
  margin: 0 auto 32px;
  background-size: cover;
}

.vertical-slider-box:nth-child(10) {
  z-index: 1;
  background-image: url(../../../images/slide-bg-4.jpg);
  bottom: 2vh;
  width: calc(100% - 18vw);
  margin: 0 auto 32px;
  background-size: cover;
}

.vertical-slider-box .button-group .white-btn {
  min-width: 170px;
}

.vertical-slider-box video {
  mix-blend-mode: lighten;
}

.vertical-slider-box .content {
  padding: 64px 0 64px 64px;
  max-width: 597px;
}

.vertical-slider-box .content h2 {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-white);
  font-weight: 600;
}

.vertical-slider-box .content p {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-white);
  margin: 0px;
}

.vertical-slider-box .image-box {
  max-width: 48%;
}

.vertical-slider-box ul li {
  color: var(--color-white);
  list-style: none;
  margin: 15px 0;
}

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

  100% {
    transform: translateX(100%);
  }
}

/* ----------------------casestudy---------------------------------------- */

.case_study {
  padding: 0px 0 60px;
  background-color: white;
}

.case_study .global_heading {
  font-weight: 600;
}

.outer_case_study {
  background-color: #f1f1f1;
  padding: 40px;
  border-radius: 20px;
}

.logo_project img {
  aspect-ratio: 1/1;
  object-fit: contain;
}

.project_name h5 {
  font-size: clamp(20px, 2.2vw, 32px);
  color: #17a34a;
  font-weight: 600;
}

.product_img {
  text-align: center;
  border-radius: 20px;
}

.product_img img {
  object-fit: contain;
}

/* ----------------------Technology ---------------------------------------- */

.Technologies_technologiesOuter__R_U_r .Technologies_dsTechLogo__4RP9T {
  overflow: hidden;
}

.Technologies_technologiesOuter__R_U_r .Technologies_dsTechLogo__4RP9T .Technologies_marqueeGroup__Q4igw {
  gap: 20px;
  overflow: hidden;
}

.Technologies_animateSlideToLeft__mtX_0 {
  width: 100%;
  animation: 45s linear 0s infinite normal none running slideLeft;
}

.Technologies_animateSlideToRight__aV9IJ {
  width: 100%;
  animation: 30s linear 0s infinite normal none running slideRight;
}

.Technologies_technologiesOuter__R_U_r .Technologies_dsTechLogo__4RP9T .Technologies_marqueeGroup__Q4igw .Technologies_marqueeGroupLogo__o_bgW {
  gap: 0px 20px;
}

.Technologies_marqueeGroupLogo__o_bgW {
  gap: 80px !important;
}

.Technologies_technologiesOuter__R_U_r .Technologies_dsTechLogo__4RP9T .Technologies_marqueeGroup__Q4igw .Technologies_marqueeGroupLogo__o_bgW li {
  padding: 11px 15px;
  border-radius: 5px;
}

.list-group-item {
  font-weight: 600;
  color: #3e3e3e !important;
  width: 95px;
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.tech_nologies .list-group-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.tech_nologies .global_heading {
  font-weight: 600;
}

.tech_nologies {
  background-color: white;
  padding-bottom: 40px;
  overflow: hidden;
  margin-top: -2px;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0px);
  }

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

@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0px);
  }
}

/* ----------------------expertise ---------------------------------------- */

.expertise .global_heading {
  color: white;
  font-weight: 600;
}

.expertise .global_subline {
  color: #dddddd;
}

.expertise_box img {
  width: 60px;
}

.expertise_box p {
  color: #9c9c9f;
  margin-top: 12px;
  margin-bottom: 0px;
}

.expertise_box {
  background-color: #2a2a31;
  text-align: center;
  padding: 30px;
  border-radius: 0px;
  transition: 0.6s;
  border-radius: 10px;
}

.expertise_box:hover {
  transform: scale(1.1);
  background-color: var(--btn-color);
}

.expertise_box:hover p {
  color: white;
}

.expertise_box:hover img {
  filter: brightness(0) invert(1);
}

.expertise {
  padding: 60px 0;
}

/* ----------------------testimonials ---------------------------------------- */
.top_quote {
  position: absolute;
  top: -46px;
}

.top_quote img {
  width: 80px !important;
  height: 80px !important;
}

.bottom_quote {
  position: absolute;
  bottom: -42px;
  right: 25px;
}

.bottom_quote img {
  width: 80px !important;
  height: 80px !important;
}

.gallery-slide {
  display: block;
  width: 360px;
  height: auto;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.2;
}

.gallery-slider .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  border-radius: 100% !important;
}

.gallery-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: white !important;
  border: 2px solid #2da2e4;
}

.gallery-slide.swiper-slide-active {
  opacity: 1;
}

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

.gallery-slide.swiper-slide-active {
  filter: none;
  padding: 0px 25px;
}

.swiper-actions {
  margin-top: 20px;
}

.swiper-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gallery-slider .swiper-btn {
  position: static;
  height: 22px;
  margin: 0;
}

.gallery-slider .swiper-btn:after {
  font-size: 22px;
  color: #000;
}

.gallery-slider .swiper-pagination {
  position: static;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gallery-slider .swiper-pagination-bullet {
  width: 14px;
  height: 4px;
  border-radius: 3px;
  margin: 0 !important;
}

.gallery-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #000;
}

.testimonials .owl-item .item {
  transform: translate3d(0, 0, 0);
  /* 3D acceleration */
  margin: 50px 0;
  /* overwrite plugin margin */
}

.testimonials .screenshot_slider .owl-item .item img {
  transition: 0.3s;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  transform: scale(0.8);
}

.testimonials .screenshot_slider .owl-item.center .item .feedback-client-box {
  transform: scale(1.15);
  transition: 0.6s;
  z-index: 99;
  position: relative;
}

.testimonials .screenshot_slider .owl-item.center .item {
  position: relative;
  z-index: 99;
}

.testimonials .screenshot_slider .owl-item .item {
  z-index: 9 !important;
}

.testimonials .screenshot_slider .owl-nav {
  text-align: center;
}

.testimonials .screenshot_slider .owl-nav button {
  font-size: 24px !important;
  margin: 10px;
  color: #033aff !important;
}

.testimonials .owl-carousel .owl-stage-outer {
  padding: 35px 0px;
}

.testimonials {
  background-color: var(--color-white);
  padding: 60px 0 60px;
  overflow: hidden;
}

.testimonials .global_heading {
  font-weight: 600;
}

.feedback-client-box {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 10px 10px 50px rgba(15, 155, 236, 0.14);
  position: relative;
  padding: 50px 30px 50px;
  z-index: 9;
  margin: 70px 0px 30px;
}

.testQuote-icon {
  position: absolute;
  top: -36px;
  left: 60px;
  color: #96d9ff;
  opacity: 0;
}

.client-image {
  position: absolute;
  top: -67px;
  left: 50%;
  transform: scale(0.8) translate(-50%);
}

.client-image img {
  width: 130px;
  height: 130px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
}

.clientName-proName-box {
  text-align: center;
  color: #000;
  font-family: Open Sans, sans-serif;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
}

.clientName {
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.clientPro-name {
  font-size: 16px;
  display: block;
}

.clientName-proName-box:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  width: 60px;
  height: 1px;
  background-color: #00a2ff;
  display: block;
  margin: 0 auto;
}

.client-para {
  text-align: center;
  color: #000;
  font-family: Open Sans, sans-serif;
  line-height: 1.7;
}

.testQuote-icon-bottom {
  position: absolute;
  bottom: -36px;
  right: 60px;
  color: #96d9ff;
  opacity: 0;
}

.newtheme-client-feedback .slick-slider .slick-slide.slick-active.slick-center .testQuote-icon-bottom {
  opacity: 1;
}

/* ----------------------footer ---------------------------------------- */

footer {
    padding: 150px 30px 60px;

 
}

.company_details h6 {
  font-weight: 600;
}

footer h6 {
  color: white;
  font-size: clamp(18px, 3vw, 20px);
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer_heading {
  color: white;
  font-weight: 600;
}

.footer_heading_details {
  color: #9c9c9c;
}

.footer_menu ul li a:hover {
  color: #2489ff;
}

footer hr {
  background-color: white;
}

.footer_menu p {
  color: white;
  font-weight: 600;
  font-size: 18px;
}

.footer_menu ul li a {
  margin: 15px 0;
  color: #cfcfcf;
  display: block;
  font-size: 16px;
}

footer .our_clients {
  margin: 0px;
  margin-top: 15px;
}

.footer_heading_details a {
  color: #cfcfcf;
  font-size: 16px;
}

.footer_heading_details a:hover {
  color: var(--btn-color);
}

.copy_right {
  background-color: #2a2a31;
  padding: 10px 30px;
}

.terms ul li {
  list-style: none;
}

.copy_right p {
  color: #cfcfcf;
  margin: 0px;
}

.terms ul li a {
  color: #cfcfcf;
}

.terms ul {
  display: flex;
  justify-content: end;
  gap: 10px;
}

.terms ul li a:hover {
  text-decoration: underline;
}

/* ----------------------portfolio ---------------------------------------- */

.breacrumb_global {
  padding: 140px 0 50px;
}

.breacrumb_global h1 {
  color: white;
  font-weight: 500;
  text-transform: capitalize;
}

.breacrumb_global h2 {
  color: white;
  font-weight: 600;
  font-size: 62px;
}

.breacrumb_global .our_clients {
  margin-top: 30px;
  padding: 15px 0px;
  background-color: #1c1c1c;
  rotate: -1.9deg;
}

.indusrt_txt {
  font-size: 18px;
}

.indusrt_txt {
  color: #868686;
  border-right: 1px solid #868686;
  padding: 0px 25px;
  font-size: 20px;
}

.breacrumb_global .our_clients .swiper-slide.marquee-swiper {
  width: unset;
  margin-right: 0px !important;
}

.breacrumb_global p {
  color: #f4f4f4;
  font-size: 16px;
}

.portfolio_details {
  background-color: white;
  padding: 35px;
	height:100%
}

.logo_product img {
  object-fit: contain;
}

.portfolio_details h3 {
  /* min 18px, scales with viewport, max 32px */
  font-size: clamp(18px, 3.5vw, 24px);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 600;
  margin-top: 15px;
}

.portfolio_details p {
  font-size: 16px;
  font-weight: 500;
}

.product_img_portfolio img {
  object-fit: contain;
}

.product_img_portfolio {
  /*background: linear-gradient(to bottom, #a8c90f 0%, #526902 100%);*/
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
    padding: 35px;}

.downloads h4 {
  font-weight: 600;
}

.downloads p {
  font-weight: 600;
}

.portfolio_list {
  background-color: #1c1c1c;
  padding: 50px 0;
}

.breacrumb_global_inner h1 {
  font-weight: 600;
}

/* ----------------------contactus---------------------------------------- */

.contact_form {
  background-color: #1c1c1c;
  position: relative;
  z-index: 9;
}

.contact_form:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: white;
  right: 0px;
  top: 0px;
}

.contact_form h2 {
  color: white;
  font-weight: 600;
  text-transform: capitalize;
}

.contact_form p {
  color: #f4f4f4;
}

.contact_form h3 {
  color: white;
  font-weight: 600;
  font-size: 16px;
  margin: 0px;
}

.contact_form p {
  color: #bcbcbc;
  margin: 0px 0px 12px;
}

.contact_form ul li {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  transition: 0.6s;
}

.contact_form ul li a {
  color: white;
  font-weight: 600;
  text-underline-offset: 5px;
  text-decoration: underline #1c1c1c;
  transition-property: text-decoration-color;
  transition: color .3s ease-in-out;
  transition: .3s;
  transition-duration: .3s;
}

.contact_form ul li:hover a,
.contact-links li a:hover {
  text-decoration: underline;
  padding-left: 5px;


}

.contact-links li a {
  text-decoration: underline aliceblue;
  transition-property: text-decoration-color;
  transition: color .3s ease-in-out;
  transition: .3s;
  text-underline-offset: 5px;
  transition-duration: .3s;
}

.contact_form ul li:hover i {
  color: #3772ff;
}

.contact_form i {
  color: white;
  font-size: 16px;
  margin-top: 5px;
}

.form_fields {
  background-color: white;
  padding: 80px 15px;
  height: 100%;
  position: relative;
  z-index: 10;
}

.form_fields h4 {
  font-weight: 600;
  font-size: 32px;
  text-transform: capitalize;
}

.form_fields .global_btn i {
  margin: 0px;
  margin-left: 10px;
}

.company_information {
  padding: 80px 0;
}

.effect-16,
.effect-17,
.effect-18 {
  border: 0;
  padding: 4px 0;
  border-bottom: 1px solid #aeadad;
  background-color: transparent;
}

.effect-16:focus-visible {
  outline: none;
}

.effect-16~.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--btn-color);
  transition: 0.4s;
  right: 0px;
  font-weight: 600;
}

.effect-16:focus~.focus-border,
.has-content.effect-16~.focus-border {
  width: 100%;
  transition: 0.4s;
}

.effect-16~label {
  position: absolute;
  left: 0;
  top: 3px;
  color: #aaa;
  transition: 0.3s;
  z-index: -1;
  letter-spacing: 0.5px;
}

.effect-16:focus~label,
.has-content.effect-16~label {
  top: -16px;
  font-size: 12px;
  color: var(--btn-color);
  transition: 0.3s;
}

.input-effect {
  position: relative;
  z-index: 4;
}

/* ----------------------about-us-page---------------------------------------- */

.aboutus_sec .global_heading {
  font-weight: 600;
  color: white;
}

.aboutus_sec .global_subline {
  color: #f4f4f4;
}

.skill-box {
  margin: 20px 0;
}

.skill-title {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 5px;
}

.skill-box span {
  color: white;
}

.skill-bar {
  position: relative;
  width: 100%;
  height: 4px;
  background: #444;
  border-radius: 2px;
  overflow: hidden;
}

.skill-fill {
  position: absolute;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #0064d9 0%, #2489ff 100%);
  border-radius: 2px;
  animation: fillAnimation 3s forwards;
}

@keyframes fillAnimation {
  from {
    width: 0;
  }

  to {
    width: 80%;
  }
}

.count-title {
  color: white;
  font-weight: 600;
}

.count-digit {
  color: #fff;
  font-weight: 700;
  font-size: 42px;
}

.our_teams {
  background-color: white;
  padding: 60px 0;
}

.our_teams .global_heading {
  font-weight: 600;
}

.aboutus_sec {
  padding: 60px 0;
}

.team_box {
  background: linear-gradient(180deg, #0064d9 0%, #2489ff 100%);
  padding: 15px;
  height: 380px;
}

.team_box h3 {
  font-size: clamp(16px, 2vw, 22px);
  color: white;
  font-weight: 600;
  margin: 0px 0 5px;
}

.team_box p {
  color: white;
  font-weight: 600;
}

.team_uder_details {
  border-left: 3px solid white;
  padding-left: 10px;
}

.why_diffrent {}

.why_diffrent .global_heading {
  color: white;
  font-weight: 600;
}

.why_diffrent .global_subline {
  color: white;
}

.why_diffrent h5 {
  color: white;
  font-weight: 600;
}

.why_diffrent p {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.our_global_clients {
  background-color: white;
  padding: 60px 0;
}

.our_global_clients .global_heading {
  font-weight: 600;
}

.logo-box {
  background: #fff;
  border-right: 1px solid #dddddd;

  border-bottom: 1px solid #dddddd;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  margin: 0px !important;
}

.logo-box:nth-child(5n) {
  border-right: none;
}

.logo-box img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.logo-box img:hover {
  filter: grayscale(0%);
}

/* ----------------------industriespage ---------------------------------------- */

.about_industry {
  background: linear-gradient(90deg, #010101 0%, #02203a 100%);
  padding: 120px 0;
}

.about_industry h1 {
  color: var(--color-white);
  font-weight: 600;
}

.about_industry p {
  color: #f4f4f4;
  font-size: 16px;
  color: #f4f4f4;
}

.indusrty_solution {
  background-color: #d5e9f8;
  padding: 30px 0;
}

.icon_industry {
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indusrty_solution h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 0px;
}

.indusrty_solution p {
  font-size: 12px;
  margin: 0px;
  font-weight: 600;
}

.reson_industry {
  padding: 80px 0;
  background-color: white;
}

.reson_industry .global_heading {
  font-weight: 600;
}

.reson_industry .count-area-content {
  border-radius: 10px;
  border: dashed 2px #96aebe;
  background-image: linear-gradient(to bottom, #fff, #eef4f8);
  padding: calc(1.3rem + 1vh);
  display: flex;
  flex-direction: column;
  row-gap: calc(1rem + 2vh);
}

.reson_industry .count-title {
  color: black;
  font-size: 16px;
}

.reson_industry .count-digit {
  color: #000;
  font-size: calc(1.32rem + 1.3vw);
  line-height: 1.22;
}

.software_solution {
  padding: 60px 0;
}

.software_solution .global_heading {
  font-weight: 600;
  color: white;
}

.software_solution p {
  color: white;
}

.software_solution_points h3 {
  color: var(--color-white);
  font-weight: 600;
  font-size: 20px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.software_solution_points p {
  margin: 0px;
}

.software_solution_points {
  background-color: #1c1c1c;
  padding: 25px;
  border-radius: 15px;
  margin: 20px 0;
}

.count {
  width: 25px;
  height: 25px;
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 5px;
}

.induatry_focus {
  background-image: linear-gradient(to bottom, #1d5185, #07131f);
  padding: 40px;
  border-radius: 20px;
  margin: 20px 0;
  position: sticky;
  top: 0px;
}

/* ----------------------serviespage---------------------------------------- */

.services_weoffer {
  padding: 60px 0;
  overflow: hidden;
}

.services_hero {
  padding: 160px 0 60px;
  position: relative;
  overflow: hidden;
}

.services_weoffer .what_set_apart_box {
  border-right: 1px solid #a3a3a3;
}

.services_weoffer .what_set_apart_box:hover h3 {
  color: white;
}

.services_weoffer .what_set_apart_box:hover p {
  color: white;
}

.what_set_apart_points:after {
  background-color: #a3a3a3;
}

.services_weoffer .what_set_apart_box h3 {
  font-weight: 600;
  color: black;
}

.services_weoffer {
  background-color: white;
}

.services_weoffer .global_heading {
  font-weight: 600;
  color: black;
}

.services_hero h1 {
  font-weight: 600;
  color: var(--color-white);
  text-transform: capitalize;
}

.services_hero p {
  color: #dfdfdf;
}

.service_banner img {
  border-radius: 30px;
}

.services_hero .global_btn i {
  margin-left: 4px;
}

.line_btn.global_btn {
  border: 1px solid #ffffff;
  background: transparent;
}

.whyChooseSwiper {
  margin-right: -75% !important;
}

.why_choose_us {
  padding: 60px 0;
  overflow: hidden;
}

.why_choose_us .global_heading {
  color: white;
}

.why_choose_box {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
}

.why_choose_box .content {
  position: absolute;
  bottom: 0px;
  padding: 15px;
  z-index: 99;
}

.why_choose_box:after {
  content: "";

  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.content h4 {
  font-weight: 600;
  color: white;
  font-size: clamp(18px, 3vw, 26px);
}

.content p {
  color: white;
    margin: 0px;
}

.steps_service {
  background-color: var(--color-white);
  padding: 80px 0 40px;
}

.steps_box {
  background-color: #f1f1f1;
  padding: 35px 20px;
  border-radius: 20px;
}

.steps_box h5 {
  font-size: clamp(22px, 1.5vw, 28px);
  font-weight: 600;
}

.count_box {
  font-size: clamp(18px, 1.5vw, 32px);
  font-weight: 600;
  margin-bottom: 10px;
}

/* ----------------------career---------------------------------------- */

.team_slide img {
  border-radius: 15px;
}

.team_slide {
  margin: 0px;
}

.team_slide .swiper-wrapper.marquee-swiper {
  gap: 100px;
}

.marquee-swiper .swiper-slide:nth-child(even) img {
  margin-top: 60px;
}

.current_openings {
  padding: 60px 0;
}

.current_openings {
  background-color: var(--color-white);
}

.current_openings_box {
  background-color: #f1f1f1;
  padding: 25px 15px;
  border-radius: 15px;
}

.current_openings_box h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0px;
}

.opening_tech_icon img {
  object-fit: contain;
  margin-bottom: 15px;
}

.current_openings_box p {
  font-weight: 500;
}

/* ----------------------hiredev---------------------------------------- */

.hire_dev {
  padding: 140px 0 0px;
  background-image: url(../images/hire-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.hire_dev .global_heading {
  color: white;
}

.form_hire_dev {
  background-color: white;
  border-radius: 15px;
  padding: 20px 20px;
  margin-bottom: -45px;
}

.form_hire_dev h2 {
  font-weight: 600;
  font-size: 28px;
  margin: 0px;
}

.form_hire_dev ul {
  padding-left: 30px;
  font-weight: 600;
}

.form_hire_dev ul li {
  margin: 10px 0;
}

textarea.effect-16~.focus-border {
  bottom: 7px;
}

.form_hire_dev p {
  color: #515151;
}

.hire_dev .global_subline {
  color: white;
}

.hire_dev_quick .global_heading {
  color: white;
}

.hire_dev_quick {
  padding: 120px 0 60px;
  position: relative;
}

.radial_circle {
  position: absolute;
  top: 25%;
}

.hire_dev_box {
  background-color: #1c1c1c;
  padding: 15px 20px;
  border-radius: 20px;
  height: 100%;
  position: relative;
  z-index: 1;
}

.hire_dev_box h3 {
  color: white;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  margin-top: 10px;
}

.hire_tecn_icon {
  margin-top: -60px;
}

.hire_dev_box p {
  color: #dfdfdf;
  font-weight: 500;
  line-height: 28px;
}

.left ul {
  list-style: none;
  padding: 0;
}

.left ul li {
  padding: 10px 0;
  cursor: pointer;
  list-style: disc;
  transition: all 0.3s;
}

.left ul li.active {
  font-weight: bold;
}

.right .content-box {
  display: none;
}

.right .content-box.active {
  display: block;
}

.hire-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px;
  min-height: 100vh;
  background: #0a0a0a;
  color: white;
}

.hire-points li {
  opacity: 0.2;
  transform: translateY(30px);
  margin: 15px 0;
  font-size: 20px;
  list-style: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hire-points li.active {
  opacity: 1;
  transform: translateY(0);
  color: #f902e3;
}

.hire-image {
  position: relative;
  width: 350px;
  height: 300px;
}

.hire-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hire-image img.active {
  opacity: 1;
}

.hire_why {
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

.hire_why .global_subline {
  color: white;
}

/* Left Side */

.left ul {
  list-style: none;
  padding: 0;
}

.left li {
  padding: 12px 0;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  color: #bbb;
}

.left li.active {
  font-weight: bold;
  color: #6794fe;
}

/* Right Side */
.right {
  flex: 2;
  border-radius: 10px;
  min-height: 200px;
  position: relative;
}

.content-box {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.content-box.active {
  display: block;
  opacity: 1;
}

.content-box h3 {
  color: #6794fe;
  margin-bottom: 10px;
}

.content-box p {
  font-size: 16px;
  line-height: 1.6;
}

.content-box img {
  border-radius: 10px;
}

.content-box p {
  color: white;
}

.hire_dev .carreer_btn {
  background-color: white;
  color: #3772ff;
  font-weight: 600;
}

.hire_dev .global_heading {
  position: relative;
}

.hire_arrow {
  position: absolute;
  right: 6%;
  top: -101px;
}

.sticky_area {
  position: sticky;
  top: 130px;
}

.testimonials .swiper-pagination-clickable {
  justify-content: center;
}

.indusry_image img {
  object-fit: contain;
}

.side_menu_cotent h3 {
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 10px;
  margin-top: 8px;
}

.side_menu_cotent h4 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 22px;
  padding-left: 14px;
  position: relative;
}

.side_menu_cotent h4:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0px;
  height: 27px;
  width: 4px;
  background-color: #0064d9;
}

.side_menu_cotent img {
  border-radius: 10px;
}

.right_menu_content .content p {
  color: #636363;
  font-size: 16px;
  font-weight: 500;
}

.left-menu .menu-item-inner {
  display: block;
  padding: 10px;
  width: 100%;
}

.left-menu .menu-item-inner.active {
  font-weight: 600;
  background-color: #007bff;
  color: white !important;
  border-radius: 5px;
}

.border_right_header {
  border-right: 1px solid #dcdcdc;
}

.inner_pop_menu ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.inner_pop_menu ul li a:hover {
  background-color: #0064d9 !important;
  color: white !important;
  transition: 0.6s;
}

.inner_pop_menu ul li a {
  background-color: #e9e9e9;
  font-size: 14px !important;
  width: 100%;
  padding: 12px 15px;
  transition: 0.6s;
  border-radius: 8px;
}

/* ----------------------get-free-quote---------------------------------------- */

.get_free_quote_form {
  background-image: url(../images/get-free-banner.jpg);
  padding: 120px 0 60px;
  background-repeat: no-repeat;
  position: relative;
}

.get_free_quote_form_box p {
  color: black !important;
  font-weight: 400 !important;
}

.get_free_quote_form::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-color: white;
  height: 40%;
}

.get_free_quote_form p {
  color: white;
  font-weight: 600;
}

.get_free_quote_form .global_heading {
  color: var(--color-white);
}

.get_free_quote_form_box {
  background-color: var(--color-white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 9;
}

.get_free_quote_form_box h2 {
  font-weight: 600;
}

.get_free_quote_form .form_fields {
  padding: 0px;
  background-color: transparent;
}

.uploader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.my_global_uploader {
  width: 100%;
  height: 180px;
  border: 2px dashed #4a90e2;
  border-radius: 12px;
  background: #f9fbff;
  cursor: pointer;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.my_global_uploader:hover {
  background: #eef5ff;
  border-color: #2c6ed5;
  transform: scale(1.02);
}

.icon_upload {
  font-size: 40px;
  color: #4a90e2;
  margin-bottom: 10px;
}

.my_global_uploader p {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0;
  color: #333;
}

.my_global_uploader span {
  font-size: 13px;
  color: #777;
}

.file-input {
  display: none;
}

.contact-details h3 {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--btn-color);
}

.contact-details h4 {
  font-weight: 500;
}

.contact-details h4 b {
  font-weight: 700;
}

.contact-details h5 {
  font-weight: 600;
}

.contact-links li {
  list-style: none;
  margin-bottom: 15px;
}

.contact-links li a {
  color: black;
  font-size: 18px;
}

.contact-links li a:hover {
  text-decoration: underline;
  color: var(--btn-color);
}

.socials-icons li {
  list-style: none;
}

.socials-icons li a {
  width: 35px;
  height: 35px;
  background-color: var(--btn-color);
  border-radius: 100%;
  color: white;
  display: flex !important;
  align-items: center;
  justify-content: center;
  display: inline-block;
  border: 1px solid transparent;
  transition: 0.6s;
}

.socials-icons li a:hover {
  background-color: white;
  color: var(--btn-color);
  border: 1px solid var(--btn-color);
  transition: 0.6s;
}

.socials-icons {
  display: flex;
  gap: 10px;
}

.global_select {
  border: none;
  width: 100%;
  padding: 5px 0;
  border-bottom: 1px solid #aeadad;
  background-color: transparent;
  height: 30px;
}

.global_select:focus {
  outline: none;
}

.noUi-connect {
  background: #3772ff !important;
}

.budget_range {
  font-weight: 600;
  margin-bottom: 45px;
}

.slider-value {
  margin-top: 15px;
  font-weight: 500;
  font-size: 18px;
}

.contact-details {
  background: aliceblue;
  backdrop-filter: blur(140px);
  padding: 15px;
  border-radius: 15px;
}

/* ----------------------blogs---------------------------------------- */


.brdrumb_blogs {
  background-image: url(../images/blogs-bg.jpg);
  background-repeat: no-repeat;
  padding: 120px 0;
  position: relative;
  background-size: cover;
}

.brdrumb_blogs:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0000008a;
  top: 0px;
  left: 0px;
}

.brdrumb_blogs h1 {
  position: relative;
  color: white;
  font-weight: 600;
  z-index: 9;
}

.brdrumb_blogs p {
  color: white;
  position: relative;
  z-index: 9;
}

.blogs_listing {
  padding: 40px 0;
  background-color: black;
}

.blogs_listing_box {
  background-color: #1c1c1c;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.blogs_listing_box img {
  height: 250px;
  object-fit: cover;
}

.blogs_listing_box_cnt {
  padding: 12px;
}

.blogs_listing_box_cnt p {
  color: white;
  margin: 0px 0 10px;
  font-size: 12px;
}

.blogs_listing_box_cnt h2 {
  color: white;
  font-weight: 600;
  font-size: 22px;
}

.blogs_listing_box:hover {}

.blogs_listing_box:hover h2 {
  text-decoration: underline;
}

.blogs_listing_box_outer_img {
  overflow: hidden;
  transition: 0.6s;
}

.blogs_listing_box_outer_img img {
  transition: 0.6s;
}

.blogs_listing_box:hover img {
  transform: scale(1.2);
  transition: 0.6s;
}

.blogs_listing_box h3 {
  color: #7e7e7e;
  font-size: 14px;
}


.inner_page {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 36px rgba(0, 0, 0, .09);
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.blogs_details_page {
  background-color: white;
  padding: 0px 0 60px;
}



.masonry_grid {
  position: relative;
}

.masonry_grid .grid {
  width: 100%;
  margin: -10px;
  position: relative;
}

.grid-item {
  position: absolute;
  width: calc(25% - 20px);
  margin: 10px;
  background-color: #f3f3f4;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, .1);
}

.ts_card {
  position: relative;
  z-index: 1;
  border-radius: 12px;
}


.ts_card_front {
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  z-index: 2;
  padding: 12px;
  transition: all .3s cubic-bezier(.38, .005, .215, 1);
}

.logo_sec {
  display: flex;
  gap: 11px;
  align-items: center;
}


.contry_txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #000000;
  display: inline-flex;
  align-items: center;
  margin: 0;
  border: 1px solid #ddd;
  padding: 2px 14px;
  border-radius: 25px;
  min-height: 32px;
}

.cnt-nm {
  margin-left: 5px;
}





.card_para {
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  color: #0f0f0f;
  margin-bottom: 84px;
}


.flex_al_center {
  align-items: center;
}

.ds_flex {
  display: flex;
}

.cl_profile img {
  border-radius: 50%;
  margin: 0;
  width: 64px;
  height: 64px;
}


.cl_profile_inner {
  padding-left: 18px;
}

.clname {
  color: #0f0f0f;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}


.appnm {
  color: #0f0f0f;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  padding-top: 5px;
}


.ts_card_back {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  padding-bottom: .8rem;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: #fff;
  background: var(--btn-color);
  border-radius: 12px;
  z-index: -1;
}


.testimonaial_read {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  border: none;
}

.ts_card:hover .ts_card_front {
  transform: translateY(-45px) rotate(-2deg);
}

.ts_card_front a{ color: black;}


.masonry_grid:before {
  position: absolute;
  content: "";
  background: url(../images/testimonial-ellipse.webp) no-repeat center / cover;
  /* background-attachment: local; */
  width: 100%;
  height: 100%;
  left: 0;
  background-position: center;
  bottom: 0;
}

.testimonials_list {
  padding: 60px 0;
}

.testimonials_list h1 {
  color: white;
  position: relative;
  z-index: 9;
  font-weight: 600;
}

.pin-spacer {
  z-index: 2 !important;
  /* height: fit-content!important; */
  padding-bottom: 0px !important;
}

.services_hero1 {
  padding: 160px 0 0px;
  margin-bottom: -230px;
}


.gallery-item {
  width: 200px;
  padding: 5px;
}




.job_description h1{ font-weight: 600; font-size: 24px; margin: 0px;}

.job_description h2{ color: var(--btn-color); font-size: 22px; font-weight: 600; }

.job_description ul{ padding-left: 20px; margin-bottom: 15px;}

.job_description ul li {     color: #6c6c6c;
    font-weight: 500;
    font-size: 16px; margin: 10px 0; }


    .file-upload {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
}

.upload-btn {
  background-color: #f2f2f2;
  color: black;
  padding: 26px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: auto;
  justify-content: center;
  flex-direction: column;

}

.upload-btn i{ font-size: 24px;}

.upload-btn:hover {
  background-color: #0056b32b;
}

#fileName {
  color: #555;
  font-size: 14px;
}


.gallery_webnautical{ 

  padding: 60px 0;
  background-color: white;

}


.job_form .form_fields{ padding: 0px;}

.job_form h3{ font-size: 18px; text-align: center; font-weight: 600; color: var(--btn-color);}
.job_form h4{ font-size: 26px; font-weight: 600;text-align: center}
.job_form h5{ font-size: 26px; font-weight: 600;text-align: center}


#backBtn:focus{ box-shadow: none;}

.services_hero i{ color: white;}



.service_box_inner{ position: relative; margin: auto;}

.service_box_inner:hover img{ transform: scale(1.2); transition: 0.6s;}

.service_box_inner::after{

      position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(180deg, rgba(20, 20, 28, 0) 0%, rgba(20, 20, 26, 0.6362920168) 44%, rgb(20, 20, 26) 100%);

}
.service_box_inner img{ height: 400px; object-fit: cover;  transition: 0.6s;}

.service_img_box{ overflow: hidden;}


.service_box_inner_content{ padding: 15px; position: absolute; bottom: 0px; width: 100%; z-index: 9;}

.service_box_inner_content h3{ font-weight: 700; color: white;}

.service_box_inner_content p{ font-weight: 500;     color: rgba(255, 255, 255, .8);;}


.form_footer{ background-color: white; padding: 40px 0;}


.contactCard_info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.contactCard_info_body li {
    margin-top: 20px;
    display: flex;
}

.contactCard_info_body .icon {
    width: 38px;
    height: 38px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    background-color: #3772ff;
    margin-right: 14px;
}

.contactCard_info_body a {
    font-size: 14px;
    line-height: 1.6;
    color: black;
    font-family: "Gilroy-SemiBold", Arial, sans-serif;
    display: block;
    word-break: break-all;
    padding: 5px 0;
}

.contactCard_info span {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    display: block;
    font-family: "Gilroy-Medium", Arial, sans-serif;
    line-height: 1.3;
}


.contactCard_info_social ul {
    display: flex;
    flex-wrap: wrap;
        list-style: none;
    padding-left: 0;
    margin-bottom: 0;

    
}

.contactCard_info_social li:not(:last-child) {
    margin-right: 8px;
}


.contactCard_info_social li {
    margin-bottom: 6px;
}

.contactCard_info_social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 13px;
    background-color: #3772ff;
    color: #fff;
    border-radius: 50%;
}

.get_in_touch h5{ font-weight: 600;}


.form_footer_inner{ width: 100%; margin: auto; margin-bottom: 60px;    margin-bottom: -145px;
    background-color: white; border-top: 5px solid #0448e9!important; padding-top: 40px;     border: 1px solid #e6e6e6;    padding-left: 15px;
    padding-right: 15px;} 

    .form_footer .form_fields{ padding : 30px!important;}

    .form_footer_inner .form_fields h6{
          font-size: 42px;
    font-weight: 600;
     }

     .get_in_touch{     background-color: #7676761c;
    padding: 10px;
    height: 97%;
   }


   .contact-cta {
    background: black;
    color: white;
    background-image: url(../images/cta-sec.webp);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 100px 0;
}

.contact-cta p{ color: white;}
.contact-cta h3{ color: white!important; font-weight: 600;}


#work-prossec{ background-color: white; padding: 40px 0;}

.benifits_section .global_heading { color: white;}

.benifits_section .global_subline { color: white; margin: 0px;}

.benifits_section{ padding: 60px 0;}

.benfits_box{ background-color: white; border-radius: 10px; padding: 15px;}

.benfits_box .icon_box_benfits{

  width: 45px;
  height: 45px;
  background-color: #0448e9;
  display: flex;
  align-items: center;
  justify-content: center ;
  font-size: 22px;
  color: white;
  border-radius: 5px;

}
.benfits_box p{ margin-top: 10px; font-weight: 600; margin-bottom: 0px;}
.benfits_box h3{ font-size: 22px; font-weight: 600; margin: 0px;}