/* Reset and Base Styles */
:root {
  --primary-color: #e34d4d;
  --secondary-color: #ffbdbd;
  --text-color: #333;
  --gray-text-color: #ababab;

  --white: #fff;
  --black: #000;
  --gray-light: #ededed;
  --gray-medium: #495057;
  --gray-dark: #343a40;
  --transition-speed: 0.3s;
  --border-color: #cacaca;
  --gray-light-opacity: #ffffff80;
  --secondary-black: #111111;
  --third-black: #222222;
  --gray-light-medium: #353535;

  --font-family-nunito-sans: "Nunito Sans", sans-serif;
  --font-family-roboto: "Roboto", sans-serif;
  --font-family-ibm-plex-sans: "IBM Plex Sans", sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--black);
}

.container {
  width: 100%;
  max-width: 1440px;
  padding: 0 40px;
  margin: 0 auto;
}

/* Common Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 3rem;
}

/* Common Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  /* margin-bottom: 1rem; */
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.0625rem, 1.4911rem + 2.8571vw, 4.0625rem);
  line-height: clamp(2.5rem, 1.6964rem + 4.0179vw, 5.3125rem);
  font-weight: 600;
  color: var(--white);
}

.single-case-studies h1,
.single-post h1,
.author h1{
	font-size: clamp(1.875rem, 1.4821rem + 1.9643vw, 3.25rem);
	line-height: clamp(2.5rem, 1.9834rem + 2.583vw, 4.308125rem);
}

h2 {
  font-size: clamp(1.75rem, 1.6071rem + 0.7143vw, 2.25rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--white);
}

h2 span {
  color: var(--secondary-color);
}

h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0%;
  color: var(--white);
}

.heading-h3 {
  font-size: clamp(1.375rem, 1.2321rem + 0.7143vw, 1.875rem);
  line-height: 1.3;
  font-weight: 600;
  color: var(--white);
}

.heading-h4 {
  font-size: clamp(1.25rem, 1.2143rem + 0.1786vw, 1.375rem);
  line-height: clamp(1.5rem, 1.4286rem + 0.3571vw, 1.75rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.5rem, 1.3571rem + 0.7143vw, 2rem);
  line-height: clamp(1.5rem, 1.3571rem + 0.7143vw, 2rem);
  font-weight: 700;
  color: var(--white);
}

h5 {
  font-size: 1.25rem;
  color: var(--white);
}

h6 {
  font-size: 1rem;
  color: var(--white);
}

.heading-h2 {
  font-size: clamp(1.5rem, 1.2857rem + 1.0714vw, 2.25rem);
  line-height: 1.3;
  font-weight: 600;
  color: var(--white);
}

/* Common Link Styles */
/* Links */
a {
  color: var(--gray-text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

li {
  list-style: none;
}

a.latest-box:hover .latest-box-content h3,
.ai-solutions-list .solution-item:hover p a,
ul.horizontal-nav-list li a:hover,
a:hover {
  color: var(--primary-color) !important;
  cursor: pointer;
  /* text-decoration: underline; */
}

/* Common Button Styles */
.btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* Common List Styles */
ul,
ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

/* Common Image Styles */
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Common Form Styles */
input,
textarea,
select {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out;
}

input:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Layout Components */
.global-content-wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.global-solutions-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 1440px;
  padding-top: 42px;
  padding-bottom: 60px;
}

header {
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  /* gap: 171px; */
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  /* background-color: var(--black); */
}

header .main-header {
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  padding: 0 40px;
  margin: 0 auto;
}

/* Navigation */
.navigation-bar {
  box-sizing: border-box;
  display: block;
  width: 164px;
  max-width: initial;
  height: 34px;
}

.vertical-nav-container {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.horizontal-nav-list {
  box-sizing: border-box;
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  gap: 35px;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-heading {
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
  font: 700 18px Roboto, sans-serif;
  color: var(--primary-color);
}

.primary-text-block {
  /* flex: 0 0 auto;
    padding: 0;
    margin: 0; */
}
.mobile-logo {
	display: none;
}
ul.horizontal-nav-list > li > a {
  color: var(--white);
  font: 500 18px Roboto, sans-serif;
  cursor: pointer;
  padding: 46px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
ul.horizontal-nav-list > li > a.active{
	color: var(--primary-color);
}
.header-wrapper.scrolled ul.horizontal-nav-list > li > a{
	padding: 30px 0;
}
.horizontal-divider {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 91px;
  height: 21px;
}

/* Social Icons */
.flex-row-with-icons {
  box-sizing: border-box;
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}

.svg-container {
  box-sizing: border-box;
  display: flex;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--white);
}

/* Mega Menu Styles */
.services-menu {
  position: relative;
}

.mega-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #353535;
  color: #fff;
  min-width: 600px;
  padding: 20px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  z-index: 1000;
  border-radius: 10px;
  /*display: flex;
    */
  gap: 30px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.mega-menu-column {
  min-width: 270px;
  display: flex;
  flex-direction: column;
}

.mega-menu-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
}

.mega-menu-title span {
  display: none;
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-list li {
  font-size: 1.1rem;
  font-family: "Roboto", Arial, sans-serif;
  color: #fff;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  white-space: nowrap;
}

.mega-menu-list li .chevron {
  /* color: #e34d4d; */
  font-size: 1.2rem;
  margin-right: 0.7em;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mega-menu-list li .chevron.active{
	color: var(--primary-color);
}

.mega-menu-list li span.chevron img {
  min-width: 8px;
}

.mega-menu-list li:hover {
  color: #e34d4d;
  cursor: pointer;
}

.responsive-arrow.closs-btn,
.mobile-header-humburger {
  display: none;
	cursor: pointer;
}

.client-logo-wrapper {
  padding: 40px 0;
}

.client-logo-box {
  display: flex;
  flex-wrap: wrap;
	gap: 60px;
	justify-content: center;
}

.image-container {
  width: 120px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.slider-section.py {
  padding: 0;
}

.overlay-bannar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #00000063;
}

.justify-content-between {
  justify-content: space-between;
}

.item-link a {
  color: var(--primary-color);
}

section.hero-section,
section.blog-author,
.error-section,
section.zl-bg-section,
.contact-page {
  position: relative;
  margin-top: 80px;
}

.page-id-778 #back-to-top,
.page-id-719 #back-to-top {
  bottom: 90px;
}

section.blog-author,
.error-section {
  padding: 60px 0;
}
section.home-hero-section {
  margin: 0;
}

.image-container img {
  position: absolute;
  height: auto;
  width: auto;
  backface-visibility: hidden;
  transition: transform 2s, opacity 2s ease;
  transform: rotateY(180deg);
  opacity: 0;
  -webkit-transition: transform 2s, opacity 2s ease;
  -moz-transition: transform 2s, opacity 2s ease;
  -ms-transition: transform 2s, opacity 2s ease;
  -o-transition: transform 2s, opacity 2s ease;
}

.image-container img.active {
  transform: rotateY(0deg);
  opacity: 1;
}

.service-item:hover .service-content p a,
a:hover {
  color: var(--primary-color);
}
.error-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.error-code {
  font-size: clamp(7.5rem, 3.3929rem + 20.5357vw, 21.875rem);
  line-height: 100%;
  font-weight: 700;
  color: var(--white);
}
.error-code .zero {
  color: transparent;
  -webkit-text-stroke: 7px var(--primary-color);
  text-stroke: 7px var(--primary-color);
}

h2.message {
  margin-bottom: 20px;
}

.spinner-border {
  margin-right: 8px;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em;
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
}
.spinner-border.post-spinner{
	border: .25em solid var(--white);
	display: flex;
	align-items: center;justify-content: center;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
		margin: 0 auto;
}

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

@media (min-width: 768px) {
  .services-menu:hover .mega-menu,
  .services-menu:focus-within .mega-menu {
    display: flex;
  }
	.footer-toggle-icon {
		display: none;
	}
}

@media (max-width: 1440px) {
  /* header {
			margin-right: 10px;
			margin-left: 10px;
	} */
}

@media (max-width: 1199px) {
  .navigation-bar {
    width: 100px;
    height: auto;
  }

  .horizontal-nav-list {
    gap: 15px;
  }

  ul.horizontal-nav-list li a {
    font: 500 15px Roboto, sans-serif;
  }

  .flex-row-with-icons {
    gap: 10px;
  }
}

/* Responsive for Mega Menu */
@media (max-width: 991px) {
  .flex-row-with-icons {
    gap: 0;
  }

  ul.horizontal-nav-list li a {
    font: 500 14px Roboto, sans-serif;
  }

  .mega-menu {
    flex-direction: column;
    min-width: 300px;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .mega-menu-column {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  ul.horizontal-nav-list li a {
    font-size: 15px;
  }

  .privacy-page,
  .hero-section {
    padding-top: 43px !important;
  }

  .horizontal-nav-list li {
    margin: 0;
  }

  .mega-menu-column .mega-menu-title img,
  li.services-menu a span img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }

  .mega-menu-column.open .mega-menu-title img,
  li.services-menu.open a span img {
    rotate: 180deg;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }

  .mega-menu-column.open .mega-menu-list {
    border-top: 1px solid #7c7c7c;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }

  .mega-menu-list li .chevron {
    padding: 7px 0;
    font-size: 10px;
    width: 100%;
    color: #fff;
  }
	.mobile-logo {
		display: block;
	}
	.mobile-logo img{
		width: 100px;
		height: auto;
	}
  .mega-menu-list li .chevron img {
    display: none;
  }

  .responsive-arrow.closs-btn {
    display: block;
  }

  .mobile-header-humburger {
    padding: 10px;
    display: block;
  }

  .mobile-header-humburger img {
    width: 24px;
    height: 24px;
  }

  header .main-header {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    top: 0;
    right: -250px;
    background: #111111;
    margin: 0;
    bottom: 0;
    align-items: flex-start;
    width: 235px;
    justify-content: start;
    padding: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
		overflow-y: auto;
		padding-bottom: 10px;
		scrollbar-width: none;
		-ms-overflow-style: none;
  }
  header .main-header::-webkit-scrollbar {
		display: none;
	}
  header.open .main-header {
    right: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }

  .navigation-bar {
    width: 58px;
    height: auto;
    /* margin: 15px; */
  }

  .vertical-nav-container {
    justify-content: start;
    width: 100%;
  }

  .horizontal-nav-list {
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid #7c7c7c;
    margin-bottom: 15px;
  }

  .flex-row-with-icons {
    gap: 10px;
    padding-left: 10px;
  }

  .horizontal-nav-list li {
    width: 100%;
  }

  ul.horizontal-nav-list li a {
    padding: 15px;
    border-bottom: 1px solid #7c7c7c;
    justify-content: space-between;
  }

  .mega-menu {
    display: none;
    flex-direction: column;
    background: #181818;
    border-radius: 8px;
    margin-top: 10px;
    width: 100%;
    z-index: 100;
    position: static;
    gap: 0;
  }

  .services-menu.open .mega-menu {
    display: flex;
    width: 100%;
    min-width: 100%;
    border-radius: 0;
  }

  .mega-menu-column {
    border-bottom: 1px solid #333;
    padding: 0 15px;
    margin-left: 10px;
  }

  .mega-menu-title {
    cursor: pointer;
    padding: 12px 0;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    font: 500 14px Roboto, sans-serif;
  }

  .mega-menu-title span {
    display: block;
  }

  .mega-menu-list {
    display: none;
    flex-direction: column;
    padding-left: 10px;
    /* background: #222; */
    border-radius: 4px;
    margin-bottom: 10px;
    font: 500 12px Roboto, sans-serif;
  }

  .mega-menu-column.open .mega-menu-list {
    display: flex;
  }

  .mega-menu {
    margin: 0;
    padding: 0;
  }
}

.btn {
  gap: 10px;
  border-radius: 10px;
  padding: 15px 30px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  width: fit-content;
  color: var(--white);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  text-transform: capitalize;
}

.btn:hover,p:hover a.btn {
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--primary-color);
}

.py {
  padding: 60px 0px;
}

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

.pt-0 {
  padding-top: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

p {
  font-family: var(--font-family-roboto);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--gray-text-color);
}

p:not(:last-child) {
  padding-bottom: 16px;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

/* hero section */
.privacy-page,
.overlay-bannar {
  padding-top: 120px;
}
.privacy-page{
	padding-top: 120px !important;
}

.hero-section {
  padding: 60px 25px;
  justify-content: center;
  background: url(../images/hero-bg.png) no-repeat center center;
  background-size: cover;
}
.hero-section-content {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-title .hero-subtitle {
  font-family: var(--font-family-nunito-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
}

.hero-title h1 {
  text-align: center;
}

.hero-title h1 span {
  color: var(--secondary-color);
}

.hero-dec {
  text-align: center;
  /* max-width: 1100px; */
  margin: 0 auto;
}

.hero-dec p {
	font-size: clamp(1.125rem, 1.0536rem + 0.3571vw, 1.375rem);
  font-weight: 400;
	line-height: clamp(1.625rem, 1.4821rem + 0.7143vw, 2.125rem);
  color: var(--gray-text-color);
}

.hero-section-content .btn {
  margin: 0 auto;
}

/* slider */
.slider-wrapper .slider .slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/1;
}

.slider-wrapper .slider .slider-item img {
  width: 120px;
  height: auto;
  object-fit: contain;
  max-width: 100%;
}

/* ai solutions section */
.ai-solutions-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ai-solutions-reverse-wrapper {
  flex-direction: row-reverse;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ai-solutions-content {
  width: calc(45% - 10px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ai-solutions-title,
.heading-description {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ai-solutions-title h2,
.heading-description h2 {
  color: var(--white);
}

.ai-solutions-title p {
  padding-bottom: 0;
}

.ai-solutions-images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: calc(45% - 10px);
}

.ai-solutions-images-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(50% - 10px);
}

.ai-solutions-images img {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.ai-solutions-images .ai-solutions-images-item:nth-child(1) {
  margin-top: 30px;
}

.ai-solutions-images .ai-solutions-images-item:nth-child(2) {
  margin-bottom: 30px;
}

.ai-solutions-images .ai-solutions-images-item:nth-child(1) img:first-child,
.ai-solutions-images .ai-solutions-images-item:nth-child(2) img:last-child {
  height: 171px;
}

.ai-solutions-images .ai-solutions-images-item:nth-child(2) img:first-child,
.ai-solutions-images .ai-solutions-images-item:nth-child(1) img:last-child {
  height: 285px;
}

.ai-solutions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ai-solutions-list .solution-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.ai-solutions-list .solution-item .solution-number {
  font-size: clamp(1.875rem, 1.3393rem + 2.6786vw, 3.75rem);
  font-weight: 800;
  line-height: 1.3;
  font-family: var(--font-family-roboto);
  color: var(--primary-color);
}

.ai-solutions-list .solution-item .solution-icon {
  flex: none;
}

.ai-solutions-list .solution-item .solution-icon img {
  width: 80px;
  height: auto;
  object-fit: contain;
}
.ai-solutions-list .solution-item p a,
.service-item .service-content p a {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--gray-light-opacity);
}

/* seravices */
.our-services-section {
	background-repeat: no-repeat;
	background-position: center;
  background-size: cover;
}

.our-services-wrapper,
.text-split-content {
  display: flex;
  align-items: start;
  gap: 50px;
  flex-wrap: wrap;
}

.services-content,
.text-split-left,
.text-split-right {
  width: calc(50% - 25px);
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-list {
  width: calc(50% - 25px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
}

.service-item .service-icon {
  flex: none;
}

.service-item .service-icon img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.service-item .service-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home .hero-section {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 !important;
	margin: 0 !important;
}
.home .hero-section .container{
	display: flex;
	flex-direction: column;
	gap: 100px;
	height: 100%;
	justify-content: center;
}
.home .hero-section .container .hero-title{
  gap: 20px;
}
.home .hero-section .hero-section-content{
	padding-bottom: 0 !important;
	padding-top: 100px !important;
	/* flex: 1; */
	/* justify-content: center; */
}
/* .home .hero-client-logo-wrapper {
	margin-bottom: 50px;
} */
/* CEO */

.ceo-wrapper {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid #7c7c7c;
  background-color: var(--secondary-black);
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ceo-content {
  padding-left: 20px;
  border-left: 2px solid var(--primary-color);
}

.ceo-content p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: var(--white);
}

.ceo-content-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ceo-content-wrapper img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.ceo-content-wrapper .ceo-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ceo-content-wrapper .ceo-title h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: var(--white);
}

.ceo-content-wrapper .ceo-title p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: var(--white);
}

.ceo-content-wrapper a{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* about us section */
.about-us-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about-us-wrapper h3 {
  margin-bottom: 16px;
}

.about-us-content-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.about-us-content-wrapper .about-us-content {
  width: calc(65% - 15px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-us-content-wrapper .about-us-images {
  width: calc(35% - 15px);
}

.about-us-content-wrapper .about-us-images img {
  width: 100%;
  /* height: 400px; */
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.about-us-content-wrapper ul,
.maintenance-packages-dec ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.about-us-content-wrapper ul li,
.maintenance-packages-dec ul li {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--gray-text-color);
  padding-left: 30px;
}
.maintenance-packages-dec ul li {
  padding-left: 20px !important;
}
.maintenance-packages-dec ul li::before {
  content: "";
  position: absolute;
  left: 0;
  background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.99458 6.8C2.15032 5.3283 1.26277 3.93962 0.548404 2.45283C0.194828 1.72075 0.17318 0.822642 0 0C0.800959 0.29434 1.7318 0.4 2.38123 0.90566C4.01923 2.17358 5.52012 3.64528 7.10761 4.98868C8.0601 5.79623 8.37038 6.58113 7.43954 7.66038C5.83041 9.53962 4.31508 11.4943 2.6843 13.3509C2.35958 13.7208 1.71737 13.7887 1.21948 14C1.10402 13.3962 0.757664 12.7094 0.923629 12.2038C1.50811 10.4075 2.26578 8.6717 2.99458 6.80755V6.8Z" fill="%23E34D4D"/></svg>');
  top: 8px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 8px;
  height: 14px;
}
.about-us-content-wrapper ul li::before {
  content: "";
  position: absolute;
  left: 0;
  background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.17223 7.63624C2.27789 6.15454 1.33769 4.75643 0.580939 3.25954C0.206386 2.52249 0.183454 1.61827 0 0.790039C0.848477 1.08638 1.83454 1.19276 2.5225 1.70185C4.25767 2.97839 5.84761 4.46009 7.52928 5.81261C8.53828 6.62565 8.86697 7.41589 7.8809 8.50247C6.1763 10.3945 4.57107 12.3625 2.84354 14.2317C2.49957 14.604 1.81926 14.6724 1.29183 14.8852C1.16952 14.2773 0.802613 13.5858 0.978424 13.0767C1.59758 11.2683 2.4002 9.52066 3.17223 7.64384V7.63624Z" fill="%23E34D4D"/><path d="M9.13507 15.2722C8.90575 14.5124 8.4624 13.8589 8.59999 13.365C8.94397 12.1112 9.46376 10.8879 10.0676 9.73293C10.8702 8.19045 10.7938 6.86072 9.67779 5.4778C8.90575 4.5204 8.29424 3.42622 7.74387 2.33204C7.54513 1.93692 7.52984 1.18468 7.78209 0.918733C8.01141 0.675582 8.87517 0.660385 9.17329 0.895937C11.4053 2.67397 13.6068 4.5128 15.7241 6.42001C16.0223 6.68596 16.0987 7.67375 15.8541 7.98529C14.0731 10.2116 12.185 12.362 10.3122 14.5124C10.1211 14.7327 9.80773 14.8467 9.13507 15.2722Z" fill="%23E34D4D"/></svg>');
  top: 8px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
}

.about-counter-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.about-counter-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 30px 10px;
  background-color: var(--third-black);
  /* min-width: 200px; */
  white-space: nowrap;
}

.about-counter-item .counter {
  font-weight: 700;
  font-size: 34px;
  line-height: 100%;
  text-align: center;
  color: var(--primary-color);
}

.about-counter-item .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: var(--white);
}
.why-choose-us-section{
	background-image: url(../images/why-choose-us.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	position: relative;
  z-index: 2;
}
.why-choose-us-wrapper {
  padding:0 35px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-choose-us-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-choose-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(0 0 0) 0%, rgba(39, 45, 78, 0) 67.26%),
    linear-gradient(
      90deg,
      rgba(26, 26, 26, 0.9) 49.97%,
      rgba(0, 0, 0, 0) 67.26%
    );
  width: 100%;
  height: 100%;
  z-index: -1;
}

.why-choose-us-item {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 15px;
  background-color: var(--gray-light-medium);
  max-width: 617px;
  padding: 12px 12px 12px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-choose-us-item:nth-child(even) {
  margin-left: 50px;
}

.why-choose-us-item .why-choose-us-icon {
  flex: none;
}

.why-choose-us-item .why-choose-us-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.why-choose-us-content {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 16px;
  border-left: 1px solid var(--primary-color);
}

.why-choose-us-content h3 {
  font-weight: 800;
  font-size: 18px;
  line-height: 100%;
  color: var(--white);
}

.why-choose-us-content p {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: var(--gray-light);
}

/* client section */
.client-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.client-wrapper,
.portfolio-wrapper,
.latest-wrapper,
.footer-content-section-wrapper,
.core-values-section .core-values-wrapper,
.coman-gap-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.footer-social-link img {
  width: 100%;
  height: 100%;
	object-fit: contain;
}
.footer-social-link a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-slider-item {
  border-radius: 10px;
  border: 2px solid #7c7c7c;
  padding: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex !important;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  min-height: 420px !important;
}

.client-slider-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  margin: 0 auto;
  -o-border-radius: 50%;
	object-fit: contain;
}

.client-slider-item .client-content {
  flex: 1;
}

.client-slider .slick-slide {
	margin: 0 30px;
	flex: 1;
	display: flex !important;
	flex-direction: column;
	height: unset;
}
.client-slider .slick-track{
	display: flex;
	height: 100%;
}

.client-slider-item .client-content p {
  font-weight: 400;
  font-size: 17px;
  line-height: 35px;
  text-align: center;
  color: var(--white);
  flex: 1;
}

.client-slider-item .client-owner {
  border-top: 1px solid #7c7c7c;
  padding-top: 20px;
  width: 100%;
}

.client-slider-item .client-owner h3 {
  font-weight: 600;
  font-size: 23px;
  line-height: 35px;
  color: var(--white);
}

.client-slider-item .client-owner p {
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  color: var(--white);
}

.client-slider .slick-prev::before,
.client-slider .slick-next::before,
.people-say-slider .slick-prev::before,
.people-say-slider .slick-next::before,
.review-slider .slick-prev::before,
.review-slider .slick-next::before {
  content: none;
}

.client-slider .slick-prev,
.client-slider .slick-next,
.people-say-slider .slick-prev,
.people-say-slider .slick-next,
.review-slider .slick-prev,
.review-slider .slick-next {
  top: 100%;
}

.client-slider .slick-prev,
.people-say-slider .slick-prev,
.review-slider .slick-prev {
  left: 47%;
  transform: translateX(-50%);
}

.client-slider .slick-next,
.people-say-slider .slick-next,
.review-slider .slick-next {
  right: 47%;
  transform: translateX(-50%);
}

.client-slider,
.people-say-slider,
.review-slider {
  padding-bottom: 30px;
}

.portfolio-tabs,
.technology-tabs {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.portfolio-tabs .tab-buttons,
.technology-tabs .tab-buttons,
.portfolio-section .tab-buttons,
.technologies-wrapper .tab-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.portfolio-tabs .tab-buttons::-webkit-scrollbar,
.technology-tabs .tab-buttons::-webkit-scrollbar,
.portfolio-section .tab-buttons::-webkit-scrollbar {
  display: none;
}

.portfolio-tabs .tab-btn,
.technology-tabs .tab-btn,
.portfolio-section .tab-btn,
.technologies-wrapper .tab-btn {
  white-space: nowrap;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: var(--white);
  cursor: pointer;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
}

.portfolio-tabs .tab-btn.active,
.technology-tabs .tab-btn.active,
.portfolio-section .tab-btn.active,
.technologies-wrapper .tab-btn.active {
  border-color: var(--primary-color);
  font-weight: 700;
  color: var(--primary-color);
}
.portfolio-section .post-filter-wrapper .tab-buttons {
  justify-content: flex-start;
  row-gap: 10px;
	flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
	-ms-overflow-style: none;
}
.portfolio-section .post-filter-wrapper .tab-buttons .tab-btn {
  white-space: nowrap;
  text-align: left;
}
.post-filter-wrapper,
.technologies-section .tabs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.portfolio-tabs .tab-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px;
  column-gap: 46px;
}

.tab-item {
  display: none;
}

.tab-item.show {
  display: flex;
  flex-direction: column;
}

.portfolio-tabs .tab-content .tab-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.portfolio-tabs .tab-content .tab-item .protfolio-title,
.latest-content-boxs .case-studies-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 0.3px solid var(--border-color);
  /* flex: 1; */
}

.portfolio-tabs .tab-content .tab-item .protfolio-title a {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  /* text-decoration: underline; */
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  color: var(--white);
}

.portfolio-tabs .tab-content .tab-item .protfolio-title .protfolio-tag {
  display: flex;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  color: var(--white);
  gap: 5px;
}

.portfolio-tabs .tab-content .tab-item .protfolio-title .protfolio-tag span {
  white-space: nowrap;
}

.portfolio-tabs
  .tab-content
  .tab-item
  .protfolio-title
  .protfolio-tag
  span:not(:last-child) {
  padding-right: 5px;
  border-right: 1px solid var(--white);
}

.portfolio-tabs .tab-content .tab-item .protfolio-content,
.latest-content-boxs .case-studies-content {
  padding-top: 10px;
}

.portfolio-tabs .tab-content .tab-item .protfolio-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  /* color: var(--white); */
}

.latest-content-boxs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.latest-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.latest-box img {
  width: 100%;
  height: 280px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.latest-box-content p {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: var(--white);
}
.latest-box-content h3{
	font-weight: 500;
}
.footer-content-wrapper {
  display: flex;
  align-items: stretch;
  gap: 20px;
  justify-content: space-between;
}

.footer-content-wrapper .footer-content-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: max-content;
}

.footer-content-wrapper .footer-content-right {
  padding: 10px 0px 10px 30px;
  border-left: 1px solid var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: none;
}

.footer-content-wrapper .footer-content-left p,
.footer-content-wrapper .footer-content-right p {
  font-family: var(--font-family-ibm-plex-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--gray-text-color);
  padding-bottom: 0;
}

.footer-content-wrapper .footer-content-right p {
  font-size: 22px;
}
.zl-captcha-content{
	display: none;
}
.footer-wrapper {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-wrapper .footer-tab:first-child {
  width: 40%;
  padding-right: 20px;
}

.footer-wrapper .footer-tab {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-wrapper .footer-tab .logo {
  width: 274px;
}

.footer-wrapper .footer-tab .logo img {
  width: 100%;
}

.footer-wrapper .footer-tab .footer-content p {
  font-family: var(--font-family-ibm-plex-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--gray-text-color);
}

.footer-wrapper .footer-tab .footer-content,
.footer-wrapper .footer-tab .footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-wrapper .footer-tab .footer-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family-ibm-plex-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--white);
}

.footer-wrapper .footer-tab .footer-content a svg {
  flex: none;
}

.footer-wrapper .footer-tab .footer-social .footer-social-link,
.footer-wrapper .footer-tab .footer-social .footer-review-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-wrapper .footer-tab .footer-social .footer-review-logos {
  gap: 10px;
}

.footer-tab-title {
  color: var(--primary-color);
}

.footer-tab ul {
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-tab ul li a {
  font-family: var(--font-family-ibm-plex-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--gray-text-color);
}

.copy-right-wrapper {
  padding: 16px 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.copy-right-wrapper .copy-right-content p {
  font-family: var(--font-family-ibm-plex-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--white);
}

.copy-right-wrapper .copy-right-link {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
  flex: none;
}

.copy-right-wrapper .copy-right-link a {
  font-family: var(--font-family-ibm-plex-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--white);
  white-space: nowrap;
}

.copy-right-wrapper .copy-right-link a:not(:first-child) {
  padding-left: 8px;
  border-left: 2px solid var(--border-color);
}

.zl-Blogs-table-container {
  color: var(--white);
}
.portfolio-section .btn {
	margin: 0 auto;
}
/* .zl-Blogs-table-container{
	color: var(--white) !important;
	width: 100%;
  overflow-x: auto;
}
.zl-Blogs-table-container table{
	width: 100%;
  border-collapse: collapse;
  min-width: 600px;
} */

.ai-solutions-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* about page */
.strongly-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.strongly-section .strongly-wrapper {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.strongly-section .strongly-wrapper .strongly-title,
.strongly-section .strongly-wrapper .strongly-belief-item {
  width: calc(33.33% - 14px);
}

.strongly-section .strongly-wrapper .strongly-title {
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
}

.strongly-section .strongly-wrapper .strongly-title span {
  font-size: clamp(1.125rem, 0.9821rem + 0.7143vw, 1.625rem);
  line-height: clamp(1.75rem, 1.6071rem + 0.7143vw, 2.25rem);
  font-weight: 600;
  color: var(--white);
  display: block;
  padding-left: 16px;
  border-left: 3px solid var(--primary-color);
}

.strongly-section .strongly-wrapper .strongly-belief-item {
  border-radius: 10px;
  background-color: var(--third-black);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.strongly-section .strongly-wrapper .strongly-belief-item .strongly-icon img {
  width: 80px;
  height: auto;
}

.strongly-section .strongly-wrapper .strongly-belief-item .strongly-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.strongly-section .strongly-wrapper .strongly-belief-item .strongly-content h3 {
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
  color: var(--white);
}

.strongly-section .strongly-wrapper .strongly-belief-item .strongly-content p {
  font-size: 16px;
  line-height: 26px;
  color: var(--white);
}

.core-values-items,
.turning-standards-items {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 50px;
}

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

.turning-standards-items {
  max-width: 1150px;
}

.core-values-items .core-values-item {
  /* width: calc(33.33% - 20px); */
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  background-color: var(--third-black);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.turning-standards-items .turning-standards-item {
  /* width: calc(33.33% - 20px); */
  border-radius: 10px;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 3px solid #6a6a6a80;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.turning-standards-items .turning-standards-item img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.turning-standards-wrapper .btn {
  margin: 0 auto;
}
.case-study-content .technologies-list a{
	color: var(--white);
}
.core-values-items .core-values-item .core-values-icon img {
  width: 80px;
  height: auto;
  margin: 0 auto;
}

.core-values-items .core-values-item .core-values-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.core-values-items .core-values-item .core-values-content h3 {
  font-weight: 800;
  font-size: 20px;
  line-height: 30px;
  color: var(--white);
}

.core-values-items .core-values-item .core-values-content p {
  font-size: 18px;
  line-height: 28px;
  color: var(--white);
}

.about-client-section {
  background-image: url(../images/about-client-bg.png);
}

.faq-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding-bottom: 25px;
}

.faq-item.active .faq-question {
  padding-bottom: 0px;
}

.faq-question-title {
  width: 90%;
  font-size: 20px;
  line-height: 1.3;
  color: var(--white);
  font-weight: 500;
}

.faq-item.active .faq-question-title {
  color: var(--primary-color);
}

.faq-question-icon {
  flex: none;
}

.faq-answer {
  display: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.faq-answer p,
.faq-answer li,
.faq-answer a {
  font-family: var(--font-family-ibm-plex-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--white);
}

.faq-answer a {
  color: var(--primary-color);
}

.faq-answer ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-answer ul li {
  list-style: disc;
}

.faq-item.active .faq-answer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  /* background-color: var(--third-black); */
  padding: 15px 8px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-bottom: 10px;
}

.faq-item.active .faq-answer .faq-answer-content {
  width: 95%;
}

.toggle-icon {
  transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
}

.faq-item.active .toggle-icon {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
}

.header-wrapper {
  transition: all 0.3s ease;
}

.header-wrapper.scrolled header {
  background: black;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-wrapper.scrolled .primary-heading,
.header-wrapper.scrolled .primary-text-block {
  /* color: #333; */
}

/* 
.header-wrapper.scrolled .mega-menu {
    background: rgba(255, 255, 255, 0.95);
} */

/* ai page */
.ai-services-section {
  background-image: url(../images/ai-service-bg.png);
}

.ai-business-section {
  background-image: url(../images/ai-business-bg.png);
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.ai-business-section .ai-solutions-content {
  margin-left: auto;
}

.ai-agenta-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ai-agenta-list,
.ai-agenta-lists-wrapper, .ai-agenta-list-3 {
  display: flex;
  align-items: stretch;
  gap: 50px;
  flex-wrap: wrap;
  row-gap: 30px;
  justify-content: center;
}

.ai-agenta-list .solution-item {
  width: calc(25% - 38px);
}

.ai-agenta-lists-wrapper .solution-item,.ai-agenta-list-3 .solution-item {
  width: calc(33.33% - 34px);
}

.why-choose-zluck-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.why-choose-zluck-wrapper .why-choose-zluck-img {
  flex: none;
}

.why-choose-zluck-wrapper .why-choose-zluck-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-choose-zluck-wrapper .why-choose-zluck-list {
  display: flex;
  align-items: stretch;
  gap: 90px;
  row-gap: 40px;
  flex-wrap: wrap;
}

.why-choose-zluck-wrapper .why-choose-zluck-list .why-choose-zluck-item {
  width: calc(50% - 45px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-choose-zluck-wrapper .why-choose-zluck-list .why-choose-zluck-item h3 {
  position: relative;
  padding-left: 20px;
}

.why-choose-zluck-wrapper
  .why-choose-zluck-list
  .why-choose-zluck-item
  h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 14px;
  background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.99458 6.8C2.15032 5.3283 1.26277 3.93962 0.548404 2.45283C0.194828 1.72075 0.17318 0.822642 0 0C0.800959 0.29434 1.7318 0.4 2.38123 0.90566C4.01923 2.17358 5.52012 3.64528 7.10761 4.98868C8.0601 5.79623 8.37038 6.58113 7.43954 7.66038C5.83041 9.53962 4.31508 11.4943 2.6843 13.3509C2.35958 13.7208 1.71737 13.7887 1.21948 14C1.10402 13.3962 0.757664 12.7094 0.923629 12.2038C1.50811 10.4075 2.26578 8.6717 2.99458 6.80755V6.8Z" fill="%23E34D4D"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}

.why-choose-zluck-wrapper
  .why-choose-zluck-list
  .why-choose-zluck-item
  .why-choose-zluck-item-content {
  padding-left: 20px;
}

/* .why-choose-zluck-wrapper .why-choose-zluck-list .why-choose-zluck-item .why-choose-zluck-item-content p {
    color: var(--white);
} */

.ai-faq-section {
  background-image: url(../images/ai-faq-bg.png);
}

.generative-ai-section {
  background-image: url(../images/generative-ai.png);
}

.generative-ai-application-section {
  background-image: url(../images/generative-ai-application.png);
}

.software-solution-section {
  background-image: url(../images/software-solution-bg.png);
}

.software-solution-section {
  background-image: url(../images/software-solution.png);
}

.technologies-list {
  display: flex;
  align-items: stretch;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.technologies-list .technologies-item {
  width: 150px;
  height: 195px;
	padding: 0 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  text-align: center;
}

.technologies-list .technologies-item img {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  object-fit: contain;
}

.technologies-list .technologies-item p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: var(--black);
}

.technology-react-js {
  border: 5px solid #61dafb80;
  background: linear-gradient(
      0deg,
      rgba(97, 218, 251, 0.0784314),
      rgba(97, 218, 251, 0.0784314)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
}

.technology-node-js {
  border: 5px solid #3dda8480;
  background: linear-gradient(
      0deg,
      rgba(61, 218, 132, 0.08),
      rgba(61, 218, 132, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
}

.technology-shopify {
  border: 5px solid #3dda8480;
  background: linear-gradient(
      0deg,
      rgba(61, 218, 132, 0.08),
      rgba(61, 218, 132, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
}

.technology-nextjs {
  border: 5px solid #00739a80;
  background: linear-gradient(
      0deg,
      rgba(0, 115, 154, 0.08),
      rgba(0, 115, 154, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
}

.technology-webflow {
  border: 5px solid #146ef580;
  background: linear-gradient(
      0deg,
      rgba(20, 110, 245, 0.08),
      rgba(20, 110, 245, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
}

.technology-squarespace {
  border: 5px solid #22222280;
  background: linear-gradient(
      0deg,
      rgba(34, 34, 34, 0.08),
      rgba(34, 34, 34, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
}

.technology-wix {
  border: 5px solid #fbbd7180;
  background: linear-gradient(
      0deg,
      rgba(251, 189, 113, 0.08),
      rgba(251, 189, 113, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
}

.technology-flutter {
  background: linear-gradient(
      0deg,
      rgba(66, 165, 245, 0.08),
      rgba(66, 165, 245, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #42a5f580;
}

.technology-react-native {
  background: linear-gradient(
      0deg,
      rgba(97, 218, 251, 0.0784314),
      rgba(97, 218, 251, 0.0784314)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #61dafb80;
}

.technology-python {
  background: linear-gradient(
      0deg,
      rgba(228, 77, 38, 0.08),
      rgba(228, 77, 38, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #e44d2680;
}

.technology-wordpress {
  background: linear-gradient(
      0deg,
      rgba(0, 115, 154, 0.08),
      rgba(0, 115, 154, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #00739a80;
}

.technology-digitalocean {
  background: linear-gradient(
      0deg,
      rgba(61, 218, 132, 0.08),
      rgba(61, 218, 132, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #3dda8480;
}

.technology-expressjs {
  border: 5px solid #42a5f580;
  background: linear-gradient(
      0deg,
      rgba(66, 165, 245, 0.08),
      rgba(66, 165, 245, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
}

.technology-mysql {
  border: 5px solid #61dafb80;
  background: linear-gradient(
      0deg,
      rgba(97, 218, 251, 0.0784314),
      rgba(97, 218, 251, 0.0784314)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
}

.technology-aws {
  background: linear-gradient(
      0deg,
      rgba(255, 153, 0, 0.08),
      rgba(255, 153, 0, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #ff990080;
}

.technology-zapier {
  border: 5px solid #ff4a0080;
  background: linear-gradient(
      0deg,
      rgba(255, 74, 0, 0.08),
      rgba(255, 74, 0, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
}

.technology-make {
  border: 5px solid #6d00cc80;
  background: linear-gradient(
      0deg,
      rgba(109, 0, 204, 0.08),
      rgba(109, 0, 204, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
}

.technology-n8n {
  background: linear-gradient(
      0deg,
      rgba(234, 75, 113, 0.08),
      rgba(234, 75, 113, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #ea4b7180;
}

.technology-workato {
  border: 5px solid #67eadd80;
  background: linear-gradient(
      0deg,
      rgba(103, 234, 221, 0.08),
      rgba(103, 234, 221, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
}

.technology-hubspot-crm-workflows {
  background: linear-gradient(
      0deg,
      rgba(255, 92, 53, 0.08),
      rgba(255, 92, 53, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #ff5c3580;
}

.technology-zoho-crm {
  background: linear-gradient(
      0deg,
      rgba(0, 110, 185, 0.08),
      rgba(0, 110, 185, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #006eb980;
}

.technology-clickup-automations {
  background: linear-gradient(
      0deg,
      rgba(118, 18, 250, 0.08),
      rgba(118, 18, 250, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #7612fa80;
}

.technology-monday {
  background: linear-gradient(
      0deg,
      rgba(255, 61, 87, 0.08),
      rgba(255, 61, 87, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #ff3d5780;
}

.technology-airtable {
  background: linear-gradient(
      0deg,
      rgba(252, 180, 0, 0.08),
      rgba(252, 180, 0, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #fcb40080;
}

.technology-custom-api {
  background: linear-gradient(
      0deg,
      rgba(44, 42, 37, 0.08),
      rgba(44, 42, 37, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #2c2a2580;
}

.technology-firebase {
  background: linear-gradient(
      0deg,
      rgba(255, 145, 0, 0.08),
      rgba(255, 145, 0, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #ff910080;
}

.technology-azure {
  background: linear-gradient(
      0deg,
      rgba(0, 120, 212, 0.08),
      rgba(0, 120, 212, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #0078d480;
}

.technology-google-cloud {
  background: linear-gradient(
      0deg,
      rgba(52, 168, 83, 0.08),
      rgba(52, 168, 83, 0.08)
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 5px solid #34a85380;
}
.Workplace {
  /* background-image: url(/wp-content/uploads/2025/06/Workplace-Privileges.svg); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.workplace-content-boxs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.workplace-box {
  display: flex;
  flex-direction: column;
}

.workplace-box-icon img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.workplace-box-content p {
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  color: var(--white);
}

.people-say-slider-item {
  position: relative;
  z-index: 1;
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  padding: 20px;
}

.people-name-wrapper {
  position: absolute;
  top: 10px;
  left: 10px;
}

.people-name {
  position: relative;
  display: inline-block;
}

.people-name-overlay {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 2px;
  z-index: 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.people-name span {
  position: relative;
  display: inline-block;
  background-color: var(--white);
  color: var(--black);
  padding: 6px 12px;
  font-weight: bold;
  border-radius: 2px;
  z-index: 1;
  font-family: var(--font-family-ibm-plex-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.people-say-img {
  width: 230px;
  height: 230px;
  background: radial-gradient(61% 61% at 50% 39%, #646365 0%, #000000 100%);
  display: flex;
  align-items: end;
  justify-content: center;
  flex: none;
  margin-bottom: auto;
}

.people-say-img img {
  width: 191px;
  height: 200px;
}

.people-say-qutoe {
  background-image: url('data:image/svg+xml,<svg width="38" height="32" viewBox="0 0 38 32" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_4173_30863)"><path d="M11.5382 15.6826L15.5379 0.222656H7.53851L2.2389 14.5711C0.439033 19.2192 0.0390625 20.9369 0.0390625 23.261C0.0390625 28.1112 3.43881 31.5467 8.23846 31.5467C12.7381 31.5467 16.2379 28.2122 16.2379 23.261C16.2379 19.5223 14.438 16.8951 11.5382 15.6826ZM32.7367 15.6826L36.7364 0.222656H28.7369L23.4374 14.5711C21.6375 19.2192 21.2375 20.9369 21.2375 23.261C21.2375 28.1112 24.6373 31.5467 29.4369 31.5467C33.9366 31.5467 37.4363 28.2122 37.4363 23.261C37.4363 19.5223 35.6365 16.8951 32.7367 15.6826Z" fill="white"/></g><defs><clipPath id="clip0_4173_30863"><rect width="38" height="32" fill="white"/></clipPath></defs></svg>');
  width: 38px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: cover;
}

.people-say-slider-item-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0 10px 10px;
}

.people-say-slider-item-content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  color: var(--white);
}

.contact-us-form,
.contact-review-content-wrapper {
  padding: 50px 80px;
  border-left: 5px solid transparent;
  background-image: linear-gradient(#1a1a1a, #1a1a1a),
    linear-gradient(180deg, #fe4854 0%, #111111 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
}

.job-listing.vacancies_closed {
  display: none;
}

.career-form {
  background: transparent;
  padding: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.career-form .form-row {
  display: flex;
  gap: 20px;
}
.career-form .form-row .input-field{
	width: 100%;
}

.error {
	color: red;
	margin-top: 5px;
	width: 100%;
	display: block;
}
div#zl-err-message .alert-warning {
	margin-top: -10px;
	color: red;
}
div#zl-err-message .alert-success {
	color: #009e55;
}
input:focus, textarea:focus, select:focus{
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
}
.career-form .form-row input,
.career-form .form-row textarea {
  background: #353535;
  border: none;
  color: var(--white);
  padding: 16px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 100%;
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

code,pre {
	color: var(--white);
}

.career-form .form-row textarea {
  resize: none;
  min-height: 100px;
}

.career-form .form-row input::placeholder,
.career-form .form-row textarea::placeholder {
  color: #ffffffb2;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-family-roboto);
}

.career-form .form-row input[type="file"] {
  display: none;
}

.file-upload-btn {
  background: #353535;
  color: var(--primary-color);
  border: 1px solid #dadada;
  padding: 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 400;
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 100%;
  flex: none;
}

.file-note {
  color: var(--white);
  font-size: 14px;
  align-self: center;
}

.form-bottom-row {
  align-items: center;
  gap: 10px;
}

.recaptcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #232323;
  border-radius: 6px;
  padding: 8px 16px;
}

.ai-agenta-wrapper {
  position: relative;
}

.ai-agenta-wrapper .vertical-flex-container {
  width: 100%;
  position: relative;
  height: 470px;
}

.ai-agenta-wrapper .turning-standards-item {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 470px;
}

.vertical-flex-container .discovery-section:nth-child(1),
.vertical-flex-container .discovery-section:nth-child(2),
.vertical-flex-container .discovery-section:nth-child(3),
.vertical-flex-container .discovery-section:nth-child(4) {
  position: absolute;
  width: 360px;
  max-height: 200px;
}

.vertical-flex-container .discovery-section:nth-child(1),
.vertical-flex-container .discovery-section:nth-child(3) {
  align-items: end;
  text-align: end;
}

.vertical-flex-container .discovery-section:nth-child(1) {
  top: 0;
  left: 0;
}

.vertical-flex-container .discovery-section:nth-child(2),
.vertical-flex-container .discovery-section:nth-child(4) {
  align-items: flex-start;
}

.vertical-flex-container .discovery-section:nth-child(2) {
  top: 0;
  right: 0;
}

.vertical-flex-container .discovery-section:nth-child(3),
.vertical-flex-container .discovery-section:nth-child(4) {
  top: 67%;
}

.vertical-flex-container .discovery-section:nth-child(3) {
  left: 0;
}

.vertical-flex-container .discovery-section:nth-child(4) {
  right: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}

.gallery-grid .gallery-item:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
  max-height: 510px;
}

.gallery-grid .gallery-item:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
  max-height: 240px;
}

.gallery-grid .gallery-item:nth-child(3) {
  grid-area: 1 / 3 / 2 / 4;
  max-height: 240px;
}

.gallery-grid .gallery-item:nth-child(4) {
  grid-area: 2 / 2 / 3 / 3;
  max-height: 240px;
}

.gallery-grid .gallery-item:nth-child(5) {
  grid-area: 2 / 3 / 3 / 4;
  max-height: 240px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

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

.gallery-more .gallery-more-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000066;
  color: var(--white);
  font-family: Roboto;
  font-weight: 800;
  font-size: clamp(1.25rem, 0.8929rem + 1.7857vw, 2.5rem);
  line-height: 100%;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Lightbox styles */
.gallery-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gallery-lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  margin: auto;
  display: block;
  border-radius: 10px;
}

.gallery-lightbox-close {
  position: absolute;
  top: 10px;
  right: 30px;
  color: var(--white);
  font-size: 3rem;
  font-weight: normal;
  cursor: pointer;
  z-index: 10001;
}

.gallery-lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 10px;
  font-size: 1.2rem;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  color: var(--white);
  font-weight: 400;
  font-size: 1.5rem;
  user-select: none;
  z-index: 10002;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: rgba(0, 0, 0, 0.7);
}

.gallery-lightbox-prev {
  left: 30px;
}

.gallery-lightbox-next {
  right: 30px;
}

.how-we-work-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.how-we-work-wrapper .ai-solutions-title {
  width: calc(25% - 25px);
}

.how-we-work-wrapper .how-we-work-content {
  display: flex;
  align-items: stretch;
  gap: 50px;
  width: calc(75% - 25px);
  flex-wrap: wrap;
}

.how-we-work-wrapper .how-we-work-content .how-we-work-content-item {
  width: calc(50% - 25px);
  background-color: var(--third-black);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-we-work-wrapper .how-we-work-content .how-we-work-content-item ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-we-work-wrapper .how-we-work-content .how-we-work-content-item ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--white);
  position: relative;
  padding-left: 20px;
}

.how-we-work-wrapper
  .how-we-work-content
  .how-we-work-content-item
  ul
  li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 8px;
  height: 14px;
  background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.99458 6.8C2.15032 5.3283 1.26277 3.93962 0.548404 2.45283C0.194828 1.72075 0.17318 0.822642 0 0C0.800959 0.29434 1.7318 0.4 2.38123 0.90566C4.01923 2.17358 5.52012 3.64528 7.10761 4.98868C8.0601 5.79623 8.37038 6.58113 7.43954 7.66038C5.83041 9.53962 4.31508 11.4943 2.6843 13.3509C2.35958 13.7208 1.71737 13.7887 1.21948 14C1.10402 13.3962 0.757664 12.7094 0.923629 12.2038C1.50811 10.4075 2.26578 8.6717 2.99458 6.80755V6.8Z" fill="%23E34D4D"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}

.contact-section {
  padding-top: 120px;
}

.contact-section .ai-solutions-title h1 {
  font-size: clamp(2.0625rem, 1.4911rem + 2.8571vw, 4.0625rem);
  line-height: clamp(2.5rem, 1.6964rem + 4.0179vw, 5.3125rem);
  font-weight: 600;
}

.contact-section .ai-solutions-title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 auto;
  text-align: center;
  color: var(--gray-text-color);
}

.career-form .ai-solutions-title p,
.career-form .ai-solutions-title h2 {
  text-align: left;
  margin: 0;
}

.career-form .ai-solutions-title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--white);
  text-transform: unset;
}

.contact-page .contact-us-form,
.contact-page .contact-review-content-wrapper {
  padding: 30px 16px !important;
}
.contact-review-wrapper {
  display: flex;
  align-items: start;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-review-wrapper .contact-us-form {
  width: calc(50% - 15px);
}

.contact-review-wrapper .contact-review-content {
  width: calc(50% - 15px);
}

.review-star {
  display: flex;
  align-items: start;
  gap: 10px;
}

.review-star p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  color: var(--white);
}

.review-star .reting {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.review-star h3,
.review-slider .review-wrapper .review-item .review-box .review-box-content h3 {
  font-weight: 800;
  font-size: clamp(1.125rem, 0.9107rem + 1.0714vw, 1.875rem);
  line-height: 1.3;
  padding-bottom: 0;
}

.contact-page .contact-review-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-star .reting .stras,
.review-slider
  .review-wrapper
  .review-item
  .review-box
  .review-box-content
  .rating
  .stras {
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-slider .review-wrapper .review-item {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 16px;
}

.review-slider .review-wrapper .review-item .review-box {
  display: flex;
  align-items: start;
  flex-direction: column;
  background-color: var(--third-black);
  border-radius: 10px;
  gap: 16px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 16px;
}

.review-slider .review-wrapper .review-item .review-box .review-box-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-slider .review-content p {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: var(--white);
}

.review-slider .review-sun-dec p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #ffffffcc;
}

.review-slider .review-verify {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 18px;
  color: #ffffffcc;
  line-height: 1.3;
}

.review-slider .slick-prev {
  left: 42%;
}

.review-slider .slick-next {
  right: 42%;
}

.maintenance-packages-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.maintenance-packages-wrapper .maintenance-packages-item:nth-child(even) {
  flex-direction: row-reverse;
}

.maintenance-packages-item {
  display: flex;
  align-items: center;
  gap: 100px;
}

.maintenance-packages-content {
  width: calc(60% - 50px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.maintenance-packages-dec p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  /* color: var(--gray-light); */
}

.maintenance-packages-dec p span {
  font-weight: 700;
  font-size: 21px;
  line-height: 1.3;
  color: var(--white);
}

.maintenance-packages-image {
  width: calc(40% - 50px);
}

.maintenance-packages-image img {
  width: 100%;
  height: auto;
}

.subscribe-now-content {
  padding: 50px 30px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  border-left: 5px solid transparent;
  background-image: linear-gradient(#1a1a1a, #1a1a1a),
    linear-gradient(180deg, #fe4854 0%, #111111 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.subscribe-now-content .subscribe-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.subscribe-now-content .subscribe-title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: var(--white);
  padding-bottom: 0;
}

.subscribe-now-content .subscribe-title h2 {
  font-family: Roboto;
  font-weight: 700;
  font-size: 35px;
  line-height: 100%;
  color: var(--white);
}

.subscribe-now-content .subscribe-title h2 span {
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}

.subscribe-now-content .btn {
  margin-top: 20px;
}

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

.payment-method-link {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.coman-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.coman-content-wrapper .privacy-page-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.coman-content-wrapper .privacy-dec {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coman-content-wrapper .privacy-dec p,
.coman-content-wrapper p {
  font-weight: 400;
	font-size: 18px;
	line-height: 28px;
  color: var(--gray-light);
  padding-bottom: 0;
}

.coman-content-wrapper .privacy-dec p a,
.coman-content-wrapper p a,
.coman-content-wrapper a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.coman-content-wrapper h3 {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.3;
  color: var(--white);
}

.coman-content-wrapper ul,
.coman-content-wrapper ol {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
}

.coman-content-wrapper ul li,
.coman-content-wrapper ol li {
  padding-left: 20px;
  position: relative;
  font-weight: 400;
	font-size: 18px;
	line-height: 28px;
  color: var(--gray-light);
}

.coman-content-wrapper .list-dec {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coman-content-wrapper ul li span,
.coman-content-wrapper p span,
.coman-content-wrapper ol li span {
  font-weight: 700;
  color: var(--white);
}

.coman-content-wrapper ul li::before,
.coman-content-wrapper ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 14px;
  background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.99458 6.8C2.15032 5.3283 1.26277 3.93962 0.548404 2.45283C0.194828 1.72075 0.17318 0.822642 0 0C0.800959 0.29434 1.7318 0.4 2.38123 0.90566C4.01923 2.17358 5.52012 3.64528 7.10761 4.98868C8.0601 5.79623 8.37038 6.58113 7.43954 7.66038C5.83041 9.53962 4.31508 11.4943 2.6843 13.3509C2.35958 13.7208 1.71737 13.7887 1.21948 14C1.10402 13.3962 0.757664 12.7094 0.923629 12.2038C1.50811 10.4075 2.26578 8.6717 2.99458 6.80755V6.8Z" fill="%23E34D4D"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}

.blog-detail-hero-section .ceo-content-wrapper {
  margin: 0 auto;
}

.blog-detail-section {
  max-width: 1076px;
  margin: 0 auto;
}

.next.page-numbers,
.prev.page-numbers {
  display: none;
}

.pagination,
.blog-pagination {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.pagination-numbers,
.blog-pagination-numbers,
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pagination-number,
.page-numbers {
  min-width: 40px;
  height: 50px;
  background: var(--third-black);
  color: var(--white);
  border: 1px solid #ffffff4d;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  cursor: pointer;
  margin: 0 4px;
  padding: 5px 8px;
  transition: background 0.2s;
}
.pagination-number.active,
span.page-numbers.current  {
  background: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}
.pagination-number.dots {
  pointer-events: none;
  border: 1px solid #ffffff4d;
  color: var(--white);
  background: var(--third-black);
}

.portfolio-client-section {
  background-image: url("../images/portfolio-client-bg.png");
}

.blog-search-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #181818;
  color: #fff;
  font-size: 18px;
}

.blog-search-wrapper .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-search-wrapper input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 18px;
  width: 100%;
  padding: 0 0.75rem;
}

.blog-search-wrapper input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.case-study-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.case-study-wrapper .case-study-item:nth-child(even) {
  flex-direction: row-reverse;
}

.case-study-item {
  display: flex;
  align-items: center;
  gap: 80px;
}

.case-study-content {
  width: calc(50% - 40px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.case-study-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.case-study-content p,
.case-study-content a {
  color: var(--gray-light);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.case-study-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.case-study-details .case-study-details-item {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-study-image {
  width: calc(50% - 40px);
}

.case-study-image img {
  border-radius: 10px;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.case-study-content .case-list {
  gap: 30px;
}

.case-study-content .case-list ul {
  padding-left: 0;
}

.case-list .technologies-list {
  justify-content: start;
  gap: 10px;
}

.case-list .technologies-list .technologies-item {
  width: 110px;
  height: 134px;
}

.case-list .technologies-list .technologies-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.case-list .technologies-list .technologies-item p {
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  text-align: center;
  color: var(--black);
}

.case-study-section .btn {
  margin: 0 auto;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  background: #1a1a1a;
  padding: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%px;
  -moz-border-radius: 50%px;
  -ms-border-radius: 50%px;
  -o-border-radius: 50%px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e34d4dcc;
  display: none;
}

#back-to-top.show {
  display: flex;
}

.job-listing-wrapper {
  display: flex;
  flex-direction: column;
}

.innovative-minds-wrapper .section-title {
  font-size: clamp(1.5rem, 1.4286rem + 0.3571vw, 1.75rem) !important;
  line-height: clamp(1.5rem, 1.4286rem + 0.3571vw, 1.75rem) !important;
  font-size: var(--font-family-ibm-plex-sans);
  font-weight: 600;
  color: var(--primary-color);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--white);
}

.innovative-minds {
  /* background: url(/wp-content/uploads/2025/06/Vacancies.svg)
    no-repeat center center; */
		background-repeat: no-repeat;
		background-position: center;
  background-size: cover;
}

.job-details {
  display: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.job-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0 30px 0;
  border-bottom: 1px solid var(--white);
}

.job-details {
  padding: 40px 0 0px 0;
}

.job-header .job-title {
  font-size: clamp(1.1875rem, 1.0982rem + 0.4464vw, 1.5rem) !important;
  font-weight: 500;
  font-family: var(--font-family-ibm-plex-sans);
  color: var(--white);
  width: 70%;
}

.job-location-wrapper {
  display: flex;
  align-items: start;
  gap: 80px;
}

.job-location-wrapper .job-location {
  font-size: clamp(1.1875rem, 1.0982rem + 0.4464vw, 1.5rem) !important;
  font-weight: 400;
  font-family: var(--font-family-ibm-plex-sans);
  color: var(--white);
}

.job-listing.active .job-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.job-header .job-location-wrapper {
  display: flex;
  align-items: center;
}

.job-listing.active .arrow {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
}

.job-details h3 {
  font-size: clamp(1.125rem, 1.0536rem + 0.3571vw, 1.375rem) !important;
  line-height: clamp(1.125rem, 1.0536rem + 0.3571vw, 1.375rem) !important;
  font-weight: 500 !important;
  font-family: var(--font-family-ibm-plex-sans);
  color: var(--white);
}

.job-details h3 span {
  color: var(--white);
  font-weight: 400;
}

.job-details-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-details-content p,
.job-details-content li,
.note li {
  font-size: 18px;
  line-height: 1.3;
  color: var(--white);
  font-weight: 400;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.job-details-content li::before,
.job-details-content p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 14px;
  background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.99458 6.8C2.15032 5.3283 1.26277 3.93962 0.548404 2.45283C0.194828 1.72075 0.17318 0.822642 0 0C0.800959 0.29434 1.7318 0.4 2.38123 0.90566C4.01923 2.17358 5.52012 3.64528 7.10761 4.98868C8.0601 5.79623 8.37038 6.58113 7.43954 7.66038C5.83041 9.53962 4.31508 11.4943 2.6843 13.3509C2.35958 13.7208 1.71737 13.7887 1.21948 14C1.10402 13.3962 0.757664 12.7094 0.923629 12.2038C1.50811 10.4075 2.26578 8.6717 2.99458 6.80755V6.8Z" fill="%23E34D4D"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}

.job-details-content ul {
  padding: 0;
  margin: 0;
}

.note {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.note h4 {
  font-size: clamp(1.125rem, 1.0536rem + 0.3571vw, 1.375rem) !important;
  color: var(--primary-color);
  font-weight: 500 !important;
  font-family: var(--font-family-ibm-plex-sans);
  line-height: 1.3;
}

.note p {
  padding: 0 !important;
  font-size: 18px;
  line-height: 1.3;
  color: var(--white);
  font-weight: 400;
}

.central-content-block {
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  gap: 28.5px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 54px;
}

.vertical-flex-container {
  box-sizing: border-box;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 360px;
  padding-top: 25.5px;
}

.discovery-section {
  box-sizing: border-box;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.business-analysis-heading {
  padding: 0;
  margin: 0;
  text-align: right;
  width: 100%;
}

.user-needs-description {
  text-align: right;
}

.deployment-support-section {
  box-sizing: border-box;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 222px;
}

.container-list-items {
  flex: 0 0 auto;
  padding-top: 0;
}

.numbered-list-container {
  position: relative;
  box-sizing: border-box;
  width: 472px;
  height: 471px;
}

.vertical-card-container {
  position: absolute;
  left: 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-width: 281px;
  padding: 52px 24px 50px 55px;
  background: url("../images/first-p.png") 50% / cover no-repeat;
}

.header-title1 {
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
  font: 800 60px Roboto, sans-serif;
  color: #ededed;
}

.highlighted-box {
  position: absolute;
  left: 301px;
  box-sizing: border-box;
  min-width: 171px;
  padding: 51px 61px 161px;
  background: url("../images/second-p.png") 50% / cover no-repeat;
}

.header-number-text-style {
  padding: 0;
  margin: 0;
  font: 800 60px Roboto, sans-serif;
  color: #ededed;
}

.vertical-centered-box {
  position: absolute;
  top: 300px;
  left: 191px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-width: 281px;
  padding: 55px 24px 47px 181px;
  background: url("../images/third.png") 50% / cover no-repeat;
}

.header-title {
  flex: 0 0 auto;
  padding: 0;
  padding-right: 21.5px;
  margin: 0;
  font: 800 60px Roboto, sans-serif;
  color: #ededed;
}

.featured-content-block {
  position: absolute;
  top: 190px;
  box-sizing: border-box;
  max-width: initial;
  height: 281px;
  padding: 165px 60px 47px;
  background: url("../images/four-p.png") 50% / cover no-repeat;
}

.tech-solution-box {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 360px;
  padding-top: 25.5px;
}

.solution-architecture-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.robust-header {
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}

.solution-description-text-style {
  padding: 0;
  margin: 0;
  text-align: left;
}

.agile-development-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 208px;
}
span.pagination-dots {
  min-width: 40px;
  height: 50px;
  background: var(--third-black);
  color: var(--white);
  border: 1px solid #ffffff4d;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  cursor: pointer;
  margin: 0 4px;
  padding: 5px 8px;
  transition: background 0.2s;
}
section.blog-author {
	position: relative;
	justify-content: center;
	background: url(../images/hero-bg.png) no-repeat center center;
	background-size: cover;
}
.blog-author-wrapper {
  display: grid;
  gap: 50px;
  grid-template-columns: 3fr 1fr;
  align-items: center;
}

.blog-author-span p {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
	font-size: clamp(1.125rem, 1.0064rem + 0.5932vw, 1.5625rem);
  line-height: clamp(1.625rem, 1.375rem + 1.25vw, 2.5rem);
}
.blog-author-dec p {
  padding-bottom: 0;
	font-size: 18px;
	line-height: 28px;
  font-weight: 400;
	color: var(--white);
}
.blog-author-dec {
  width: 90%;
}
.blog-author-img img {
  background: #fff;
  border-radius: 10px;
}
.blog-author-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.zl-bg-wrapper {
	display: flex;
	align-items: center;
	gap: 50px;
	flex-wrap: wrap;
	padding: 60px 0;
}
.zl-bg-content,.zl-bg-img {
	width: calc(50% - 25px);
}
.zl-bg-content h1{
	margin-bottom: 10px;
}
.zl-bg-content p a{
	color: var(--secondary-color);
}
.zl-bg-img {
	display: flex;
	justify-content: center;
}
.subscribe-now-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
}
.subscribe-now-wrapper .payment-method {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.subscribe-now-wrapper .payment-method .btn{
	margin-top: 0 !important;
}
.page-id-2591 .hero-dec p {
	font-size: clamp(1.125rem, 1.0536rem + 0.3571vw, 1.375rem);
	line-height: clamp(1.5rem, 1.3571rem + 0.7143vw, 2rem);
}
.ai-solutions-images.image-wrapper{
	display: unset;
}
.ai-solutions-images.image-wrapper .ai-solutions-images-item,
.ai-solutions-images.image-wrapper .ai-solutions-images-item img {
	width: 100%;
	height: 100% !important;
	margin: 0 !important;
}
.footer-tab ul li a.active{
	color: var(--primary-color);
}
span#selected-file-name {
	color: var(--white);
}

@media(min-width:1180px) {
	.page-id-877 .technologies-list .technologies-item {
		width: 14.66%;
	}
}
@media (min-width: 992px) {
  .our-services-wrapper .services-content {
    position: sticky;
    top: 120px;
  }
}
@media(max-width:1500px){
  .home .hero-section .container{
    gap: 60px;
  }
}
@media (max-width: 1400px) {
  .about-counter-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1300px) {
  .vertical-flex-container .discovery-section:nth-child(1),
  .vertical-flex-container .discovery-section:nth-child(2),
  .vertical-flex-container .discovery-section:nth-child(3),
  .vertical-flex-container .discovery-section:nth-child(4) {
    width: 290px;
  }
}

@media (max-width: 1280px) {
  .job-header {
    padding: 30px 0 30px 0;
  }

  .job-details {
    padding: 40px 0 0px 0;
  }
  .ai-solutions-images,
  .ai-solutions-content {
    width: calc(50% - 10px);
  }
  .home .hero-section{
    height: fit-content;
    padding-top: 60px !important;
  }
}

@media (max-width: 1200px) {
  .client-slider-item {
    min-height: 450px !important;
  }

  .people-say-slider-item {
    flex-direction: column;
    align-items: start;
  }

  .contact-us-form {
    padding: 50px;
  }

  .ai-agenta-wrapper .turning-standards-item {
    width: 400px;
  }

  .vertical-flex-container .discovery-section:nth-child(3),
  .vertical-flex-container .discovery-section:nth-child(4) {
    top: 57%;
  }
}

@media (max-width: 1199px) {
  .navigation-bar {
    width: 100px;
    height: auto;
  }

  .horizontal-nav-list {
    gap: 15px;
  }

  ul.horizontal-nav-list li a {
    font: 500 15px Roboto, sans-serif;
  }

  .flex-row-with-icons {
    gap: 10px;
  }.home .hero-client-logo-wrapper {
    margin-bottom: 10px;
}
}

@media (max-width: 1180px) {
  .turning-standards-items {
    gap: 20px;
  }
	.home .hero-section .container{
		gap: 50px;
	}.client-slider .slick-slide{
		margin: 0 15px;
	}
  .home .hero-section .hero-section-content{
    padding-top: 60px !important;
  }
  .home .hero-section {
    height: fit-content;
    padding-top: 60px !important;
  }
}

@media (max-width: 1100px) {
  .py {
    padding: 40px 0px;
  }
  section.blog-author,
  .error-section,
	.zl-bg-wrapper {
    padding: 30px 0;
  }
  .hero-section-content {
    padding: 30px 0px;
    gap: 30px;
  }
	.hero-section{
		padding: 0;
	}

  .hero-title {
    gap: 30px;
  }

  .client-slider .slick-prev,
  .client-slider .slick-next {
    left: 46%;
  }

  .client-slider .slick-next {
    right: 46%;
  }

  .people-say-slider .slick-prev {
    left: 46%;
  }

  .people-say-slider .slick-next {
    right: 46%;
  }

  .vertical-flex-container .discovery-section:nth-child(1),
  .vertical-flex-container .discovery-section:nth-child(2),
  .vertical-flex-container .discovery-section:nth-child(3),
  .vertical-flex-container .discovery-section:nth-child(4) {
    width: 235px;
  }

  .maintenance-packages-wrapper {
    gap: 40px;
  }

  .maintenance-packages-item {
    gap: 60px;
  }

  .maintenance-packages-content {
    width: calc(60% - 30px);
  }

  .maintenance-packages-image {
    width: calc(40% - 30px);
  }

  .case-study-item {
    gap: 60px;
  }

  .case-study-content {
    width: calc(50% - 30px);
  }

  .case-study-image {
    width: calc(50% - 30px);
  }

  .case-study-wrapper {
    gap: 60px;
  }
}

@media (max-width: 1024px) {
  .client-slider-item {
    min-height: 500px !important;
  }
  .client-logo-box {
    width: 100%;
    justify-content: flex-start;
    overflow: auto;
    flex-wrap: nowrap;
    padding: 10px 0;
  }.image-container {
    min-width: 120px;
    min-height: 50px;
    object-fit: contain;
}.image-container img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
  .about-counter-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }	.portfolio-tabs .tab-content .tab-item img{
		height: 300px;
	}
	.client-wrapper, .portfolio-wrapper, .latest-wrapper, .footer-content-section-wrapper, .core-values-section .core-values-wrapper, .coman-gap-wrapper {
    gap: 30px;
}

  .job-header {
    padding: 30px 0 30px 0;
  }

  .job-details {
    padding: 40px 0 0px 0;
  }
}

@media (max-width: 1023px) {
  .people-say-slider-item {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 991px) {
  .ai-solutions-wrapper,
  .our-services-wrapper {
    gap: 40px;
  }
  .ai-solutions-section {
    background-image: none !important;
    /* background-color: #09121C; */
  }

  .ai-solutions-content {
    width: 100%;
    gap: 30px;
  }

  .ai-solutions-images {
    width: 100%;
		display: none;
  }

  .ai-solutions-images .ai-solutions-images-item:nth-child(1) {
    margin-top: 0px;
  }

  .ai-solutions-images .ai-solutions-images-item:nth-child(2) {
    margin-bottom: 0px;
  }

  .ai-solutions-images .ai-solutions-images-item:nth-child(1) img:first-child,
  .ai-solutions-images .ai-solutions-images-item:nth-child(2) img:last-child,
  .ai-solutions-images .ai-solutions-images-item:nth-child(2) img:first-child,
  .ai-solutions-images .ai-solutions-images-item:nth-child(1) img:last-child {
    height: 200px;
  }

  .services-content,
  .service-list,
  .about-us-content-wrapper .about-us-images,
  .about-us-content-wrapper .about-us-content {
    width: 100%;
  }

  .about-us-content-wrapper .about-us-content {
    gap: 0;
  }

  .services-content,
  .client-wrapper,
  .latest-wrapper,
  .portfolio-wrapper,
  .footer-content-section-wrapper,
  .core-values-section .core-values-wrapper,
  .coman-gap-wrapper {
    gap: 30px;
  }

  .ceo-wrapper {
    padding: 30px;
  }

  .why-choose-us-wrapper {
    gap: 30px;
    padding:0;
  }

  .why-choose-us-list {
    gap: 24px;
  }

  .client-slider-item {
    gap: 18px;
  }

  .client-slider .slick-slide {
    margin: 0 10px;
  }

  .client-slider-item {
    min-height: 450px !important;
  }

  .portfolio-tabs .tab-content,
  .latest-content-boxs {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-wrapper {
    flex-wrap: wrap;
    row-gap: 30px;
  }

  .footer-wrapper .footer-tab:first-child {
    width: 100%;
    padding: 0;
  }

  .footer-wrapper .footer-tab .footer-content,
  .footer-wrapper .footer-tab .footer-social {
    max-width: 600px;
  }

  .footer-wrapper .footer-tab {
    width: calc(33.33% - 14px);
  }

  .footer-content-wrapper .footer-content-right {
    flex: unset;
		width: 500px;
  }

  .strongly-section .strongly-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 30px;
  }

  .strongly-section .strongly-wrapper .strongly-title {
    width: 100%;
    text-align: center;
  }

  .strongly-section .strongly-wrapper .strongly-title span {
    width: fit-content;
    margin: 0 auto;
  }

  .strongly-section .strongly-wrapper .strongly-belief-item {
    width: calc(50% - 10px);
  }

  .core-values-items {
    gap: 30px;
  }

  .ai-agenta-list .solution-item,
  .ai-agenta-lists-wrapper .solution-item,.ai-agenta-list-3 .solution-item {
    width: calc(50% - 25px);
  }

  .why-choose-zluck-wrapper .why-choose-zluck-list {
    gap: 40px;
  }

  .why-choose-zluck-wrapper .why-choose-zluck-list .why-choose-zluck-item {
    width: calc(50% - 20px);
  }

  .review-slider .slick-prev {
    left: 40%;
  }

  .review-slider .slick-next {
    right: 40%;
  }

  .maintenance-packages-item,
  .maintenance-packages-wrapper .maintenance-packages-item:nth-child(even) {
    gap: 24px;
    flex-direction: column-reverse;
  }

  .maintenance-packages-content,
  .maintenance-packages-image {
    width: 100%;
  }

  .maintenance-packages-image img {
    width: auto;
    margin: 0 auto;
  }

  .maintenance-packages-wrapper {
    gap: 30px;
  }

  .case-study-item,
  .case-study-wrapper .case-study-item:nth-child(even) {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .case-study-content,
  .case-study-image {
    width: 100%;
  }

  .case-study-image img {
    margin: 0 auto;
  }

  .case-study-content,
  .case-study-content .case-list {
    gap: 24px;
  }

  .case-study-wrapper {
    gap: 40px;
  }

  .flex-row-with-icons {
    gap: 0;
  }

  ul.horizontal-nav-list li a {
    font: 500 14px Roboto, sans-serif;
  }

  .mega-menu {
    flex-direction: column;
    min-width: 300px;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .mega-menu-column {
    min-width: 0;
  }

  .how-we-work-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .how-we-work-wrapper .ai-solutions-title {
    width: 100%;
    text-align: center;
  }

  .how-we-work-wrapper .how-we-work-content {
    width: 100%;
    gap: 30px;
  }

  .how-we-work-wrapper .how-we-work-content .how-we-work-content-item {
    width: calc(50% - 15px);
  }
  .blog-author-wrapper {
    gap: 30px;
    grid-template-columns: 3fr 2fr;
  }
  .blog-author-dec {
    width: 100%;
  }
	.zl-bg-wrapper{
		flex-direction: column-reverse;
		gap: 30px;
	}
	.zl-bg-content, .zl-bg-img{
		width: 100%;
	}
}

@media (max-width: 990px) {
  .ai-agenta-wrapper .vertical-flex-container {
    height: auto;
    counter-reset: section-counter;
    gap: 50px;
    row-gap: 30px;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
		padding: 0;
  }

  .ai-agenta-wrapper .central-content-block {
    margin-top: 0;
  }

  .discovery-section::before {
    counter-increment: section-counter;
    content: counter(section-counter) ". ";
    font-size: clamp(1.875rem, 1.3393rem + 2.6786vw, 3.75rem);
    font-weight: 800;
    line-height: 1.3;
    font-family: var(--font-family-roboto);
    color: var(--primary-color);
  }

  .vertical-flex-container .discovery-section:nth-child(1),
  .vertical-flex-container .discovery-section:nth-child(2),
  .vertical-flex-container .discovery-section:nth-child(3),
  .vertical-flex-container .discovery-section:nth-child(4) {
    width: calc(50% - 25px);
    position: relative;
    align-items: start;
    text-align: start;
  }

  .ai-agenta-wrapper .turning-standards-item {
    display: none;
  }
}

@media (max-width: 860px) {
  .client-slider .slick-prev,
  .people-say-slider .slick-prev {
    left: 45%;
  }
	.core-values-items {
    grid-template-columns: repeat(2, 1fr);
}
  .client-slider .slick-next,
  .people-say-slider .slick-next {
    right: 45%;
  }

  .core-values-items {
    flex-wrap: wrap;
  }

  .core-values-items .core-values-item {
    /* width: calc(50% - 15px); */
  }

  .turning-standards-items {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* .turning-standards-items .turning-standards-item {
		width: calc(50% - 10px);
} */
  .contact-review-wrapper .contact-us-form,
  .contact-review-wrapper .contact-review-content {
    width: 100%;
  }

  .job-header {
    padding: 20px 0 20px 0;
  }

  .job-details {
    padding: 30px 0 0px 0;
  }

  .why-choose-zluck-wrapper {
    gap: 30px;
    flex-direction: column;
  }
	.technology-tab-wide{
		justify-content: start !important;
	 }
	 .page-id-1034 .technology-tab-wide {
    justify-content: center !important;
}
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
	header{
		max-width: 1440px;
		margin: 0 auto;
		padding: 0 10px;
		width: 100%;
	}
	.mobile-logo .navigation-bar{
		margin: 15px 0;
	}
  .about-counter-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-solutions-section {
    background-position: right;
  }

  .client-logo-box {
    width: 100%;
    justify-content: flex-start;
    overflow: auto;
    flex-wrap: nowrap;
    padding: 10px;
		gap: 30px;
  }

  .ceo-wrapper {
    padding: 20px;
  }

  .footer-content-wrapper .footer-content-right,
  .footer-content-wrapper .footer-content-left {
    gap: 10px;
  }
  .footer-content-wrapper .footer-content-right .btn,
  .footer-content-wrapper .footer-content-left .btn{
		margin-top: 10px;
	}
	.footer-content-wrapper .footer-content-right p{
		font-size: 18px;
	}
  .image-container {
    min-width: 120px;
    min-height: 50px;
    object-fit: contain;
  }

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

  .web-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px;
  }

  .hero-section-content {
    padding: 30px 0;
  }

  .hero-title .hero-subtitle {
    font-size: 16px;
  }

  .hero-content-wrapper {
    gap: 20px;
  }

  .about-us-wrapper {
    gap: 30px;
  }

  .footer-wrapper .footer-tab {
    width: calc(50% - 14px);
  }

  .py {
    padding: 30px 0;
  }
	.my {
		margin: 30px 0;
	}

  .footer-content-wrapper {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .footer-content-wrapper .footer-content-right {
    padding: 0;
    border-left: none;
		width: 100%;
  }

  .copy-right-wrapper {
    flex-direction: column-reverse;
  }

  .copy-right-wrapper .copy-right-link {
    flex-wrap: wrap;
    justify-content: center;
  }

  .copy-right-wrapper .copy-right-link a {
    font-size: 16px;
  }

  .copy-right-wrapper .copy-right-content p {
    text-align: center;
    font-size: 16px;
  }

  .btn {
    padding: 10px 15px;
    font-size: 16px;
  }

  section.hero-section,
  section.blog-author,
  .error-section,
	section.zl-bg-section,
	.contact-page {
    margin-top: 10px;
  }

  .footer-tab ul {
    gap: 8px;
  }

  .footer-tab ul li a {
    font-size: 16px;
  }

  .footer-wrapper .footer-tab .logo img {
    width: 50%;
  }

  .footer-wrapper .footer-tab .footer-content p {
    font-size: 16px;
  }

  .footer-wrapper .footer-tab .footer-content a {
    font-size: 14px;
  }

  .maintenance-packages-image img {
    width: 100%;
    margin: unset;
  }

  .strongly-section .strongly-wrapper .strongly-title span {
    margin: unset;
  }

  .strongly-section .strongly-wrapper .strongly-title {
    text-align: start;
  }

  ul.horizontal-nav-list li a {
    font-size: 15px;
  }

  .hero-section,
  section.blog-author,
  .error-section, section.zl-bg-section ,.contact-page{
    padding-top: 43px !important;
  }
	.privacy-page {
    padding-top: 60px !important;
}
  .horizontal-nav-list li {
    margin: 0;
  }

  .mega-menu-column .mega-menu-title img,
  li.services-menu a span img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }

  .mega-menu-column.open .mega-menu-title img,
  li.services-menu.open a span img {
    rotate: 180deg;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }

  .mega-menu-column.open .mega-menu-list {
    border-top: 1px solid #7c7c7c;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }

  .mega-menu-list li .chevron {
    padding: 7px 0;
    font-size: 10px;
    width: 100%;
    color: #fff;
  }

  .mega-menu-list li .chevron img {
    display: none;
  }

  .responsive-arrow.closs-btn {
    display: block;
  }

  .mobile-header-humburger {
    padding: 10px;
    display: block;
  }

  .mobile-header-humburger img {
    width: 24px;
    height: 24px;
  }
	.web-logo a img {
    opacity: 0;
}

  .navigation-bar {
    width: 0px;
    height: auto;
    margin: 15px;
  }

  .vertical-nav-container {
    justify-content: start;
    width: 100%;
  }

  .horizontal-nav-list {
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid #7c7c7c;
    margin-bottom: 15px;
  }

  .flex-row-with-icons {
    gap: 10px;
    padding-left: 10px;
  }

  .horizontal-nav-list li {
    width: 100%;
  }

  ul.horizontal-nav-list li a {
    padding: 15px;
    border-bottom: 1px solid #7c7c7c;
    justify-content: space-between;
  }
	.header-wrapper.scrolled ul.horizontal-nav-list > li > a{
		padding: 15px;
	}
  .mega-menu {
    display: none;
    flex-direction: column;
    background: #181818;
    border-radius: 8px;
    margin-top: 10px;
    width: 100%;
    z-index: 100;
    position: static;
    gap: 0;
  }

  .services-menu.open .mega-menu {
    display: flex;
    width: 100%;
    min-width: 100%;
    border-radius: 0;
  }

  .mega-menu-column {
    border-bottom: 1px solid #333;
    padding: 0 15px;
    margin-left: 10px;
  }

  .mega-menu-title {
    cursor: pointer;
    padding: 12px 0;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    font: 500 14px Roboto, sans-serif;
  }

  .mega-menu-title span {
    display: block;
  }

  .mega-menu-list {
    display: none;
    flex-direction: column;
    padding-left: 10px;
    /* background: #222; */
    border-radius: 4px;
    margin-bottom: 10px;
    font: 500 12px Roboto, sans-serif;
  }

  .mega-menu-column.open .mega-menu-list {
    display: flex;
  }

  .mega-menu {
    margin: 0;
    padding: 0;
  }

  .job-header {
    padding: 20px 0;
  }

  .job-details {
    padding: 30px 0 0px 0px;
  }

  .job-listing.active .job-details {
    gap: 20px;
  }

  .job-location-wrapper {
    gap: 50px;
  }

  .job-details-content p,
  .job-details-content li {
    font-size: 16px;
  }

  .container-list-items {
    display: none;
  }

  .vertical-flex-container {
    box-sizing: border-box;
    display: flex;
    flex: unset;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    padding-top: 25.5px;
  }

  .tech-solution-box {
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 100%;
    padding-top: 25.5px;
  }

  .agile-development-section,
  .deployment-support-section {
    margin-top: 25px;
  }

  .central-content-block {
    flex-direction: column;
    gap: 0;
    margin-top: 0;
  }

  .user-needs-description,
  .business-analysis-heading {
    text-align: start;
  }
		/* .technology-tabs .tab-buttons, .technologies-wrapper .tab-buttons{
		justify-content: start;
	} */
	.technology-tab-wide{
		justify-content: start !important;
	 }
}

@media (max-width: 767px) {
  .text-split-content {
    flex-direction: column;
  }
	.dual-btn-wrapper{
		flex-direction: row;
		flex-wrap: wrap;
	}
	.footer-toggle-icon{
		transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		-ms-transition: all 0.5s;
		-o-transition: all 0.5s;
		width: 16px;
		height: 16px;
	}
	.footer-toggle-icon.rotated {
		rotate: 180deg;
	}
	.footer-tab-title{
		color: var(--white);
		font-size: 18px;
	}
  .text-split-left,
  .text-split-right {
    width: 100%;
  }
	.footer-menu-mob-hide {
		display: none !important;
	}
	.footer-menu-mob-hide.footer-menu-open {
		display: flex !important;
	}
  .workplace-content-boxs {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-form .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .contact-us-form {
    padding: 30px;
  }

  .career-form {
    gap: 16px;
  }

  .career-form .form-bottom-row {
    flex-direction: row;
  }

  .btn.submit-btn {
    width: 100%;
  }

  .coman-content-wrapper .privacy-page-content {
    gap: 20px;
  }

  .coman-content-wrapper .privacy-dec {
    gap: 16px;
  }
	.footer-tab-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	position: relative;
	padding-left: 16px;
}
.footer-tab-title svg.toggle-icon {
	width: 16px;
	height: 16px;
}
.footer-tab-title.heading-h4::after {
	position: absolute;
	content: "";
	width: 3px;
	height: 100%;
	background: var(--primary-color);
	left: 0;
	top: 0;
}
}

@media (max-width: 680px) {
  .client-slider .slick-prev,
  .people-say-slider .slick-prev {
    left: 36%;
  }
	.page-id-1034 .technology-tab-wide {
    justify-content: start !important;
}
  .core-values-items {
    grid-template-columns: repeat(1, 1fr);
  }
  .client-slider .slick-next,
  .people-say-slider .slick-next {
    right: 36%;
    left: unset;
  }
	.client-logo-box{
		gap: 60px;
	}
	.client-logo-box .image-container {
    min-width: calc(33.33% - 40px);
}
  .client-slider-item {
    min-height: 500px !important;
  }

  .portfolio-tabs .tab-content,
  .latest-content-boxs {
    grid-template-columns: repeat(1, 1fr);
    gap: 26px;
  }
	.home .hero-section{
		height: fit-content;
		padding-top: 43px !important;
	}

  .portfolio-tabs .tab-content .tab-item img,
  .latest-box img {
    height: auto;
  }

  .footer-wrapper .footer-tab {
    width: 100%;
  }

  .strongly-section .strongly-wrapper {
    gap: 20px;
  }

  .strongly-section .strongly-wrapper .strongly-belief-item,
  .core-values-items .core-values-item {
    width: 100%;
  }

  .strongly-section .strongly-wrapper .strongly-belief-item .strongly-icon img {
    margin: 0 auto;
  }

  .strongly-section .strongly-wrapper .strongly-belief-item {
    text-align: center;
  }

  .why-choose-zluck-wrapper .why-choose-zluck-list {
    gap: 20px;
  }

  .why-choose-zluck-wrapper .why-choose-zluck-list .why-choose-zluck-item {
    width: 100%;
  }

  .ai-agenta-list,
  .ai-agenta-lists-wrapper {
    gap: 20px;
  }

  .ai-agenta-list .solution-item,
  .ai-agenta-lists-wrapper .solution-item,.ai-agenta-list-3 .solution-item {
    width: 100%;
  }

  .vertical-flex-container .discovery-section {
    width: 100% !important;
  }

  .maintenance-packages-wrapper {
    gap: 30px;
  }
}

@media (max-width: 576px) {
	.about-us-section .ai-solutions-title.text-center{
		text-align: left;
	}
	.blog-author-wrapper {
		gap: 30px;
		grid-template-columns: 1fr;
	}

	.blog-author-dec {
		width: 100%;
	}

	.blog-author-content {
		order: 2;
	}

	.about-counter-item .label {
		font-size: 14px;
	}

	.blog-author-img {
		/* max-width: 300px; */
		order: 1;
		/* margin-left: auto; */
		margin: 0 auto;
	}

	.hero-section-content,
	.hero-title {
		gap: 24px;
	}

	.ai-solutions-wrapper,
	.our-services-wrapper {
		gap: 30px;
	}

	.core-values-items,
	.ai-agenta-wrapper .vertical-flex-container {
		gap: 20px;
	}

	.service-item {
		flex-direction: column;
		align-items: start;
    gap: 16px;
  }

  .about-us-content-wrapper .about-us-images img {
    height: auto;
  }

  .why-choose-us-item:nth-child(even) {
    margin-left: 0;
  }

  .why-choose-us-item {
    padding: 16px;
    flex-direction: column;
    align-items: start;
  }

  .why-choose-us-content {
    padding-left: 0;
    border: none;
  }

  .client-slider .slick-slide {
    margin: 0 6px;
  }

  /* .why-choose-us-wrapper {
    padding: 0 20px;
  } */

  .client-slider-item {
    min-height: 450px !important;
  }

  .workplace-box-icon img {
    width: 60px;
  }

  .workplace-box-content p {
    font-size: 18px;
    line-height: 26px;
  }

  .people-say-slider-item {
    flex-direction: column;
    align-items: start;
    padding: 20px 0 0;
  }

  .people-say-slider-item-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .career-form .form-bottom-row {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  .file-note {
    align-self: start;
  }

  .how-we-work-wrapper .how-we-work-content {
    gap: 20px;
  }

  .how-we-work-wrapper .how-we-work-content .how-we-work-content-item {
    width: 100%;
  }

  .turning-standards-items {
    grid-template-columns: repeat(2, 1fr);
  }
	.client-logo-box .image-container {
    min-width: calc(50% - 30px);
}
}

@media (max-width: 500px) {
  .ai-solutions-list {
    grid-template-columns: 1fr;
  }

  .ai-solutions-images .ai-solutions-images-item:nth-child(1) img:first-child,
  .ai-solutions-images .ai-solutions-images-item:nth-child(2) img:last-child,
  .ai-solutions-images .ai-solutions-images-item:nth-child(2) img:first-child,
  .ai-solutions-images .ai-solutions-images-item:nth-child(1) img:last-child {
    height: auto;
  }

  /* .about-counter-item {
    min-width: 100%;
  } */

  .case-study-details {
    flex-wrap: wrap;
    gap: 16px;
  }

  .case-study-details .case-study-details-item {
    width: 100%;
  }

  .case-list .technologies-list .technologies-item {
    width: 150px;
  }
	.technologies-list .technologies-item p{
		font-size: 18px;
	}
}

@media (max-width: 479px) {
  .workplace-content-boxs {
    grid-template-columns: repeat(2, 1fr);
  }

  /* .workplace-box {
    align-items: center;
  } */
}

@media (max-width: 400px) {
  .client-slider .slick-prev,
  .people-say-slider .slick-prev {
    left: 38%;
  }

  .client-slider .slick-next,
  .people-say-slider .slick-next {
    right: 38%;
  }

  .client-slider-item {
    min-height: 500px !important;
  }
}