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

@font-face {
  font-family: 'Inter-Regular';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Light Mode Defaults */
  --color-bg: #ffffff;
  --color-title: #000000;
  --color-subTitle: #404040;
  --color-para: #565656;
  --button-bg: #121212;
  --button-text: #fff;
  --border-color-one: #0000004c;
  --cta-marquee-border: #3f92cf;
  --color-bg-development: #ffffff;
  --color-textHeading-development: #141413;
  --color-textSubHeading-development: #141413;
  --color-border-development-one: #141413;
  --color-brightness-development-one: 0;
  --color-invert-development-one: 0;
  --color-border-development-two: #141413;
  --animate-border-bg-color: #4093d0;
  --animate-border-color: #ffffff;
  --invert-cstm-edit-one: 1;
  --color-content-web-development: #484848;
  --bg-color-web-development-faq: #000;
  --color-bg-about: #070707ff;
  --color-text-about: #fff;
  --mix-blend-mode-work: unset;
  --color-a-title-work: #000;
  --color-bg-about-cards-one: #e9ecef;
  --color-bg-about-img-one: #fff;
  --filter-brightness-about-img-one: invert(0);
  --filter-brightness-about-img-two: brightness(1);
  --border: 4px;
  --radius: 0;
  --apple-glass: rgba(255, 255, 255, 0.08);
  --apple-border: rgba(255, 255, 255, 0.15);
  --apple-glow: rgba(75, 215, 255, 0.3);
  --btn-glass: #fff;
  --c-glass: #bbbbbc;
    --c-light: #fff;
    --c-dark: #000;
    --c-content: #000;
    --c-action: #4093d0;
    --c-bg: #e8e8e9;
    --glass-reflex-dark: 1;
    --glass-reflex-light: 1;
    --saturation: 150%;
    transition: background 400ms cubic-bezier(1, 0, 0.4, 1), color 400ms cubic-bezier(1, 0, 0.4, 1);
}

/* Target the dark theme */
[data-theme="dark"] {
  /* Dark Mode Overrides */
  --color-bg: #070707ff;
  --color-title: #fff;
  --color-white: #fff;
  --color-subTitle: #cbccc4;
  --color-para: #cbccc4;
  --button-bg: #cbccc4;
  --button-text: #121212;
  --border-color-one: #ffffff4c;
  --cta-marquee-border: #fff;
  --color-bg-development: #070707ff;
  --color-textHeading-development: #e9ebdf;
  --color-textSubHeading-development: #cbccc4;
  --color-border-development-one: #ffffff;
  --color-brightness-development-one: 500;
  --color-invert-development-one: 1;
  --color-border-development-two: #e1e1ee;
  --animate-border-bg-color: #3e3e3e;
  --animate-border-color: #4093d0;
  --invert-cstm-edit-one: 0;
  --color-content-web-development: #a6a6a6;
  --bg-color-web-development-faq: #2d2c2c8a;
  --color-bg-about: #fff;
  --color-text-about: #070707ff;
  --mix-blend-mode-work: difference;
  --color-a-title-work: #d6d6db;
  --color-bg-about-cards-one: #fff;
  --color-bg-about-img-one: #000;
  --filter-brightness-about-img-one: invert(1);
  --filter-brightness-about-img-two: brightness(0);
}

body {
  font-family: Outfit;
  font-weight: 400;
  line-height: 1.55;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  padding-top: 69px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #41b1ff;
}

.fixed-bottom,
.fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1;
}

/* Hide both icons by default */
/* #theme-toggle .sun-icon,
#theme-toggle .moon-icon {
    opacity: 0;
    transition: all 0.3s ease;
} */

/* Base styles for the button and icons */
#theme-toggle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 48px;
  padding: 0;
  cursor: pointer;
  border: none;
  border-radius: 0px;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, border 0.2s ease-in-out;
  background-color: transparent;
  overflow: hidden;
  margin-bottom: 0px;
  margin-left: 10px;
  margin-right: 10px;
}

.parentmobile-menu{
  justify-content: flex-start !important;
}
.home-clientlogo-track.mainhome {
  padding-top: 60px;
}

#theme-toggle .sun-icon,
#theme-toggle .moon-icon {
  position: absolute;
  /* Allows icons to be positioned freely */
  font-size: 2.5rem;
  /* Adjust icon size */
  transition: transform 0.2s ease-in-out;
}

/* Positioning the icons */
#theme-toggle .sun-icon {
  transform: translateY(-3px);
  /* Sun starts visible */
  color: #171823;
  /* Dark color for the sun icon */
}

#theme-toggle .moon-icon {
  transform: translateY(150%);
  /* Moon starts off-screen below */
  color: #daece6;
  /* Light color for the moon icon */
}

/* Dark mode-specific styles */
html[data-theme="dark"] #theme-toggle {}

html[data-theme="dark"] #theme-toggle .sun-icon {
  transform: translateY(-150%);
  /* Sun slides up and off-screen */
  color: #ffffff;
  /* Change color to light */
}

html[data-theme="dark"] #theme-toggle .moon-icon {
  transform: translateY(-3px);
  /* Moon slides into view */
  color: #ffffff;
  /* Change color to dark */
}

.mega-dropdown {
  position: static !important;
}

.salesGrowth.elementor-section {
  padding-top: 50px !important;
}

.mega-menu {
  left: 0;
  right: 0;
  padding: 20px 40px;
  border: none;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin-top: 0;
  border-radius: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0s, transform 0s, visibility 0s;
  margin: auto;
}

.mega-menu-2 {
  left: 0;
  right: 0;
  padding: 40px 40px;
  border: none;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin-top: 0;
  border-radius: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0s, transform 0s, visibility 0s;
  margin: auto;
}

.mega-menu-header {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.mega-menu-2 .mega-menu-header {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.mega-menu-header h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 47px;
  letter-spacing: -0.25px;
  margin-bottom: 5px;
}

.mega-menu-2 .mega-menu-header h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 47px;
  letter-spacing: -0.25px;
  margin-bottom: 20px;
}

.mega-menu-header a.main-link-a {
  font-size: 18px;
  color: #000;
  margin-top: 0px;
  line-height: 28px;
  margin-bottom: 0px;
  font-weight: 700;
  position: relative;
}

.mega-menu-2 .mega-menu-header a.main-link-a {
  font-size: 18px;
  color: #000;
  margin-top: 0px;
  line-height: 28px;
  margin-bottom: 0px;
  font-weight: 700;
  position: relative;
}

.mega-menu-header a.main-link-a::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 40%;
  left: 0;
  right: 0;
  background: #48c7e3a3;
  background-size: 100% 100%;
  transition: 380ms transform cubic-bezier(.165, .84, .44, 1);
  transform-origin: 50% 100%;
  transform: scale(.98, 0) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: -1;
  background-repeat: repeat-x;
  display: inline-block;
}

.mega-menu-header a.main-link-a:hover::before {
  transform: scale(1, .99999999) translateZ(0);
}

.mega-menu h5 {
  font-size: 18px;
  font-weight: 600;
  color: #16171a;
  margin-bottom: 10px;
  line-height: 28px;
}

.mega-menu-2 h5 {
  font-size: 18px;
  font-weight: 600;
  color: #16171a;
  margin-bottom: 10px;
  line-height: 28px;
}

.mega-menu h5.mega-menu-3-links a {
  font-size: 18px;
  font-weight: 600;
  color: #16171a;
  margin-bottom: 10px;
  line-height: 28px;
  position: relative;
}

.mega-menu-2 h5.mega-menu-3-links a {
  font-size: 18px;
  font-weight: 600;
  color: #16171a;
  margin-bottom: 10px;
  line-height: 28px;
  position: relative;
}

.mega-menu h5.mega-menu-3-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 40%;
  left: 0;
  right: 0;
  background: #48c7e3a3;
  background-size: 100% 100%;
  transition: 380ms transform cubic-bezier(.165, .84, .44, 1);
  transform-origin: 50% 100%;
  transform: scale(.98, 0) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: -1;
  background-repeat: repeat-x;
  display: inline-block;
}

.mega-menu-2 h5.mega-menu-3-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 40%;
  left: 0;
  right: 0;
  background: #48c7e3a3;
  background-size: 100% 100%;
  transition: 380ms transform cubic-bezier(.165, .84, .44, 1);
  transform-origin: 50% 100%;
  transform: scale(.98, 0) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: -1;
  background-repeat: repeat-x;
  display: inline-block;
}

.mega-menu h5.mega-menu-3-links {
  margin-bottom: 25px;
}

.mega-menu-2 h5.mega-menu-3-links {
  margin-bottom: 30px;
}

.mega-menu h5.mega-menu-3-links a:hover::before {
  transform: scale(1, .99999999) translateZ(0);
}

.mega-menu-2 h5.mega-menu-3-links a:hover::before {
  transform: scale(1, .99999999) translateZ(0);
}

.mega-menu-links {
  list-style-type: none;
  padding-left: 0;
}


.mega-menu-links li a {
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  color: #16171a;
  margin-bottom: 10px;
  line-height: 26px;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  position: relative;
  font-family: 'Inter-Regular';
}

.mega-menu-links li a:hover {
  color: #000;
}

.mega-menu-links li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 40%;
  left: 0;
  right: 0;
  background: #48c7e3a3;
  background-size: 100% 100%;
  transition: 380ms transform cubic-bezier(.165, .84, .44, 1);
  transform-origin: 50% 100%;
  transform: scale(.98, 0) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: -1;
  background-repeat: repeat-x;
  display: inline-block;
}

.mega-menu-links li a:hover::before {
  transform: scale(1, .99999999) translateZ(0);
}

.mega-menu-links-2 {
  list-style-type: none;
  padding-left: 0;
}


.mega-menu-links-2 li a {
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  color: #16171a;
  margin-bottom: 12px;
  line-height: 28px;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  position: relative;
  font-family: 'Inter-Regular', sans-serif;
}

.mega-menu-links-2 li a:hover {
  color: #000;
}

.mega-menu-links-2 li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 40%;
  left: 0;
  right: 0;
  background: #48c7e3a3;
  background-size: 100% 100%;
  transition: 380ms transform cubic-bezier(.165, .84, .44, 1);
  transform-origin: 50% 100%;
  transform: scale(.98, 0) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: -1;
  background-repeat: repeat-x;
  display: inline-block;
}

.mega-menu-links-2 li a:hover::before {
  transform: scale(1, .99999999) translateZ(0);
}


/* Show the mega menu on hover for desktop screens */
@media (min-width: 992px) {
  .mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin: auto;
    transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
  }

  .mega-dropdown:hover .mega-menu-2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin: auto;
    transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
  }
}

header,
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  /* Ensure it stays above everything */
  transition: background-color 0.3s ease;
  /* Smooth background change if needed */
}

.navbar {
  padding: 0 30px;
  z-index: 11;
  background-color: transparent;
}

.dropdown-toggle::after {
  display: none;
}

.navbar-brand img {
  max-width: 240px;
  height: auto;
}

.navbar-nav .nav-link {
  /* color: var(--color-subTitle); */
  color: white;
  font-family: Inter Medium, sans-serif;
  font-weight: 500;
  line-height: 20px;
  padding: 50px 0;
  background: transparent;
  position: relative;
  z-index: 9999;
  text-transform: uppercase;
  height: auto !important;
  cursor: pointer;
  letter-spacing: 1.5px;
  transition: all .6s ease;
  margin-right: 0px;
  font-size: 14px;
}

.navbar-nav {
  margin-right: 30px;
}

.navbar-nav .nav-link:hover {
  /* color: var(--color-title); */
  color: white;
}

.nav-item {
  /* margin-right: 50px; */
}

.nav-item:nth-last-child {
  margin-right: 0px;
}

.navalign {
  justify-content: end;
}

.navbar-nav .nav-item .nav-link .nav-link-inner::before {
  content: '';
  position: absolute;
  width: calc(100% - 15px);
  height: 2px;
  display: block;
  bottom: 45px;
  left: 7px;
  background: #48c7e3;
  opacity: 0;
  transition: all .3s ease;
}

.navbar-nav .nav-item:hover .nav-link .nav-link-inner::before {
  opacity: 0;
  transition: all .3s ease;
}

.navbar-toggler {
  border: none;
  background: transparent;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler-icon {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba(0, 0, 0, 1)" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22m-22 8h22" /%3E%3C/svg%3E');
}

.navbar-collapse {
  justify-content: flex-end;
}


.slide-text>.bg-video {
  width: 100%;
  /* height: 80vh; */
  object-fit: cover;
  object-position: center;
  position: relative;
  top: 0;
  left: 0;
}

/* background-color and color should be the same as the below otherwise it won't work */
.slide-text>.text {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  color: #fff;
  font-size: 220px;
  font-family: Inter SemiBold, sans-serif;
  font-weight: 700;
  text-align: left;
  letter-spacing: -9.25px;
  padding-left: 75px;
  line-height: 85vh;
  mix-blend-mode: darken;
}

.slide-subtitle {
  color: #fff;
  position: relative;
  font-size: 68px;
  font-family: Outfit;
  font-weight: 600;
  text-align: left;
  line-height: normal;
  padding-left: 0;
  padding-top: 0px;
}

.text-container {
  display: flex;
  flex-direction: column;
}

/* The Mask hides the sentences sitting above/below the view */
.line-mask {
  height: 1.1em;
  overflow: hidden;
  position: relative;
}

.line-reel {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.line-reel span {
  font-size: 54px;
  font-family: Outfit;
  font-weight: 600;
  display: block;
  white-space: nowrap;
}

.main-slider {
  height: 90vh;
  padding: 80px 0px;
  overflow: hidden;
}

.main-slider:before {
  display: none;
  content: "";
  pointer-events: none;
  position: absolute;
  left: -578px;
  top: -622px;
  width: 1446px;
  height: 1446px;
  background: #16171a;
  background: radial-gradient(50.03% 50.03% at 50% 49.97%, rgba(22, 23, 26, 0) 0, #16171a 100%);
  z-index: 0;
}

.main-slider .web-gradiant {
  max-width: 904px;
  pointer-events: none;
  position: absolute;
  top: -50px;
  z-index: 0;
  left: -50px;
  width: 100%;
}

.about-heading {
  font-size: 95px;
  font-weight: 700;
}

.about-heading1 {
  font-size: 95px;
  opacity: 0;
  font-weight: 700;
  transform: translateY(20px);
  /* Initial position off the screen */
}

.main-about {
  height: auto;
  padding: 80px 0;
}

.featured-work1 {
  margin-top: 300px;
  z-index: 0;
  position: relative;
  margin-bottom: 80px;
}

#linesvg {
  position: absolute;
  z-index: 0;
}

.about {
  margin-top: 100px;
  padding-right: 60px;
}
.home-aboutheading{
      font-size: 32px;
    font-weight: 600;
    margin-top: 40px;
    position: relative;
}
.about-content {
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  z-index: 1;
  position: relative;
  margin-top: 20px;
}

.about-image {
  padding-right: 85px;
}

.about-image img {
  border-radius: 5px;
  height: 350px;
  margin-top: 200px;
  position: relative;
  z-index: 1;
}

video {
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.btn {
  position: relative;
  padding: 9px 30px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  color: #000;
  background-color: #fff;
  border-radius: 0px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s, color 0.3s;
}

.mega-menu:after {
  display: none;
}

/* .btn::before {
  content: '';
  position: absolute;
  background-color: #333;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  transition: width 0.3s;
}

.btn::after {
  content: '→';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
} */

.btn:hover {
  color: #fff;
  background-color: #3f93d2;
  transition: 0.3s;
  border: none;
}

.btn:hover::before {
  width: 100%;
}

.btn:hover::after {
  opacity: 1;
}

.work-heading {
  font-size: 95px;
  font-weight: 700;
}

.featured-work {
  margin-top: 400px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

.work-main {
  margin-top: 70px;
  margin-bottom: 0px;
}

.work-main1 {
  margin-top: 50px;
}

.work-main2 {
  margin-top: 50px;
}

/* --- WEBGL BACKGROUND --- */
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.work-img {
  border-radius: 10px;
  height: 400px;
  object-fit: cover;
  opacity: 0;
}

.work-category {
  padding: 20px 0px 0px 0px;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
}

.work-name {
  font-size: 32px;
  padding: 5px 0px 0px 0px;
  transition: 0.5s;
  color: #fff;
}

.work-main:hover,
.work-main1:hover,
.work-main2:hover {
  cursor: pointer;
}

.work-name:before {
  content: '»';
  position: absolute;
  opacity: 0;
  transition: 0.5s;
}

.work-main:hover .work-name {
  padding-right: 24px;
  padding-left: 25px;
  transition: 0.5s;
  cursor: pointer;
}

.work-main:hover .work-name:before {
  opacity: 1;
  transition: 0.5s;
  left: auto;
  margin-left: -30px;
   margin-top: -10px;
}


.work-main1:hover .work-name {
  padding-right: 24px;
  padding-left: 25px;
  transition: 0.5s;
  cursor: pointer;
}

.work-main1:hover .work-name:before {
  opacity: 1;
  transition: 0.5s;
  left: auto;
  margin-left: -30px;
  margin-top: -8px;
}

.work-main2:hover .work-name {
  padding-right: 24px;
  padding-left: 25px;
  transition: 0.5s;
  cursor: pointer;
}

.work-main2:hover .work-name:before {
  opacity: 1;
  transition: 0.5s;
  left: auto;
  margin-left: -30px;
  margin-top: -8px;
}


.reveal {
  visibility: hidden;
  position: relative;
  overflow: hidden;
}

/* 1. Reset the wrapper to prevent horizontal shaking/scrolling */
.wrapper {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px; /* Space between the rows */
  padding: 20px 0;
}

/* 2. Style the containers */
.imageContainer {
  display: flex;
  flex-direction: row; /* Keep them in a row for the marquee effect */
  width: max-content;  /* Allows the images to sit side-by-side even if they overflow */
  will-change: transform;
}


.imageContainer .image {
    width: 150px;       /* Fixed width on mobile works best for marquees */
  height: 160px;  
  background-image: url('https://lusion.co/assets/images/logo/@logo--cocacola.svg');
  background-size: cover;
}

.image:nth-child(odd) {
  background-image: url('https://lusion.co/assets/images/logo/@logo--calvin-klein.svg')
}

.client-logo {
  margin-top: 100px;
  margin-bottom: 100px;
  overflow: hidden;
}

.faq-section {
  margin-bottom: 70px;
}

.client-heading {
  font-size: 95px;
  font-weight: 700;
}
/* Muted text color for the secondary parts */
.text-muted-custom {
    color: #a0a0a0;
}

/* The Blue Highlight Effect */

/* The Thin Underline for Seamless UX */
.underline-white {
    background-image: linear-gradient(45deg, #fff 100%, #fff 0);
    background-position: 0 49px;
    background-size: 100%;
    background-repeat: no-repeat;
    color: #fff;
    display: inline;
    transition: all .4s ease;
    text-decoration: none;
}

.underline-white:hover{
      background-image: linear-gradient(45deg, #4093d0 100%, #7690ff 0);
    background-position: 0 30px;
    background-repeat: no-repeat;
    color: #fff;
}

.industry-accordion{
    margin: 0 !important;
    
    margin-left: 55px !important;
    max-width: 100% !important;
}

/* Border between sections */
.border-bottom-custom {
    border-bottom: 1px solid #3a3c42;
}
/* Industry Accordion Unique Styling */
.industry-acc-item {
    border-top: 1px solid #333 !important;
    border-bottom: 0 !important;
    margin: 0 !important;
}
.accordion-item.industry-acc-item::before{
  background: none !important;
}

.industry-acc-btn {
    background-color: #0c0d0e !important;
    color: #ffffff !important;
    font-size: 34px !important;
    font-weight: 700;
    border-radius: 0 !important;
    border: none;
    padding: 40px 40px !important;
    box-shadow: none !important;
    transition: background-color 0.3s, color 0.3s;
}

/* State when item is expanded */
.industry-acc-btn:not(.collapsed) {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.industry-acc-body {
    background-color: #ffffff !important;
    color: #000000 !important;
    font-size: 16px !important;
    line-height: 1.6;
    padding: 20px 40px 25px 40px !important;
}

.industry-subtitle {
    color: #888;
    font-weight: 500;
}

.industry-acc-btn:not(.collapsed) .industry-subtitle {
    color: #555;
}
.industry-sticky-wrapper{
  height: 100vh;
}
.industry-icon {
    margin-right: 20px;
    display: inline-block;
}

.industry-acc-btn::after {
    display: none; /* Remove Bootstrap default icon */
}
/* Container Background */
.startup-section {
    color: #ffffff;
    padding: 120px 0 60px 0;
}

/* Typography & Gradient */
.startup-title {
    font-size: clamp(2rem, 5vw, 3.2rem); /* Fluid typography */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

.startup-gradient {
    /* Multi-stop gradient for that sunrise orange/coral look */
    background: linear-gradient(90deg, #0063f5, #4398d7, #0488e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.startup-description {
    font-size: 1.1rem;
    color: #bbbbbb; /* Subdued gray text */
    max-width: 580px;
    line-height: 1.6;
}

/* The Signature Lime Button */
.startup-btn-lime {
    background-color: #fff; /* Neon lime */
    color: #000000;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 18px 35px;
    border-radius: 0; /* Squared edges as per image */
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.startup-btn-lime:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* Image Wrapper */
.startup-image-wrapper img {
    width: 100%;
    filter: brightness(0.8);
}


.webshark-story-section {
  padding-top: 50px;
  padding-bottom: 40px;
}
.standard-section{
  padding-bottom: 60px;
}
.standard-coreitem{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.standard-icon{
  justify-content: center;
}
.webshark-item {
  line-height: normal;
  padding-top: 20px;
  padding-bottom: 20px;
}
.webshark-item .text-muted{
  font-size: 20px;
    margin-left: 20px !important;
}

/* Specific Purple-Blue Gradient Headline */
.story-headline {
    font-size: 54px;
    background: linear-gradient(to right, #9067e8 30%, #5d00fb 60%, #8952ff 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 600;
    padding-right: 30px;
    padding-top: 20px;
    animation: gradientMove 4s linear infinite;
}
@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.standard-heading{
      font-size: 22px;
    border-bottom: 1px solid #3a3c42;
    padding-bottom: 15px;

}
/* Acronym List Styling */
.webshark-list {
    font-size: 36px;
    font-weight: 700;
    padding-left: 25px;
}

.web-letter {
    color: #4192d1; /* Lime Green accent */
    margin-right: 2px;
}

.text-muted {
    color: #888 !important;
    font-weight: 400;
    font-size: 1rem;
}

/* Accordion Sticky Image Panel */
.industry-sticky-panel {
    background-color: #000;
    overflow: hidden;
}

.object-fit-cover {
    object-fit: cover;
}
.industry-home{
  padding-top: 120px;
}
.industry-homesubheading{
  padding-top: 60px;
  font-weight: 600;
}
.industry-homeheading{
  font-size: 48px;
    background: linear-gradient(to right, #8a51fe, #628aff, #36cfff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 600;
    line-height: normal;
    padding-right: 30px;
    padding-top: 15px;
}
.industry-img-panel {
    object-fit: cover;
    padding-bottom: 50px;
    width: 100%;
    height: 100%;
    padding-top: 50px;
}
/* Icon styling */
.icon-accent {
    opacity: 0.8;
}

.expert-area {
  margin-top: 100px;
  margin-bottom: 70px;
}

.expert-heading {
  font-size: 95px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 30px;
}

.expert-card {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  width: calc(calc((100% - 11 * 2vw) / 12) * 3 + 2vw * 2);
  color: #000;
  aspect-ratio: 314 / 438;
  transform-style: preserve-3d;
  font-size: 1.3vw
}

.expert-card-front {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25em 1.875em;
  position: absolute;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  border-radius: .8em;
  background: #fff;
}

.expert-card-back {
  position: absolute;
  height: 100%;
  width: 100%;
  backface-visibility: visible;
  background: #fff;
  background-image: url(../img/home/cardback.png);
  background-size: contain;
  border-radius: .8em;
  background-repeat: no-repeat;
  transform: rotateY(0deg)
}


.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
  pointer-events: auto;
}


/* Style the front side (fallback if image is missing) */

.flip-card-front {
  background-color: #fff;
  color: #000;
  text-align: center;
  height: auto;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  transform: rotateY(180deg);
}

.flip-card-front p {
  font-size: 15px;
  text-align: left;
  font-weight: 400;
}

.flip-card-back {
  background-color: #fff;
  color: black;
  background-image: url(../img/home/cardback.png);
  background-size: contain;
  border-radius: 10px;
  background-repeat: no-repeat;

  height: 100%;
  /* change the below */
}

.flip-row {
  position: relative;
  height: 650px;
}

.flip-cards {
  display: flex;
  margin-top: 150px;
  margin-bottom: 300px;

}

.front-title-text {
  font-size: 44px;
  font-weight: bold;
  font-style: normal;
  text-align: right;
  line-height: 32px;
  vertical-align: top;
}

.flip-card-front p:not(:last-child):before {
  content: ".......................................";
  position: absolute;
  letter-spacing: .125em;
  color: var(--color-blue);
  opacity: .2;
  margin: 16px -1px;
}

.flip-card {
  position: absolute;
  top: 60%;
  left: 25%;
  transform: translate(50%, -50%);
  width: 300px;
  height: 420px;
  animation-name: my-animation;
  animation-duration: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes my-animation {
  from {
    top: 60%;
  }

  to {
    background-color: #33475b;

    top: 70%;
  }
}

/* This container is needed to position the front and back side */

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 1.8s;
  transform-style: preserve-3d;
}

.front-title {
  text-transform: uppercase;
  text-align: left;
  font-size: 28px;
  margin-bottom: 15px;
  padding-left: 5px;
  font-weight: 500;
}

.card-row {
  height: 60px;
}

.bottom .front-title {
  margin: 15px 0 0 0;
  transform: rotate(180deg);
}

.bottom .front-title-text {
  margin: 0;
  line-height: 58px;
  transform: rotate(180deg);
}

.work-img:hover {}



.tw-footer {
  position: relative;
  z-index: 2;
  padding: 75px 0 0;
  border-top: 1px solid #ffffff2e;
}

.tw-footer.footer-top-space {
  padding: 75px 0 0
}

.tw-footer .contact-us {
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 80px
}

.tw-footer .contact-us .contact-info {
  margin-left: 50px
}

.tw-footer .contact-icon i {
  font-size: 24px;
  top: -15px;
  position: relative;
  color: #2882c3
}

.tw-footer-info-box {
  position: absolute;
  top: -122px;
  background: #202020;
  padding: 40px;
  z-index: 2
}

.tw-footer-info-box .geobin_widget h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 25px
}

.tw-footer-info-box .textwidget p {
  margin: 26px 0 32px
}

.tw-footer-info-box .footer-social-link ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%
}

.tw-footer-info-box .footer-social-link li {
  display: inline-block;
  margin-bottom: 0;
  margin-top: 8px
}

.tw-footer-info-box .footer-social-link a i {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  background: #000;
  margin-right: 5px;
  color: #fff
}

.tw-footer-info-box .footer-social-link a i.fa-facebook {
  background-color: #3B5998
}

.tw-footer-info-box .footer-social-link a i.fa-twitter {
  background-color: #55ACEE
}

.tw-footer-info-box .footer-social-link a i.fa-google-plus {
  background-color: #DD4B39
}

.tw-footer-info-box .footer-social-link a i.fa-linkedin {
  background-color: #0976B4
}

.tw-footer-info-box .footer-social-link a i.fa-instagram {
  background-color: #31709d
}

.tw-footer-info-box .footer-social-link a i.fa-youtube {
  background-color: #dd4b39
}

.tw-footer-info-box .footer-social-link a i.fa-pinterest-p {
  background-color: #B7242A
}

.footer-awarad {
  margin-top: 335px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.footer-awarad p {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-left: 20px;
  padding-top: 15px
}

.footer-info-text {
  margin: 26px 0 32px
}

.footer-left-widget {
  padding-left: 80px
}

.footer-widget span,
.footer-left-widget span,
.footer-widget .section-heading {
  margin-bottom: 35px
}

.footer-widget h3 {
  font-size: 24px;
  color: #fff;
  position: relative;
  margin-bottom: 15px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content
}

.footer-widget ul {
  width: 50%;
  float: left;
  margin: 0;
  padding: 0
}

.footer-widget li {
  margin-bottom: 18px;
  list-style: none
}

.footer-widget p {
  margin-bottom: 27px
}

.footer-widget a {
  color: #878787;
  -webkit-transition: all 0.3s;
  transition: all 0.3s
}

.footer-widget a:hover {
  color: #2882c3
}

.footer-widget:after {
  content: "";
  display: block;
  clear: both
}

.star-section {
  background: #202020;
  padding: 20px 60px;
  margin: 40px 0 0 0;
}

.star-img {
  padding: 0;
  width: 50%;
  display: inline-block;
}

.star-img img {
  padding: 0 10px 0px 0px;
  width: 100%;
  cursor: pointer;
}

.star-text i {
  color: #3F93D0;
  padding: 5px 15px;
}

.star-text {
  color: #fff;
  display: inline-block;
  width: 40%;
  vertical-align: middle;
  border-right: 1px solid;
  margin-right: 0;
}

.rating-listt {
  overflow: auto;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  margin: 0;
}

.rating-listt li:last-child .star-text {
  border: none;
}

.country-list {
  padding-left: 40px;
}

.country-list .head {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
}

.connect-head .head {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
}

.newsocial,
.newflag {
  padding: 0;
}

.newflag li img {
  width: 100%;
}

.newsocial li a {
  color: #fff;
  padding: 0 12px;
  line-height: 40px;
}

.newsocial li {
  list-style: none;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 8px;
  margin-right: 15px;
  border: 1px solid #757575;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.newflag li {
  list-style: none;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 8px;
  margin-right: 60px;
  border: 1px solid #757575;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  vertical-align: top;
}

.newflag li:last-child {
  list-style: none;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 8px;
  margin-right: 40px;
  text-align: left;
  vertical-align: top;
  width: 11%;
  border: none;
  font-size: 18px;
  font-weight: bold;
  vertical-align: top;
}

.newflag li div {
  color: #fff;
  margin-top: 10px;
  line-height: normal;
  text-align: center;
  font-size: 12px;
}

.main-footer-left .fflogo {
  margin-bottom: 20px;
}

.first-links {
  padding-left: 40px;
}

.second-links {
  padding-left: 30px;
}

.footer-linked {
  padding: 5px 0px;
  list-style: none;
}

.footer-head {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-linked li a {
  color: #fff;
  padding: 5px 0;
  display: inline-block;
}

.main-footer-left {
  color: #fff;
}

.footer-middle {
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 50px;
  padding-bottom: 25px;
}

.moving-text {
  background: transparent;
  margin: 45px 0;
}

.econtact-form .form-group .form-control {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #fff;
  background-color: rgb(0 0 0 / 0%);
  background-clip: padding-box;
  border: 0 !important;
  border-bottom: 1px solid #606060 !important;
  border-radius: 0;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.border-button {
  background-color: #fff;
  box-shadow: none;
  border: 2px solid #fff;
  color: #000;
  font-size: 15px;
  padding: 5px 27px;
  margin-top: 20px;
  width: auto;
}

footer {
  color: #fff;
}

.form-control:focus {
  box-shadow: none;
}

.moving-text marquee {
  color: #fff;
  font-size: 530px;
  z-index: -1;
  position: absolute;
  font-weight: 600;
  opacity: 0.09;
  bottom: 0;
  display: none;
}

.copyright {
  padding: 20px 0;
  background: transparent;
  margin-top: 0;
}

h5.newform-heading {
  color: #fff;
  font-size: 23px;
  font-weight: 600;
}

.mainnewfooter {
  color: #fff;
  padding-left: 80px;
  padding-right: 80px;
}

.footernew-top-right {
  padding-left: 40px;
  padding-top: 30px;
}

.footernew-top {
  background: #202020;
  padding: 45px;
}

.footernew-contact .form-group .form-control {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #fff;
  background-color: rgb(0 0 0 / 0%);
  background-clip: padding-box;
  border: 0 !important;
  border-bottom: 1px solid #606060 !important;
  border-radius: 0;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.footernew-contact .border-button {
  background: transparent;
  width: 100%;
  padding: 8px;
  font-weight: bold;
}

.r-padding {
  padding-right: 10px;
}

.country-name {
  color: #fff;
  font-weight: bold;
  margin-left: -15px;
  font-size: 20px;
  text-transform: uppercase;
}

.new-address {
  margin: 15px 0px;
  display: block;
  color: #fff;

}

.new-email,
.new-phone {
  color: #b7afaf;
}

.new-email .fa {
  margin-right: 15px;
}

.new-phone .fa {
  margin-right: 15px;
}

.new-phone div {
  color: #fff;
  font-weight: bold;
}

.new-phone span {
  margin-bottom: 15px;
  display: block;
  color: #fff;
}

.new-phone.uk span {
  opacity: 0;
}

.new-phone.us span {
  opacity: 0;
}

.footernew-top-p-1 {
  border-top: 1px solid #777;
  padding-top: 25px;
  margin-top: 15px;
}

.rating-listt li {
  list-style: none;
  display: inline-block;
  width: auto;
}

@media only screen and (max-width: 1181px) {
  .mainnewfooter {
    padding-left: 45px;
    padding-right: 45px;
  }

  .footer-middle {
    padding-left: 45px;
    padding-right: 45px;
  }

  .star-img {
    padding: 0;
    width: 46%;
    display: inline-block;
  }

  .star-img img {
    padding: 0 20px 0px 0px;
    width: 100%;
  }

  .star-text {
    color: #fff;
    display: inline-block;
    width: 40%;
    vertical-align: middle;
    border-right: 1px solid;
    margin-right: 25px;
  }

  .newflag li {
    margin-right: 30px;
    margin-bottom: 25px;
  }

  .newflag li:last-child {
    width: 30%;
  }

  .star-section {
    padding: 20px 30px;
  }
}

@media only screen and (max-width: 769px) {

  .first-links,
  .second-links,
  .third-links {
    display: none;
  }

  .rating-listt {
    overflow: auto;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    padding: 10px;
  }

  .newflag li:last-child {
    width: 100%;
  }

  .new-address {
    margin: 15px 0px 25px 0px;
  }

  .newflag li:last-child div {
    text-align: left;
  }

  .newflag li {
    margin-right: 30px;
  }

  .mainnewfooter {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footernew-top-right {
    padding-left: 0px;
  }

  .footernew-top-right .pt-4 {
    padding-top: 0px !important;
  }

  .moving-text {
    margin: 20px 0;
  }

  .footer-middle {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .first-links {
    padding-left: 15px;
  }

  .second-links {
    padding-left: 15px;
  }

  .country-list {
    padding-left: 15px;
  }

  .newflag li {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 15px;
    width: 35px;
    height: 35px;
  }

  .newflag li:last-child {
    margin-top: 18px;
  }

  .star-section {
    margin: 20px 0;
    padding: 5px 15px;
  }

  .star-img {
    width: 118px;
    margin: 0;
  }

  .star-img img {
    padding: 0;
    width: 100%;
    display: block;
  }

  .star-text {
    width: auto;
    margin: 7px 25px 0px 10px;
    height: 75%;
    vertical-align: top;
    padding-right: 15px;
  }

  .star-text i {
    padding: 0px 5px;
  }

  .copyright {
    padding: 10px 0;
  }

  .moving-text marquee {
    display: none;
    padding: 240px;
    font-size: 600px;
  }
}

.portfolio__text {
  text-align: center;
  font-size: 90px;
  font-weight: 700;
  color: #fff;
  opacity: 1;
  padding-bottom: 30px;

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio__text {
    font-size: 110px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__text {
    font-size: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .portfolio__text {
    font-size: 45px;
    padding: 50px 0;
            text-align: left;
  }
}

.portfolio__area {
  position: relative;
  background-color: transparent;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 240px;
}

.portfolio__item {
  padding-bottom: 0px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  scale: 0.5;
  opacity: 0;
}

.portfolio__item:nth-child(even) {
  top: 50%;
}

@media only screen and (max-width: 767px) {
  .portfolio__item:nth-child(even) {
    top: 0%;
  }
}

.portfolio__item:hover .portfolio__info {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.portfolio__item .img-box {
  height: 100%;
}

.portfolio__item img {
  width: 100%;
}

.portfolio__info {
  width: 100%;
  padding: 15px 30px;
  border-radius: 5px;
  position: absolute;
  left: 0px;
    bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(60px);
  transform: translateX(60px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  display: flex;
    align-items: center;
    justify-content: space-between;
}
.portfolio-icon{
  border: 1px solid;
    border-radius: 50%;
    padding: 10px 14px;
    line-height: normal;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio__info {
    opacity: 1;
    visibility: visible;
    right: 45px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__info {
    opacity: 1;
    visibility: visible;
    right: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .portfolio__info {
    opacity: 1;
    visibility: visible;
    right: 0px;
    padding: 5px 15px;
    transform: none;
  }
}

.portfolio__info p {
 font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    color: #fff;
    padding-bottom: 3px;
}

.portfolio__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  padding-bottom: 3px;
}

.portfolio__date {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--white);
}

.portfolio__list-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 70px 70px;
  position: relative;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .portfolio__list-1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.portfolio__current {
  font-weight: 300;
  font-size: 60px;
  line-height: 1.1;
  color: var(--black);
}

.portfolio__btn {
  margin-top: 40px;
}

.portfolio__btn#btn_wrapper,
.portfolio__btn.btn_wrapper {
  margin: 0 auto;
}

.bg_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.bg_image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  content: "";
}

.bg_image img {
  width: 120%;
}

.row_bottom {
  margin-top: 80vh;
}

@media only screen and (max-width: 767px) {
  .row_bottom {
    margin-top: 30px;
  }
}

.videoModal .modal-dialog {
  background-color: #000 !important;
  
    width: 70%;
    max-width: 70%;
    transform: translateY(10%) !important;
}

.videoModal .modal-body {
  background-color: transparent;
  padding: 0;
  margin-bottom: -7px;
}

.videoModal .close {
  position: absolute;
  right: -16px;
  background: #fff;
  border: none;
  border-radius: 50px;
  padding: 2px 10px;
  top: -10px;
}


/* ***************************************************************
************************CONTACT US CSS*************************
*************************************************************** */

/* CONTACT US CSS */

.contact-main-banner {
  padding: 120px 0px 60px 0px;
}

.contact-main-heading {
  text-align: center;
  font-size: 120px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffffa1;
  margin-top: 20px;
}

.contact-bedcrumb {
  text-align: center;
  font-family: Inter, sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.0525rem;
  margin-top: -20px;
}

.contact-bedcrumb span {
  margin: 0px 10px;
}

.contact-bedcrumb a {
  color: white;
}

.contact-columns-main {
  padding: 40px 0px;
  background-image: url('../img/contact/contact-us-banner.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: top;
}

.contact-column-card {
  text-align: center;
  border-right: 1px solid white;
  padding: 50px 0px;
}

.contact-column-col:nth-child(3) .contact-column-card {
  border-right: 0px;
}

.contact-column-card-icon {
  margin: 15px 0px;
}

.contact-column-card-desc h3 {
  font-family: Inter, sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.0525rem;
  font-weight: 600;
  margin: 15px 0px 0px 0px;
}

.contact-column-card-desc a {
  color: #ffffff;
}

.contact-column-card-desc p {
  font-family: Inter, sans-serif;
  font-size: 18px;
  letter-spacing: 0.0525rem;
  margin-bottom: 0px;
}

.form-main-sec {
  background-color: white;
}

/* .form-main-sec .container-fluid{
  padding-left: 5%;
  padding-right: 5%;
} */
.clients-col {
  padding: 60px 30px 30px 120px;
}


.client-heading h3 {
  font-size: 35px;
  font-weight: 800;
  letter-spacing: 0.0325rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.col-client-main-box {
  padding: 15px;
}

.col-client-main-box img {
  width: 100%;
}
.home-client-section-heading{
  padding-bottom: 40px;
}
.home-client-section {
        background-color: var(--bg-dark);
        color: #ffffff;
        overflow: hidden;
        padding-top: 60px;
    padding-bottom: 100px;
    }

    .home-client-title {
            font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(to right, #8a51fe, #628aff, #36cfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }

    .highlight-text {
        color: var(--text-accent);
    }

    .home-client-description {
        font-size: 18px;
        line-height: 1.6;
    }

    /* Slider Container Styling */
    .home-client-slider-wrapper {
        background-color: rgba(255, 255, 255, 0.02);
    }

    .home-client-slider-ltr, 
    .home-client-slider-rtl {
        padding: 40px 0;
        pointer-events: none; 
        user-select: none;
    }

    .home-client-slider-ltr .swiper-slide,
    .home-client-slider-rtl .swiper-slide {
        width: auto;
        display: flex;
        align-items: center;
        padding: 0 40px;
        border-right: 1px solid rgba(255,255,255,0.1); /* Divider lines */
    }

    .home-client-slider-ltr img,
    .home-client-slider-rtl img {
        height: 80px; /* Adjust height as needed */
        width: auto;
        filter: brightness(0) invert(1); /* Pure white logos */
        opacity: 0.8;
    }

    /* ESSENTIAL: For smooth constant motion */
    .home-client-section .swiper-wrapper {
        transition-timing-function: linear !important;
        padding: 45px;
    }

.right-col {
  background-color: black;
  padding: 40px 0px 40px 80px;
}

.icon-info-box .icon {
  margin-bottom: 10px;
}

.icon-info-box .icon img {
  width: 40px;
}

.icon-info-box .head {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 0px;
  letter-spacing: 0.0525rem;
  position: relative;
}

.icon-info-box .head::before {
  content: '';
  position: absolute;
  width: 75px;
  height: 3px;
  background-color: white;
  top: 0;
  left: 0;
}

.icon-info-box {
  margin-bottom: 40px;
  margin-top: 30px;
}

.icon-info-box .desc {
  font-size: 16px;
  color: white;
  font-family: 'Inter';
  letter-spacing: 0.06rem;
  font-weight: 300;
}

.icon-info-box .desc .bold {
  font-weight: 600;
}

.icon-information {
  margin-top: 120px;
}

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

.contact-mail-main {
  padding: 50px 0px;
}

/* contact slider */
.clientele-head {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

.slider {
  background: black;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
  height: 150px;
  margin: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.slider::before,
.slider::after {
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide-track {
  animation: scroll 50s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slide {
  width: 200px;
  height: auto;
}

.slide img {
  width: 125px;
  height: 125px;
}

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

  100% {
    transform: translateX(calc(-250px * 7))
  }
}

.map-main {
  padding: 60px 0px;
  position: relative;
}

.map {
  position: relative;
  perspective: 1000px;
  overflow: hidden;
  border-radius: 30px;
}

.map iframe {
  border-radius: 30px;
  transform: translateZ(0);
  transition: transform 0.1s;

}

.map-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 188, 212, 0) 62%, rgba(238, 130, 238, 0) 100%);
}

.container-contact-details {
  padding: 40px;
  background-color: #00000033;
  position: absolute;
  top: 23%;
  left: 10%;
  width: 450px;
  height: auto;
  border-radius: 30px;
  backdrop-filter: blur(5px);
}



/* ***************************************************************
************************ABOUT US CSS*************************
*************************************************************** */


.what-we-do-main {
  padding: 50px 0px;
}

.what-we-do-img .img-anim-round img {
  width: 90%;
}

.what-we-do-head h3 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
}

.what-we-do-desc p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.0525rem;
}

.align-bottom {
  align-items: baseline;
}

.our-mission-main {
  padding: 100px 0px 30px 0px;
}

.our-mission-head {
  position: relative;
}

.our-mission-head h3 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
}

.our-mission-head h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  height: 5px;
  background-color: white;
}

.our-vision-main {
  padding: 60px 0px 30px 0px;
}

.our-vision-head {
  position: relative;
}

.our-vision-head h3 {
  font-size: 60px;
  font-weight: 600;
  text-align: right;
  line-height: 1.2;
}

.our-vision-head h3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 75px;
  height: 5px;
  background-color: white;
}

.our-vision-main .ml-auto {
  margin-left: auto;
}

.w-60 {
  width: 65%;
}

.our-mission-desc {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.0525rem;
  color: #ffffff;
  text-align: left;
}

.our-vision-desc {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.0525rem;
  color: #ffffff;
  text-align: right;
}

.what-we-do-img {
  text-align: center;
  position: relative;
}

.what-we-do-img .img-box .img img {
  width: 60px;
  margin-bottom: 10px;
}

.what-we-do-img .img-box {
  transform: scale(0.8);
}

.textOne {
  font-size: 55px;
  font-weight: 800;
  line-height: 1.2;
}

.textTwo {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

#imgRoundOne {
  position: absolute;
  top: -30%;
}

.our-business-main-head h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  letter-spacing: 0.05rem;
  position: relative;
  margin-bottom: 30px;
  margin-top: 40px;
}

.our-business-main-head h2::before {
  content: "";
  position: absolute;
  width: 75px;
  height: 5px;
  background: #ffffff;
  left: 0;
  top: -10px;
}

.our-business {
  padding: 80px 0px;
  position: relative;
}

.business-card .card-col-one {
  height: 300px;
  padding: 0px 20px;
  overflow: hidden;
  z-index: 2;
}

.business-card .card-col-two {
  height: 150px;
  padding: 0px 20px;
  overflow: hidden;
  margin-top: -30px;
  z-index: 1;
}

.business-card .card-col-two.order-1 {
  margin-top: 0px;
  margin-bottom: -30px;
}

.business-card .card-img {
  border-radius: 30px;
  height: 400px;
}

.business-card .card-img img {
  width: 100%;
  height: 300px;
  border-radius: 30px;
  object-fit: cover;
}

.business-card .card-content {
  height: 150px;
  padding: 50px 20px 30px 20px;
  background-color: #ffffff50;
  border-radius: 0px 0px 30px 30px;
}

.business-card .card-col-two.order-1 .card-content {
  padding: 30px 20px 50px 20px;
  border-radius: 30px 30px 0px 0px;
}

.business-card .card-content h5 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;

}

.our-values-main {
  padding: 40px 0px 0px 0px;
  background-image: url('../img/contact/contact-us-banner.jpg');
  background-size: cover;
}

.our-values-main h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  letter-spacing: 0.05rem;
  position: relative;
  margin-bottom: 30px;
  margin-top: 40px;
}

.our-values-main h2::before {
  content: "";
  position: absolute;
  width: 75px;
  height: 5px;
  background: #ffffff;
  left: 0;
  top: -10px;
}

.values-img img {
  width: 50px;
  margin-bottom: 20px;
}

.our-values-inner {
  padding: 40px 0px;
  justify-content: center;
}

.values-card {
  text-align: center;
  padding: 20px;
}

.value-card-divider {
  width: 100%;
  background-color: white;
  height: 6px;
}

.values-card .value-card-heading h5 {
  font-size: 45px;
  color: white;
  font-weight: 700;
  letter-spacing: 0.06rem;
  margin-bottom: 15px;
}

.value-card-content {
  padding: 15px 30px 30px 30px;
}

.value-card-content p {
  font-size: 16px;
  letter-spacing: 0.05rem;
  line-height: 1.5;
}

.clientele-head.about-us-page {
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 0.06rem;
  margin-bottom: 15px;
  color: white;
  margin: 80px 0px 0px 20px;
  position: relative;
}

.clientele-head.about-us-page::before {
  content: '';
  position: absolute;
  width: 75px;
  height: 5px;
  background-color: white;
  left: 0;
  top: 0;
}






/* animations-what-we-do-section */
#imgRoundOne {
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.what-we-do-img {
  transition: opacity 0.5s ease;
}

/* animations-what-we-do-content */
.what-we-do-content {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.what-we-do-content.hidden {
  transform: translateX(100px);
  opacity: 0;
}

/* About US page */
.about-block {
  padding: 80px 0px;
  height: 600px;
  position: relative;
}

.about-block .text-wrapper {
  display: flex;
  height: 600px;
  width: 50%;
}

.about-block .text-box h1 {
  background: linear-gradient(to right, #7953cd 20%, #00affa 30%, #0190cd 70%, #764ada 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background-size: 500% auto;
  animation: textShine 5s ease-in-out infinite alternate;
  font-size: 120px;
  font-weight: 800;
  text-transform: capitalize;
}

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

  100% {
    background-position: 100% 50%;
  }
}

.about-block .text-box h2 {
  font-size: 44px;
  margin: 20px 0px;
}

.about-block .text-box h2::after {
  content: '|';
  position: absolute;
  color: #FFF;
  font-size: 2.5rem;
  display: inline-block;
  align-items: center;
  margin-top: 4px;
  animation-name: type-cursor;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes type-cursor {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.about-block .text-box p {
  color: gray
}

.about-block .counter-box-wrapper {
  position: absolute;
  right: 0;
  top: 2%;
  height: auto;
  display: flex;
  align-items: end;
  flex-direction: column;
  width: 800px;
}

.about-block .counter-box-wrapper .counter-box {
  padding: 30px;
  background-color: #fff;
  color: #000;
  position: relative;
}

.about-block .counter-box-wrapper .counter-box.one {
  border-radius: 20px 0px 0px 0px;
  width: 40%;
}

.about-block .counter-box-wrapper .counter-box.two {
  width: 50%;
  border-radius: 20px 0px 0px 0px;
}

.about-block .counter-box-wrapper .counter-box.three {
  width: 60%;
  border-radius: 20px 0px 0px 20px
}

.about-block .counter-box-wrapper .counter-box h3 {
  font-size: 42px;
  font-weight: 700;
}

.about-block .counter-box-wrapper .counter-box h4 {
  font-size: 16px;
}

.about-block .counter-box-wrapper .counter-box .about-counter-img-one {
  position: absolute;
  top: -24px;
  bottom: auto;
  left: 55px;
  right: auto;
  transform: rotate(180deg);
}

.about-block .counter-box-wrapper {
  top: 12%;
}

.section-title {
  max-width: 50%;
  margin: 0 auto;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 55px;
  font-weight: 700;
  margin-top: 10px;
}

.section-title p {
  font-size: 18px;
}

.our-value-section {
  padding-bottom: 80px;
}

.our-value-section .our-value-item {
  border-radius: 20px;
  background-color: #fff;
  color: #000;
  text-align: center;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.our-value-section .our-value-icon-wrap {
  width: 90px;
  height: 90px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #000;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.our-value-section .our-value-left {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: -24px;
  right: auto;
}

.our-value-section .our-value-right {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: -25px;
}

.our-value-section img {
  filter: invert(1)
}

.our-value-section .our-value-item h5 {
  font-size: 26px;
  font-weight: 700;
}

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

.feature-section .feature-item {
  background-color: #fff;
  padding: 50px;
  border-radius: 20px;
  color: #000
}

.feature-section .feature-title-wrap {
  margin-bottom: 30px;
}

.feature-section .feature-content {
  gap: 40px
}

.feature-section .feature-image {
  height: 80px;
  width: 80px;
  transform: rotate(14deg);
}

.feature-section .feature-content-wrap {
  position: relative;
}

.feature-section .feature-content-wrap .right-feature-title {
  width: 80%;
  margin-left: auto;
}

.feature-section .feature-content-wrap h2 {
  text-align: right;
  font-size: 55px;
}

.feature-section .feature-content-wrap .btn {
  transition: .3s;
  display: flex;
  gap: 10px;
  padding: 10px 20px;
  margin: 50px 0px;
  width: 30%;
  border-radius: 50px;
  margin-left: auto;
  border: none;
}

.feature-section .feature-content-wrap .btn:after {
  content: ""
}

.feature-section .feature-content-wrap .btn.btn-white {
  background: #fff;
  color: #000;
}

.feature-section .feature-content-wrap .btn img {
  filter: invert(1);
  transition: .3s;
}

.feature-section .feature-content-wrap .btn:hover img {
  transform: rotate(70deg);
}

.feature-section .feature-content-wrap .btn:hover {
  background: #dcdcdc;
}

.feature-section .feature-image-wrap {
  text-align: right;
  position: relative;
  overflow: hidden;
}

.feature-section .feature-right-image {
  width: 550px;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
}

.feature-section .feature-decoration-shape {
  position: absolute;
  bottom: -1px;
  right: -1px;
}

.feature-section .feature-video-position {
  cursor: pointer;
  position: absolute;
  top: auto;
  bottom: -40px;
  left: 150px;
  right: auto;
}

.feature-section .feature-video-rounded {
  width: 150px;
  height: 150px;
  background-color: #1a1a1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.feature-section .feature-video-rounded .feature-video-image {
  position: absolute;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.feature-section .feature-play-icon {
  position: absolute;
}

.feature-section .left_sec,
.feature-section .right_sec {
  width: 50%;
}

.feature-section .feature-content-wrap {
  position: sticky;
  top: -360px;
}

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

.client-section .client-item-background {
  padding: 150px 200px 100px;
  border-radius: 20px;
  position: relative;
  background-color: #fff;
  color: #000;
}

.client-section .client-item-background .section-title {
  max-width: 100%;
  ;
}

.client-section .client-decoration-two,
.client-section .client-decoration-one {
  filter: brightness(0%);
}

.client-section .grid-client {
  grid-template-rows: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr 1px 1fr;
  margin-bottom: 150px;
}

.client-section .contact-detail-wrap {
  max-width: 60%;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: right;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  display: flex;
}

.client-section .contact-detail-wrap h3 {
  font-size: 32px;
  font-weight: 700;
}

.client-section .client-item img {
  width: 100%;
}

.client-section .client-item.client-divider-bottom {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.client-section .client-item {
  padding: 40px 30px;
}

.client-section .client-divider {
  width: 2px;
  height: 100%;
  background-color: #000;
  opacity: .1;
}

.client-section .client-decoration-one {
  height: 250px;
  position: absolute;
  top: auto;
  bottom: -1px;
  left: -1px;
  right: auto;
}

.client-section .client-decoration-two {
  height: 150px;
  position: absolute;
  bottom: auto;
  left: auto;
  height: 200px;
  top: -20px;
  right: -38px;
}

.button-white-icon {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-radius: 50px;
  background-color: #000;
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .3s ease-in-out;
  display: flex;
}

.button-white-icon img {
  filter: invert(1);
  transition: .3s;
}

.button-white-icon:hover img {
  transform: rotate(40deg);
}

.button-white-icon:hover {
  color: #fff
}

.talk-impact {
  padding: 80px 0px;
}

.talk-impact .stats-btn {
  margin-top: 40px;
}

.talk-impact .stats-btn .btn {
  padding: 15px 40px;
  background-color: #fff;
  color: #000;
  border: none
}

.talk-impact .section-heading p {
  font-size: 18px;
}

.talk-impact .section-heading h3 {
  font-size: 3.625rem;
}

.talk-impact .box-right {
  gap: 40px
}

.talk-impact .box-right .colm {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.talk-impact .box-right .item-card {
  text-align: center;
  font-size: 1.67rem;
  grid-column-gap: 6.25rem;
  grid-row-gap: 2.10rem;
  border: 1px solid #fff;
  border-radius: 100vw;
  flex-direction: column;
  justify-content: space-between;
  width: 22.22rem;
  padding: 2.22rem 2.08rem 8.47rem;
  display: flex;
}

.talk-impact .box-right .item-card h3 {
  color: #000;
  font-size: 6.25rem;
}

.talk-impact .box-right .item-circle {
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.life-webshark-block {
  padding: 80px 0px;
  position: relative;
  background-color: #fff;
  color: #000;
  z-index: 1;
}

.life-webshark-block .img-box {
  border-radius: 20px;
  overflow: hidden;
  height: 200px;
}

.life-webshark-block .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.life-webshark-block .custom-container {
  margin: 0 auto;
  max-width: 920px;
}

.testimonial-slider {
  padding: 60px 0px;
}

.testimonial-slider .testimonial-marquee-item {
  color: #fff;
  width: 100%;
  height: 100%;
  grid-column-gap: 100px;
  grid-row-gap: 80px;
  border-radius: 20px;
  background-color: #00000059;
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  padding: 50px;
  display: flex;
  border: 1px solid #ffffff29;
}

.testimonial-slider .testimonial-image-wrap {
  z-index: 1;
  background-color: transparent;
  border-radius: 100%;
  align-items: center;
  display: flex;
}

.testimonial-title {
  font-size: 24px;
}

.testimonial-author {
  display: flex;
  gap: 20px;
  align-items: center;

}

.testimonial-slider .testimonial-image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 100%;
}

.testimonial-slider .shape-decoration-four {
  z-index: 0;
  height: 120px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: -2px;
  filter: brightness(0%);
}

.testimonial-slider .testimonial-marquee-item.top-margin {
  margin-top: 40px;
}

.testimonial-slider .mySwiper {
  margin-bottom: 50px;
  margin-top: 40px;
}

.testimonial-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.get-in-touch {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  border-top: 1px solid #eeeeee57;
  border-bottom: 1px solid #eeeeee57;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  overflow: hidden;
}

.get-in-touch .marquee-title {
  margin-bottom: 0;
  font-size: 65px;
  white-space: nowrap;
}

.get-in-touch .marquee-arrow-wrap {
  width: 75px;
  height: 75px;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.get-in-touch .marquee-arrow-icon {
  height: 30px;
  filter: brightness(0%);
}

.get-in-touch .footer-marquee-item {
  gap: 50px;
  align-items: center;
  text-decoration: none;
  display: flex;
  color: #fff !important;
  justify-content: space-evenly;
}

.cta_btn .marquee-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 40px;
  text-align: center;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-decoration: none;
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  -ms-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
  z-index: 1;
  z-index: 1;
  width: 160px;
  letter-spacing: 1.5px;
  color: #16171a;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-left: 10px;
  text-transform: uppercase;
  border: 1px solid var(--cta-marquee-border);
  margin-right: 10px;
  margin-top: 8px;
}

@media (max-width:991.98px) {
  .marquee-button {
    margin-left: 22px;
  }
}

.marquee-button:after,
.marquee-button:before {
  -webkit-animation: marquee 6s linear infinite;
  animation: marquee 6s linear infinite;
  content: attr(data-marquee-text);
  line-height: 40px;
  position: absolute;
  top: 0;
  background: url("https://webshark.b-cdn.net/webshark2026/img/header/icon-email.svg") no-repeat 0;
  width: 95%;
  will-change: transform;
  z-index: 2;
  padding-left: 5px;
  background-size: 18px;
  height: 40px;
  color: #000;
}

.marquee-button:before {
  left: 0;
}

.marquee-button:after {
  left: 100%;
}

.marquee-button .label {
  opacity: 0;
  pointer-events: none;
}

.marquee-button .bg {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity .3s ease;
  width: 100%;
  z-index: 1;
}

.marquee-button:hover .bg {
  opacity: 1;
  background: #3f92cf;
}

.marquee-button:hover:before,
.marquee-button:hover:after {
  filter: grayscale(1) invert(1);
}

@media (prefers-reduced-motion:reduce) {

  .marquee-button:after,
  .marquee-button:before {
    -webkit-animation: none;
    animation: none;
  }
}

@media (prefers-reduced-motion:reduce) {
  .marquee-button__background {
    transition: none;
  }
}

@-webkit-keyframes marquee {
  0% {
    transform: translateZ(0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes marquee {
  0% {
    transform: translateZ(0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

/* Contact US Page */
html[data-theme="light"] .contact-main-block {
  background-color: #fff !important;
}

.contact-main-block {
  padding-bottom: 80px;
  padding-top: 80px;
}

.contact-main-block .custom-container {
  max-width: 80%;
  margin: 0 auto;
  border: 1px solid #404040;
  padding: 60px 80px;
  border-radius: 30px;
}

.contact-main-block .form-heading h2 {
  font-size: 76px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-title)
}

.contact-main-block .form-heading p {
  margin-bottom: 48px;
  display: block;
  color: var(--color-para);
  opacity: .96;
  font-size: 18px;
}

.contact-main-block .form-floating .form-control {
  background-color: transparent;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid #45474e;
  padding: 4px 0px;
  box-shadow: none;
  font-size: 26px;
  color: var(--color-para)
}
.contact-textarea-label{
  left: 20px !important;
}
.contact-main-block .form-floating label {
  font-size: 26px;
  opacity: .5;
  padding: 0px;
  top: 15px;
  transition: .5s;
  color: var(--color-para)
}

.contact-main-block .form-floating>.form-control:focus~label,
.contact-main-block .form-floating>.form-control.filled~label {
  transform: translateY(-30px) scale(.6);
  color: var(--color-para)
}

.contact-main-block .form-floating>.form-control:focus,
.contact-main-block .form-floating>.form-control.filled {
  border-bottom-color: #3f92cf;
  color: var(--color-para)
}

.contact-main-block .req-astrik {
  color: red;
  font-size: 18px;
  padding-left: 3px;
}

.contact-main-block .form-floating option {
  color: var(--color-para);
  font-size: 18px;
}

.contact-main-block .fsection-heading h3 {
  margin-bottom: 5px;
  margin-top: 40px;
  color: var(--color-title);
  font-size: 36px;
  font-weight: 600;
}

.contact-main-block .gfield_label {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--color-para);
  font-weight: 600;
}

.contact-main-block .gfield_checkbox {
  display: flex;
  flex-wrap: wrap;
}

.contact-main-block .gchoice {
  display: flex;
  color: var(--color-para);
  position: relative;
  padding: 18px 20px 18px 20px;
  width: 50%;
  margin: 0 -1px -1px 0;
  border: 1.5px solid #292b2f;
  align-items: center;
  cursor: pointer;
}

.contact-main-block .gchoice.checked {
  background-color: #2323238f;
  color: #fff;
}

.contact-main-block .gchoice:hover input {
  border-color: #45474e;
}

.contact-main-block .gchoice:hover label {
  opacity: .6;
}

.contact-main-block .gchoice label {
  transition: .3s;
  opacity: 1;
  top: -6px;
  position: initial;
  padding: 0 0 0 16px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  width: 100%;
}

.contact-main-block .gchoice input {
  box-shadow: none !important;
  transition: .3s;
  background-color: transparent;
  width: 20px;
  height: 20px;
  margin: 16px 0 0 0;
  border: 1.5px solid #6d6f78;
  background-color: transparent;
  border-radius: 0 !important;
  border-color: #6d6f78;
  margin-top: 0;
  position: relative;
  z-index: 2;
  appearance: none;
}


.contact-main-block .submit-btn {
  width: 30%;
  padding: 16px;
  background: #fff;
  border: none;
  border-radius: 0;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-main-block .submit-btn:hover {
  background-color: var(--c-action);
  color: var(--color-white) !important;
}

.contact-main-block .form-check label {
  margin-bottom: 48px;
  display: block;
  color: #b7b8c0;
  opacity: .96;
  font-size: 16px;
  padding-left: 40px;
}

.contact-main-block .form-check input {
  transition: .3s;
  background-color: transparent;
  width: 20px;
  height: 20px;
  margin: 16px 0 0 0;
  border: 1.5px solid #6d6f78;
  background-color: transparent;
  border-radius: 0 !important;
  border-color: #6d6f78;
  margin-top: 0;
  position: relative;
  z-index: 2;
  appearance: none;
  box-shadow: none !important;
}

.contact-main-block .form-check {
  padding: 0px;
}

.contact-main-block .collaborators_select {
  grid-column-gap: .875rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(auto-fit, minmax(151px, 1fr));
  grid-auto-columns: auto;
  grid-auto-flow: row;
  place-content: flex-start;
  place-items: center start;
  min-height: auto;
  display: flex;
}

.contact-main-block .checkbox-form_component.checked {
  background-color: var(--button-bg);
}

.contact-main-block .checkbox-form_component.checked .text-size-regular-20 {
  color: var(--button-text);
}

.contact-main-block .collaborators_select .checkbox-form_component {
  grid-column-gap: 0px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: auto;
  height: auto;
  min-height: auto;
  max-height: none;
  margin-bottom: 0;
  padding: 10px 30px;
  font-weight: 500;
  display: flex;
  position: relative;
}

.contact-main-block .collaborators_select .checkbox-input {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  border: 1px solid #0000004d;
  border-radius: 50px;
  flex: 0 auto;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  font-weight: 500;
  transition: background-color 10ms ease-in;
  display: block;
  position: absolute;
  inset: 0%;
}

.contact-main-block .collaborators_select input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.contact-main-block .collaborators_select .text-size-regular-20 {
  z-index: 5;
  color: var(--color-para);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}

.contact-main-block .text-area {
  border: 2px solid #45474e !important;
  height: 200px;
  padding: 20px !important;
  resize: none;
}

.contact-main-block .form-floating>.form-control.text-area:focus~label,
.contact-main-block .form-floating>.form-control.filled.text-area~label {
  transform: translate(-10px, -40px) scale(.6);
}

.contact-main-block .form-floating>.form-control.text-area:focus {
  border-bottom-color: #3f92cf !important
}

.contact-main-block .form-floating>.form-control.text-area,
div.col-md-12:nth-child(10)>div:nth-child(1)>label:nth-child(2) {
  padding-left: 20px;
}

.our-presence {
  padding: 80px 0px;
  color: #fff
}

.our-presence .location {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.our-presence .location_wapper {
  border-bottom: 1px solid var(--border-color-one);
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 40px 0px;
  display: flex;
}

.our-presence .location_wapper:nth-child(1) {
  border-top: 1px solid var(--border-color-one);
}

.our-presence .content-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 30%;
}

.our-presence .content-box.img-box {
  overflow: hidden;
}

.our-presence .content-box.img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Optimization for clip-path animations */
  will-change: clip-path, transform;
}

.our-presence .content-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  overflow: hidden;
  position: relative;
  transition: .3s;
}

.our-presence .location_wapper:hover .content-box img {
  transform: scale(1.06);
}

.our-presence .content-box h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--color-title);
}

.our-presence .content-box p {
  font-size: 18px;
  color: var(--color-title);
}

.our-presence .content-box a {
  color: var(--color-title);
  font-weight: 600;
}

.our-presence .location_wapper .content-box:nth-child(1) {
  width: 25%;
}

.our-presence .location_wapper .content-box:nth-child(2) {
  width: 12%;
}

.our-presence .location_wapper .content-box:nth-last-child(1) {
  width: 14%;
  flex-direction: column;
  align-items: baseline;
}

.email-head {
  font-size: 12px;
}

.emal-block {
  margin-bottom: 20px;
}

/* Portfolio Block */
.banner-text-block {
  position: relative;
}

.banner-text-block .text-box {
  height: 600px;
  display: flex;
  justify-content: center;
  padding-top: 100px;
  flex-direction: column;
}

.banner-text-block .text-box h1 {
  padding-left: 100px;
  font-size: 65px;
  font-weight: 700;
  text-transform: uppercase;
}

.banner-text-block .text-box h2 {
  padding-left: 25%;
  text-align: center;
  text-transform: uppercase;
  font-size: 140px;
  font-weight: 800;
  background: linear-gradient(to right, #7953cd 20%, #00affa 30%, #0190cd 70%, #764ada 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background-size: 500% auto;
  animation: textShine 5s ease-in-out infinite alternate;
}

.banner-text-block video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: -1;
}
.contentbanner-text-block{
  text-align: center;
}
.contentbanner-text-block i{
  font-size: 25px;
    transform: rotate(225deg);
    text-transform: uppercase;
    font-weight: 700;
    line-height: nor
}
.contentbanner-text-block h1{
background: linear-gradient(to right, #7b23d4, rgb(92 89 231), #7b23d4);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradientMove 3s linear infinite;
    padding-bottom: 10px;
        font-size: 56px;
    font-weight: bold;
}
.contentbanner-text-block h2{
          margin: 0 12%;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.2px;
}
.top-banner{
  font-size: 36px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding-bottom: 10px;
    
}

.clients-slider-block .slider_1 {
  background-color: #fff;
}

.clients-slider-block .client-block {
  color: #16171a;
  height: 220px;
  border-left: 1px solid #d6d6db;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.clients-slider-block .client-block img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.clients-slider-block .slider_2 .client-block {
  border-color: #404040;
  border-bottom: 1px solid #404040;
}

.clients-slider-block .slider_2 .client-block img {
  filter: grayscale(100) invert(1);
}

.portfolio-block {
  padding: 80px 0px;
}

.portfolio-block .section-title {
  max-width: 100%;
}

.portfolio-block .section-title h2 {
  font-size: calc(6.25rem + 6.95894vw - 100.27836px);
}

.portfolio-block .alternate-portfolio {
  padding: 50px 0px;
}

.portfolio-block .alternate-portfolio:nth-child(even) {
  background-color: #151414;
  color: #fff;
  text-align: right;
}

.portfolio-block .alternate-portfolio-wrapper h2 {
  font-size: 36px;
}

.portfolio-block .alternate-portfolio-wrapper h3 {
  font-size: 23px;
  opacity: .5;
  line-height: 35px;
  margin-top: 20px;
}

.portfolio-block .alternate-portfolio-wrapper .image-box-main {
  background-color: #eff4fa;
  padding: 80px;
  max-width: 978px;
}

.portfolio-block .alternate-portfolio-wrapper .image-box-main img {
  width: 100%;
}

.portfolio-block .alternate-portfolio:nth-child(even) .image-box-main {
  background-color: #16408f
}

.portfolio-block .alternate-portfolio:nth-child(odd) .image-box-main {
  margin-left: -90px;
  max-width: 992px;
}

.portfolio-block .alternate-portfolio:nth-child(even) .image-box-main {
  margin-right: -90px;
  max-width: 992px;
}

.portfolio-block .alternate-portfolio:nth-child(odd) .text-box h3 {
  padding-right: 100px;
}

.portfolio-block .alternate-portfolio:nth-child(even) .text-box h3 {
  padding-left: 100px;
}

.portfolio-block .text-box {
  padding-top: 70px;
  mix-blend-mode: difference;
}

.section-title.full {
  max-width: 100%;
}

.section-title p.half {
  max-width: 50%;
  margin: 20px auto;
}

.section-title p {
  color: #a6a6a6;
}

.canvas-block {
  padding-top: 40px;
  padding-bottom: 80px;
}

.canvas-block .section-title h2 {
  font-size: 62px;
  text-transform: uppercase;
}

.canvas-block .section-title h3 {
  font-size: 190px;
  text-transform: uppercase;
  background: -webkit-linear-gradient(#4094ce, #3b55a2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.canvas-block .work-listing-blocks {
  position: relative;
  will-change: transform, opacity;
}

.canvas-block .work-listing-blocks .work-listing-image {
  margin-bottom: 24px;

  position: relative;
  transform: scale(1, 1);
  transition: all .3s ease;
  display: flex;
  justify-content: center;
}


.canvas-block .work-listing-desc a {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.48;
}

.canvas-block .work-listing-blocks.listing-pattern3 .work-listing-image .work-listing-wrapper {

  transition: all .3s ease;
}

.canvas-block .work-listing-image .work-listing-wrapper {

  position: relative;
  width: 100%;
  display: flex;
  transition: all .3s ease;
  justify-content: center;
  align-items: center;
}

.canvas-block .work-listing-blocks.listing-pattern3 .work-listing-image .work-listing-wrapper .pattern3-wrapper {
  border-radius: 10px;
  transition: all .3s ease;
  transform: scale(1);
}

.canvas-block .work-listing-image img:hover {
  transform: scale(1.1);
}


.canvas-block .work-listing-blocks.listing-pattern3 .work-listing-image .work-listing-wrapper .pattern3-wrapper img {
  width: 100%;
  object-fit: cover;
  height: 420px;
  border-radius: 10px;
}

.canvas-block .work-listing-blocks.listing-pattern2 .work-listing-image .work-listing-wrapper .pattern2-wrapper {
  min-height: 270px;
  text-align: center;
  width: 100%;
  max-width: 488px;
  transition: all .3s ease;
  transform: scale(1);
}

.canvas-block .work-listing-blocks.listing-pattern2 .work-listing-image .work-listing-wrapper .pattern2-wrapper span::after {
  position: absolute;
  border-radius: 100%;
  left: 10px;
  font-size: 50px;
  content: "...";
  letter-spacing: -2px;
  line-height: 0;
  top: -6px;
}

.canvas-block .work-listing-blocks.listing-pattern2 .work-listing-image .work-listing-wrapper .pattern2-wrapper span {
  background: #ccc;
  height: 17px;
  position: absolute;
  top: -17px;
  left: 0;
  right: 0;
  border-radius: 8px 8px 0 0;
  opacity: .7;
  z-index: 1;
}

.canvas-block .work-listing-blocks.listing-pattern2 .work-listing-image .work-listing-wrapper .pattern2-wrapper img {
  height: 270px;
  transform: translate(-50%, 0);
  border-radius: 0 0 8px 8px;
}

.canvas-block .work-listing-blocks.listing-pattern4 .work-listing-image {
  padding: 80px 36px;
}

.canvas-block .work-listing-blocks.listing-pattern4 .work-listing-image .work-listing-wrapper {

  background-position: center;
  background-repeat: no-repeat;
  background-size: 567px auto;
  transform: scale(1);
  min-height: 318px;
  transition: all .3s ease;
}

.canvas-block .work-listing-blocks.listing-pattern4 .work-listing-image .work-listing-wrapper .pattern4-wrapper {
  min-height: 270px;
  text-align: center;
  position: relative;
  top: -14px;
  width: 430px;
  transition: all .3s ease;
  transform: scale(1);
}

.canvas-block .work-listing-blocks.listing-pattern4 .work-listing-image .work-listing-wrapper .pattern4-wrapper img {
  height: 100%;
  top: 0;
  width: 100%;
  transform: translate(-50%, 0);
}

.canvas-block .work-listing-blocks:hover .work-listing-desc .h4 {
  color: #fff;
  transition: all .3s ease;
}

.canvas-block .work-listing-blocks:hover .work-listing-image {}

.canvas-block .work-listing-blocks.listing-pattern2:hover .work-listing-image .work-listing-wrapper .pattern2-wrapper {
  transform: scale(1.08);
}

.canvas-block .work-listing-blocks.listing-pattern4:hover .work-listing-image .work-listing-wrapper .pattern4-wrapper {
  transform: scale(1);
}

.canvas-block .work-listing-blocks.listing-pattern4:hover .work-listing-image .work-listing-wrapper {
  transform: scale(1.08);
}

.canvas-block [class*="col-"] {
  padding: 60px 20px;
}

.canvas-block .work-listing-blocks.listing-pattern3:hover .work-listing-image .work-listing-wrapper {
  overflow: hidden;
}

.work-listing-desc span {
  display: block;
  color: #a6a6a6;
  font-size: 16px;
  line-height: 28px;
  padding-bottom: 10px;
}

.cursor-view-more {
  padding: 10px 30px;
  background-color: #000;
  position: fixed;
  z-index: 999;
  pointer-events: none;
  font-size: 16px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.cursor-view-more .view-website-btn:after {
  font-family: fontawesome;
  content: "\f061";
  padding-left: 10px;
}

/* Single service Banner */
.single-service-banner {
  padding-top: 120px;
  padding-bottom: 10px
}

.service-form-heading {
  font-size: 28px;
}

.single-service-banner.mobile .graphic-box {
  position: absolute;
  top: 15%;
}

.single-service-banner.mobile .graphic-box img {
  width: 70%;
}

.single-service-banner.mobile .banner-text-block h1 {
  font-size: 124px;
  font-weight: 700;
  line-height: normal;

  /* 1. Define the gradient */

  background: linear-gradient(to right, #7b23d4, rgb(92 89 231), #7b23d4);
  /* 2. Make the background larger so it can move */
  background-size: 200% auto;

  /* 3. Clip the background to the text */
  -webkit-background-clip: text;
  background-clip: text;

  /* 4. Make text transparent so background shows through */
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* 5. Add the animation */
  animation: gradientMove 3s linear infinite;
}

.single-service-banner.aiimg .graphic-box {
    position: absolute;
    top: 11%;
    margin-left: -50px;
}

.single-service-banner.aiimg .graphic-box img {
  width: 100%;
}

/* 1. The Container - Controls size and border radius */
.single-service-banner.softwareimg .graphic-box {
  position: absolute;
  display: inline-block;
  /* Or flex, depending on your layout */
  padding: 2px;
  /* THIS IS THE BORDER THICKNESS */
  border-radius: 20px;
  /* Outer roundness */
  background: #111;
  /* Fallback color */
  overflow: hidden;
  /* Clips the spinning gradient to the box shape */
  z-index: 0;
  top: 16%;
  margin-right: -12px;
}

/* 2. The Spinning Gradient Layer */
.single-service-banner.softwareimg .graphic-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  /* Puts it behind the image */
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;

  background: conic-gradient(transparent, #185de3, #1c4cff, #630eff, transparent 30%, transparent, #2ff, #03e4f8, #0098f3, transparent 70%);
  /* Animation to make it spin */
  animation: rotate-border 4s linear infinite;
}

/* 4. Animation Keyframes */
@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* 3. The Image Styling */
.single-service-banner.softwareimg .graphic-box img {
  display: block;
  height: auto;
  border-radius: 16px;
  /* Inner roundness (must be slightly less than outer) */
  background-color: #000;
  /* Ensures the image has a dark backing */
  position: relative;
  z-index: 1;
}

.video-gradient-wrapper {
  position: relative;
  display: inline-block;
  padding: 5px;
  border-radius: 20px;
  background: #0000002e;
  overflow: hidden;
  line-height: 0;
  width: 190%;
  margin-left: -90px;
  top: 18%;
  border: 1px solid #868686;
}



/* 3. The Video Styling */
.styled-video {
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 16px;
  background-color: #000;
  object-fit: cover;
  filter: brightness(0.8);
  pointer-events: none;
}


.single-service-banner .banner-text-block h1 {
  font-size: 124px;
  font-weight: 700;
  line-height: normal;

  /* 1. Define the gradient */
  background: linear-gradient(to right, rgb(64, 117, 253), rgb(102 244 233), rgb(64, 117, 253));

  /* 2. Make the background larger so it can move */
  background-size: 200% auto;

  /* 3. Clip the background to the text */
  -webkit-background-clip: text;
  background-clip: text;

  /* 4. Make text transparent so background shows through */
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* 5. Add the animation */
}

/* 6. Define the Keyframes */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.single-service-banner .banner-text-block h2 {
  font-size: 36px;
  margin-top: 40px;
}

.single-service-banner .graphic-box {
  padding-left: 30px;
}

.single-service-banner .graphic-box img {
  width: 110%;
}

.get-website-block {
  padding: 60px 0px;
}

.get-website-block .main-img-box {
  height: 100%;
  padding: 0;
  margin-right: 50px;
}

.get-website-block .main-img-box img {
  height: 100%;
  object-fit: inherit;
  border-radius: 2%;
  border: 1px solid #ffffff75;
}

.main-img-box.mobile img {

  border: none;
}

.get-website-block .content-wrapper .row {
  margin-top: 50px;
}

.strate-icon {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  justify-content: center;
}

.strate-icon span {
  display: inline-block;
  height: 42px;
  width: 42px;
  margin-right: 10px;
  padding: 10px;
  border-radius: 50%;
  background: url('../img/services/strait-badge.png') 50% / 50% no-repeat;
  background-color: #4094ce;
  transform: rotate(180deg);
  filter: brightness(100%);
}

.text-block h2 {
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 57px;
}

.text-block p {
  color: #a6a6a6;
  font-size: 20px;
  line-height: 28px;
}

.get-website-block .card-feature-2 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 33px;
  border-bottom: 1px solid #ffffff4a;
}

.get-website-block .card-feature-full:last-child .card-feature-2 {
  border-bottom: none;
}

.get-website-block .card-feature-full1:last-child .card-feature-2 {
  border-bottom: none;
}

.get-website-block .card-feature-2 .card-image {
  transition: .3s;
  height: 64px;
  width: 64px;
  border-radius: 8px;
  margin-right: 19px;
  line-height: 60px;
  min-width: 64px;
  text-align: center;
  background-color: #eceef2;
  padding: 10px;
  display: grid;
  place-items: center;
}

.get-website-block .card-feature-2 .card-image img {
  width: 100%;
  transition: .3s;
}

.get-website-block .card-feature-2 .card-info {
  min-width: 60%;
}

.get-website-block .card-feature-2 .card-info a {
  color: #fff;
  transition: .3s;
}

.get-website-block .card-feature-2 .card-info a:hover {
  color: #4094ce;
}

.get-website-block .card-feature-2 .card-info h3 {
  font-size: 22px;
}

.get-website-block .card-feature-2 .card-info P {
  color: #a6a6a6;
  font-size: 15px;
  line-height: 24px;
}

.get-website-block .card-feature-2:hover .card-image {
  background-color: #4094ce;
}

.get-website-block .card-feature-2:hover .card-image img {
  filter: invert(1);
}


.methodology-block {
  padding: 80px 0px;
}

.methodology-block .row {
  margin-top: 50px;
}

.main-img-box.right {
  margin-left: 50px;
  margin-right: 0px;
}

/* --- The Card --- */
.card-preparing {
  position: relative;
  border-radius: 20px;
  background: #0a0a0a;
  /* Ensure card has background so line tucks behind */
  z-index: 2;
  /* Card sits above the connecting line */
}

.methodology-block .card-preparing .card-image {
  background: linear-gradient(180deg, #4093d024, rgb(236 238 242 / 0%));
  border-radius: 20px;
  margin-bottom: 0;
  overflow: hidden;
  padding: 35px;
  text-align: center;
  position: relative;
}

.methodology-block .card-preparing .card-info h5 {
  margin-bottom: 24px;
  font-size: 26px;
  line-height: 31px;
}

.methodology-block .card-preparing .card-info p {
  width: 85%;
  color: #a6a6a6;
  font-size: 15px;
  line-height: 28px;
  padding-bottom: 35px;
}

/* --- The Magic SVG Border --- */
.border-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  /* Border sits on top of everything */
  overflow: visible;
}

.border-svg rect {
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke-width: 1.5px;
  /* Slightly thicker to see gradient better */
  /* Note: 'stroke' color is handled in HTML via url(#borderGradient) */

  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  /* Hidden by default */
}

/* --- The Connector Line --- */
.connector-line {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 0px;
  height: 1.5px;

  /* Use CSS Gradient here to match the SVG */
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  box-shadow: 0 0 15px rgba(0, 198, 255, 0.6);

  transform: translateY(-50%);
  z-index: 1;
  margin-left: 0px;
}

.news-slider {
  padding: 40px 0px;
}

.news-slider .swiper {
  margin-top: 70px;
}

.news-slider .card-news {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px
}

.news-slider .card-news .card-image {
  margin-bottom: 21px
}

.news-slider .card-news .card-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
  height: 280px;
    object-fit: cover;
  
}

.news-slider .card-news a {
  color: #fff;
  line-height: normal;
}

.news-slider .card-news .card-info :hover a {
  color: #4094ce
}

.news-slider .card-news .card-info p {
  color: #a6a6a6;
  margin: 20px 0px;
}

.heading-4 {
  font-size: 26px;
  font-weight: 600;
}

.btn-learmore-2 {
  transition: .3s;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 40px;
  font-size: 18px;
}

.btn-learmore-2:hover {
  color: #4094ce
}

.btn-learmore-2 span {
  height: 40px;
  width: 40px;
  background-color: #4094ce;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.btn-learmore-2 span:after {
  font-family: fontawesome;
  content: "\f061";
  transform: rotate(-45deg);
  color: #fff
}

.news-slider .nav-btn {
  width: 120px;
  position: relative;
  border: none;
}

.news-slider .swiper-button-next::after,
.news-slider .swiper-button-prev::after {
  content: "\f061";
  font-family: fontawesome;
  font-size: 16px;
  color: #ffffffab;
  transition: .3s;
}

.news-slider .swiper-button-prev::after {
  transform: rotate(180deg);
}

.news-slider .swiper-button-next,
.news-slider .swiper-button-prev {
  transition: .3s;
  border: 1px solid #ffffffab;
  width: 40px;
  height: 40px;
  padding: 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.news-slider .swiper-button-next:hover,
.news-slider .swiper-button-prev:hover {
  background-color: #fff;
}

.news-slider .swiper-button-next:hover:after,
.news-slider .swiper-button-prev:hover:after {
  color: #000;
}

.featured-work-slider .card-news .card-info p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-work-slider .card-news .card-info .module {
  text-transform: uppercase;
  color: #fff;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.protection-block {
  padding: 80px 0px;
}

.protection-block .text-box h2 {
  font-size: 48px;
  line-height: 57px;
}

.protection-block .text-box p {
  color: #a6a6a6;
  font-size: 18px;
  line-height: 28px;
}

.protection-block .cta_btn {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 20px
}

.protection-block .cta_btn .btn {
  margin: 0px;
}

.protection-block .cta_btn .btn-learmore-2 {
  margin: 0px;
  color: #fff
}

.protection-block .singleCourseTesti .card {
  background: transparent;
  padding-left: 40px;
  padding-top: 50px;
}

.protection-block .singleCourseTesti .card:before {
  content: "\f10d";
  font-family: fontawesome;
  position: absolute;
  font-size: 40px;
  top: 0px;
  left: 0;
}

.protection-block .singleCourseTesti .card .comment {
  font-size: 18px;
  margin-bottom: 30px;
}

.protection-block .singleCourseTesti .card .company-logo {
  filter: invert(1);
  width: 100px;
}

.protection-block .singleCourseTesti .card .author-img {
  width: 50px;
  height: 50px;
}

.protection-block .singleCourseTesti .card a {
  color: #fff;
  display: block;
  font-weight: 600;
}

.protection-block .singleCourseTesti .card p {
  font-size: 14px;
}

.faq-block {
  padding: 80px 0px;
}

.faq-block .text-block p {
  font-size: 18px;
  margin: 0 240px;
}

.faq-block .text-block a {
  color: #4094ce;
  font-weight: 600;
}

.home-accordion {
  max-width: 100% !important;
}
.home-accordion .accordion-button{
  font-size: 20px;
}
.faq-block .accordion .accordion-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #2d2c2c8a;
  color: #fff;
  border: none;
}

.faq-block .accordion .accordion-button {
  box-shadow: none;
  background: transparent;
  color: #fff;
  font-weight: 400;
  padding: 20px;
}

.faq-block .accordion .accordion-button:after {
  content: "\2b";
  font-family: fontawesome;
  background: #fff;
  border-radius: 50px;
  color: #000;
  display: grid;
  place-items: center;
  font-size: 14px;
  height: 25px;
  width: 25px;
}

.faq-block .accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.whychooseus-mobile {
  display: none;
      width: 100%;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 35px;
}

@media screen and (min-width:320px) and (max-width:768px) {
  .single-service-banner {
    padding-top: 50px !important;
  }

  .single-service-banner .graphic-box img {
    width: 100%;
  }

  .get-website-block,
  .single-service-banner {
    padding: 50px 0px;
    padding-top: 0px;
  }

  .get-website-block .main-img-box {
    margin-right: 0px;
  }

  .get-website-block .main-img-box .content-wrapper {
    margin-top: 30px;
  }

  .text-block h2,
  .protection-block .text-box h2 {
    font-size: 26px;
    line-height: normal;
    margin-bottom: 18px;
    font-weight: 700;
  }

  .text-block p,
  .protection-block .text-box p {
    font-size: 14px;
    line-height: inherit;
  }

  .get-website-block .card-feature-2 .card-image {
    height: 50px;
    min-width: 50px;

  }

  .get-website-block .card-feature-2 .card-info h3 {
    font-size: 22px;
        line-height: normal;
  }

  .get-website-block .card-feature-2 .card-info P {
    font-size: 14px;
    line-height: inherit;
  }

  .get-website-block .card-feature-2 {
    margin-bottom: 0px;
  }

  .methodology-block {
    padding: 50px 0px;
    padding-top: 0px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title p.half {
    max-width: 100%;
  }

  .section-title p {
    font-size: 14px;
    margin-top: 10px !important;
  }



  .methodology-block .card-preparing {
    margin-bottom: 30px;
  }

  .methodology-block .card-preparing .card-image {
    margin-bottom: 0px;
  }

  .methodology-block .card-preparing .card-info h5 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .methodology-block .card-preparing .card-info p {
    width: 100%;
    font-size: 14px;
    line-height: inherit;
  }

  .protection-block {
    padding: 50px 0px;
    padding-top: 0px;
  }

  .protection-block .img-block {
    margin-bottom: 50px;
  }

  .btn-learmore-2 {
    font-size: 14px;
    margin-top: 20px;
  }

  .protection-block .cta_btn .btn {
    width: 50%;
    font-size: 14px;
  }

  .btn-learmore-2 span {
    height: 30px;
    width: 30px;
  }

  .protection-block .singleCourseTesti .card {
    padding-left: 30px;
    padding-top: 30px;
  }

  .protection-block .singleCourseTesti .card::before {
    font-size: 30px;
  }

  .protection-block .singleCourseTesti .card .comment {
    font-size: 14px;
  }

  .protection-block .singleCourseTesti .card .author-img {
    height: 35px;
    width: 35px;
  }

  .protection-block .singleCourseTesti .card p {
    font-size: 12px;
    margin-bottom: 0px;
  }

  .protection-block .singleCourseTesti .card a {
    font-size: 14px;
  }

  .protection-block .singleCourseTesti .card .company-logo {
    width: 60px;
  }


  .faq-block .text-block p {
    font-size: 14px;
    line-height: 20px;
  }

  .faq-block .accordion {
    margin-top: 20px;
  }

  .faq-block .accordion .accordion-button {
            font-size: 18px;
        line-height: 24px;
        font-weight: 500;

  }

  .faq-block .accordion .accordion-body {
    font-size: 18px;
  }

  .faq-block .accordion .accordion-button::after {
    height: 20px;
    width: 20px;
    font-size: 10px;
    line-height: normal;
  }

  .faq-block,
  .best-technologies {
    padding: 50px 0px;
    padding-top: 0px;
  }

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

  .best-technologies .tech-card {
    padding: 10px;
  }

  .best-technologies .tech-card h3 {
    font-size: 12px;
  }



  .best-technologies .section-title {
    top: 7%;
  }

  .news-slider {
    padding: 50px 0px;
    padding-top: 0px;
  }

  .news-slider .swiper {
    margin-top: 25px;
  }

  .news-slider .card-news .card-info p {
    font-size: 14px;
    margin-bottom: 0px;
  }

  .heading-4 {
    font-size: 20px;
  }

  .news-slider .card-news {
    margin-bottom: 0px;
    border-radius: 0px;
  }

  .news-slider .swiper-button-next,
  .news-slider .swiper-button-prev {
    height: 30px;
    width: 30px;
    padding: 6px;
  }

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



  .econtact-form .form-group .form-control,
  .new-address,
  .main-footer-left,
  .new-email,
  .new-phone {
    font-size: 14px;
  }

  .country-name {
    font-size: 16px;
  }

  .copyright {
    font-size: 10px;
  }

  .newflag li:last-child {
    margin-right: 0px;
  }

  .get-website-block .content-wrapper {
    margin-top: 40px;
  }

  .cta_btn {
    margin-right: 10px;
    display: flex;
  }

  .cta_btn .marquee-button {
    width: 100px;
    font-size: 10px;
    margin-left: 0px;
    height: 32px;
  }

  .marquee-button::after,
  .marquee-button::before {
    line-height: 32px;
    height: 32px;
  }

  .navbar-brand img {
    max-width: auto;
  }

  .navbar .top-header {
    display: none;
  }

  .navbar .navbar-toggler {
    border: 1px solid #6c757d;
    font-size: 10px;
    padding: 7px;
    border-radius: 0px;
  }

  .navbar .navbar-toggler-icon {
    filter: invert(1) brightness(100);
    width: 2em;
    height: 2em;
  }



  .viewOnlyMobile {
    display: block !important;
  }

  .centerOnlyMobile {
    text-align: center !important;
  }
}

/* Tablet View */
@media screen and (min-width:768px) and (max-width:1024px) and (orientation: portrait) {
  .navbar .top-header {
    display: none;
  }

  .mobile-sidebar-logo {
    width: 40% !important;
  }

  .navbar .navbar-toggler {
    font-size: 16px;
  }

  .navbar {
    padding: 10px 30px !important;
  }

  .navbar .navbar-toggler-icon {
    filter: invert(1) brightness(100);
    height: 1em;
    width: 1em;
  }

  .cta_btn {
    margin-right: 0px;
    display: flex !important;
  }

  .single-service-banner .banner-text-block h1 {
    font-size: 60px;
  }

  .single-service-banner .banner-text-block h2 {
    font-size: 24px;
  }

  .get-website-block .main-img-box {
    margin-right: 0px;
    padding: 0px;
  }

  .text-block h2,
  .protection-block .text-box h2 {
    font-size: 28px;
    line-height: 37px;
    font-weight: 700;
  }

  .get-website-block .card-feature-2 .card-image {
    height: 44px;
    min-width: 44px;
    width: 44px;
    margin-right: 20px;
  }

  .get-website-block .card-feature-2 .card-info h3 {
    font-size: 16px;
  }

  .get-website-block .card-feature-2 .card-info P {
    font-size: 14px;
    line-height: 18px;
  }

  .get-website-block .content-wrapper .row>* {
    padding-left: 5px;
    padding-right: 5px;
  }

  .text-block p {
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 25px;
  }

  .section-title p.half {
    max-width: 100%;
  }

  .methodology-block .card-preparing {
    margin-bottom: 40px;
  }

  .methodology-block .card-preparing .card-info p {
    width: 100%;
    font-size: 16px;
  }

  .protection-block .singleCourseTesti .card .comment {
    font-size: 16px;
  }

  .protection-block .singleCourseTesti .card p {
    margin-bottom: 0px;
  }

  .protection-block .singleCourseTesti .card .company-logo {
    width: 70px;
  }

  .best-technologies {
    padding-top: 0px;
  }

  .best-technologies .technologies-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .best-technologies .tech-card {
    padding: 30px;
  }

  .best-technologies .tech-card h3 {
    font-size: 18px;
  }

  .best-technologies .tech-card img {
    max-width: 60%;
  }

  .best-technologies .section-title {
    top: 5%;
  }

  .star-img img {
    width: 130px;
  }

  .moving-text {
    display: none;
  }

  .single-service-banner .graphic-box img {
    width: 100%;
  }

  .single-service-banner {
    padding-top: 150px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .navbar .top-header {
    display: none;
  }

  .navbar .navbar-toggler {
    border: 1px solid #fff;
    font-size: 30px;
    padding: 7px;
    border-radius: 0px;
  }

  .navbar .navbar-toggler-icon {
    filter: invert(1) brightness(100);
    height: 1em;
    width: 1em;
  }

  .cta_btn {
    margin-right: 20px;
    display: flex;
  }

  .single-service-banner .banner-text-block h1 {
    font-size: 60px;
  }

  .single-service-banner .banner-text-block h2 {
    font-size: 24px;
  }

  .get-website-block .main-img-box {
    margin-right: 0px;
    padding: 0px;
  }

  .text-block h2,
  .protection-block .text-box h2 {
    font-size: 28px;
    line-height: 37px;
  }

  .get-website-block .card-feature-2 .card-image {
    height: 44px;
    min-width: 44px;
    margin-right: 10px;
  }

  .get-website-block .card-feature-2 .card-info h3 {
    font-size: 16px;
  }

  .get-website-block .card-feature-2 .card-info P {
    font-size: 14px;
    line-height: 18px;
  }

  .get-website-block .content-wrapper .row>* {
    padding-left: 5px;
    padding-right: 5px;
  }

  .text-block p {
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 25px;
  }

  .section-title p.half {
    max-width: 70%;
  }

  .methodology-block .card-preparing {
    margin-bottom: 40px;
  }

  .methodology-block .card-preparing .card-info p {
    width: 100%;
    font-size: 16px;
  }

  .protection-block .singleCourseTesti .card .comment {
    font-size: 16px;
  }

  .protection-block .singleCourseTesti .card p {
    margin-bottom: 0px;
  }

  .protection-block .singleCourseTesti .card .company-logo {
    width: 70px;
  }

  .best-technologies {
    padding-top: 0px;
  }

  .best-technologies .technologies-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .best-technologies .tech-card {
    padding: 30px;
  }

  .best-technologies .tech-card h3 {
    font-size: 18px;
  }

  .best-technologies .tech-card img {
    max-width: 60%;
  }

  .best-technologies .section-title {
    top: 5%;
  }

  .star-img img {
    width: 130px;
  }

  .moving-text {
    display: none;
  }

  .single-service-banner .graphic-box img {
    width: 100%;
  }

  .single-service-banner {
    padding-top: 150px;
  }
}


/************ Mega Menu Css *****************/

/* Navbar Styles */

.navbar {
  background: #000000a8;
  backdrop-filter: blur(5px);
  border-bottom: 1px solid #272727;
  /* position: sticky; */
  /* top: 0; */
  z-index: 9999;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.nav-link {
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16px;
  padding: 1.5rem 1.2rem !important;
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 6px;
}

.nav-link:hover {
  color: #4093D0 !important;
}

/* Dropdown Icon */
.dropdown-icon {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.dropdown-icon svg {
  width: 100%;
  height: 100%;
}

.mega-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}


/* Expertise Mega Menu Styles */
.expertise-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border-top: 1px solid #272727;
  background: rgba(0, 0, 0, 1);
  height: 85vh;
  backdrop-filter: blur(2px);
  padding: 30px 30px;
  display: none;
  z-index: 1000;
  overflow: auto;
  margin-top: 0;
  border-bottom: 1px solid #272727;
}

.mega-dropdown:hover .expertise-mega-menu {
  display: block;
}

.expertise-container {
  display: flex;
  gap: 30px;
}

/* Left Sidebar */
.expertise-sidebar {
  width: 263px;
  flex-shrink: 0;
}

.expertise-category-card {
  background: rgba(33, 33, 33, 0.83);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  padding: 23px 18px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.expertise-category-card.active {
  background: linear-gradient(180deg, rgba(59, 148, 214, 0.333) 0%, rgba(73, 198, 229, 0.224) 100%);
  border: 2px solid #4094ce;
}

.expertise-category-card:hover {
  border-color: #4094ce;
}

.expertise-category-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18px;
  margin-bottom: 6px;
}

.expertise-category-card p {
  font-size: 12px;
  font-weight: 400;
  color: #bebebe;
  line-height: 20px;
  letter-spacing: 0.12px;
  margin-right: 45px;
  margin-bottom: 0;
}

.expertise-category-card .arrow-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.expertise-category-card .arrow-icon svg {
  width: 100%;
  height: 100%;
}

.expertise-category-card .arrow-icon .arrow-stroke {
  stroke: #fff;
  transition: stroke 0.3s ease;
}

.expertise-category-card.active .arrow-icon .arrow-stroke {
  stroke: #4093D0;
}

/* Main Content */
.expertise-main-content {
  flex: 1;
  padding: 0 30px;
  border-left: 1px solid #373636;
  border-right: 1px solid #373636;
}

.expertise-content-section {
  display: none;
}

.expertise-content-section.active {
  display: block;
}

.expertise-header {
  margin-bottom: 30px;
}

.expertise-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18px;
  margin-bottom: 10px;
}

.expertise-header p {
  font-size: 14px;
  font-weight: 400;
  color: #bebebe;
  line-height: 20px;
  letter-spacing: 0.12px;
  margin-bottom: 15px;
}

.expertise-header .know-more {
  font-size: 12px;
  font-weight: 500;
  color: #4093d0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.12px;
}

.expertise-header .know-more:hover {
  color: #49C6E5;
}

.expertise-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
}

.expertise-service-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.expertise-service-icon {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(64, 147, 208, 0.1);
  border-radius: 8px;
  font-size: 32px;
}

.expertise-service-icon img {
  max-width: 100%;
  height: auto;
}

.expertise-service-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.18px;
  margin-bottom: 8px;
}

.expertise-service-content p {
  font-size: 10px;
  font-weight: 400;
  color: #bebebe;
  line-height: 16px;
  letter-spacing: 0.1px;
  margin: 0;
}

/* Right Sidebar */
.expertise-featured {
  width: 312px;
  flex-shrink: 0;
}

.expertise-featured-section {
  display: none;
}

.expertise-featured-section.active {
  display: block;
}

.expertise-featured h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18px;
  margin-bottom: 30px;
}

.expertise-featured-image {
  width: 100%;
  height: 234px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
  background: #1a1a1a;
}

.expertise-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-featured p {
  font-size: 14px;
  font-weight: 400;
  color: #bebebe;
  line-height: 20px;
  letter-spacing: 0.12px;
  margin-bottom: 20px;
}

.expertise-featured .explore-portfolio {
  font-size: 14px;
  font-weight: 500;
  color: #4093d0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.12px;
}

.expertise-featured .explore-portfolio:hover {
  color: #49C6E5;
}

/* Arrow Icon SVG */
.arrow-right-icon {
  width: 14px;
  height: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
  .expertise-main-content {
    border: none;
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .expertise-container {
    flex-direction: column;
  }

  .expertise-sidebar,
  .expertise-featured {
    width: 100%;
  }

  .expertise-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Hire Mega Menu Styles */
.hire-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border-top: 1px solid #272727;
  background: rgba(0, 0, 0, 1);
  backdrop-filter: blur(2px);
  padding: 30px;
  display: none;
  z-index: 1000;
  margin-top: 0;
  border-bottom: 1px solid #272727;
}

.mega-dropdown:hover .hire-mega-menu {
  display: block;
}

.hire-container {
  display: flex;
  gap: 30px;
}

/* Left Sidebar */
.hire-sidebar {
  width: 263px;
  flex-shrink: 0;
}

.hire-category-card {
  background: rgba(33, 33, 33, 0.83);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  padding: 20px 18px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.hire-category-card.active {
  background: linear-gradient(180deg, rgba(59, 148, 214, 0.333) 0%, rgba(73, 198, 229, 0.224) 100%);
  border: 2px solid #4094ce;
}

.hire-category-card:hover {
  border-color: #4094ce;
}

.hire-category-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18px;
  margin-bottom: 6px;
}

.hire-category-card p {
  font-size: 14px;
  font-weight: 400;
  color: #bebebe;
  line-height: 20px;
  letter-spacing: 0.12px;
  margin-right: 45px;
  margin-bottom: 0;
}

.hire-category-card .arrow-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.hire-category-card .arrow-icon svg {
  width: 100%;
  height: 100%;
}

.hire-category-card .arrow-icon .arrow-stroke {
  stroke: #fff;
  transition: stroke 0.3s ease;
}

.hire-category-card.active .arrow-icon .arrow-stroke {
  stroke: #4093D0;
}

/* Main Content */
.hire-main-content {
  flex: 1;
  padding: 0 30px;
  border-left: 1px solid #373636;
  border-right: 1px solid #373636;
}

.hire-content-section {
  display: none;
}

.hire-content-section.active {
  display: block;
}

.hire-header {
  margin-bottom: 25px;
}

.hire-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

.hire-header p {
  font-size: 14px;
  font-weight: 400;
  color: #bebebe;
  line-height: 20px;
  letter-spacing: 0.12px;
  margin-bottom: 15px;
}

.hire-header .know-more {
  font-size: 14px;
  font-weight: 500;
  color: #4093d0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.12px;
}

.hire-header .know-more:hover {
  color: #49C6E5;
}

.hire-developers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
}

.hire-developer-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.hire-developer-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(64, 147, 208, 0.15);
  border: 1px solid rgba(64, 147, 208, 0.3);
  border-radius: 50%;
}

.hire-developer-icon svg,
.hire-developer-icon img {
  width: 28px;
  height: 28px;
}

.hire-developer-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.18px;
  margin-bottom: 8px;
}

.hire-developer-content p {
  font-size: 10px;
  font-weight: 400;
  color: #bebebe;
  line-height: 16px;
  letter-spacing: 0.1px;
  margin: 0;
}

/* Right Sidebar */
.hire-featured {
  width: 312px;
  flex-shrink: 0;
}

.hire-featured-section {
  display: none;
}

.hire-featured-section.active {
  display: block;
}

.hire-featured-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hire-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hire-featured h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18px;
  margin-bottom: 12px;
  line-height: 26px;
}

.hire-featured p {
  font-size: 14px;
  font-weight: 400;
  color: #bebebe;
  line-height: 20px;
  letter-spacing: 0.12px;
  margin-bottom: 20px;
}

.hire-steps-list {
  margin-bottom: 15px;
}

.hire-step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.hire-step-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  /* background: rgba(64, 147, 208, 0.2);
            border: 2px solid #4093D0; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hire-step-check svg {
  width: 20px;
  height: 20px;
}

.hire-step-item span {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.13px;
}

.hire-featured .hire-now-btn {
  font-size: 13px;
  font-weight: 600;
  color: #4093d0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.13px;
}

.hire-featured .hire-now-btn:hover {
  color: #49C6E5;
}


/* Responsive */
@media (max-width: 1200px) {
  .hire-main-content {
    border: none;
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .hire-container {
    flex-direction: column;
  }

  .hire-sidebar,
  .hire-featured {
    width: 100%;
  }

  .hire-developers-grid {
    grid-template-columns: 1fr;
  }
}

/* Portfolio Mega Menu Styles */
.portfolio-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border-top: 1px solid #272727;
  background: rgba(0, 0, 0, 1);
  backdrop-filter: blur(2px);
  padding: 30px;
  display: none;
  z-index: 1000;
  margin-top: 0;
  border-bottom: 1px solid #272727;
}

.mega-dropdown:hover .portfolio-mega-menu {
  display: block;
}

.portfolio-container {
  display: flex;
  gap: 40px;
}

/* Left Section - Featured Projects */
.portfolio-projects {
  flex: 1;
  padding-right: 30px;
  border-right: 1px solid #373636;
}

.portfolio-header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18px;
  margin-bottom: 10px;
}

.portfolio-header p {
  font-size: 14px;
  font-weight: 400;
  color: #bebebe;
  line-height: 20px;
  letter-spacing: 0.12px;
  margin-bottom: 0;
  max-width: 598px;
}

.portfolio-header .explore-link {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.12px;
  background: #1d6bae;
  padding: 8px 20px;
  border-radius: 0;
  transition: background 0.3s ease;
}

.portfolio-header .explore-link:hover {
  background: #4093D0;
}

.portfolio-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.portfolio-project-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.portfolio-project-image {
  width: 100%;
  height: 175px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #1a1a1a;
  position: relative;
}

.portfolio-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, #000000c9, transparent);
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-overlay p {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 20px;
  letter-spacing: 0.12px;
  margin: 0;
  text-align: left;
}

.portfolio-project-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-project-card:hover .portfolio-project-image img {
  transform: scale(1.1);
}


.portfolio-project-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18px;
  margin-bottom: 8px;
}



/* Right Section - Featured Case Study */
.portfolio-case-study {
  width: 370px;
  flex-shrink: 0;
}

.portfolio-case-study h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18px;
  margin-bottom: 25px;
}

.portfolio-case-image {
  width: 100%;
  height: 195px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
  background: #1a1a1a;
}

.portfolio-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-stats {
  display: flex;
  gap: 50px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #373636;
}

.portfolio-stat-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.portfolio-stat-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-stat-icon svg {
  width: 100%;
  height: 100%;
}

.portfolio-stat-content h4 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.26px;
  margin-bottom: 6px;
  line-height: 1;
}

.portfolio-stat-content p {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 18px;
  letter-spacing: 0.12px;
  margin: 0;
}

.portfolio-case-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.18px;
  margin-bottom: 15px;
  line-height: 26px;
}

.portfolio-case-description {
  font-size: 12px;
  font-weight: 400;
  color: #bebebe;
  line-height: 20px;
  letter-spacing: 0.12px;
  margin-bottom: 20px;
}

.portfolio-case-study .explore-case-link {
  font-size: 12px;
  font-weight: 500;
  color: #4093d0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.12px;
}

.portfolio-case-study .explore-case-link:hover {
  color: #49C6E5;
}

/* Arrow Icon SVG */
.arrow-right-icon {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
  .portfolio-projects {
    border: none;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .portfolio-container {
    flex-direction: column;
  }

  .portfolio-case-study {
    width: 100%;
  }

  .portfolio-projects-grid {
    grid-template-columns: 1fr;
  }
}

/* Category Tag */

/* --- TEXT ANIMATION STYLES (SLOT REEL) --- */


.arrow-icon {
  font-size: 0.8em;
  margin-right: 15px;
  opacity: 0;
  transform: translateX(-20px);
  color: #000;
  display: none;
  line-height: 1;
}

/* THE MASK (Window that shows only 1 letter) */
.char-mask {
  height: 1.2em;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  position: relative;
}

/* THE REEL (Column of 8 letters) */
.char-reel {
  display: flex;
  flex-direction: column;
  will-change: transform;
  /* Start position handled by GSAP */
}

/* INDIVIDUAL LETTERS */
.char-reel span {
  height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: pre;
  /* Preserves spaces */
}

/* --- 2. SLIDER TRACK --- */
/* .cs-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 70px 0 0 0px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  
} */

.cs-track::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/* --- 3. CASE STUDY CARD --- */


/* --- 4. THE HOVER EFFECT (FROM YOUR SCREENSHOT) --- */
.cs-card::before {
  /* REPLACE THIS URL with your actual glow/texture image */
  background-image: url('https://webshark.b-cdn.net/webshark2026/img/home/Dark_animated_w160.webp');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  mix-blend-mode: screen;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  filter: brightness(0.2);
  rotate: y 2deg;
  scale: 1.71 1.25;
  top: 0;
  transition: opacity .3s ease-out, visibility .3s ease-out;
  translate: -30% 10%;
  visibility: hidden;
  width: 100%;
  z-index: 2;
}

/* On Hover: Show the effect */
.cs-card:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Standard Hover Effects */
.cs-card:hover .cs-card__bg {
  transform: scale(1.05);
}

.cs-card {
  position: relative;
  height: 480px;
  /* Fixed height for uniformity */
  border-radius: 20px;
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Subtle border */

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover Effect */
.cs-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

/* Background Image */
.cs-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s ease;
}

.cs-card:hover .cs-card__bg {
  transform: scale(1.05);
  /* Slight zoom on hover */
}

/* Overlay (Gradient) */
.cs-card__overlay {
  position: absolute;
  inset: 0;
  /* Gradient from transparent top to dark bottom */
  background: linear-gradient(to top, #050505 10%, rgba(5, 5, 5, 0.8) 50%, rgba(5, 5, 5, 0.1) 100%);
  z-index: 1;
}

/* Content */
.cs-card__content {
  position: relative;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Logo Fix */
.wp-block-fueled-client-logo svg {
  width: auto;
  height: 24px;
  fill: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.cs-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.cs-desc {
  font-size: 15px;
  line-height: 1.5;
  color: #999;
  /* Muted text */
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Link */
.cs-link {
  text-decoration: none;
  color: #fff;
  /* Dashboard Blue Accent */
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  display:none;
  transition: gap 0.3s ease;
}

.cs-link:hover {
  gap: 12px;
  color: #fff;
}

/* Tags */
.tags-container {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.custom-badge {
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  backdrop-filter: blur(5px);
}

/* --- 2. Header Styling --- */
.faq-badge {
  border: 1px solid #6f42c1;
  color: #d63384;
  /* Pinkish-purple text */
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
  background: rgba(111, 66, 193, 0.1);
  /* Subtle background tint */
}

h2.faq-title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 2.5rem;
}

p.faq-subtitle {
  color: #a0a0a0;
  margin-bottom: 40px;
}

/* --- 3. Accordion Container Styling --- */
.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  /* Hide default bootstrap border */
  max-width: 100%;
  /* Limit width like the video */
  margin: 50px auto;
}

.accordion-item {
  background-color: transparent;
  border: none;
  margin-bottom: 30px;
  /* Space between items */
  position: relative;
  border-radius: 12px;
  background:
    linear-gradient(#000000, #00000096) padding-box, linear-gradient(188deg, #6607c2c7 0%, #1d1d1d 100%) border-box;
  border-top: 1px solid transparent !important;
  border: 1px solid transparent;
  /* Required for the trick to show */
  transition: box-shadow 0.2s ease;
}

.accordion-item::before {
  content: "";
  background-size: cover !important;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: url('https://webshark.b-cdn.net/webshark2026/img/home/Dark_animated_w160.webp');
  opacity: 0;
  transition: opacity 0.2s ease;
  transition-delay: 0.1s;
  pointer-events: none;
  background-position: 0px 45%;
  background-repeat: no-repeat;
  opacity: 0.25 !important;
  background-size: cover !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
}

.accordion-item:first-of-type {
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}

.accordion-item:hover::before,
.accordion-item:has(.accordion-button:not(.collapsed))::before {
  opacity: 1;
}

.accordion-item:hover,
.accordion-item:has(.accordion-button:not(.collapsed)) {
  box-shadow: 0 0 15px rgba(111, 66, 193, 0.2);
}


/* --- 4. Accordion Button (Question) --- */
.accordion-button {
  background-color: transparent !important;
  /* Override bootstrap */
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  padding: 20px 25px;
  box-shadow: none !important;
  /* Remove blue focus ring */
  border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
  color: #ffffff;
  /* Keep text white when open */
}

/* --- 5. Custom Plus Icon --- */
/* Hide default Bootstrap chevron */
.accordion-button::after {
  background-image: none;
  content: "+";
  transform: none;
  /* Reset rotation */
  transition: transform 0.3s ease;
  margin-top: -5px;
  margin-left: auto;
      background: #fff;
    border-radius: 50px;
    color: #000;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: inherit;
    height: 25px;
    width: 25px;
    transform: rotate(0deg);
}

/* Rotate icon when open */
.accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
  /* Turns + into x */
}

/* --- 6. Accordion Body (Answer) --- */
.accordion-body {
  color: #fff;
  padding: 0 25px 25px 25px;
  line-height: 1.6;
  text-align: left;
  font-size: 18px;
  font-weight: 300;
  z-index: 1;
  position: relative;

}

/* --- 2. BLUR CONTAINER --- */
.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(80px);
  /* Smooths the edges */
  pointer-events: none;
}

/* --- 3. BLOB STYLES --- */
.g-blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  /* Blends colors together */
  opacity: 0.8;
  will-change: transform;
}

/* Blob 1: Purple (Starts Left) */
.blob-1 {
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(144, 83, 242, 0.9) 0%, rgba(0, 0, 0, 0) 70%);
  left: -20%;
  /* START OFF LEFT */
  top: 15%;
}

/* Blob 2: Blue (Starts Top) */
.blob-2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgb(89 100 224) 0%, rgba(0, 0, 0, 0) 70%);
  top: -20%;
  /* START OFF TOP */
  left: 20%;
}

/* Blob 3: Orange (Starts Top-Left Corner) */
.blob-3 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(174, 0, 255, 0.7) 0%, rgba(0, 0, 0, 0) 70%);
  top: -10%;
  /* START CORNER */
  left: -10%;
}

/* The Wrapper: Groups Video + Mask and screens them over the blobs */
.knockout-wrapper {
  position: relative;
  width: 100%;
  height:50%;
  /* SCREEN MODE: Makes the black background transparent, showing blobs */
  mix-blend-mode: screen;
  background-color: #000;
  overflow: hidden;
}

/* The Video: Bottom Layer of the Knockout */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
      padding: 26px 5px 11px 1px;;
  object-fit: cover;
}

/* The Mask: Top Layer of the Knockout */
.text-mask {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #000;
    mix-blend-mode: multiply;
    user-select: none;
}

/* The "Window" Text */
.mask-text {
  color: #fff;
  font-size: 188px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

/* --- CLIENT LOGO SLIDER --- */
.home-clientlogo {
  width: 100%;
  padding: 75px 0 0 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%);
}

.home-clientlogo-track {
  display: flex;
  align-items: center;
  gap: 60px;
  /* Space between logos */
  width: max-content;
  /* vital for smooth scrolling */

  /* Infinite Animation */
  animation: scroll-clientlogos 30s linear infinite;
}

/* Hover: Pause animation */
.home-clientlogo:hover .home-clientlogo-track {
  /* animation-play-state: paused; */
}

/* This forces the transition to be constant/linear */
.home-client-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    display: flex;
    flex-direction: row;
    gap: 0px;
}

.home-client-slider{
  padding-top: 60px !important;
}
/* Optional: Ensure logos are vertically aligned */
.home-client-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17%;
}

.home-client-slider .swiper-slide img {
    max-width: 150px; /* Adjust size as needed */
    height: auto;
     filter: grayscale(210%) brightness(400%); /* Optional: makes logos look uniform */
    transition: filter 0.3s;
}

.home-client-slider .swiper-slide img:hover {
    filter: grayscale(0%);
}
/* Individual Logo Item */
.home-clientlogo-item {
  width: 150px;
  /* Fixed width prevents jitter */
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-clientlogo-item img {
  max-width: 100%;
  height: auto;
  /* White/Grayscale Filter for Dark Theme */
  filter: grayscale(210%) brightness(400%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.header-inside-theme{
  display: flex;
  gap: 35px;
}
.home-clientlogo-item img:hover {
  opacity: 1;
  filter: none;
  /* Shows original color on hover */
}

/* --- ANIMATION --- */
@keyframes scroll-clientlogos {
  0% {
    transform: translateX(0);
  }

  100% {
    /* Moves exactly 50% (the width of the first set) */
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex: 0 1 auto;
  max-width: 200px;
  width: 100%;
  margin: 0;
}

.partner-row {
  justify-content: flex-start;
  padding: 20px 0 30px 0;
  align-items: center;
}

/* 3. Image Reset: Ensures images don't overflow */
.zoho-badge {
  display: block;
  max-width: 100%;
  height: auto;
  /* Maintains aspect ratio */
}

.subtext {
  color: #b0b0b0;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

/* --- Moving Gradient Border Card Logic --- */
.stat-card-wrapper {
  position: relative;
  padding: 1px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #008ff552;
  height: 100%;
}


/* The inner content covering the middle */
.stat-card-content {
  position: relative;
  background-color: #00000070;
  padding: 2.5rem 1rem;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Stat Text Styling */
.stat-number {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-flex;
  /* Keeps currency/suffix aligned */
  align-items: baseline;
  line-height: 1;
}

.stat-label {
  color: #888;
  font-size: 1rem;
  margin: 0;
}

/* Digit Animation Container */
.digit-container {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1em;
  /* limit height to one line */
  vertical-align: bottom;
}

.animate-digit {
  display: block;
}

.web-counter {
  padding-top: 100px;
  padding-bottom: 50px;
}

.web-heading {
  font-size: 42px;
  font-weight: 700;
  padding-bottom: 10px;
  margin: 0px 200px;
}


.web-subheading {
  color: #a6a6a6;
  font-size: 16px;
  line-height: 28px;
  margin: 0 240px;
}

.stat-card {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 20px;
}

.gradient-border-bottom {
  background-image: linear-gradient(90deg, #008ff500, #008ff500 0%, #008ff5 50%, #008ff500);
  width: 200px;
  height: 1px;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.gradient-border-top {
  background-image: linear-gradient(90deg, #008ff500, #008ff500 0%, #008ff5 50%, #008ff500);
  width: 200px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
}

.industries-card-custom {
  background-color: #1e1e1e7a;
  /* Darker industries-card background */
  border-radius: 15px;
  padding: 2rem;
  text-align: left;
  height: 100%;
  position: relative;
  overflow: hidden;
  /* Ensure the pseudo-element doesn't spill out */
  border: 2px solid transparent;
  /* Transparent border to maintain layout */
  transition: border-color 0.3s;
  z-index: 1;
  /* Place industries-card content above the pseudo-element */
}

/* The pseudo-element for the gradient border */
.industries-card-custom::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgb(25 120 213), rgb(17 37 148 / 80%), transparent 30%);
  animation: spin 4s linear infinite;
  opacity: 0;
  /* Hidden by default */
  z-index: -1;
  /* Place it behind the industries-card content */
}

/* Show and animate the gradient on hover */
.industries-card-custom:hover::before {
  opacity: 1;
}

.industries-card-custom:hover {
  /* cursor: pointer; */
}

.industries-card-custom:hover::after {
  background: #0d0d0d;
}

/* Inner part of the industries-card to cover the center of the gradient */
.industries-card-custom::after {
  content: '';
  position: absolute;
  inset: 3px;
  /* Creates the border thickness */
  background: transparent;
  /* Match the industries-card background */
  border-radius: 13px;
  /* Slightly smaller radius */
  z-index: -1;
  /* Place it behind content but over the gradient */
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.industries-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #6c63ff;
  /* Example icon color */
  position: relative;
  /* Ensure icon is above ::after */
  z-index: 2;
}

.industries-card-title {
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  /* Ensure title is above ::after */
  z-index: 2;
  font-size: 24px;
}

.industries-card-text {
  color: #a6a6a6;
  font-size: 15px;
  line-height: 24px;
  z-index: 2;
}

img.industries-logo {
  width: 60px;
  filter: invert(1);
  padding-bottom: 25px;
}

.best-technologies {
  padding: 0px 0px;
  position: relative;
  background: transparent;
  /* Added dark bg to match your overlay */
  overflow: hidden;
  /* Essential for marquee */
}

.best-technologies .section-title {
  position: absolute;
  width: 100%;
  top: 7%;
  z-index: 10;
  /* Ensure title sits on top */
  text-align: center;
}

/* Title styling adjustment for visibility */
.best-technologies .section-title h2 {
  color: white;
  font-size: 42px;
  font-weight: 700;
  padding-bottom: 10px;
  margin: 0px 200px;
}

.best-technologies .section-title p {
  color: #a6a6a6;
  font-size: 18px;
  line-height: 28px;
  margin-top: 10px;
}

.best-technologies .tech-card {
  background: #222;
  /* Changed to dark grey to look good on dark bg, or use #eee if you prefer light */
  padding: 40px;
  /* Reduced slightly from 60px to fit 4 lines better, change back to 60px if needed */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  /* Important: Keep card shape consistent in animation */
  width: 250px;
  box-sizing: border-box;
  margin-right: 15px;
  /* Gap between moving cards */
  border-radius: 0px;
}

.best-technologies .tech-card h3 {
  margin-top: 20px;
  color: #fff;
  font-size: 20px;
  white-space: nowrap;
}

.best-technologies .overlay {
  background: linear-gradient(180deg, #000, rgba(236, 238, 242, 0));
  position: absolute;
  top: 0;
  left: 0;
  /* Ensuring placement */
  height: 50%;
  width: 100%;
  z-index: 5;
  pointer-events: none;
  /* Let clicks pass through */
}

.viewOnlyMobile {
  display: none !important;
}

.centerOnlyMobile {
  text-align: left !important;
}


/* --- 2. NEW CSS FOR ANIMATION (REPLACING GRID) --- */

/* Container to push content down below the absolute title */
.marquee-container {
  margin-top: 0px;
  /* Adjust based on title height */
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Gap between the 4 lines */
}

.marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: flex;
  /* Speed of animation */
  animation: scroll 30s linear infinite;
}

/* Direction Modifiers */
.marquee-row.left .marquee-track {
  animation-name: scrollLeft;
}

.marquee-row.right .marquee-track {
  animation-name: scrollRight;
}

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

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

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

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

/* Image sizing inside your card */
.tech-card img {
  height: 120px;
  width: auto;
}

/* --- whychooseus Item (Text) --- */
.whychooseus-section {
  padding-top: 80px;
  padding-bottom: 40px;
}

.whychooseus-item {
  padding: 20px 40px 0px 10px;
  margin-bottom: 20px;
  opacity: 1;
  transition: opacity 0.4s ease;
  position: relative;
  /* Needed for positioning elements inside */
      display: flex;
    gap: 15px;
}

.whychooseus-item.active {
  opacity: 1;
}

.whychooseus-item h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.whychooseus-item p {
  color: #a6a6a6;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}

/* --- THE ANIMATED LINE --- */
.progress-line {
  height: 3px;
  width: 0%;
  /* Start width at 0 */
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  /* Blue gradient line */
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  /* Smooth "ease-out" animation */
}

/* When parent (.whychooseus-item) is active, make line 100% width */
.whychooseus-item.active .progress-line {
  width: 100%;
}

/* --- Image Section --- */
.image-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  /* Fallback color */
}

.whychooseus-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out, transform 0.8s ease;
  transform: scale(1.05);
}

.whychooseus-img.active {
  opacity: 1;
  transform: scale(1);
}

/* --- Main Card Container --- */
.feature-wrapper {
  background-color: #0000003b;
  /* Deep Indigo Background */
  /* Optional Gradient to match screenshot depth */
  background-image: radial-gradient(circle at 0% 0%, #008ff514 0%, #ffffff1f 60%);
  border-radius: 30px;
  padding: 60px 50px;
  color: #fff;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid #ffffff75;
}

.feature-wrapper .subheading {
  color: #2ca8fd;
  font-weight: 500;
  padding-bottom: 5px;
  display: inline-block;
}

p.description {
  margin-bottom: 40px;
  max-width: 90%;
  font-weight: 400;
  color: #a6a6a6;
  font-size: 15px;
  line-height: 24px;
  padding-top: 10px;
}

/* --- Feature Grid (Icons) --- */
.feature-box {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #008ff5a1, #4094ce);
  border-radius: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.icon-circle img {
  width: 50%;
  padding: 0;
}

.feature-text {
  font-weight: 600;
  font-size: 1.05rem;
}


.dashboard-img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.4s ease;
}



/* --- Main Section --- */
.integrations-section {
  padding: 100px 0;
  position: relative;
  height: 100vh;
  /* Very tall to allow long scroll animation */
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../img/services/circle.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.gradient-text {
  background: linear-gradient(90deg, #a855f7, #ec4899, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* --- Container --- */
.orbit-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 400px;
}

/* --- Integration Item --- */
.integration-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 120px;
  z-index: 2;
  transform: translate(-50%, -50%);
  /* Centered on coordinate */
}

/* --- Icon Styling --- */
.icon-box {
  width: 80px;
  height: 80px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.icon-box:hover {
  border-color: #fff;
  background: #1a1a1a;
  transform: scale(1.1);
}

.icon-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.text-content {
  text-align: center;
  opacity: 1;
}

.integration-item span {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}

.item-role {
  font-size: 14px;
  color: #a6a6a6;
  display: block;
  margin-top: 4px;
}

/* Optional: Dashed lines to visualize the rows (remove if not needed) */
.row-guide-top {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.row-guide-bottom {
  position: absolute;
  top: 250px;
  left: 0;
  width: 100%;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.integrations-heading {
  font-size: 42px;
  font-weight: 700;
  padding-bottom: 70px;
  margin: 0px 200px;
  text-align: center;
}

/* Container for icons */
.orbit-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 400px;
  margin-top: 20px;
}

/* The Item Wrapper */
.integration-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 120px;
  z-index: 2;
  transform: translate(-50%, -50%);
}

/* Icon Styling */
.icon-box {
  width: 80px;
  height: 80px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.icon-box:hover {
  border-color: #fff;
  background: #1a1a1a;
  transform: scale(1.1);
}

.icon-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.text-content {
  text-align: center;
  opacity: 1;
}

.integration-item span {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.item-role {
  font-size: 0.8rem;
  color: #6b7280;
  display: block;
  margin-top: 4px;
}

/* Dashed Lines (Optional visual guide) */
.row-guide-top,
.row-guide-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.row-guide-top {
  top: 50px;
}

.row-guide-bottom {
  top: 250px;
}

/* --- Custom Card Styling --- */
.compliance-card {
  background-color: #111111;
  border: 1px solid #222;
  border-radius: 20px;
  height: 180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  text-align: center;
  justify-content: center;

  /* Disable Interaction */
  pointer-events: none;
  user-select: none;
}

.compliance-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.compliance-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #cccccc;
}

/* --- Custom Slider Container (Replaces general .swiper class) --- */
.compliance-slider {
  width: 100%;
  padding: 10px 0;
  margin-bottom: 20px;

  /* Critical styles usually handled by .swiper class */
  overflow: hidden;
  position: relative;
  list-style: none;
  z-index: 1;
}

/* Swiper requires these inner classes to function correctly */
.compliance-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.img-white {
  filter: invert(1);
}

.compliance-card figure img {
  width: 85%;
}

/* --- Tab Navigation (Pills) --- */
.nav-pills .nav-link {
  color: #a1a1aa;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 8px 24px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  padding: 10px 25px !important;
}

.nav-pills .nav-link:hover {
  color: #d9b6ff !important;
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-pills .nav-link.active {
  border: 1px solid;
  color: #d9b6ff !important;
  font-weight: 600;
  background: #00000040;
}

/* --- Integration Card Component --- */
.integration-card {
  display: flex;
  align-items: center;
  background-color: #1212127d;
  /* Card Background */
  border: 1px solid #2a2a2a;
  /* Card Border */
  border-radius: 16px;
  padding: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.integration-card.softwareint img {
  padding: 5px;
  object-fit: contain;
}

.integration-card:hover {
  background-color: #1e1e1e;
  /* Card Hover Background */
  border-color: #404040;
}

/* Left Side: Logo Container */
.logo-container {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  overflow: hidden;
}

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

/* Right Side: Text Content */
.text-container {
  flex-grow: 1;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.card-desc {
  font-size: 0.85rem;
  margin: 4px 0 0 0;
  color: #a1a1aa;
  /* Secondary Text */
}

.ai-integrations-section {
  padding-top: 100px;
  padding-bottom: 120px;
}

/******* Start Ecommerce page css ******************/
/* --- Hero Section Styling --- */
.service-hero-banner {
  position: relative;
  /* Replace with your actual background image URL */
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

.service-hero-heading {
  line-height: normal;

  color: #fff;
  font-size: 44px;
  padding: 10px 0;
  font-weight: 600;
  animation: gradientMove 3s linear infinite;
}

.form-subheading {
  color: #a6a6a6;
}

.card-image {
  height: 100%;
}

/* Ensure content sits above the overlay */
.z-index-2 {
  z-index: 2;
}

/* --- Typography --- */
.ls-1 {
  letter-spacing: 1px;
}

.feature-list li {
  vertical-align: middle;
  align-items: end;
}

.icon-wrapper {
  color: #4094ce;
  font-size: 18px;
  margin-top: 0;
  flex-shrink: 0;
}

/* --- Button Styling --- */
.custom-cta-btn {
  background-color: #4294CF;
  border: none;
  border-radius: 0;
  transition: transform 0.2s ease;
  padding: 10px 20px !important;
  font-size: 14px;
}

.custom-cta-btn:hover {
  /* Lift effect on hover */
  background-color: #0056b3;
}

/* --- Form Styling --- */
.serviceform-card {
  overflow: hidden;
  background: #20202078;
  padding: 45px 30px;
  border-radius: 20px;
  margin-left: 35px;
  border: 1px solid #282828;
}

.serviceform-control {
  display: block;
  width: 100%;
  padding: 10px;
  outline: none;
  margin-bottom: 5px;
  line-height: 1.5;
  color: #fff;
  background-color: rgb(0 0 0 / 0%);
  background-clip: padding-box;
  border: 0 !important;
  border-bottom: 1px solid #606060 !important;
  border-radius: 0;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  font-size: 0.95rem;
}

.serviceform-btn {
  background-color: #fff;
  border: none;
  color: #000;
  border-radius: 0;
}

.serviceform-btn:focus {
  background-color: #fff;

}

.serviceform-label {
  font-size: 0.9rem;
  color: #333;
}

.service-work-slider {
  padding-top: 40px;
  padding-bottom: 80px;

}

.latestWork {
  margin-top: 40px;
}

.card-works img {
  border-radius: 10px;
      height: 309px;
    object-fit: cover;

}


.service-clientlogo-track {
  display: flex;
  align-items: center;
  gap: 60px;
  /* Space between logos */
  width: max-content;
  /* vital for smooth scrolling */

  /* Infinite Animation */
  animation: scroll-clientlogos 30s linear infinite;
}

.service-clientlogo {
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 50px;
}

/* Individual Logo Item */
.service-clientlogo-item {
  width: 170px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #12121291;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ffffff66;
}

.service-clientlogo-item img {
  max-width: 100%;
  height: auto;
  filter: grayscale(210%) brightness(400%);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.service-clientlogo-item img:hover {
  opacity: 1;
  /* Shows original color on hover */
}

/* --- ANIMATION --- */
@keyframes scroll-clientlogos {
  0% {
    transform: translateX(0);
  }

  100% {
    /* Moves exactly 50% (the width of the first set) */
    transform: translateX(-50%);
  }
}

.get-service-block {
  padding-top: 40px;
  padding-bottom: 80px;
}

.service-wrapper {
  padding-left: 20px;
}

.service-head1 {
  font-size: 24px;
}

.service-para {
  color: #a6a6a6;
  margin: 10px 0px;
  padding-bottom: 20px;
}

.service-integrations-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

.solution-section {
  padding-top: 40px;
  padding-bottom: 60px;
}

/* --- 2. Card Container (Renamed to solution-card) --- */
.solution-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
  display: flex;
  height: 100%;
  padding: 2px;
  /* Border thickness */
  transition: all 0.3s ease;
}

/* --- 3. The Moving Gradient Layer --- */
.solution-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgb(25 120 213), rgb(17 37 148 / 80%), transparent 30%);
  animation: spin 4s linear infinite;
  opacity: 0;
  /* Hidden by default */
  z-index: -1;
}

.solution-card::after{
  content: '';
    position: absolute;
    inset: 3px;
    background: transparent;
    border-radius: 13px;

}
.solution-card:hover::after {
  background: #0d0d0d;
}
/* Show the spinning gradient on hover */
.solution-card:hover::before {
  opacity: 1;
}

/* --- 4. The Content Box --- */
.solution-card-content {
  background-color: #1e1e1e7a;
  /* Darker industries-card background */
  border-radius: 15px;
  padding: 2rem;
  text-align: left;
  height: 100%;
  position: relative;
  overflow: hidden;
  /* Ensure the pseudo-element doesn't spill out */
  border: 2px solid transparent;
  /* Transparent border to maintain layout */
  transition: border-color 0.3s;
  z-index: 1;
}


.solution-card-content:hover {
  background-color: #0d0d0d;
}

.solution-card-content p {
  color: #a6a6a6;
  font-size: 15px;
  line-height: 24px;
}

.solution-card-content h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  font-size: 24px;
}

/* --- 5. Icon Styling --- */
.solution-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.solution-icon-box img {
  width: 65px;
  height: 65px;
  filter: brightness(500);
}

.solution-card-content:hover img {
  filter: none;
}

.solution-card:hover .icon-box {
  transform: scale(1.1);
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.small-heading {
  font-size: 22px;
  font-weight: 400;
  padding-bottom: 10px;
  margin: 0px 200px;
}

/* 1. Container Styles */
.animated-border-heading {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

/* 2. Shared Styles for the Lines */
.animated-border-heading::before,
.animated-border-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  /* Length of the line */
  height: 4px;
  /* Thickness of the line */
  border-radius: 4px;
  /* Rounded edges */

  /* The Gradient: Define your colors here */
  background: linear-gradient(90deg, #005Bea, #00C6FB, #005Bea);

  /* Key to animation: Make background larger than the line */
  background-size: 200% 100%;

  /* The Animation */
  animation: shimmer 2s linear infinite;
}

/* 3. Position Left Line */
.animated-border-heading::before {
  left: -170px;
  /* Distance from text */
}

/* 4. Position Right Line */
.animated-border-heading::after {
  right: -170px;
  /* Distance from text */
}

/* 5. The Animation Keyframes */
@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

/* responsive adjustment so lines don't break layout on mobile */
@media (max-width: 768px) {

  #outside-theme{
    display: none;
  }
  .animated-border-heading::before,
  .animated-border-heading::after {
    width: 50px;
    /* Shorter lines on mobile */
    left: -60px;
  }

  .animated-border-heading::after {
    left: auto;
    right: -60px;
  }
}

.about-section {
  padding: 40px 0;
  position: relative;
}

/* --- Text Animation Styling --- */
.reveal-text {
  font-size: 32px;
  line-height: 48px;
  font-weight: 500;
  color: #85868B
    /* Start faded */
  ;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 15px;
  text-align: left;
}

.service-count-section .stat-number {
  font-size: 56px;
}

.service-count-section .stat-label {
  color: #a6a6a6;
  font-size: 14px;
}

.about-section-container {
  border: 1px solid #ffffff42;
  padding: 50px 10px;
  margin: 30px;
  border-radius: 20px;
  background: linear-gradient(45deg, #0000006b, #8446e91a);
}

.reveal-char {
  display: inline;
  /* Keeps text flowing naturally */
  white-space: pre;
  /* Respects spaces so words don't collapse */
  position: relative;
  /* Optional: helps with smooth font rendering during animation */
  will-change: color;
}

/* Ensure the container doesn't shift width */
#scrollText {
  word-wrap: break-word;
}

.service-feature-wrapper {
  position: relative;
  padding-bottom: 40px;
}

/* --- 1. THE PROGRESS RAIL (Fixed Left Border) --- */
.rail-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* The vertical line wrapper */
.progress-rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Gap between the 10 segments */
}

/* Individual Segment */
.rail-segment {
  width: 4px;
  /* Thickness of the line */
  height: 40px;
  /* Height of each dash */
  background-color: #5a5a5a;
  border-radius: 4px;
  transition: all 0.3s ease;
}


/* Active Segment Styling */
.rail-segment.active {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transform: scaleX(1.2);
  /* Make it slightly thicker */
}

/* --- 2. SCROLLING TEXT --- */
.feature-text-section {
  min-height: 80vh;
  /* Space for scrolling */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  opacity: 0.3;
  /* Dim by default */
  transition: opacity 0.5s ease;
}

.feature-text-section.active {
  opacity: 1;
  /* Bright when active */
}

.feature-text-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-text-content p {
  color: #a6a6a6;
  margin: 10px 0px;
  padding-bottom: 20px;
  line-height: 1.7;
}


.visual-card {
  position: absolute;
  width: 90%;
  max-width: 500px;
  aspect-ratio: 16/10;
  background: var(--card-bg);
  border: 1px solid #333;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
}

.visual-card img {
  width: 100%;
  border-radius: 20px;
}

.swiper-container-custom {
  overflow: visible !important;
}

.service-pin-spacer {
  height: 100vh;
  width: 100%;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-casestudies {
  padding-top: 60px;
}

/* Mobile Responsive */
@media (max-width: 991px) {

  .rail-container,
  .visual-col {
    display: none;
  }

  .text-section {
    min-height: auto;
    padding: 50px 0;
    opacity: 1;
    border-bottom: 1px solid #222;
  }
}

.service-casestudies {
  padding-bottom: 60px;
}

.servicecs-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.servicecs-track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding-right: 10vw;
}

.servicecs-card {
  width: 60vw;
  /* This ensures 1.5 cards visible on desktop */
  max-width: 800px;
  height: 500px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #111;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.servicecs-desc {
  color: #ccc;
  margin-bottom: 10px;
  max-width: 80%;
  font-weight: 300;
  font-size: 14px;
}

/* Inner card styling kept same as before... */
.servicecs-card__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.servicecs-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000 10%, transparent);
  z-index: 1;
}

.servicecs-card__content {
  position: relative;
  z-index: 2;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.servicecs-title {
  color: #fff;
  margin: 10px 0;
}

.servicecs-link {
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
  display: block;
  font-size: 12px;
}

.servicecs-link:hover {
  color: #49C6E5;
}

.tags-container {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.custom-badge {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 0.85rem;
  color: #ddd;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  font-size: 12px;
}

.service-industries {
  width: 100%;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-industries .slider-wrapper {
  padding-left: 8vw;
  /* Left alignment margin */
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.service-industries .swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
  /* Allows slides to peek off-screen */
}

/* --- Card Styling --- */
.service-industries .swiper-slide {
  width: 550px;
  /* Fixed Width */
  height: 400px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect: Lift Card */
.service-industries .swiper-slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

/* --- Image Background --- */
.service-industries .slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover Effect: Zoom Image */
.service-industries .swiper-slide:hover .slide-bg {
  transform: scale(1.1);
}

/* --- Overlay --- */
.service-industries .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.service-industries .swiper-slide:hover .slide-overlay {
  opacity: 1;
}

/* --- Content Slide-Up Animation --- */
.service-industries .slide-content {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  color: white;
  /* Initial State: Pushed down */
  transform: translateY(80px);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Effect: Slide Up */
.service-industries .swiper-slide:hover .slide-content {
  transform: translateY(0);
}

.service-industries .slide-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.service-industries .slide-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  margin: 0;
  opacity: 0;
  /* Hidden initially */
  transition: opacity 0.4s ease 0.1s;
  /* Slight delay */
}

.service-industries .swiper-slide:hover .slide-desc {
  opacity: 1;
}

/* --- Navigation Buttons --- */
.service-industries .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
}

.service-industries .nav-btn:hover {
  background: #49C6E5;
  border-color: #49C6E5;
}

.service-industries .prev-btn {
  left: 30px;
}

.service-industries .next-btn {
  right: 30px;
}

.service-accordion {
  margin: 50px auto;
  max-width: 100%;
}

.feature-mobile-btn {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  width: 40px;
  top: var(--swiper-navigation-top-offset,35%);
  height: 40px;
}

span.swiper-pagination-bullet {
  background: #fff;
}

.feature-mobile-pagination {
  bottom: 0;
}

.feature-mobile-btn::after {
  font-size: 12px;
}

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



@media only screen and (min-width: 1920px) {
  .servicecs-track {
    gap: 30px;
    overflow-x: auto;
    width: auto;
  }

  .feature-mobile-text-content p {
    font-size: 16px;
    color: #a6a6a6;
  }

  .faq-block .accordion .accordion-button {
    font-size: 22px;
  }

  .accordion-body {
    font-size: 16px;
  }

  .visual-card-mobile {
    margin-bottom: 20px;
  }

  .service-industries {
    width: 100%;
    max-width: min(100vw, 1280px);
    margin-inline: auto;
    padding-top: 30px;
  }

  .service-industries .slider-wrapper {
    padding-left: 0;
  }

  .servicecs-section {
    height: auto;
    padding-top: 60px;
  }

  .service-feature-wrapper-large {
    display: none;
  }

  .feature-mobile-pagination {
    display: none;
  }

  .service-feature-wrapper-small {
    display: block !important;
  }

  .visual-card-mobile img {
    max-width: 100%;
  }

  .service-clientlogo {
    width: 100%;
    max-width: min(100vw, 1280px);
    margin-inline: auto;
  }
}

@media only screen and (min-width: 1120px) {
  .service-feature-wrapper-small {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-feature-wrapper-large {
    display: none;
  }

  .navbar {
    padding: 5px 30px;
  }

  .service-img-box-container {
    width: 100%;
  }

  .service-wrapper-container {
    width: 100%;
  }

  .service-hero-heading {
    font-size: 26px;
    line-height: 34px;
  }

  .service-tophero-content {
    font-size: 16px;
  }

  .feature-list li {
    align-items: baseline;
  }

  .stat-card-content {
    padding: 20px 10px;
  }

  .serviceform-card {
    margin-left: 0;
    padding: 20px 15px;
  }

  .latestWork {
    margin-top: 0;
  }

  .service-work-slider {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 40px;
  }

  .service-clientlogo {
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .service-count-section .stat-number {
    font-size: 46px;
  }

  .stat-card {
    padding-left: 0px;
    padding-right: 0px;
  }

  .reveal-text {
    font-size: 22px;
    line-height: 36px;
    font-weight: 500;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    text-align: left;
  }

  .about-section-container {
    padding: 0px;
    margin: 10px;
    border: none;
    background: none;
  }

  .web-heading {
    font-size: 34px;
    font-weight: 700;
    padding-bottom: 20px;
    margin: 0px 100px;
    line-height: 46px;
  }

  .integrations-heading {
    font-size: 25px;
    font-weight: 500;
    padding-bottom: 40px;
    margin: 0px 10px;
    line-height: 36px;
  }

  .web-subheading {
    color: #a6a6a6;
    font-size: 14px;
    line-height: 22px;
    margin: 0 0px;
  }

  .solution-card-content {
    padding: 20px;
  }

  .solution-section {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 20px;
  }

  .service-clientlogo-track {
    gap: 30px;
  }

  .service-hero-banner {
    padding: 50px 10px;
  }

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

  .service-industries .slider-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-industries .swiper-slide {
    width: 40%;
    height: 400px;
  }

  /* On mobile, show content by default */
  .service-industries .slide-content {
    transform: translateY(0);
  }

  .service-industries .slide-desc {
    opacity: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .get-service-block {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 40px;
  }

  .service-feature-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta_btn .marquee-button {
    margin-right: 0;
    margin-top: 0;
  }

  #theme-toggle {
    width: 100%;
  }

  .service-wrapper {
    padding-left: 0;
    padding-top: 30px;
  }

  .service-head1 {
    font-size: 22px;
    line-height: 30px;
  }

  .visual-card-mobile img {

    max-width: 100%;
    padding-bottom: 30px;
  }

  .feature-mobile-text-section {
    margin-bottom: 20px;
    gap: 40px;
    align-items: center;
  }

  .feature-mobile-text-section h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .feature-mobile-text-content p {
    color: #a6a6a6;
    margin: 10px 0px;
    padding-bottom: 20px;
    font-size: 16px;
  }

  .wp-block-fueled-client-logo {
    margin: 0;
  }

  .servicecs-card {
    width: 70vw;
    max-width: 800px;
    height: 350px;
  }

  .servicecs-desc {
    max-width: 100%;
  }

  .tags-container {
    display: none;
  }

  .servicecs-track {
    gap: 30px;
    overflow-x: auto;
    width: auto;
  }

  .servicecs-card__content {
    padding: 20px;
  }

  .servicecs-section {
    height: auto;
    padding-left: 5px;
  }

  .service-integrations-section {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5px;
    padding-right: 5px;
  }

  .logo-container {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-right: 10px;
  }

  .integration-card .card-title {
    font-size: 16px;
    font-weight: 500;
  }

  .mainn-heading {
    padding-left: 25px;
    padding-right: 25px;
  }

  .solution-card-content h4 {
    font-size: 20px;
  }

  .service-industries .nav-btn {
    width: 40px;
    height: 40px;
  }

  .faq-block {
    padding-left: 5px;
    padding-right: 5px;
  }

  .service-accordion {
    max-width: 100%;
  }
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar {
    padding: 5px 30px;
  }

  .container {
    max-width: 100%;
  }

  .custom-cta-btn {
    margin-bottom: 35px;
  }

  .service-hero-heading {
    font-size: 26px;
    line-height: 34px;
  }

  .service-tophero-content {
    font-size: 16px;
  }

  .feature-list li {
    align-items: baseline;
  }

  .stat-card-content {
    padding: 20px 10px;
  }

  .serviceform-card {
    margin-left: 0;
    padding: 20px 15px;
  }

  .latestWork {
    margin-top: 0;
  }

  .service-work-slider {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 40px;
  }

  .service-clientlogo {
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .service-count-section .stat-number {
    font-size: 46px;
  }

  .stat-card {
    padding-left: 0px;
    padding-right: 0px;
  }

  .reveal-text {
    font-size: 22px;
    line-height: 36px;
    font-weight: 500;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    text-align: left;
  }

  .about-section-container {
    padding: 0px;
    margin: 0px;
    border: none;
    background: none;
  }

  .web-heading {
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 20px;
    margin: 0px 100px;
    line-height: 36px;
  }

  .integrations-heading {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 40px;
    margin: 0px 10px;
    line-height: 36px;
  }

  .web-subheading {
    color: #a6a6a6;
    font-size: 12px;
    line-height: 22px;
    margin: 0 100px;
  }

  .solution-card-content {
    padding: 20px;
  }

  .solution-section {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 20px;
  }

  .service-clientlogo-track {
    gap: 30px;
  }

  .service-hero-banner {
    padding: 50px 10px;
  }

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

  .service-industries .slider-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-industries .swiper-slide {
    width: 100%;
    height: 400px;
  }

  /* On mobile, show content by default */
  .service-industries .slide-content {
    transform: translateY(0);
  }

  .service-industries .slide-desc {
    opacity: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .get-service-block {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 40px;
  }

  .service-feature-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta_btn .marquee-button {
    margin-right: 0;
    margin-top: 0;
  }

  #theme-toggle {
    width: 100%;
  }

  .service-wrapper {
    padding-left: 0;
    padding-top: 30px;
  }

  .service-head1 {
    font-size: 22px;
    line-height: 30px;
  }

  .visual-card-mobile img {
    max-width: 100%;
    padding-bottom: 30px;
  }

  .feature-mobile-text-section {
    margin-bottom: 20px;
  }

  .feature-mobile-text-section h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .feature-mobile-text-content p {
    color: #a6a6a6;
    margin: 10px 0px;
    padding-bottom: 20px;
    font-size: 16px;
  }

  .wp-block-fueled-client-logo {
    margin: 0;
  }

  .servicecs-card {
    width: 70vw;
    max-width: 800px;
    height: 350px;
  }

  .servicecs-desc {
    max-width: 100%;
  }

  .tags-container {
    display: none;
  }

  .servicecs-track {
    gap: 30px;
    overflow-x: auto;
    width: auto;
  }

  .servicecs-card__content {
    padding: 20px;
  }

  .servicecs-section {
    height: auto;
    padding-left: 5px;
  }

  .service-integrations-section {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5px;
    padding-right: 5px;
  }

  .logo-container {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-right: 10px;
  }

  .integration-card .card-title {
    font-size: 16px;
    font-weight: 500;
  }

  .mainn-heading {
    padding-left: 25px;
    padding-right: 25px;
  }

  .service-industries .nav-btn {
    width: 40px;
    height: 40px;
  }

  .faq-block {
    padding-left: 5px;
    padding-right: 5px;
  }

  .service-accordion {
    max-width: 100%;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .feature-mobile-pagination {
    bottom: 0;
  }
.whychooseus-mobile {
  display: block;
}
  
  .navbar {
    padding: 5px 15px;
  }

  .blob-1 {
    width: 70vw;
    height: 70vw;
  }

  /* Blob 2: Blue (Starts Top) */
  .blob-2 {
    width: 100vw;
    height: 100vw;

  }

  /* Blob 3: Orange (Starts Top-Left Corner) */
  .blob-3 {
    width: 80vw;
    height: 80vw;

  }

  .service-hero-heading {
    font-size: 26px;
    line-height: 34px;
    text-align: center;
  }

  .service-tophero-heading {
    text-align: center;
  }

  .service-tophero-content {
    font-size: 16px;
    text-align: center;
  }

  .feature-list li {
    align-items: baseline;
  }

  .serviceform-card {
    margin-left: 0;
    padding: 20px 15px;
  }

  .latestWork {
    margin-top: 0;
  }

  .service-work-slider {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 40px;
  }

  .service-clientlogo {
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .service-count-section .stat-number {
    font-size: 46px;
  }

  .stat-card {
    padding-left: 0px;
    padding-right: 0px;
  }

  .reveal-text {
    font-size: 22px;
    line-height: 36px;
    font-weight: 500;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    text-align: left;
  }

  .about-section-container {
    padding: 0px;
    margin: 0px;
    border: none;
    background: none;
  }

  .web-heading {
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 20px;
    margin: 0px 10px;
    line-height: 36px;
  }

  .feature-list {
    display: none;
  }

  .service-banner-cta {
    display: none !important;
  }

  .integrations-heading {
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 40px;
    margin: 0px 10px;
    line-height: 36px;
  }

  .web-subheading {
    color: #a6a6a6;
    font-size: 14px;
    line-height: 22px;
    margin: 0 0px;
  }

  .solution-section {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 20px;
  }

  .service-clientlogo-track {
    gap: 30px;
  }

  .service-hero-banner {
    padding: 50px 10px;
  }

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

  .service-industries .slider-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-industries .swiper-slide {
    width: 100%;
    height: 400px;
  }

  /* On mobile, show content by default */
  .service-industries .slide-content {
    transform: translateY(0);
  }

  .service-industries .slide-desc {
    opacity: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .get-service-block {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 40px;
  }

  .service-feature-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta_btn .marquee-button {
    margin-right: 0;
    margin-top: 0;
  }

  #theme-toggle {
    width: 100%;
  }

  .service-wrapper {
    padding-left: 0;
    padding-top: 30px;
  }

  .service-head1 {
    font-size: 22px;
    line-height: 30px;
  }

  .visual-card-mobile img {
    max-width: 100%;
    padding-bottom: 30px;
  }

  .feature-mobile-text-section {
    margin-bottom: 20px;
  }

  .feature-mobile-text-section h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .feature-mobile-text-content p {
    color: #a6a6a6;
    margin: 10px 0px;
    padding-bottom: 20px;
    font-size: 16px;
  }

  .wp-block-fueled-client-logo {
    margin: 0;
  }

  .servicecs-card {
    width: 70vw;
    max-width: 800px;
    height: 350px;
  }

  .servicecs-desc {
    max-width: 100%;
  }

  .tags-container {
    display: none;
  }

  .servicecs-track {
    gap: 30px;
    overflow-x: auto;
    width: auto;
  }

  .servicecs-card__content {
    padding: 20px;
  }

  .servicecs-section {
    height: auto;
    padding-left: 5px;
  }

  .service-integrations-section {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5px;
    padding-right: 5px;
  }

  .logo-container {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-right: 10px;
  }

  .integration-card .card-title {
    font-size: 16px;
    font-weight: 500;
  }

  .mainn-heading {
    padding-left: 25px;
    padding-right: 25px;
  }

  .service-industries .nav-btn {
    width: 40px;
    height: 40px;
  }

  .faq-block {
    padding-left: 5px;
    padding-right: 5px;
  }

  .service-accordion {
    max-width: 100%;
  }
}


/******* End Ecommerce page css ******************/



/******* Start Portfolio page css ******************/
.portfolio-banner {
  padding-top: 120px;
  padding-bottom: 40px;
}

.portfolio-banner .banner-text-block {
  display: flex;
  gap: 20px;
  align-items: center;
}


.portfolio-banner .banner-text-block h1 {
  font-size: 200px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  animation: gradientMove 3s linear infinite;
}

.portfolio-banner .banner-text-block i {
  font-size: 165px;
  transform: rotate(225deg);
  text-transform: uppercase;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  animation: gradientMove 3s linear infinite;
}

/* --- Custom Filter Bar Container --- */
/* --- 1. Sticky Bar Container --- */
.filter-container {
  position: sticky;
  top: 0;
  z-index: 1020;
  backdrop-filter: blur(5px);
  padding: 20px;
  background: #000000a8;
  border-bottom: 1px solid #ffffff30;
  transition: background-color 0.3s ease;
  width: 100%;
}

/* The class added by JS when sticky */
.filter-container.is-stuck {
  background-color: rgb(0 0 0 / 80%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #222;
}

/* --- 2. Filter Buttons Styling --- */
.btn-custom-filter {
  background-color: #00000042;
  color: #fff;
  border: 1px solid #333333;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 16px;
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: space-between;
  min-width: 150px;
}

.btn-custom-filter:hover {
  border-color: #555;
  color: #000;
  background-color: #fff;
}

/* --- 3. Forcing the Arrow (Chevron) --- */
/* This ensures the arrow appears even if your theme was hiding it */
.filter-container .dropdown-toggle::after {
  display: inline-block !important;
  margin-left: 10px;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  opacity: 0.7;
}

/* Rotate arrow when open */
.filter-container .dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.filter-container .dropdown-item:hover {
  cursor: pointer;
}

.filter-container .form-check-label:hover {
  cursor: pointer;
}

/* Dropdown Menu Dark Style */
.filter-container .dropdown-menu-dark-custom {
  background-color: #111111e8;
  border: 1px solid #333;
  margin-top: 10px;
  backdrop-filter: blur(10px);
}

.dropdown-item {
  color: #ccc;
}

.dropdown-item:hover {
  background-color: #222;
  color: #fff;
}

/* Reset Section */
.reset-section {
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.reset-section:hover {
  color: #fff;
}

.count-badge {
  border: 1px solid #444;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Dummy sentinel for Scroll Detection */
#sticky-sentinel {
  width: 100%;
  height: 1px;
  margin-bottom: -1px;
  visibility: hidden;
  pointer-events: none;
}

.form-check-input {
  background-color: #222;
  border-color: #444;
  cursor: pointer;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-check-input:checked {
  background-color: #4192d1;
  border-color: #4192d1;
}

.featured-work1.portfolio {
  margin-top: 0;
}


/******* End Portfolio page css ******************/


/******* Start Case Studies page css ******************/
.casestudies-banner {
  padding-top: 100px;
  padding-bottom: 50px;
}

.casestudies-banner .banner-text-block {
  display: flex;
  gap: 20px;
  align-items: center;
}

.casestudies-banner .banner-text-block h1 {
  font-size: 160px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  animation: gradientMove 3s linear infinite;
}

.casestudies-banner .banner-text-block i {
  font-size: 165px;
  transform: rotate(225deg);
  text-transform: uppercase;
  font-weight: 700;
  line-height: normal;
  color: #fff;
}

.case-study-container {
  background-color: #0000007d;
  border-radius: 24px;
  margin: 40px 0px 80px 0px;
  overflow: hidden;
  position: relative;
  padding: 10px 50px;
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff2b;
}

/* --- Swiper Layout & Alternating Logic --- */

.cs-slide-row {
  align-items: center;
  min-height: 450px;
}

/* DESKTOP ONLY: Alternate layout for even slides (2, 4, etc) */
@media (min-width: 992px) {
  .swiper-slide:nth-child(even) .cs-slide-row {
    flex-direction: row-reverse;
  }

  /* Adjust padding for the alternating text */
  .swiper-slide:nth-child(even) .cs-content-wrapper {
    padding-left: 0;
    padding-right: 40px;
  }
}

/* Image Styling */
.cs-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Content Styling */
.cs-content-wrapper {
  padding-left: 40px;
  /* Default left padding */
}

.cs-logo {
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
}

.cs-description {
  color: var(--cs-text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cs-stats-container {
  display: flex;
  margin-bottom: 40px;
  border-left: 1px solid #333;
}

.cs-stat-box {
  padding: 0 30px;
  border-right: 1px solid #333;
}

.cs-stat-number {
  font-weight: 800;
  font-size: 1.5rem;
  display: block;
}

.cs-stat-label {
  color: var(--cs-text-muted);
  font-size: 0.9rem;
}

/* Standard Button (No fill animation anymore) */
.btn-cs-primary {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-cs-primary:hover {
  background-color: white;
  color: black;
  border-color: white;
}

/* --- Transitions (Fly In Effect) --- */
.cs-image-col,
.cs-content-col {
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
  opacity: 0;
}

/* Hidden State: Push elements outward */
.swiper-slide:not(.swiper-slide-active) .cs-image-col {
  transform: translateX(-50px);
}

.swiper-slide:not(.swiper-slide-active) .cs-content-col {
  transform: translateX(50px);
}

/* Specific Fix for Alternating Slides so they still fly in correctly */
@media (min-width: 992px) {
  .swiper-slide:nth-child(even):not(.swiper-slide-active) .cs-image-col {
    transform: translateX(50px);
  }

  .swiper-slide:nth-child(even):not(.swiper-slide-active) .cs-content-col {
    transform: translateX(-50px);
  }
}

/* Active State: Center */
.swiper-slide-active .cs-image-col,
.swiper-slide-active .cs-content-col {
  transform: translateX(0);
  opacity: 1;
}

/* --- Progress Border Line --- */
.progress-track {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin-top: 15px;
  position: relative;
}

.nav-label-small {
  color: #a6a6a6;
}

.cs-nav-icon {
  background: #1d1d1db0;
  font-size: 15px;
  padding: 10px 11px;
  border-radius: 50px;
  color: #fff;
  border: 1px solid #343435;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  /* Slightly thicker than track */
  width: 0%;
  /* JS will control this */
  background: linear-gradient(90deg, #0058a3, #8457ff);
  box-shadow: 0 0 10px rgba(0, 196, 204, 0.5);
  /* No transition in CSS because JS requestAnimationFrame handles it smoothly */
}

/* --- Bottom Navigation --- */
.cs-bottom-nav {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-btn {
  background: none;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: opacity 0.3s;
  text-align: left;
}

.nav-btn:hover {
  opacity: 0.7;
}

.nav-next {
  text-align: right;
  flex-direction: row-reverse;
}

.nav-icon {
  font-size: 2rem;
  color: #666;
  transition: color 0.3s;
}

.nav-btn:hover .nav-icon {
  color: white;
}

.nav-label-small {
  display: block;
  font-size: 0.75rem;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-weight: 600;
}

.nav-project-name {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}

/******* End Case Studies page css ******************/

/******* Start About us page css ******************/
.single-service-banner.about .graphic-box {
  position: absolute;
  top: 15%;
}

.single-service-banner.about {
  padding-top: 0px;
  padding-bottom: 50px;
  padding-right: 10px;
  margin-top: 0;
}

.single-service-banner.about .graphic-box img {
  width: 70%;
}

.single-service-banner.about .banner-text-block h1 {
  font-size: 100px;
  font-weight: 700;
  line-height: normal;
  background: linear-gradient(to right, #8a51fe, #628aff, #36cfff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* --- 2. MAIN CONTAINER --- */
.gallery-container {
  display: flex;
  gap: 20px;
  /* Space between the columns */
  width: 100%;
  height: 90vh;
  position: relative;
  /* Essential for positioning the fade */
  padding: 0 20px;
  box-sizing: border-box;
}

.about-leftside {
  display: flex;
  justify-content: center;
}

.about-leftside .banner-text-block {
  flex-direction: column;
  align-self: center;
  padding-left: 20px;
}

.about-rightside {}

/* --- 3. THE COLUMNS --- */
.column {
  flex: 1;
  position: relative;
  overflow: hidden;
  /* Hides the images as they scroll out */
}

/* --- 4. THE MOVING TRACK --- */
.track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Space between images vertical */
  width: 100%;

  /* The Animation */
  animation: scroll-up 20s linear infinite;
}

/* Optional: Make the second column move slower or reverse for effect */
.column:nth-child(2) .track {
  animation-duration: 25s;
  /* Different speed */
  animation-direction: reverse;
  /* Moves down instead of up */
}

.column:nth-child(3) .track {
  animation-duration: 18s;
}

/* --- 5. IMAGES --- */
.image-item {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}

.image-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- 6. ANIMATION LOGIC --- */
/* Moves the track up by 50%. 
           IMPORTANT: You must have duplicate images (2 sets) for this to look seamless. */
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }

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

/* --- 7. THE FADE CSS (The part you specifically asked for) --- */
.fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);

  z-index: 10;
  /* Ensures it sits on top of images */
  pointer-events: none;
  /* Allows clicks to pass through if needed */
}

/* Optional: Top fade as well */
.fade-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 10;
  pointer-events: none;
}

.life-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

/* --- 2. life-at-slider WRAPPER --- */
.life-at-slider-container {
  width: 100%;
  display: flex;
  padding-top: 30px;
  flex-direction: column;
  gap: 20px;
  /* Space between the two rows */
  position: relative;
}

/* --- 3. THE ROW (Window) --- */
.life-at-slider-row {
  width: 100%;
  overflow: hidden;
  /* Hides the content that scrolls off screen */
  position: relative;
  white-space: nowrap;
  /* Forces images to stay in a line */
}

/* Optional: Add fade on the left and right edges */
.life-at-slider-row::before,
.life-at-slider-row::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  /* Width of the fade */
  height: 100%;
  z-index: 2;
}

.life-at-slider-row::before {
  left: 0;
  background: linear-gradient(to right, #111, transparent);
}

.life-at-slider-row::after {
  right: 0;
  background: linear-gradient(to left, #111, transparent);
}

/* --- 4. THE TRACK (The moving part) --- */
.life-at-slider-track {
  display: inline-flex;
  /* Aligns images horizontally */
  gap: 20px;
  /* Space between images */
  /* We don't set animation here yet, we set it on specific rows below */
}

/* --- 5. IMAGES --- */
.life-at-slide-item {
  width: 350px;
  /* Fixed width for consistency */
  height: 250px;
  flex-shrink: 0;
  /* Prevents images from shrinking */
  border-radius: 0px;
  overflow: hidden;
}

.life-at-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- 6. ANIMATIONS --- */

/* Row 1: Left to Right */
.row-one .life-at-slider-track {
  /* Start at -50% (hidden duplicate set) and move to 0 */
  animation: scroll-left-to-right 30s linear infinite;
}

/* Row 2: Right to Left */
.row-two .life-at-slider-track {
  /* Start at 0 and move to -50% */
  animation: scroll-right-to-left 30s linear infinite;
}

/* Logic for Right-to-Left (Standard) */
@keyframes scroll-right-to-left {
  0% {
    transform: translateX(0);
  }

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

/* Logic for Left-to-Right (Reverse) */
@keyframes scroll-left-to-right {
  0% {
    transform: translateX(-50%);
  }

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

.awards-slider {
  padding-top: 40px;
  padding-bottom: 120px;
  position: relative;
}

.awards-slider .nav-btn {
  background: #1d1d1db0;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: 50px;
  color: #fff;
  border: 1px solid #343435;
  line-height: normal;
}

.awards-slider .nav-container {
  bottom: 40px;
}

.awardsSwiper {
  padding-top: 40px;
}

.awards-section {
  width: 100%;
  overflow: hidden;
  /* Hide overflow */
  padding: 50px 0;
  position: relative;
}

.award-card .swiper {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 100px;
  /* Space for scaling + arrows */
}

/* --- 2. THE CARD STYLE --- */
.award-card {
  background-color: #111;
  border-radius: 24px;
  padding: 30px;
  height: 300px;
  /* Fixed height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #333;
  box-sizing: border-box;
  position: relative;
  /* SMOOTH TRANSITIONS FOR SCALE & OPACITY */
  transition: all 0.5s ease;
}

/* --- 3. SLIDE SCALING LOGIC (The "Bigger" Effect) --- */
.award-card .swiper-slide {
  /* Default State (Side cards): Smaller and Transparent */
  transform: scale(0.65);
  opacity: 0.5;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.swiper-slide-active {
  /* Active State (Center card): Full Size and Visible */
  transform: scale(1.2);
  opacity: 1;
  z-index: 10;
}

/* Highlight active card border */
.swiper-slide-active .award-card {
  border-color: #555;
  background-color: #11111191;
}

/* --- 4. CONTENT & TEXT VISIBILITY --- */
.card-header {
  display: flex;
  justify-content: center;
  width: 100%;
}

.year {
  font-size: 14px;
  opacity: 0.6;
}

.plus-btn {
  width: 32px;
  height: 32px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.awards-logo {
  width: 150px;
  margin-bottom: 5px;
  transition: 0.3s;
}

/* Logo brightens on active slide */
.swiper-slide-active .laurel-logo {
  opacity: 1;
}

/* --- THE TEXT HIDING LOGIC --- */
.award-text {
  /* HIDDEN BY DEFAULT */
  opacity: 0.4;
  transform: translateY(10px);
  /* Small slide up effect */
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
  /* Delay slightly */
}

/* VISIBLE ONLY ON ACTIVE SLIDE */
.swiper-slide-active .award-text {
  opacity: 1;
  transform: translateY(0);
}

.award-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.award-sub {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* --- 5. NAVIGATION (Bottom Center) --- */
.nav-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 20;
}

.awardsSwiper .nav-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  background: #000;
}

.awardsSwiper .swiper-wrapper {
  align-items: center;
}

/******* End About us page css ******************/

/******* Start Hire React page css ******************/
.sectionOneHeroNew.contact-section {
  position: relative;
  background: transparent;
  overflow: hidden;
  padding: 80px 0px;
  padding-top: 40px;
}

/* Gradient Smoke Effect Background */
.sectionOneHeroNew .gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}



@keyframes float {

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

  25% {
    transform: translate(50px, -50px) scale(1.1);
  }

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

  75% {
    transform: translate(-30px, 30px) scale(0.9);
  }

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

@keyframes sectionOneHeroSmokeThree {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.8;
    filter: blur(80px) hue-rotate(0deg);
  }

  15% {
    transform: translate(40px, -60px) scale(1.08) rotate(45deg);
    opacity: 0.65;
    filter: blur(85px) hue-rotate(10deg);
  }

  30% {
    transform: translate(90px, -80px) scale(1.15) rotate(90deg);
    opacity: 0.7;
    filter: blur(90px) hue-rotate(20deg);
  }

  45% {
    transform: translate(110px, -30px) scale(1.12) rotate(135deg);
    opacity: 0.6;
    filter: blur(95px) hue-rotate(15deg);
  }

  60% {
    transform: translate(90px, 30px) scale(1.1) rotate(180deg);
    opacity: 0.7;
    filter: blur(100px) hue-rotate(10deg);
  }

  75% {
    transform: translate(50px, 60px) scale(1.05) rotate(270deg);
    opacity: 0.65;
    filter: blur(95px) hue-rotate(5deg);
  }

  90% {
    transform: translate(20px, 20px) scale(1.02) rotate(315deg);
    opacity: 0.75;
    filter: blur(90px) hue-rotate(0deg);
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
    opacity: 0.8;
    filter: blur(80px) hue-rotate(0deg);
  }
}

@keyframes flowCurve {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
    border-radius: 40% 60% 50% 50%;
  }

  50% {
    transform: rotate(5deg) scale(1.05);
    border-radius: 50% 50% 60% 40%;
  }
}

/* Container */
.sectionOneHeroNew .container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 30px;
}

/* Left Content */
.sectionOneHeroNew .left-content {
  color: #fff;
}

.sectionOneHeroNew .small-heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
}

.sectionOneHeroNew h1 {
  font-size: 65px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #d7f9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sectionOneHeroNew .description {
  font-size: 24px;
  line-height: 1.6;
  color: #e3e3e3;
  width: 75%;
  margin-bottom: 30px;
}

.sectionOneHeroNew .pointers {
  list-style: none;
  padding-left: 0px;
}

.sectionOneHeroNew .pointers li {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 16px;
  padding-left: 30px;
  position: relative;
}

.sectionOneHeroNew .pointers li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4093d0;
  font-weight: bold;
  font-size: 20px;
}

/* Right Form */
.sectionOneHeroNew .form-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sectionOneHeroNew .form-group {
  margin-bottom: 5px;
}

.sectionOneHeroNew .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #aeaeae;
  margin-bottom: 8px;
}

.sectionOneHeroNew .form-group input,
.sectionOneHeroNew .form-group select,
.sectionOneHeroNew .form-group textarea {
  display: block;
  width: 100%;
  padding: 10px;
  outline: none;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #fff;
  background-color: rgb(0 0 0 / 0%);
  background-clip: padding-box;
  border: 0 !important;
  border-bottom: 1px solid #606060 !important;
  border-radius: 0;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  font-size: 0.95rem;
}

.sectionOneHeroNew .form-group input:focus,
.sectionOneHeroNew .form-group select:focus,
.sectionOneHeroNew .form-group textarea:focus {
  outline: none;
  border-color: #a6a6a6;
}

.sectionOneHeroNew .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.sectionOneHeroNew .form-group select {
  cursor: pointer;
}

.sectionOneHeroNew .form-group select option {
  background: #1f2937;
  color: #fff;
}

.sectionOneHeroNew .phone-group {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.sectionOneHeroNew .submit-btn {
  width: 100%;
  padding: 9px 16px;
  background: #fff;
  border: none;
  border-radius: 0;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}


.sectionOneHeroNew .submit-btn:hover {
  color: #fff;
    background-color: #3f93d2;
}

.companySlider img {
  width: 100px;
}

.news-slider {
  position: relative;
}

.news-slider .swiper-button-next,
.news-slider .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);

}

.news-slider .card-news {
  background-color: #ffffff0f;
  padding: 20px;
}

.news-slider .gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.news-slider .smoke-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 1;
  animation: float 20s ease-in-out infinite;
}

.news-slider .smoke-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(72, 199, 227, 0.65) 0%, rgba(139, 92, 246, 0) 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
  display: none;
}

.news-slider .smoke-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, rgba(59, 130, 246, 0) 70%);
  top: 15%;
  right: -50px;
  animation-delay: 5s;
}

/* LOGO SLIDER */

.hire {
  padding: 30px 0px;
  padding-top: 60px;
}

.hire .logo-slider {
  overflow: hidden;
  position: relative;
  width: 90%;
  height: 100px;
  display: flex;
  align-items: center;
}

.hire .slide-track {
  display: flex;
  width: calc(200px * 10);
  /* width = number of slides × slide width */
  animation: scroll 20s linear infinite;
}

.hire .slide {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 15px;
}

.hire .slide img {
  width: 150px;
  opacity: 0.8;
  height: auto;
  filter: brightness(500);
  transition: all 0.3s ease;
}

.hire .slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

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

  100% {
    transform: translateX(calc(-200px * 5));
    /* half of total slides */
  }
}




.expertise-dev-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1929 0%, #1a0f2e 50%, #0f0a1e 100%);
  overflow: hidden;
  padding: 100px 20px;
}

/* Add some height before section to demonstrate scroll effect */
.spacer {
  height: 5vh;
  background: #000;
}

.crypto-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 100px 0px;
  margin: 0px 20px;
  border-radius: 50px;
}

/* Gradient Background Effects */
.crypto-section .gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.crypto-section .bg-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  transition: transform 0.3s ease-out;
  background-image: none !important;
}

.crypto-section .gradient-1 {
  width: 600px;
  height: 600px;
  background-image: radial-gradient(circle, rgba(59, 130, 246, 1) 0%, transparent 70%) !important;
  top: -200px;
  left: -200px;
  animation: float1 20s ease-in-out infinite;
}

.crypto-section .gradient-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #4093d080 0%, transparent 70%);
  bottom: -200px;
  right: -150px;
  animation: float2 25s ease-in-out infinite;
}

.crypto-section .gradient-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: float3 30s ease-in-out infinite;
}

@keyframes float1 {

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

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

@keyframes float2 {

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

  50% {
    transform: translate(-50px, -30px) scale(1.15);
  }
}

@keyframes float3 {

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

  50% {
    transform: translate(30px, -40px) scale(0.95);
  }
}

/* Stars */
.crypto-section .stars {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.crypto-section .star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.crypto-section .star-4point {
  width: 20px;
  height: 20px;
  background: transparent;
  position: absolute;
  animation: rotate 10s linear infinite;
}

.crypto-section .star-4point::before,
.crypto-section .star-4point::after {
  content: '';
  position: absolute;
  background: #fff;
  top: 50%;
  left: 50%;
}

.crypto-section .star-4point::before {
  width: 20px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.crypto-section .star-4point::after {
  width: 2px;
  height: 20px;
  transform: translate(-50%, -50%);
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Container */
.crypto-section .container {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: flex-start;
}

/* Left Content - Sticky */
.crypto-section .left-content-wrapper {
  position: relative;
}

.crypto-section .left-content {
  position: sticky;
  top: 100px;
  opacity: 1;
  transform: translateX(0px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.crypto-section .left-content.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.crypto-section .main-heading {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #fff;
}

.crypto-section .description {
  font-size: 18px;
  line-height: 1.7;
  color: #bcbcbc;
  margin-bottom: 40px;
  max-width: 540px;
}

.crypto-section .cta-button {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #4094d092 0%, #4093d0 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.crypto-section .cta-button:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* Right Content - Feature Cards */
.crypto-section .feature-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  padding: 20px 70px 20px 0px;
}

.crypto-section .feature-card {
  background: rgba(255, 255, 255, 0.03);
  background-image: linear-gradient(347deg, #4094d01e, #0a0a0a33);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(100px) scale(0.95);
  filter: blur(10px);
  will-change: transform, opacity, filter;
  position: relative;
}

.crypto-section .feature-card.in-focus {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.crypto-section .feature-card.blur-out-top {
  opacity: 0.3;
  transform: translateY(-50px) scale(0.95);
  filter: blur(8px);
}

.crypto-section .feature-card.blur-out-bottom {
  opacity: 0.3;
  transform: translateY(50px) scale(0.95);
  filter: blur(8px);
}

.crypto-section .feature-card:hover.in-focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: #4093d04d;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px #4093d033;
}

.crypto-section .card-icon {
  width: 56px;
  height: 56px;
  background: #4093d026;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}

.crypto-section .feature-card:hover.in-focus .card-icon {
  background: #4093d026;
  transform: scale(1.15) rotate(5deg);
}

.crypto-section .card-icon svg {
  width: 28px;
  height: 28px;
  stroke: #4093d0;
  stroke-width: 2;
  fill: none;
  transition: all 0.3s ease;
}

.crypto-section .feature-card:hover.in-focus .card-icon svg {
  stroke: #4093d0;
}

.crypto-section .card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  transition: color 0.3s ease;
}

.crypto-section .feature-card:hover.in-focus .card-title {
  color: #4093d0;
}

.crypto-section .card-description {
  font-size: 16px;
  line-height: 1.6;
  color: #acacac;
  transition: color 0.3s ease;
}

.crypto-section .feature-card:hover.in-focus .card-description {
  color: #d5d5d5ff;
}

.crypto-section .feature-card.in-focus .card-progress {
  width: 100%;
  opacity: 1;
}

/* Featured Projects */

.methodology-block {
  position: relative;
  padding: 20px 0px;
}

.methodology-block .container {
  position: relative;
  z-index: 2;
}

.methodology-block .card-preparing .card-info h5 {

  margin-bottom: 15px;
}

.methodology-block .col-lg-6,
.methodology-block .col-md-6 {
  padding: 0px 20px;
  margin-bottom: 60px;
}

.methodology-block .card-preparing .card-info .tags {
  text-align: left;
  margin-top: 25px;
}

.methodology-block .card-preparing .card-info .tags span {
  text-align: left;
  background-color: #262626;
  border-radius: 50px;
  padding: 7px 12px;
  margin-right: 10px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.methodology-block .card-preparing .card-info p {
  /* text-align: left;
          width: 100%; */
}

.methodology-block .card-preparing .card-image {
  padding: 0;
  text-align: center;
  position: relative;
  /* height: 350px; */
  /* margin-bottom: 25px; */
  border-radius: 15px;
}

.methodology-block .card-preparing .card-image img {
  width: 100%;
  object-fit: cover;
  padding: 35px;
  transform-style: preserve-3d;
  /* transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); */
  transition: all ease 0.3s;
}

.methodology-block .card-preparing .card-image img:hover {
  width: 100%;
  object-fit: cover;
  transform-style: preserve-3d;
  /* transform: translate3d(0px, 0px, 0px) scale3d(1.05, 1.05, 1) rotateX(0deg) rotateY(0deg) rotateZ(1.5deg) skew(0deg, 0deg); */
  transition: all ease 0.3s;
}

.methodology-block .section-title {
  margin-bottom: 40px;
}

.methodology-block .gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.methodology-block .smoke-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.8;
  animation: float 20s ease-in-out infinite;
}

.methodology-block .smoke-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(72, 199, 227, 0.65) 0%, rgba(139, 92, 246, 0) 70%);
  top: 7%;
  left: 13%;
  animation: floatSmokeAdvanced 10s ease-in-out infinite;
}

@keyframes floatSmokeAdvanced {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.8;
    filter: blur(80px) hue-rotate(0deg);
  }

  15% {
    transform: translate(40px, -60px) scale(1.08) rotate(45deg);
    opacity: 0.65;
    filter: blur(85px) hue-rotate(10deg);
  }

  30% {
    transform: translate(90px, -80px) scale(1.15) rotate(90deg);
    opacity: 0.7;
    filter: blur(90px) hue-rotate(20deg);
  }

  45% {
    transform: translate(110px, -30px) scale(1.12) rotate(135deg);
    opacity: 0.6;
    filter: blur(95px) hue-rotate(15deg);
  }

  60% {
    transform: translate(90px, 30px) scale(1.1) rotate(180deg);
    opacity: 0.7;
    filter: blur(100px) hue-rotate(10deg);
  }

  75% {
    transform: translate(50px, 60px) scale(1.05) rotate(270deg);
    opacity: 0.65;
    filter: blur(95px) hue-rotate(5deg);
  }

  90% {
    transform: translate(20px, 20px) scale(1.02) rotate(315deg);
    opacity: 0.75;
    filter: blur(90px) hue-rotate(0deg);
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
    opacity: 0.8;
    filter: blur(80px) hue-rotate(0deg);
  }
}

/* Key Skills */

.key-skills {
  position: relative;
  padding: 40px 0px;
  padding-bottom: 80px;
}

.key-skills .container {
  position: relative;
  z-index: 2;
}

.key-skills .row {
  gap: 10px;
}

.key-skills .col-lg-4,
.key-skills .col-lg-4 {
  width: 32%;
  margin: 20px 0px;
}

.key-skills .section-title {
  margin-bottom: 40px;
}

.key-skills .gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.key-skills .smoke-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.8;
  animation: float 20s ease-in-out infinite;
}

.key-skills .smoke-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(72, 199, 227, 0.65) 0%, rgba(139, 92, 246, 0) 70%);
  top: 7%;
  left: 13%;
  animation: floatSmokeAdvancedKeySkills 10s ease-in-out infinite;
  display: none;
}

@keyframes floatSmokeAdvancedKeySkills {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.8;
    filter: blur(80px) hue-rotate(0deg);
  }

  15% {
    transform: translate(40px, -60px) scale(1.08) rotate(45deg);
    opacity: 0.65;
    filter: blur(85px) hue-rotate(10deg);
  }

  30% {
    transform: translate(90px, -80px) scale(1.15) rotate(90deg);
    opacity: 0.7;
    filter: blur(90px) hue-rotate(20deg);
  }

  45% {
    transform: translate(110px, -30px) scale(1.12) rotate(135deg);
    opacity: 0.6;
    filter: blur(95px) hue-rotate(15deg);
  }

  60% {
    transform: translate(90px, 30px) scale(1.1) rotate(180deg);
    opacity: 0.7;
    filter: blur(100px) hue-rotate(10deg);
  }

  75% {
    transform: translate(50px, 60px) scale(1.05) rotate(270deg);
    opacity: 0.65;
    filter: blur(95px) hue-rotate(5deg);
  }

  90% {
    transform: translate(20px, 20px) scale(1.02) rotate(315deg);
    opacity: 0.75;
    filter: blur(90px) hue-rotate(0deg);
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
    opacity: 0.8;
    filter: blur(80px) hue-rotate(0deg);
  }
}

.keySkillCardWrapper {
  background-image: linear-gradient(333deg, #c4c4c400 55%, #ececec33 70%, #4093d0);
  border-radius: 2rem;
  padding: 1px;
  transition: all .2s ease-in;
  overflow: hidden;
  box-shadow: 0 16px 24px #5f00e01a;
}

.keySkillCardWrapper:hover {
  background-image: linear-gradient(225deg, #ebf8fc, #4094d092 27%, #4093d0 58%, #1d1d29 95%);
  margin: -.5px;
  padding: 1.5px;
  box-shadow: 0 0 50px #4093d052, 0 16px 24px #4093d01a;
  transition: all .2s ease-in;
}

.keySkillCardBg {
  z-index: 5;
  background-color: #0a0a0a;
  background-image: linear-gradient(347deg, #4093d04a, #0a0a0a33);
  border-radius: 2rem;
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: inset 0 8px 24px #ffffff17;
}

.keySkillCardContent {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  padding: 2.75rem 2rem;
  display: flex;
}

.keySkillCardHeading {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.keySkillCardContentDescription {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.keySkillCardIcon {
  margin: 10px 0px;
}

.keySkillCardIcon img {
  width: 50px;
  filter: invert(1);
}

/* cta section */

.consultation-section {
  position: relative;
  width: 100%;
  padding: 100px 20px;
  background: linear-gradient(135deg, #4094d084 0%, #4093d0 50%, #3956a5 100%);
  overflow: hidden;
}

/* Grid Pattern Background */
.consultation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.consultation-section .consultation-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.consultation-section .consultation-title {
  font-size: 45px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 25px;
  letter-spacing: 0px;
}

.consultation-section .consultation-title .highlight {
  color: #000;
}

.consultation-section .consultation-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.consultation-section .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 45px;
  background: #000000;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.consultation-section .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: #1a1a1a;
}

.consultation-section .cta-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.consultation-section .cta-button:hover svg {
  transform: translateX(4px);
}

/* Floating Profile Images */
.consultation-section .profile-image {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}

.consultation-section .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Position each profile image */
.consultation-section .profile-1 {
  top: 15%;
  left: 12%;
  animation-delay: 0s;
}

.consultation-section .profile-2 {
  top: 67%;
  left: 17%;
  animation-delay: 1s;
}

.consultation-section .profile-3 {
  top: 8%;
  right: 15%;
  animation-delay: 2s;
}

.consultation-section .profile-4 {
  top: 45%;
  right: 12%;
  animation-delay: 1.5s;
}

/* Float Animation */
@keyframes float {

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

  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.consultation-section .patternOne {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  opacity: 0.1;
}

.consultation-section .patternOne img {
  width: 100%;
}

.consultation-section .patternTwo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  opacity: 0.1;
  transform: rotate(90deg);
}

.consultation-section .patternTwo img {
  width: 100%;
}


/* FAQ */

@keyframes floatSmokeAdvancedFaq {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.8;
    filter: blur(80px) hue-rotate(0deg);
  }

  15% {
    transform: translate(40px, -60px) scale(1.08) rotate(45deg);
    opacity: 0.65;
    filter: blur(85px) hue-rotate(10deg);
  }

  30% {
    transform: translate(90px, -80px) scale(1.15) rotate(90deg);
    opacity: 0.7;
    filter: blur(90px) hue-rotate(20deg);
  }

  45% {
    transform: translate(110px, -30px) scale(1.12) rotate(135deg);
    opacity: 0.6;
    filter: blur(95px) hue-rotate(15deg);
  }

  60% {
    transform: translate(90px, 30px) scale(1.1) rotate(180deg);
    opacity: 0.7;
    filter: blur(100px) hue-rotate(10deg);
  }

  75% {
    transform: translate(50px, 60px) scale(1.05) rotate(270deg);
    opacity: 0.65;
    filter: blur(95px) hue-rotate(5deg);
  }

  90% {
    transform: translate(20px, 20px) scale(1.02) rotate(315deg);
    opacity: 0.75;
    filter: blur(90px) hue-rotate(0deg);
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
    opacity: 0.8;
    filter: blur(80px) hue-rotate(0deg);
  }
}

.whyUS .row {
  align-items: strech;
}

.whyUS .col-md-7 {
  position: relative;
}

.whyUS .left-content {
  position: sticky;
  top: 50px;
}

/* Container Layout */
.scroll-container {
  display: flex;
  align-items: flex-start;
  /* Important: Align top */
  position: relative;
  margin: 0 auto;
  padding: 100px 20px;
}

/* LEFT SIDE */
.left-panel {
  width: 40%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding-right: 60px;
}

.left-content h2 {
  font-size: 42px;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.left-content .ctaa-btn {
  padding: 10px 20px;
  background: #fff;
  border: none;
  border-radius: 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-top: 14px;
}


.left-content p {
  color: #a6a6a6;
  font-size: 16px;
  line-height: 28px;
}

/* RIGHT SIDE */
.right-panel {
  width: 60%;
  position: relative;
  padding-left: 100px;
  /* No fixed height, allows scrolling */
}

/* CARD STYLING */
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* Space between cards */
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  background-image: linear-gradient(347deg, #4094d01e, #0a0a0a33);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;

  position: relative;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #4093d04d;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px #4093d033;
}


.card-icon svg {
  width: 50px;
  height: 50px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 20px;
}

.feature-cards .card-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.feature-cards .card-description {
  font-size: 1rem;
  color: #aaa;
}

.hire-block {
  padding: 40px 0px 60px 0px;
}

.hire-block .row {
  margin-top: 80px;
}

/* --- The Card --- */
.hire-block .card-preparing {
  position: relative;
  border-radius: 20px;
  background: #0a0a0a;
  z-index: 2;
  padding: 40px 20px;
}

.hire-block .card-preparing .card-image {
  background: linear-gradient(180deg, #4093d024, rgb(236 238 242 / 0%));
  border-radius: 20px;
  margin-bottom: 0;
  overflow: hidden;
  padding: 35px;
  text-align: center;
  position: relative;
}

.hire-block .card-preparing .card-info h5 {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 31px;
}

.hire-block .card-preparing .card-info p {

  color: #a6a6a6;
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  padding-bottom: 0;
}

.hire-setp {
  margin-bottom: 20px;
}

.hire-setp span {
  border: 2px solid #4094ce;
  padding: 4px 10px;
  display: inline-block;
  border-radius: 60px;
  width: 35px;
  height: 35px;
  line-height: 26px;

}

.hire-integrations-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.hire-integrations-section .logo-container img {
  padding: 5px;
}

.formTitle {
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  line-height: 1.5;
  margin-bottom: 25px;
  text-align: center;
}

/* --- 2. Card Container (Renamed to solution-card) --- */
.hire-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
  display: flex;
  height: 100%;
  padding: 2px;
  /* Border thickness */
  transition: all 0.3s ease;
}

/* --- 3. The Moving Gradient Layer --- */
.hire-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgb(25 120 213), rgb(17 37 148 / 80%), transparent 30%);
  animation: spin 4s linear infinite;
  opacity: 0;
  /* Hidden by default */
  z-index: -1;
}

/* Show the spinning gradient on hover */
.hire-card:hover::before {
  opacity: 1;
}

/* --- 4. The Content Box --- */
.hire-card-content {
  background-color: #1e1e1e7a;
  /* Darker industries-card background */
  border-radius: 15px;
  padding: 2rem;
  text-align: left;
  height: 100%;
  position: relative;
  overflow: hidden;
  /* Ensure the pseudo-element doesn't spill out */
  border: 2px solid transparent;
  /* Transparent border to maintain layout */
  transition: border-color 0.3s;
  z-index: 1;
}

.hire-card:hover::after {
  background: #0d0d0d;
}
.hire-card-content:hover {
  background-color: #0d0d0d;
}

.hire-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: transparent;
    border-radius: 13px;
}
.hire-card-content p {
  color: #a6a6a6;
  font-size: 15px;
  line-height: 24px;
}

.hire-card-content h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  font-size: 24px;
}

/* --- 5. Icon Styling --- */
.hire-icon-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 25px;
  gap: 15px;
  transition: transform 0.3s ease;
}

.hire-icon-box img {
  width: 45px;
  height: 45px;
}

.hire-card-content:hover img {
  filter: none;
}

.hire-card:hover .icon-box {
  transform: scale(1.1);
}

.hire-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hire-counter {
  padding-bottom: 40px;
}

/******* End Hire React page css ******************/


/******* Start Digital Marketing page css ******************/
.single-service-banner .digital-box img {
  width: 100%;
}

.get-website-block .content-wrapper .digital-row {
  margin-top: 20px;
}

.digital-text strong {
  color: #fff;
  padding-bottom: 5px;
  display: inline-block;
}

.digital-text {
  color: #a6a6a6;
}

.digital-para {
  padding-bottom: 10px;
}

.blue-circle-tick {
  fill: #008ff5;
  stroke: #008ff5;
}

.digital-block1.get-website-block .main-img-box {
  margin-right: 0px;
  margin-left: 50px;

}

/******* End Digital Marketing page css ******************/


.expert-cards {
  position: relative;
  width: 100%;
  height: 100vh;
  background: transparent;
  overflow: hidden;
  margin-top: 60px;

}

.expert-card {
  position: absolute;
  top: 60%;
  transform: translate(-50%, -50%);
  width: 300px;
  left: 50%;
  height: 420px;
  perspective: 1000px;
}

.expert-card-wrapper {
  position: absolute;
  top: 60%;
  transform: translate(-50%, -50%);
  width: 100%;
  left: 50%;
  height: 100%;
  animation: floating 3s infinite ease-in-out;
}

.expert-card:hover .expert-card-wrapper {
  animation-play-state: paused;
}
#expert-card-2 .expert-card-wrapper {
  animation-delay: 0.2s;
}

#expert-card-3 .expert-card-wrapper {
  animation-delay: 0.4s;
}

#expert-card-4 .expert-card-wrapper {
  animation-delay: 0.6s;
}

.expert-flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}


.expert-flip-card-front,
.expert-flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  border: 2px solid #fff;
}

.expert-flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-flip-card-back {
  background: #fff;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-size: 22px;
  text-align: center;
  flex-direction: column;
}

@keyframes floating {
  0% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, -60%);
  }

  100% {
    transform: translate(-50%, -50%);
  }
}

.expertcard-row {
  width: 100%;
}

.expert-flip-card-back p {
  font-size: 15px;
  text-align: left;
  font-weight: 400;
}

.expert-flip-card-back p:not(:last-child):before {
  content: ".......................................";
  position: absolute;
  letter-spacing: .125em;
  opacity: .2;
  margin: 16px -1px;
}

.expert-cards a {
  color: #000;
}

.cs-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.cs-track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding-right: 10vw;
}

.cs-card {
  width: 60vw;
  /* This ensures 1.5 cards visible on desktop */
  max-width: 800px;
  height: 500px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #111;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card (anchor wraps whole card) */
.navbar .expertise-service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover card */
.navbar .expertise-service-item:hover {
  border-color: rgba(64, 147, 208, 0.45);
  background: rgba(64, 147, 208, 0.05);
  box-shadow: 0 0 0 1px rgba(64, 147, 208, 0.15);
}

/* Icon wrapper */
.navbar .expertise-service-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* SVG icons */
.navbar .line-icon {
  width: 32px;
  height: 32px;
  stroke: #9aa6b2;
  fill: none;
  stroke-width: 1.6;
  transition: stroke 0.25s ease;
}

/* Icon hover */
.navbar .expertise-service-item:hover .line-icon {
  stroke: #4093D0;
}

/* Content wrapper */
.navbar .expertise-service-content {
  display: flex;
  flex-direction: column;
}

/* Heading */
.navbar .expertise-service-content h4 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.25s ease;
}

/* Heading hover */
.navbar .expertise-service-item:hover h4 {
  color: #4093D0;
}

/* Description */
.navbar .expertise-service-content p {
  margin: 0;
  color: #b9c2cf;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.25s ease;
}

/* Description hover */
.navbar .expertise-service-item:hover p {
  color: #e3e8ef;
}

/* Keep right panel height aligned with sidebar */
.expertise-content-section {
  height: 100%;
}

/* Scrollable services grid */
.scrollable-grid {
  max-height: 520px;
  /* SAME as .expertise-sidebar */
  overflow-y: auto;
  padding-right: 6px;
}

/* Hide scrollbar (WebKit) */
.scrollable-grid::-webkit-scrollbar {
  display: none;
}

/* Start Footer css*/

.star-section {
  background: #20202078;
  padding: 20px 60px;
  margin: 40px 0 0;
}

.star-img {
  padding: 0;
  width: 50%;
  display: inline-block;
}

.star-img img {
  padding: 0 10px 0px 0px;
  cursor: pointer;
}

.star-text i {
  color: #3F93D0;
  padding: 5px 15px;
}

.star-text {
  color: #fff;
  display: inline-block;
  width: 40%;
  vertical-align: middle;
  border-right: 1px solid;
  margin-right: 0;
}

.rating-listt {
  overflow: auto;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  margin: 0;
}

.rating-listt li:last-child .star-text {
  border: none;
}

.country-list {
  padding-left: 40px;
}

.country-list .head {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
}

.connect-head .head {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
}

.newsocial,
.newflag {
  padding: 0;
}

.newsocial li a {
  color: #fff;
  padding: 0 12px;
  line-height: 40px;
}

.newsocial li {
  list-style: none;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 8px;
  margin-right: 15px;
  border: 1px solid #757575;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.newflag li {
  list-style: none;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 8px;
  margin-right: 35px;
  border: 1px solid #757575;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  vertical-align: top;
}

.newflag li:last-child {
  list-style: none;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 8px;
  margin-right: 40px;
  text-align: left;
  vertical-align: top;
  width: 0%;
  border: none;
  font-size: 18px;
  font-weight: bold;
  vertical-align: top;
}

.newflag li div {
  color: #fff;
  margin-top: 10px;
  line-height: normal;
  text-align: center;
  font-size: 12px;
}

.main-footer-left .fflogo {
  margin-bottom: 20px;
}

.first-links {
  padding-left: 40px;
}

.second-links {
  padding-left: 30px;
}

.footer-linked {
  padding: 5px 0px;
  list-style: none;
}

.footer-head {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-linked li a {
  color: #fff;
}

.main-footer-left {
  color: #fff;
}

.footer-middle {
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 50px;
  padding-bottom: 25px;
}

.moving-text {
  background: transparent;
  margin: 45px 0;
  position: absolute;
}

footer {
  color: #fff;
}

.moving-text marquee {
  color: #fff;
  padding: 190px;
  font-size: 530px;
  font-weight: 600;
  opacity: 0.09;
}

h5.newform-heading {
  margin-bottom: 15px;
  font-size: 23px;
}

.mainnewfooter {
  color: #fff;
  padding-left: 80px;
  padding-right: 80px;
}

.footernew-top-right {
  padding-left: 40px;
  padding-top: 30px;
}

.footernew-top {
  background: #20202078;
  padding: 45px;
  border-radius: 20px;
}

.footernew-contact .form-group .form-control {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #fff;
  background-color: rgb(0 0 0 / 0%);
  background-clip: padding-box;
  border: 0 !important;
  border-bottom: 1px solid #606060 !important;
  border-radius: 0;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.footernew-contact .border-button {
  background: transparent;
  width: 100%;
  padding: 8px;
  font-weight: bold;
}

.r-padding {
  padding-right: 10px;
}

.country-name {
  color: #fff;
  font-weight: bold;
  margin-left: -15px;
  font-size: 20px;
  text-transform: uppercase;
}

.new-address {
  margin: 15px 0px;
  display: block;
  color: #fff;

}

.new-email,
.new-phone {
  color: #b7afaf;
}

.new-email .fa {
  margin-right: 15px;
}

.new-phone .fa {
  margin-right: 15px;
}

.new-phone div {
  color: #fff;
  font-weight: bold;
}

.new-phone span {
  margin-bottom: 15px;
  display: block;
  color: #fff;
}

.new-phone.uk span {
  opacity: 0;
}

.new-phone.us span {
  opacity: 0;
}

.footernew-top-p-1 {
  border-top: 1px solid #777;
  padding-top: 25px;
  margin-top: 15px;
}

.rating-listt li {
  list-style: none;
  display: inline-block;
  width: auto;
}

@media only screen and (min-width: 1920px) {
  .tw-footer {
    max-width: 1320px;
    margin: 0 auto;
  }

  .footer-middle {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
  .mainnewfooter {
    padding-left: 45px;
    padding-right: 45px;
  }

  .footer-middle {
    padding-left: 45px;
    padding-right: 45px;
  }

  .star-img {
    padding: 0;
    width: 46%;
    display: inline-block;
  }

  .star-img img {
    padding: 0 20px 0px 0px;
  }

  .star-text {
    color: #fff;
    display: inline-block;
    width: 40%;
    vertical-align: middle;
    border-right: 1px solid;
    margin-right: 25px;
  }

  .newflag li {
    margin-right: 30px;
    margin-bottom: 25px;
  }

  .newflag li:last-child {
    width: 30%;
  }

  .star-section {
    padding: 20px 30px;
  }

  .zoho-badge-mobile {
    display: none;

  }

  .country-name {
    margin-left: 0;
  }

  .partner-logo {
    max-width: 150px;
  }

  .newflag li:last-child {
    display: none;
  }

  .navalign {
    justify-content: end;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .mainnewfooter {
    padding-left: 45px;
    padding-right: 45px;
  }

  .first-links {
    padding-left: 15px;
  }

  .first-links,
  .second-links,
  .third-links {
    display: block;
  }

  .footernew-top-right {
    padding-left: 24px;
    padding-top: 24px;
  }

  .newsocial li a {
    color: #fff;
    padding: 0 10px;
    line-height: 33px;
  }

  .newsocial li {
    width: 35px;
    height: 35px;
    margin-top: 2px;
    margin-right: 6px;
  }

  .footer-linked li a {
    font-size: 13px;
  }

  .zoho-badge-mobile {
    display: none;
  }

  .footer-head {
    font-size: 16px;
  }

  .footer-middle {
    padding-left: 24px;
    padding-right: 24px;
  }

  .star-img {
    padding: 0;
    width: 46%;
    display: inline-block;
  }

  .star-img img {
    padding: 0 20px 0px 0px;
  }

  .star-text {
    color: #fff;
    display: inline-block;
    width: 40%;
    vertical-align: middle;
    border-right: 1px solid;
    margin-right: 25px;
  }

  .newflag {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }

  .newflag li {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 15px;
    height: auto;
    width: auto;
    border: none;
    text-align: center;
  }

  .newflag li img {
    width: 35px;
  }

  .newflag li:last-child {
    width: 30%;
  }

  .star-section {
    padding: 0px 30px;
    margin: 0;
  }

  .star-text {
    margin: 0 5px 0px 10px;
    height: auto;
  }

  .rating-listt a {
    display: inline-flex;
    align-items: center;
  }

  .country-name {
    margin-left: 0;
  }

  .footerflag {
    width: 25%;
  }

  .footerflag img {
    width: 100%;
  }

  .newflag li:last-child {
    display: none;
  }

  .nav-link {
    padding: 15px 10px !important;
  }

  #theme-toggle {
    margin-left: 0;
    margin-right: 40px;
  }

  .navbar-brand {
    max-width: 60% !important;
    width: 50% !important;
  }

  .navbar .navbar-toggler {
    border: 1px solid #fff;
    font-size: 25px;
    padding: 7px;
    border-radius: 0px;
  }
}

.zoho-badge-mobile {
  width: 40%;
  margin: 10px 0;

}

@media only screen and (max-width: 767px) {
  .zoho-badge-mobile {
    display: none;

  }

  .tw-footer.footer-top-space {
    padding: 40px 15px 0px;
  }

  .first-links,
  .second-links,
  .third-links {
    display: none;
  }

  .rating-listt {
    overflow: auto;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    padding: 10px;
  }

  .mobilephone {
    flex: 100%;
  }

  .footernew-top {
    padding: 25px;
  }

  .newflag li:last-child {
    width: 100%;
  }

  .new-address {
    margin: 15px 0px 25px 0px;
  }

  .newflag li:last-child div {
    text-align: left;
  }

  .newflag li {
    margin-right: 30px;
  }

  .mainnewfooter {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footernew-top-right {
    padding-left: 0px;
  }

  .footernew-top-right .pt-4 {
    padding-top: 0px !important;
  }

  .moving-text {
    margin: 20px 0;
  }

  .footer-middle {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .first-links {
    padding-left: 15px;
  }

  .second-links {
    padding-left: 15px;
  }

  .country-list {
    padding-left: 15px;
  }

  .newflag {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }

  .newflag li {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 15px;
    height: auto;
    width: auto;
    border: none;
    text-align: center;
  }

  .newflag li img {
    width: 35px;
  }


  .newflag li:last-child {
    margin-top: 18px;
    width: auto;
  }

  .star-section {
    margin: 10px 0;
    padding: 5px 15px;
  }

  .star-img {
    width: 118px;
    margin: 0;
  }

  .star-img img {
    padding: 0;
    width: 100%;
    display: block;
  }

  .star-text {
    width: auto;
    margin: 7px 25px 0px 10px;
    height: 75%;
    vertical-align: top;
    padding-right: 15px;
  }

  .star-text i {
    padding: 0px 5px;
  }

  .copyright {
    padding: 10px 0;

  }

  .moving-text marquee {
    display: none;
    padding: 240px;
    font-size: 600px;
  }

  .country-name {
    margin-left: 0;
  }

  .partner-row {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .partner-logo {
    width: 33.33%;
  }

  .countryname {}

  .footerflag {}
}

/* End Footer css*/
@media (max-width: 991.98px) {

  /* Turn the collapse into a fixed sidebar */
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    /* Hidden by default */
    width: 100%;
    height: 100vh;
    background: #000;
    /* Dark theme */
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
    /* Override Bootstrap display none */
    z-index: 1050;
    padding: 20px 0;
    overflow-x: hidden;
  }

  /* When Bootstrap adds 'show', slide it in */
  .navbar-collapse.show {
    left: 0;
  }

  .mobile-nav-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .mobile-nav-slider {
    display: flex;
    width: 200%;
    /* Two layers side-by-side */
    transition: transform 0.4s ease;
  }

  /* Slide logic triggered by JS */
  .sub-menu-active .mobile-nav-slider {
    transform: translateX(-50%);
  }

  .mobile-layer {
    width: 50%;
    padding: 0 20px;
  }

  .sub-layer {
    display: none;
    /* Hidden until clicked */
    margin-top: 30px;
  }

  .cta_btn {
    display: none;
  }

  .navbar-brand {
    max-width: 60%;
    width: 60%;
  }

  .back-btn {
    background: none;
    border: none;
    color: #fff;
    padding: 10px 0;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
  }

  .menu-title {
    color: #fff;
    font-size: 28px;
    line-height: 28px;
    margin: 20px 0 10px 0;
    border-bottom: 1px solid #595959;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }


  .menu-group {
    margin-bottom: 20px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
  }

  .menu-group h6 {
    margin-bottom: 0px;
  }

  body.menu-open {
    overflow: hidden;
    height: 100vh;
  }

  .mobile-sub-content {
    padding-bottom: 80px;
  }

  .menu-group h6 a {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 0px;
  }

  .mobile-nav-slider .cta_btn {
    display: block !important;
  }

  .mobile-nav-slider .cta_btn .marquee-button {
    width: 180px;
    font-size: 14px;
    margin-left: 0px;
    height: 36px;
    margin-top: 20px;
  }

  .menu-group a {
    display: block;
    color: #fff;
    font-weight: 300;
    text-decoration: none;
    padding: 8px 0;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
  }

  .menu-child {
    padding-left: 15px !important;
  }

  .menu-group a:hover {
    color: #4093D0;
  }

  .nav-link.trigger-next {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-sidebar-header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 20px;
  }

  .mobile-sidebar-logo {
    width: 50%;
  }

  .close-sidebar {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .mobile-nav-slider .navbar-nav {
    margin-right: 0;
    margin-top: 30px;
  }

  .close-sidebar svg {
    width: 30px;
  }

  .mobile-nav-wrapper .navbar-nav .nav-link {
    padding: 10px 0 !important;
    color: #16171a;
    font-size: 34px;
    line-height: 44px;
    text-transform: capitalize;
    letter-spacing: -.25px;
    display: block;
  }

  .mobile-nav-slider {}

  .trigger-next svg {
    transform: rotate(90deg);
  }
}

/* ================= Zoho Pages ================= */

.transform.section-dark {
  padding: 80px 0;
  padding-top: 30px !important;
  color: #fff;
}

/* Sub headings */
.transform-subtitle {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Solutions row */
.transform-solutions {
  display: flex;
  gap: 24px;
}

.transform-solution-item {
  flex: 0 0 33.333%;
}

.transform-solution-item img {
  height: 40px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.transform-solution-item p {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

/* Bullet points */
.transform-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transform-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.transform-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4caf50;
  font-weight: bold;
}

/* Video */
.transform-video-wrapper {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.transform-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transform-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  /* MUST match .transform-video-wrapper height */
}

iframe.ecom-video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: none;
  /* Necessary to remove the default iframe border */
  display: block;
}

.premium-zoho .transform-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  /* MUST match image height */
}

/* Make both columns equal height */
.premium-zoho .row {
  align-items: stretch;
}

/* Image wrapper slightly taller than content */
.premium-zoho .transform-video-wrapper {
  height: 100%;
  min-height: 560px;
  /* slightly bigger than content */
  border-radius: 16px;
  overflow: hidden;
}

/* Image fills wrapper */
.premium-zoho .transform-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right content vertically centered */
.premium-zoho .transform-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 24px;
}

.heading-gap {
  margin-bottom: 40px;
}

/* Mobile behavior */
@media (max-width: 991px) {
  .premium-zoho .transform-video-wrapper {
    min-height: 320px;
    margin-bottom: 32px;
  }

  .premium-zoho .transform-content {
    height: auto;
    justify-content: flex-start;
    padding-left: 0;
  }
}

.zoho-solution {
  padding-top: 80px;
  padding-bottom: 10px;
}

@media (max-width: 767px) {

  /* Reduce top padding so heading + image don't clash */
  .premium-zoho {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /* Image card height reduced & controlled */
  .premium-zoho .transform-video-wrapper {
    height: 260px;
    /* balanced for mobile */
    margin-bottom: 30px;
    /* space before content */
  }

  /* Ensure image scales cleanly */
  .premium-zoho .transform-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
  }

  .heading-gap {
    margin-bottom: 10px;
  }

  /* Reset vertical centering on mobile */
  .premium-zoho .transform-content {
    min-height: auto;
    justify-content: flex-start;
    padding: 0 10px;
  }

  /* Improve readability spacing */
  .premium-zoho .transform-subtitle {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .premium-zoho p {
    font-size: 14px;
    line-height: 1.6;
  }

  .premium-zoho .transform-points li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .premium-zoho .transform-video-wrapper {
    margin-top: 0px;
  }
}

.service-img-box {
  height: 445px;
  /* match the right content visually */
}

.service-img-box iframe {
  height: 100%;
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .service-img-box {
    height: 220px;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .transform.section-dark {
    padding: 40px 10px;
  }

  .transform-solutions {
    flex-direction: column;
  }

  .transform-solution-item {
    flex: 0 0 100%;
  }

  .transform-video-wrapper {
    height: 300px;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {

  /* FORCE row layout on mobile */
  .transform-solutions {
    display: flex;
    flex-direction: row;
    /* override column */
    flex-wrap: wrap;
    gap: 16px;
  }

  .last-item {
    margin-top: 0px !important;
  }

  .added {
    margin-bottom: 25px !important;
  }

  /* First two items = 50% */
  .transform-solutions .transform-solution-item {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }

  /* Third item = full width */
  .transform-solutions .transform-solution-item:nth-child(3) {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 8px;
  }

  /* Optional: better mobile alignment */
  .transform-solution-item {
    text-align: left;
  }
}

@media (max-width: 767px) {

  .premium-zoho .transform-video-wrapper {
    height: auto;
    /* let image define height */
    max-height: 380px;
    /* prevent oversized image */
    margin-bottom: 24px;
  }

  .premium-zoho .transform-video-wrapper img {
    width: 100%;
    height: auto;
    /* natural image height */
    object-fit: contain;
    /* SHOW full image */
    border-radius: 16px;
  }
}

/* ================= CTA SECTION ================= */

.cta-section {
  padding: 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.cta-subtitle {
  font-size: 18px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.zoho-faq {
  padding-top: 110px !important;
}

.faq-accordian {
  margin-top: 0px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-section {
    padding: 30px 0;
    padding-bottom: 40px;
  }

  .cta-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .faq {
    margin-top: 40px;
  }

  .zoho-solution {
    padding-top: 30px !important;
    padding-bottom: 40px !important;
  }

  .mobile-counter {
    padding-top: 30px !important;
    padding-bottom: 40px !important;
  }

  .zoho-faq {
    padding-top: 70px !important;
  }
}

@media (max-width: 767px) {

  .counter-2-1-mobile>div {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .counter-2-1-mobile>div:nth-child(3) {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Center all text inside counters */
  .counter-2-1-mobile .stat-card-content {
    text-align: center;
  }

  /* Reduce number size */
  .counter-2-1-mobile .stat-number {
    font-size: 36px;
    /* was larger */
    line-height: 1.1;
  }

  /* Reduce label size */
  .counter-2-1-mobile .stat-label {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 6px;
  }
}

.zoho-certifications-section {
  padding: 80px 0;
}

/* Grid layout */
.zoho-logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* Logo container – NO CARD LOOK */
.zoho-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Force uniform visual size */
.zoho-logo-card img {
  height: 42px;
  /* KEY: same height for all */
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* ===== MOBILE: 3 + 2 ===== */
@media (max-width: 768px) {

  .zoho-logos-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px !important;
    /* as requested */
  }

  /* Mini card size on mobile */
  .zoho-certifications-section .zoho-logo-card {
    min-width: 95px;
    padding: 10px;
  }

  /* Image adjusted proportionally */
  .zoho-certifications-section .zoho-logo-card img {
    height: 44px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
  }
}



/* === Zoho Certifications: match company slider dimensions === */

.zoho-certifications-section .zoho-logo-card {
  width: 170px;
  height: 90px;
  padding: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #12121291;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Logo sizing inside box */
.zoho-certifications-section .zoho-logo-card img {
  width: 195px;
  height: 90px;
  object-fit: contain;
}

/* Grid spacing adjustment */
.zoho-certifications-section .zoho-logos-grid {
  gap: 30px;
  justify-items: center;
}

/* =====================================================
   EXPERTISE MEGA MENU – SIDEBAR
===================================================== */

.expertise-sidebar {
  max-height: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
}
/* Hide scrollbar */
.expertise-sidebar::-webkit-scrollbar {
  display: none;
}

/* Clamp sidebar card text */
.expertise-category-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.expertise-category-card {
  flex-shrink: 0;
}

/* =====================================================
   EXPERTISE DROPDOWN – CLEAN ICON CARDS
===================================================== */

/* Card (anchor wraps whole card) */
.navbar .expertise-service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover card */
.navbar .expertise-service-item:hover {
  border-color: rgba(64, 147, 208, 0.45);
  background: rgba(64, 147, 208, 0.05);
  box-shadow: 0 0 0 1px rgba(64, 147, 208, 0.15);
}

/* Icon wrapper */
.navbar .expertise-service-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* SVG icons */
.navbar .line-icon {
  width: 32px;
  height: 32px;
  stroke: #9aa6b2;
  fill: none;
  stroke-width: 1.6;
  transition: stroke 0.25s ease;
}

/* Icon hover */
.navbar .expertise-service-item:hover .line-icon {
  stroke: #4093D0;
}

/* Content wrapper */
.navbar .expertise-service-content {
  display: flex;
  flex-direction: column;
}

/* Heading */
.navbar .expertise-service-content h4 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.25s ease;
}

/* Heading hover */
.navbar .expertise-service-item:hover h4 {
  color: #4093D0;
}

/* Description */
.navbar .expertise-service-content p {
  margin: 0;
  color: #b9c2cf;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.25s ease;
}

/* Description hover */
.navbar .expertise-service-item:hover p {
  color: #e3e8ef;
}

/* Keep right panel height aligned with sidebar */
.expertise-content-section {
  height: 100%;
}

/* Scrollable services grid */
.scrollable-grid {
  max-height: 100%;
  /* SAME as .expertise-sidebar */
  overflow-y: auto;
  padding-right: 6px;
}

/* Hide scrollbar (WebKit) */
.scrollable-grid::-webkit-scrollbar {
  display: none;
}

.mobilephone .iti.iti--allow-dropdown {
  display: inline-flex;
  width: 100%;
}

.mobilephone .iti__flag-container {
  position: relative;
  border-bottom: 1px solid #606060 !important;
}

.iti__country-list {
  background-color: #000 !important;
  border: 1px solid #5e5e5e !important;
}

#formMessageFooter {
  margin-top: 10px;
}

input:invalid {
  border-color: #dc3545;
}



/* Ensure the flag doesn't overlap the label */
.iti {
  width: 100%;
  display: block;
}

.form-floating>.iti+label {
  padding-left: 54px !important;
  top: 0;
}

#floatingNumber {
  padding-left: 54px !important;
}

.error-text {
  color: #dc3545;
  font-size: 14px;
  display: none;
  margin-top: 6px;
}

.is-invalid {
  border-color: #dc3545 !important;
}

.group-invalid {
  padding: 10px;
  border-radius: 6px;
}

.error-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.error-content {
  position: relative;
  z-index: 10;
}

.error-title {
  font-size: clamp(10rem, 25vw, 18rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
  line-height: 0.8;
  margin: 0;
  letter-spacing: 0px;
  background-color: transparent;


  border-radius: 60px;

  /* Clean Outline */
  display: inline-block;
}

.apple-glass-card {
  border-radius: 50px;
  display: inline-block;
}

.glass-404 {
  font-size: clamp(8rem, 20vw, 15rem);
  font-weight: 800;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  line-height: 1;
  /* Transparent text with subtle outline */
  color: rgba(255, 255, 255, 0.1);
  -webkit-text-stroke: 1px rgb(255 255 255 / 36%);
  letter-spacing: -5px;
}

.error-sub {
  color: #fff;
  font-size: 46px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 0px;
  font-weight: bold;
}

.btn-apple {
  margin-top: 15px;
  padding: 10px 35px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-block;
}

.btn-apple:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--apple-glow);
}

button#clear-filters-btn {
  border-radius: 0;
}
/* --- Apple Glass Button Styling --- */
.custom-cta-btn.service-banner-cta {
    
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0;
    border: none;
    /* Glassmorphism */
    background-color: var(--btn-glass);
    color: var(--c-content);
    
    transition: all 400ms cubic-bezier(1, 0, 0.4, 1);
    overflow: hidden;
}

/* Button Hover State */
.custom-cta-btn.service-banner-cta:hover {
    color: #fff;
    cursor: pointer;
    background-color: color-mix(in srgb, var(--c-action) 85%, transparent);
   
}

/* "Shine" Animation Element */
.custom-cta-btn.service-banner-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.6s;
}

.custom-cta-btn.service-banner-cta:hover::before {
    left: 100%;
}

.custom-cta-btn.service-banner-cta:active {
    transform: translateY(0) scale(0.96);
    transition: 100ms;
}


@media (max-width: 991px) {
    .expert-cards {
        height: 100vh !important;
        position: relative;
        overflow: hidden;
        display: block; /* Disable flex on mobile for stacking */
    }

    .expert-card {
        position: absolute !important;
        width: 85% !important;
        max-width: 320px;
        height: 450px; /* Adjust based on content */
        /* Center them */
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0px -10px 20px rgba(0,0,0,0.1); /* Adds depth to the "stack" */
    }
}
/* Mega menu feedback updates*/
@media (min-width: 992px) {
    /* 1. When Software is active, expand the main content area to fill the width */
    .expertise-container:has(.expertise-content-section[data-category="software"].active) .expertise-main-content {
        flex: 1;
        border-right: none;
        padding-right: 0;
    }

    /* 2. When Software is active, hide the right featured column */
    .expertise-container:has(.expertise-content-section[data-category="software"].active) .expertise-featured {
        display: none !important;
    }

    /* 3. Force the Software grid into a 3x3 layout */
    .software-grid-layout {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px 30px !important;
        max-height: none !important; /* Disable scroll for 3x3 look */
        padding-bottom: 20px;
    }

    /* 4. Optional: Adjust text size slightly to ensure 3 columns look clean */
    .software-grid-layout .expertise-service-content p {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* 1. Ensure the container is the reference point */
.portfolio__item {
  position: relative;
  display: inline-block; /* or block, depending on your layout */
  overflow: hidden;
    transition: opacity 0.3s ease;
}

/* 2. Create the overlay */
.portfolio__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Adjust colors and opacity here */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  transition: opacity 0.3s ease;
  pointer-events: none; /* Allows clicks to pass through to the image/link */
}
.portfolio__item:hover{
  cursor: pointer;
}

/* 3. Optional: Hover effect to fade the gradient */
.portfolio__item:hover::after {
  opacity: 1;
    transition: opacity 0.3s ease;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 89%) 100%);
}

/* Ensure the image fills the space */
.mover {
  display: block;
  width: 100%;
  height: auto;
}