/**
 * Components CSS File
 * Chetaru Homepage - Component Styles
 * 
 * This file contains styles for:
 * - Header/Navigation
 * - Buttons
 * - Cards (stat cards, service cards, etc.)
 * - Hero section
 * - Forms
 * - Accordions
 * - Carousels
 */

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
  position: unset;
  top: 0;
  left: 0;
  right: 0;
  height: 108px;
  z-index: 1000;
  transition: box-shadow var(--transition-normal), background-color var(--transition-normal);
}



.header--scrolled {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  position: unset;
  background-color: var(--color-white) !important;
  position: fixed !important;
}
.admin-bar .header--scrolled {
    top: 32px;
}
header .container {
  height: 100%;
  padding-top: 31px;
  padding-bottom: 31px;
}

.nav {
  height: 100%;
}

.mobile-menu-toggle {
  display: none;
}

.nav__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.logo {
  height: auto;
  max-height: 60px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  display: none;
  /* Hidden by default, shown if logo image fails to load */
}

/* Show text logo if image fails to load */
.logo-link:not(:has(img[src])) .logo-text,
.logo-link img[src=""]+.logo-text {
  display: block;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--spacing-xs);
  background: transparent;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

.nav__toggle-icon {
  width: 24px;
  height: 2px;
  background-color: var(--color-text-dark);
  transition: var(--transition-normal);
  position: relative;
}

.nav__toggle-icon::before,
.nav__toggle-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-dark);
  transition: var(--transition-normal);
}

.nav__toggle-icon::before {
  top: -8px;
}

.nav__toggle-icon::after {
  bottom: -8px;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon {
  background-color: transparent;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 60px;
}

.nav__item {
  list-style: none;
}

.nav__link {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  color: var(--color-text-dark);
  transition: color var(--transition-fast);
}

.nav__link:hover,
.nav__link:focus {
  color: var(--color-primary);
}

.nav__link--active {
  color: var(--color-primary);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 14px 30px;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-button);
  text-align: center;
  border: var(--border-medium) solid var(--color-text-medium);
  border-radius: var(--radius-pill);
  background-color: transparent;
  color: var(--color-text-medium);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover,
.btn--primary:focus {
  background-color: var(--color-text-dark);
  border-color: var(--color-text-dark);
}

.btn--outline {
  background-color: transparent;
  border-color: var(--color-text-medium);
  color: var(--color-text-medium);
}

.btn__icon {
  display: inline-block;
  transition: transform var(--transition-fast);
}

a.btn:hover svg path {
  stroke: #ffffff;
}

.btn:hover .btn__icon {
  transform: translateX(2px);
}

a.btn svg path {
  transition: all var(--transition-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {

  display: flex;
  align-items: center;
  background-color: var(--color-white);
  padding-bottom: 125px;
  padding-top: 145px;
}

.hero__content {
  display: flex;
  gap: 210px;
}

.hero__heading {
  font-size: var(--font-size-hero);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-heading);
  color: var(--color-primary);
  margin-bottom: 35px;
}

.hero__subheading {
  font-size: 1.875rem;
  /* 30px */
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
}

.hero__description {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-medium);
  margin-bottom: var(--spacing-xl);
  margin: 0;
  max-width: 410px;
  margin-left: auto;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 160px;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  color: var(--color-text-medium);
  cursor: pointer;
  transition: color 0.3s ease, opacity 0.3s ease;
  user-select: none;
}

.hero__scroll-hint:hover {
  color: var(--color-text-dark, #333);
  opacity: 0.8;
}



.hero__scroll-hint span {
  margin-left: 12px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.hero__scroll-hint:hover span {
  transform: translateY(2px);
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.hero__text {
  width: 39%;
}

.hero__image {
  flex: 1;
}

.hero__decorative {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero__team-image img {
  object-fit: contain;
  max-width: 525px;
}


/* ============================================
   CARDS
   ============================================ */

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--spacing-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card--light-bg {
  background-color: var(--color-bg-light);
}

.card__icon {
  width: 74px;
  height: 74px;
  background-color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.card__heading {
  font-size: var(--font-size-card-heading);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.card__description {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-medium);
}

/* Stat Card */
.stat-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.stat-card--yellow {
  background-color: var(--color-light-yellow);
}

.stat-card--green {
  background-color: var(--color-light-green);
}

.stat-card__number {
  font-size: 4.0625rem;
  /* 65px */
  font-weight: var(--font-weight-regular);
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.stat-card__label {
  font-size: 1.875rem;
  /* 30px */
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-heading);
  color: var(--color-primary);
}

.stat-card__icon {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 82px;
  height: 82px;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

/* ============================================
   STATISTICS SECTION
   ============================================ */

.stats {
  background-color: var(--color-white);
  position: relative;
}

.stats__subtitle {
  font-size: 1.5rem;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-heading);
  color: var(--color-text-dark);
  text-align: left;
  margin-bottom: var(--spacing-2xl);
  background: #ffffff;
  width: fit-content;
  padding: 0px 40px 20px 30px;
  border-radius: 24px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 75px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}



.stat-card:nth-child(2) {
  margin-top: 60px;
}

.stat-card:nth-child(4),
.stat-card:nth-child(6) {
  margin-top: -60px;
}

.stats-main {
  background: #114870;
  padding: 100px 75px 60px 75px;
  border-radius: 24px;
  position: relative;
}

.stat-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 35px 35px 45px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-card--yellow {
  background-color: #fffbeb;
}

.stat-card--green {
  background-color: #f2fff1;
}

.stat-card__icon {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 82px;
  height: 82px;
}

.stat-card__number {
  font-size: 4.0625rem;
  /* 65px */
  font-weight: var(--font-weight-regular);
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.stat-card__label {
  font-size: 1.875rem;
  /* 30px */
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-heading);
  color: var(--color-primary);
}

/* ============================================
   WHO WE WORK WITH SECTION
   ============================================ */

.who-we-work-with {
  background-color: var(--color-white);
}

.who-we-work-with__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.who-card {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 55px 45px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.who-card__icon {
  width: 87px;
  height: 87px;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.who-card__heading {
  font-size: 1.875rem;
  /* 30px */
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
  color: var(--color-primary);
  margin-bottom: 15px;
}

.who-card__description {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-medium);
  margin-bottom: 30px;
  font-weight: 400;
}

.who-card__section {
  margin-bottom: 27px;
}

.who-card__section-title {
  font-size: 1.375rem;
  /* 22px */
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.who-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.who-card__list li {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-medium);
  margin-bottom: var(--spacing-xs);
  padding-left: 25px;
  position: relative;
}

.who-card__list+.who-card__section-description {
  margin-top: 25px;
}

.who-card__section-description p {
  margin-bottom: 15px;
}

.who-card__section-description p:last-child {
  margin-bottom: 0;
}

.who-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  background-image: url(../images/li-mark.svg);
  background-size: contain;
  width: 16px;
  height: 13px;
  top: 10px;
  background-repeat: no-repeat;
}

ul.who-card__list.dots,
ol.who-card__list.dots {
  padding-left: 25px;
}

ul.who-card__list.dots li:before,
ol.who-card__list.dots li:before {
  display: none;
}

ul.who-card__list.dots li,
ol.who-card__list.dots li {
  list-style: disc;
  padding-left: 0;
}

ul.who-card__list.dots li::marker,
ol.who-card__list.dots li::marker {
  font-size: 14px;
}

.who-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

.who-we-work-with .who-we-work-with__grid--count-6 .who-card,
.who-we-work-with .who-we-work-with__grid--count-3 .who-card,
.who-we-work-with .who-we-work-with__grid--count-4 .who-card,
.who-we-work-with .who-we-work-with__grid--count-5 .who-card {
  background-color: transparent;
  box-shadow: 0px 0px 2px 0px #00000040;
}

.who-we-work-with .who-we-work-with__grid--count-6 .who-card__cta,
.who-we-work-with .who-we-work-with__grid--count-3 .who-card__cta,
.who-we-work-with .who-we-work-with__grid--count-4 .who-card__cta,
.who-we-work-with .who-we-work-with__grid--count-5 .who-card__cta {
  border-color: #114870;
  color: #114870;
}

.who-we-work-with .who-we-work-with__grid--count-6 .who-card__cta:hover,
.who-we-work-with .who-we-work-with__grid--count-3 .who-card__cta:hover,
.who-we-work-with .who-we-work-with__grid--count-4 .who-card__cta:hover,
.who-we-work-with .who-we-work-with__grid--count-5 .who-card__cta:hover {
  color: #ffffff;
}


.who-we-work-with .who-we-work-with__grid--count-6 .who-card,
.who-we-work-with .who-we-work-with__grid--count-3 .who-card,
.who-we-work-with .who-we-work-with__grid--count-4 .who-card,
.who-we-work-with .who-we-work-with__grid--count-5 .who-card {
  padding: 38px;
}

.who-we-work-with .who-we-work-with__grid--count-6.who-we-work-with__grid,
.who-we-work-with .who-we-work-with__grid--count-3.who-we-work-with__grid,
.who-we-work-with .who-we-work-with__grid--count-4.who-we-work-with__grid,
.who-we-work-with .who-we-work-with__grid--count-5.who-we-work-with__grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {

  background-color: var(--color-white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 38px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card--full-width {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-lg);
}

.service-card-text p:last-child {
  margin-bottom: 0;
}

.service-card__icon {
  width: 74px;
  height: 74px;
  background-color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  flex-shrink: 0;
}

.service-card--full-width .service-card__icon {
  margin-bottom: 0;
}

.service-card__heading {
  font-size: var(--font-size-card-heading);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.service-card__description {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-medium);
  margin-bottom: 27px;
  flex-grow: 1;
}

.service-card__specialties {
  margin-top: 25px;
}

.service-card__specialties-title {
  font-size: 1.25rem;
  /* 20px */
  font-weight: 500;
  line-height: var(--line-height-body);
  color: #114870;
  margin-bottom: var(--spacing-xs);
}

.service-card__specialties-text {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-medium);
}

/* ============================================
   PORTFOLIO / CASE STUDIES SECTION
   ============================================ */

.portfolio {
  /* background: linear-gradient(to top, var(--color-bg-light), transparent); */
  position: relative;
  background: #F1F5F8;
  background: linear-gradient(180deg, rgba(241, 245, 248, 0) 0%, rgba(241, 245, 248, 1) 50%);
  margin-bottom: 120px;
}


.portfolio-card {
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.12);
}

.portfolio-card-wrapper {
  width: 50%;
}

.floating-text img {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
}

.portfolio .section-subtitle {
  margin: 0;
}

.portfolio-card__image {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-sm);
  padding: var(--spacing-md);
  position: relative;
}



.portfolio-card__content {
  padding: var(--spacing-md) var(--spacing-xl);
  padding-bottom: 35px;
  padding-top: 0;
}

.portfolio-card__content p:last-child {
  margin: 0;
}

.portfolio-card__title {
  font-size: var(--font-size-card-heading);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
  color: var(--color-primary);
  margin-bottom: 12px;
}

.portfolio-card__tags {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-medium);
}

.portfolio-card-row {
  display: flex;
}

.portfolio-card__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 100%;
}

.portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(even) .portfolio-card__image {
  height: 337px;
}

.portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(odd) .portfolio-card__image {
  height: 391px;
}

.portfolio-card-row:nth-child(even) .portfolio-card-wrapper:nth-child(even) .portfolio-card__image {
  height: 344px;
}

.portfolio-card-row:nth-child(even) .portfolio-card-wrapper:nth-child(odd) .portfolio-card__image {
  height: 337px;
}

.portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(odd) {
  max-width: 696px;
}

.portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(even) {
  max-width: 637px;
  margin-top: 210px;
}

.portfolio-card-row:nth-child(odd) {
  column-gap: 220px;
}

.portfolio-card-row:nth-child(even) {
  column-gap: 196px;
  padding-left: 120px;
}

.portfolio-card-row:nth-child(even) .portfolio-card-wrapper:nth-child(odd) {

  max-width: 637px;
}

.portfolio-card-row:nth-child(even) .portfolio-card-wrapper:nth-child(even) {
  max-width: 750px;
  margin-top: 210px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */



.why-choose-us__content {
  display: grid;
  grid-template-columns: 732px 1fr;
  align-items: start;
  background: #114870;
  border-radius: 24px;
  overflow: hidden;
}

.why-choose-us__left {
  position: relative;
  padding: 60px 80px;
  background-image: url(../images/leading-bg.png);
  background-size: cover;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}



.why-choose-us__heading {
  font-size: var(--font-size-section-title);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-heading);
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.why-choose-us__subheading {
  font-size: var(--font-size-subtitle);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  color: var(--color-white);
  position: relative;
  z-index: 2;
}

.why-choose-us__right {
  position: relative;
  z-index: 2;
}

.why-choose-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-left: solid 1px #ffffff3d;
}

.why-feature-card {
  background-color: var(--color-primary);
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  border-bottom: solid 1px #ffffff3d;
}

.why-feature-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature-card:nth-child(odd) {
  border-right: solid 1px #ffffff3d;
}

.why-feature-card__heading {
  font-size: var(--font-size-card-heading);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.why-feature-card__description {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-white);
  max-width: 416px;
}

.why-feature-card.full-width {
  grid-column: 1 / -1;
  border-right: none;
}

/* ============================================
   ACCORDION
   ============================================ */

.accordion {
  border-bottom: var(--border-thin) solid var(--color-text-medium);
}

.accordion:first-child {
  border-top: var(--border-thin) solid var(--color-text-medium);
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  position: relative;
  padding-right: 40px;
}


.accordion__header:after {
  content: "";
  width: 20px;
  background-color: #25282B;
  height: 2px;
  border-radius: 22px;
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion__header:before {
  content: "";
  height: 20px;
  background-color: #25282B;
  width: 2px;
  border-radius: 22px;
  display: block;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion__header[aria-expanded="true"]:before {
  display: none;
}

.accordion__title {
  font-size: 22px;
  /* 22px */
  font-weight: var(--font-weight-medium);
  color: var(--color-text-dark);
}
.accordion h3 {
    font-size: 20px;
}

.accordion p,
.accordion li {
  font-size: 16px;
  margin-bottom: 14px;
}

.accordion__icon {
  width: 11px;
  height: 6px;
  transition: transform var(--transition-normal);
  display: none;
}

.accordion__header[aria-expanded="true"] .accordion__icon {
  transform: rotate(180deg);
}


.accordion__content {
    display: none;
    padding-bottom: 15px;
}
/* ============================================
   TABS
   ============================================ */

.tabs {
  display: flex;
  gap: 45px;
  border-bottom: var(--border-thin) solid var(--color-text-medium);
  width: fit-content;
  margin: 0 auto;
}

.tab {
  font-size: 1.25rem;
  font-weight: var(--font-weight-regular);
  color: var(--color-text-medium);
  background: none;
  border: none;
  border-bottom: var(--border-thick) solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  padding: 0 15px 15px 15px;
}

.tab:hover,
.tab:focus {
  color: var(--color-primary);
}

.tab--active {
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.tab-content {
  display: none;
}

.tab-content--active {
  display: block;
}

/* ============================================
   CAROUSEL
   ============================================ */

.testimonials__carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  flex-wrap: wrap;
}

.carousel__slide {
  width: 100%;
  padding: 0 12px;
  position: relative;
  top: -45px;
  transition: all linear .3s;
}



.carousel__slide.slick-center .testimonial-card {
  background-color: #114870;
}

.carousel__slide.slick-center .testimonial-card .testimonial-card__quote-icon svg path {
  fill: #F1F5F8;
}

.carousel__slide.slick-center .testimonial-card__quote,
.carousel__slide.slick-center .testimonial-card__quote p {
  color: #FFFFFF;
}

.carousel__slide.slick-center .testimonial-card__author {
  color: #FFFFFF;
}

/* ============================================
   PARTNERSHIP MODELS SECTION
   ============================================ */

.partnership-models {

  background-color: var(--color-white);
}

.partnership-models .section-title,
.testimonials .section-title,
.industries .section-title,
.faq .section-title,
.portfolio .section-title,
.who-we-work-with .section-title {
  margin-bottom: 24px;
}

.partnership-card {
  background-color: #F1F5F8;
  border-radius: var(--radius-lg);
  padding: 48px 38px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.partnership-card:hover {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.partnership-card__header,
.partnership-card__section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #555555;
}

.partnership-card__header p:last-child,
.partnership-card__section p:last-child {
  margin-bottom: 0;
}

.partnership-card__title {
  font-size: var(--font-size-card-heading);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.partnership-card__subtitle {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-medium);
}




.partnership-models h4 {
  font-size: 1.25rem;
  /* 20px */
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
  color: #25282B;
  margin-bottom: var(--spacing-sm);
}

.partnership-card__section-text {
  margin-bottom: var(--spacing-md);
}

.partnership-card p,
.partnership-card li {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-medium);
}

.partnership-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partnership-card__list li {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-medium);
  margin-bottom: var(--spacing-xs);
  padding-left: var(--spacing-lg);
  position: relative;
}

.partnership-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}





.partnership-card__pricing {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.partnership-card__price {
  font-size: 40px;
  font-weight: 500;
  line-height: var(--line-height-heading);
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.partnership-card__price-label {
  font-size: var(--font-size-body);
  color: var(--color-text-medium);
}

.partnership-card__price small {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: #555555;
}

.partnership-card__savings {
  font-size: var(--font-size-body);
  color: var(--color-text-medium);
}

.partnership-card__footer-text {
  font-size: var(--font-size-small);
  color: var(--color-text-medium);
  margin-bottom: var(--spacing-md);
}

.partnership-card__cta {
  width: 100%;
  margin-top: auto;
}

p.saving-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: #114870;
}

p.saving-text strong {
  font-weight: 700;
}

.partnership-card__section .know-more-toggle__text {
  position: relative;
  text-underline-offset: 3px;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  text-decoration: underline;
  color: #555555;
  margin-bottom: 6px;
  display: inline-block;
}

.partnership-card__section .know-more-toggle__text:after {
  content: "";
  position: absolute;
  top: 12px;
  right: -18px;
  background-image: url(../images/know-arr.svg);
  width: 11px;
  height: 6px;
  background-size: contain;
  text-decoration: none;
  background-repeat: no-repeat;
}

.partnership-card__section .know-more-toggle__text:hover {
  text-decoration: none;
}

.partnership-card__header {
  flex-shrink: 0;
}

.partnership-card__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.partnership-card__section {
  flex-shrink: 0;
}

.partnership-card__footer {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.partnership-models__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}


.know-more-content ul {
  padding-left: 25px;
  list-style: disc;
  margin-bottom: 30px;
}

.know-more-content ul li::marker {
  font-size: 14px;
}

.know-more-content li {
  margin-bottom: 10px;
  position: relative;
}

.know-more-content ol {
  margin-bottom: 30px;
}

.know-more-content ol li {
  padding-left: 25px;
}

.know-more-content ol li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  background-image: url(../images/li-mark.svg);
  background-size: contain;
  width: 16px;
  height: 13px;
  top: 10px;
  background-repeat: no-repeat;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

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

.testimonials .section-subtitle {
  margin: 0;
}

.testimonial-card {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  display: flex;
  gap: 40px;
  min-height: 400px;
  transition: all linear .3s
}

.testimonials__carousel .slick-list.draggable {
  padding-top: 45px !important;
}

.testimonial-card__quote,
.testimonial-card__quote p {
  font-size: var(--font-size-subtitle);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-testimonial);
  color: #114870;
  margin-bottom: var(--spacing-lg);
  font-style: normal;
}


.carousel__slide.slick-center {
  top: 0;

}

.testimonials__carousel .slick-dots {
  display: flex !important;
  justify-content: center;
  width: 100%;
  gap: 8px;
  margin-top: 40px;
}

.testimonials__carousel .slick-dots button {
  font-size: 0;
  width: 25px;
  height: 4px;
  background-color: #D9D9D9;
  transition: all linear .3s;
  border-radius: 23px;
}

.testimonial-card__author {
  font-size: var(--font-size-body);
  font-weight: 400;
  line-height: var(--line-height-body);
  color: var(--color-text-medium);
  font-style: normal;
}

.testimonial-card__quote-icon svg path {
  fill: #11487066;
}

.testimonial-card__author strong {
  font-weight: 500;
}

.slick-track:before,
.slick-track:after {
  display: none;
}

.testimonials__carousel .slick-dots li.slick-active button {
  width: 60px;
}

/* ============================================
   INDUSTRY EXPERIENCE SECTION
   ============================================ */

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

.industry-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.industry-card__icon {
  width: 74px;
  height: 74px;
  border-radius: var(--radius-sm);

  margin-bottom: var(--spacing-md);
}

.why-choose-us+.industries .industry-card__icon,
.who-we-work-with+.industries .industry-card__icon {
  width: 40px;
  height: 40px;
}

.industry-card__heading {
  font-size: var(--font-size-card-heading);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.industry-card p {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-medium);
  margin-bottom: 10px;
}

.industry-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-card p:last-child {
  margin-bottom: 0;
}

.industry-card__list li {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-medium);
  margin-bottom: var(--spacing-xs);
  padding-left: var(--spacing-lg);
  position: relative;
}

.industry-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

.industries__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

/* ============================================
   TECHNOLOGY STACK SECTION
   ============================================ */


.tech-stack__content {
  display: grid;
  grid-template-columns: 732px 1fr;
  background: #114870;
  border-radius: 24px;
  overflow: hidden;
}

.tech-stack__left {
  position: relative;
  padding: 45px 80px;
}


.tech-stack__heading {
  font-size: var(--font-size-section-title);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-heading);
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.tech-stack__subheading {
  font-size: var(--font-size-subtitle);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  color: var(--color-white);
  position: relative;
  z-index: 2;
}

.tech-stack__right {
  position: relative;
  z-index: 2;
}

.tech-stack__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: solid 1px #ffffff3d;
}

.tech-card {
  background-color: var(--color-primary);
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: solid 1px #ffffff3d;
}

.tech-card:nth-child(odd) {
  border-right: solid 1px #ffffff3d;
}

.tech-card--full-width {
  grid-column: 1 / -1;
  padding-top: 55px;
  padding-bottom: 55px;
}

.tech-card__title {
  font-size: var(--font-size-card-heading);
  font-weight: 400;
  line-height: var(--line-height-heading);
  color: var(--color-white);
  margin-bottom: 10px;
  text-align: center;
}

.tech-card__tech-list {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-white);
  opacity: 0.9;
  text-align: center;
}

.tech-card p:last-child {
  margin-bottom: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {

  background-color: var(--color-white);
}

.faq__tabs {
  max-width: 1050px;
  margin: 0 auto;
}

.faq__accordions {
  margin-top: 48px;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {

  color: #fff;
}

.footer-inner {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}

.footer-main-wrapper {
  background: #114870;
  border-radius: 24px;
  padding: 70px 65px 70px 65px;
}

.footer-col h4 {
  margin-bottom: 35px;
  color: #ffffff;
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
}

.footer-menu-column h5 {
  font-weight: 700;
  line-height: 100%;
  vertical-align: bottom;
  text-transform: uppercase;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.footer-menu-column li a {
  color: #A5BFD2;
}

.footer-menu-column li a:hover {
  color: #ffffff;
}

.footer-col.footer-contact h4 {

  font-weight: 500;
  font-size: 15px;
  line-height: 131%;
  letter-spacing: 0;
}

.footer-col p,
.footer-col a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


.footer-col a {
  color: #fff;
  text-decoration: none;
}






.footer-col li a:hover {
  opacity: #ffffff;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.footer-logo {
  font-weight: bold;
  letter-spacing: 2px;
}

.footer-nav a {
  margin-left: 50px;
  font-size: 16px;
}

.footer-double-link {
  margin-bottom: 20px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-cta {
  background-color: #F1F5F8;
  border-radius: 24px;
  margin-bottom: 65px;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 60px 30px 44px;
}

.footer-cta-brand img {
  width: 190px;
}

.footer-cta-contacts {
  display: flex;
  justify-content: end;
  flex: 1;
  gap: 45px;
}

.footer-cta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.footer-cta-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-cta-text span {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #114870;
}

.footer-cta-text a {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  color: #114870;
}

.footer-cta-text a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-cta-icon img {
  width: 100%;
  height: 100%;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

ul.footer-bottom-links {
  display: flex;
  justify-content: end;
}

p.copyright {
  margin: 0;
  color: #DEDEDE;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
}

.footer-social {
  margin-top: 0;
  display: flex;
  gap: 23px;
}

ul.footer-bottom-links li a {
  border-right: solid 1px #DEDEDE;
  padding: 0 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: right;
  color: #DEDEDE;
}

ul.footer-bottom-links li a:hover {
  color: #ffffff;
}

.footer-social img {
  max-width: 23px;
}

ul.footer-bottom-links li:last-child a {
  border: 0;
}

.footer-col ul li:last-child {
  margin-bottom: 0;
}

.footer-menu-column ul {
  margin-bottom: 35px;
}

.footer-menu-column:last-child ul:last-child {
  margin-bottom: 0;
}

.why-choose-us__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, var(--color-primary), rgba(17, 72, 112, 0));
  z-index: 1;
}

.footer-col {
  width: 20%;
  max-width: 223px;
}

.footer-col:first-child {
  width: 21%;
  max-width: unset;
}

.footer-col:last-child {
  width: 23%;
  max-width: unset;
}

/* banner section */
body:has(.banner-section) .header,
body:has(.blog-single-banner) .header {
    background-color: transparent;
    position: fixed;
}
body.admin-bar:has(.banner-section) .header,
body.admin-bar:has(.blog-single-banner) .header  {
  margin-top: 32px;
}
body.admin-bar:has(.banner-section) .header.header--scrolled,
body.admin-bar:has(.blog-single-banner) .header.header--scrolled  {
  top: 0 !important;
}
.banner-section {
  display: flex;
  align-items: center;
  padding-top: 226px;
  background-color: #F1F5F8;
  padding-bottom: 90px;
}

.page-not-found,
.simple-banner {
  padding-top: 226px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, rgba(241, 245, 248, 0) 0%, rgba(241, 245, 248, 1) 100%);
}

.banner-section .hero__actions {
  margin-bottom: 30px;
  gap: 24px;
}

.banner-left p {
  max-width: 773px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  margin-bottom: 30px;
  color: #555555;
}

span.banner-note {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #555555;
}

.banner-section .hero__actions a {
  color: #114870;
  border-color: #114870;
  background-color: #ffffff;
}

.banner-section .hero__actions a:hover {
  color: #ffffff;
  border-color: #114870;
  background-color: #114870;
}

.banner-section .hero__actions a span {
  display: none;
}

.banner-section .hero__actions a:after {
  content: "↗";
}

.banner-info .info-item a {
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0px;
  color: #114870;
}

.banner-info .info-item a:hover,
.contact-left a:hover {
  text-decoration: underline;
}

.banner-info .info-item span {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: #555555;
}

.banner-info .info-item h4 {
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0px;
  color: #114870;
  margin-bottom: 5px;
}

.banner-info.three-column {
  gap: 55px;
}

.banner-info.three-column img {
  width: 40px;
  height: 40px;
  display: block;
  margin-bottom: 14px;
}

.banner-info.three-column img+h4 {
  font-size: 24px;
  line-height: 130%;
  font-weight: 500;
}

/* existing container can be reused site-wide */

.banner-grid {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

.banner-left {
  width: 100%;
  max-width: 773px;
}

.banner-right p {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0;
  color: #25282B;
  margin-bottom: 35px;
}

.banner-info {
  display: flex;
  gap: 80px;
}

.banner-right {
  width: 100%;
  max-width: 610px;
  margin-top: 15px;
}

.banner-info .info-item a {
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0px;
  color: #114870;
}

.banner-info .info-item span {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: #555555;
}




.banner-info.three-column.statistics-show-below .info-item {
  box-shadow: 0px 0px 2px 0px #00000040;
  border-radius: 24px;
  background-color: #ffffff;
  padding: 35px 40px;
}

.banner-info.three-column.statistics-show-below {
  gap: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 30px;
}

/* banner section */


/* contact section */
.contact-section {
  background: linear-gradient(0deg, rgba(241, 245, 248, 0) 0%, rgba(241, 245, 248, 1) 100%);
  padding-bottom: 24px;
}

.contact-wrapper {
  display: flex;
  gap: 160px;
  background: #fff;
  border-radius: 16px;
  padding: 45px;
  box-shadow: 0px 0px 2px 0px #00000040;
  align-items: center;
}

.social-grid .social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-left p {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0;
  color: #25282B;
  margin-bottom: 30px;
}

.contact-left a {
  color: #114870;
  font-weight: 700;
  text-decoration: none;
}

/* Social cards */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.social-grid .social-card {
  background: #F1F5F8;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 60px;
  text-decoration: none;
  font-weight: 400 !important;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0;
  color: #114870;
  flex-direction: column;
  transition: all linear .3s;
}

.social-card .icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.social-card img {
  width: 50px;
  height: 50px;
}


/* Right Form */
.contact-form {
  background: #114870;
  border-radius: 24px;
  padding: 40px 54px;
  color: #fff;
  flex: 1;
}

.contact-form h2 {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 46px;
  line-height: 130%;
  letter-spacing: 0;
  color: #ffffff;
}

.contact-left {
  width: 40%;
}

.contact-form label {
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 130%;
  letter-spacing: 0;
  color: #FFFFFF !important;
  margin-bottom: 8px !important;
  display: block !important;
}

.gform_wrapper.gravity-theme .gfield_required {

  color: #ffffff !important;
}

.contact-form input,
.contact-form textarea {
  width: 100% !important;
  border: none;
  border-radius: 6px;
  padding: 18px 14px !important;
  margin-bottom: 0 !important;
  font-size: 16px !important;
  color: #999999;
}

.contact-form textarea {
  height: 145px !important;
  resize: none;
}

.contact-section .gform-footer .button {
  background: #fff;
  color: #114870;
  border-radius: 24px;
  padding: 13px 22px !important;
  font-size: 16px !important;
  font-weight: 500;
  cursor: pointer;
  display: block;
  align-items: center;
  width: fit-content !important;
  border: 1px solid #ffffff;
  margin-bottom: 0 !important;
  min-height: unset !important;
  line-height: unset !important;
  line-height: normal !important;
}

.contact-section .gform-footer .button:hover {
  background-color: transparent;
  color: #ffffff;
}

.contact-section .gform_wrapper.gravity-theme .gform_fields {
  gap: 20px !important;
}

.gform_required_legend {
  display: none !important;
}

.contact-section .gform-footer {
  padding: 0 !important;
  margin: 0 !important;
}

.gform_wrapper.gravity-theme .gform_validation_errors {

  display: none !important;
}

.validation_message {
  background-color: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  line-height: 100% !important;
}

.project-form form .gfield--type-choice .gfield_description.validation_message.gfield_validation_message {
  text-align: center;
  margin-top: 0;
}

.project-form form .gfield--type-choice.gfield_visibility_visible .ginput_container.ginput_container_consent {
  margin-bottom: 8px;
}


.project-form form .gfield--type-choice.gfield_visibility_visible {
  margin-bottom: 20px;
}

/* contact section */


/* features section */




.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 24px;
  padding: 32px;
  transition: box-shadow 0.3s ease;
}


.feature-icon img {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}

.feature-card h3 {
  color: #114870;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0;
}

.feature-card p {
  color: #555555;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
}

.feature-card p:last-child {
  margin-bottom: 0;
}

.faq.without-tab .tab-content {
  display: block;
}

/* features section */

/* cta stripe section */



.cta-box {
  background: #F1F5F8;
  border-radius: 24px;
  padding: 25px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1050px;
  margin: 0 auto;
}

.cta-text h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #3A3A3A;
  margin-bottom: 12px;
}

.cta-text p {
  color: #6B6B6B;
}

/* Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid #0b4f7c;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #0b4f7c;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-text p:last-child {
  margin-bottom: 0;
}

.cta-btn:hover {
  background: #0b4f7c;
  color: #ffffff;
}

.faq.without-tab {
  padding-bottom: 30px;
}

.cta-strip .btn {
  background-color: #FFFFFF;
  color: #114870;
  border: 1px solid #114870;
}

.cta-strip .btn:hover {
  background-color: #114870;
  color: #ffffff;
}

.cta-strip .btn span {
  display: none;
}

.cta-strip .btn:after {
  content: "↗";
}

/* cta stripe section */

/* blog section */
.blog-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 55px;
}

.blog-box img {
  width: 100%;
  height: 322px;
  transition: all linear .3s;
  object-fit: cover;
}

.blog-box {
  box-shadow: 0px 0px 2px 0px #00000040;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 20px;
}

.blog-box-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0;
  color: #25282B;
  margin-bottom: 24px;
}

.blog-img {
  margin-bottom: 30px;
  border-radius: 24px;
  overflow: hidden;
}

.blog-img:hover img {
  transform: scale(1.05);
}

.blog-box-date {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #555555;
}

.blog-box-date span {
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0;
  color: #555555;
}

.blog-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}

.blog-read-more .btn {
  background-color: #F1F5F8;
  border-color: #F1F5F8;
  color: #114870;
}

.blog-read-more .btn span {
  display: none;
}

.blog-read-more .btn:after {
  content: "↗";
}

.blog-read-more .btn:hover {
  background-color: #114870;
  border-color: #F1F5F8;
  color: #ffffff;
}

.blog-grid {
  background: linear-gradient(0deg, rgba(241, 245, 248, 0) 0%, rgba(241, 245, 248, 1) 100%);
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.pagination .nav-links .page-numbers {
  border-radius: 10px;
  box-shadow: 0px 0px 2px 0px #00000040;
  background: #FFFFFF;
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0;
  text-align: center;
  width: 61px;
  height: 61px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555555;
  padding: 10px;
  cursor: pointer;
}

.pagination .nav-links .page-numbers:hover,
.pagination .nav-links .page-numbers.current {
  background-color: #114870;
  color: #ffffff;
}

.pagination .nav-links .next.page-numbers,
.pagination .nav-links .prev.page-numbers {
  font-size: 0;
}

.pagination .nav-links .next.page-numbers:before,
.pagination .nav-links .prev.page-numbers:before {
  content: '';
  background-image: url(../images/pagination-arrow.svg);
  display: block;
  width: 8px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
}

.pagination .nav-links .prev.page-numbers:before {
  transform: rotate(180deg);
}

.pagination .nav-links .next.page-numbers:hover:before,
.pagination .nav-links .prev.page-numbers:hover:before {
  background-image: url(../images/pagination-arrow-white.svg);
}

.blog-box-title:hover {
  color: #114870;
}

.blog-banner-img {
  border-radius: 18px;
  overflow: hidden;
}

h1.blog-title {
  font-weight: 400;
  font-size: 56px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  color: #114870;
  max-width: 1077px;
  margin: 0 auto 55px auto;
}



.blog-single-banner-content .blog-box-date {
  justify-content: center;
  margin-bottom: 20px;
}

.blog-single-banner {
  background: linear-gradient(0deg, rgba(241, 245, 248, 0) 0%, rgba(241, 245, 248, 1) 100%);
  padding-top: 170px;
  margin-bottom: 80px;
}

.blog-single-content-row {
  display: flex;
  border-bottom: solid 1px #80808038;
  padding-bottom: 45px;
}

.blog-single-left {
  width: 23%;
  max-width: 380px;
}

.blog-single-middle {
  flex: 1;
  padding-left: 100px;
  padding-right: 80px;
}

.blog-single-right {
  width: 23%;
  max-width: 380px;
}

.toc-heading {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0;
  color: #25282B;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.toc-content {
  background-color: #F1F5F8;
  border-radius: 24px;
  padding: 25px 30px;
  border: 1px solid #555555;
  position: sticky;
  top: 130px;
}

.toc-list {
  list-style: number;
  padding: 25px 0 0 24px;
  display: none;
}

.toc-content.active .toc-list {
  display: block;
}

.toc-list a {
  font-size: 16px;
}

.toc-list a:hover,
.toc-list li:hover {
  color: #114870;
}

.blog-single-content .blog-single-middle h2 {
  font-weight: 500;
  font-size: 30px;
  line-height: 130%;
  letter-spacing: 0;
  color: #25282B;
  margin-bottom: 20px;
}

.blog-single-content .blog-single-middle p,
.blog-single-content .blog-single-middle li {
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0;
  color: #555555;
}

.blog-single-content .blog-single-middle h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0;
  color: #25282B;
  margin-bottom: 20px;
  margin-top: 10px;
}

.blog-single-content .blog-single-middle p+h3 {
  margin-top: 40px;
}

.blog-single-content .blog-single-middle p+h2 {
  margin-top: 80px;
}

.social-share h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #25282B;
  margin-bottom: 24px;
}

.social-share-links {
  display: flex;
  gap: 16px;
}

.social-share-links img {
  width: 40px;
  height: 40px;
  transition: all linear .3s;
}

.social-share-links img:hover {
  transform: scale(1.1);
}

.social-share {
  background-color: #F1F5F8;
  border-radius: 24px;
  border: 1px solid #555555;
  padding: 30px;
  margin-bottom: 24px;
}

.talk-content {
  border-radius: 24px;
  background-color: #114870;
  padding: 30px;
}

.talk-content h2,
.talk-content h3 {
  font-weight: 400;
  font-size: 30px;
  line-height: 130%;
  letter-spacing: 0;
  color: #ffffff;
}

.talk-content h3 {
  color: #F1CB31;
  margin-bottom: 20px;
}

.talk-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0;
  color: #ffffff;
}

.talk-content .btn {
  background-color: #F1F5F8;
  color: #114870;
  border: 1px solid transparent;
}

.talk-content .btn:hover {
  background-color: #114870;
  color: #ffffff;
  border-color: #ffffff;
}

.blog-right-sticky {
  position: sticky;
  top: 130px;
}

.toc-heading img {
  width: 14px;
  height: 7px;
}

.blog-single-content {
  padding-bottom: 75px;
}

.related-blog h2 {
  font-weight: 400;
  font-size: 56px;
  line-height: 110%;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 45px;
}

.all-article {
  text-align: center;
}

.related-blog .blog-grid-inner {
  margin-bottom: 45px;
}

.blog-banner-img img {
  width: 100%;
  max-height: 530px;
  object-fit: cover;
}

/* blog section */

/* subscription section */


.subscribe-inner {
  background: #114870;
  border-radius: 24px;
  padding: 95px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left content */
.subscribe-left h2 {
  color: #ffffff;
  font-weight: 400;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0;
  max-width: 545px;
}

.subscribe-left h3 {
  margin: 6px 0 0;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
}

/* Right content */
.subscribe-form {
  width: 100%;
}

.subscribe-form form {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 14px;
}

.subscribe-right {
  width: 51%;
  max-width: 782px;
}

.subscribe-left {
  flex: 1;
}

.subscribe-form form .gform-body input {
  font-weight: 400;
  font-size: 30px !important;
  line-height: 130%;
  letter-spacing: 0;
  color: #FFFFFF;
  background-color: transparent;
  border: none !important;
  opacity: 1;
  padding: 0 !important;
  width: 100% !important;
  padding-right: 40px !important;
}

.subscribe-form .gfield_validation_message {
  position: absolute;
  bottom: 60px;
}

.subscribe-form .gform-footer.gform_footer.top_label {
  margin: 0 !important;
  padding: 0 !important;
}

.subscribe-form .gform_fields {
  gap: 0 !important;
}

.subscribe-form form .gform-body input::placeholder {
  color: #ffffff;
}

.subscribe-form .gform-footer input {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffffff;
  font-size: 0;
  cursor: pointer;
  margin: 0 !important;
  background: url(../images/subscribe-btn.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right;
  width: 24px;
  height: 24px;
  display: block !important;
  opacity: 1 !important;
}


.subscribe-text {
  margin-top: 10px;
  color: #FFFFFF;
}


/* subscription section */

.banner-left.full-width {
  max-width: 1417px;
}

/* mission vision section */
.mission-vision-section {
  background: linear-gradient(0deg, rgba(241, 245, 248, 0) 0%, rgba(241, 245, 248, 1) 100%);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mission-vision-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0px 0px 2px 0px #00000040;
}

.icon-box img {
  width: 74px;
  height: 74px;
  margin-bottom: 30px;
}

.mission-vision-card h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0;
  color: #114870;
  margin-bottom: 16px;
}

.mission-vision-card p {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: #555555;
}

.mission-vision-card p:last-child {
  margin-bottom: 0;
}

/* mission vision section */

/* cta banner section */


.cta-inner {
  border-radius: 24px;
  padding: 110px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  background-image: url(../images/cta-bg-new.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.cta-inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, var(--color-primary), rgba(17, 72, 112, 0));
  z-index: -1;
  height: 40%;
}

.cta-inner h2 {
  font-weight: 400;
  font-size: 46px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  color: #FFFFFF;
  max-width: 1193px;
  margin: 0 auto 45px auto;
}

.cta-inner p {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  color: #FFFFFF;
  max-width: 1193px;
  margin: 0 auto 45px auto;
}

.cta-banner .btn {
  background-color: #ffffff;
  color: #114870;
  border: 1px solid transparent;
}

.cta-banner .btn:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-banner .btn:after {
  content: "↗";
}

/* cta banner section */

/* value section */


/* Heading */

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

/* Card */
.value-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 38px;
  box-shadow: 0px 0px 2px 0px #00000040;
}

.value-icon img {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}

.value-card h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0;
  color: #114870;
  margin-bottom: 24px;
}

.value-card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: #555555;
  margin-bottom: 0;
}

/* value section */

/* split link section */
.split-links {
  padding: 0;
}

.split-links .container {
  max-width: 100%;
  padding: 0;
}

.split-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #114870;
  min-height: 650px;
}

/* Individual blocks */
.split-link {
  font-weight: 400;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0;
  color: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
}

/* Vertical divider */
.split-content:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  justify-content: end;
}



/* Hover effect (optional) */
.split-content:hover {
  background: rgba(255, 255, 255, 0.05);
}

.split-content {
  display: flex;
  align-items: end;
  padding-bottom: 85px;
}



.split-content:first-child .split-link {
  max-width: 850px;
}

.split-content:last-child {
  padding-left: 108px;
}

.split-link:after {
  content: "↗";
  font-size: 32px;
  margin-left: 24px;
}

/* split link section */

/* gallery section */

.gallery-box img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.gallery .slick-list.draggable {
  padding-right: 200px;
}

/* gallery section */

/* Section */
.service-highlights {
  background: linear-gradient(0deg, rgba(241, 245, 248, 0) 0%, rgba(241, 245, 248, 1) 100%);
}


.service-highlights .service-highlights-wrapper {
  background-color: #114870;
  border-radius: 24px;
  padding: 60px 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.service-highlights .service-card {
  border-radius: 24px;
  padding: 38px 45px;
  text-align: center;
}


.service-highlights .service-icon {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}


.service-highlights .service-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #114870;
}

.service-highlights .service-card p {
  font-size: 18px;
  line-height: 150%;
  color: #555555;
  margin: 0;
}



/* service highlight section */


/* wp technologies section */





.wp-technologies .tech-row {
  background: #F1F5F8;
  border-radius: 24px;
  padding: 20px 30px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 35px;
}


.wp-technologies .tech-title {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
}

.wp-technologies .tech-title small {
  font-size: 18px;
  color: #555555;
  font-weight: 500;
}

.wp-technologies .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 50%;
  padding-right: 50px;
}

.wp-technologies .tag {
  background: #ffffff;
  border: 1px solid #00000059;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 16px;
  color: #25282B;
  white-space: nowrap;
}

.wp-technologies .tech-title span {
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0;
  color: #114870;
}

/* wp technologies section */


/* recent project section */




.recent-projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}

.recent-projects .projects-grid.projects-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

}

.recent-projects .projects-grid.projects-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

}

.recent-projects .project-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 2px 0px #00000040;
  flex: 1;
}

.recent-projects .project-image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.recent-projects .project-content {
  padding: 35px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.recent-projects .project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  gap: 10px;
}

.recent-projects .project-header a {
  font-size: 24px;
  font-weight: 500;
  color: #114870;
  line-height: 130%;
}

.recent-projects .project-type {
  font-size: 12px;
  color: #030213;
  font-weight: 400;
  margin-top: 5px;
}

.recent-projects .project-results {
  margin-bottom: 24px;
}

.recent-projects .results-title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #45556C;
  line-height: 20px;
}

.recent-projects .project-results ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-projects .project-results li {
  font-size: 18px;
  color: #555555;
  padding-left: 25px;
  position: relative;
  line-height: 150%;
  margin-bottom: 16px;
}

.recent-projects .project-results li::before {
  content: "▲";
  color: #1aa84b;
  position: absolute;
  left: 0;
  font-size: 16px;
}

.recent-projects .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.recent-projects .project-tags span {
  border: 1px solid #0000003b;
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 14px;
  color: #555555;
}

.recent-projects .project-link,
.services .service-card__link {
  font-size: 16px;
  font-weight: 500;
  color: #114870;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  line-height: 130%;
  gap: 10px;
}

.recent-projects .project-link span,
.services .service-card__link span {
  font-size: 19px;
  display: none;
}

.services .service-card__link {
  margin-top: 0;
  display: none;
}

.recent-projects .project-link:after,
.services .service-card__link:after {
  content: "↗";
  font-size: 19px;
}

.recent-projects .project-link:hover,
.services .service-card__link:hover {
  text-decoration: underline;
}

.recent-projects .project-image,
.recent-projects .project-image img {
  height: 316px;
}

.recent-projects .project-results li:last-child {
  margin-bottom: 0;
}

.recent-projects.transparent-section {
  background-color: #F1F5F8;
  padding: 55px 0;
  margin-bottom: 130px;
}

/* recent project section */

/* industry solutions */




.industry-solutions .industry-solutions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  padding: 0 100px;
}

.industry-solutions .industry-solutions-card {
  background: #F1F5F8;
  border-radius: 24px;
  padding: 44px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.industry-solutions .industry-solutions-card:hover {
  background: #eef3f8;
  transform: translateY(-4px);
}

.industry-solutions .industry-solutions-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.industry-solutions .industry-solutions-card p {
  font-size: 16px;
  font-weight: 500;
  color: #25282B;
  margin: 0;
  text-align: center;
  line-height: 130%;
}

/* industry solutions */

/* project form section */

.project-form .cta-points {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 49px;
}

.project-form .cta-points li {
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  line-height: 150%;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0;
}


.project-form .cta-points li::before {
  content: '';
  position: absolute;
  left: 0;
  background-image: url(../images/yl-arrow.svg);
  background-size: contain;
  width: 18px;
  height: 13px;
  top: 5px;
  background-repeat: no-repeat;
}

.project-form .form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-form .form-field {
  text-align: left;
}

.project-form .form-field.full-width {
  grid-column: 1 / -1;
}


.project-form form label input {
  width: auto;
}

.project-form form input,
.project-form form textarea,
.project-form form select {
  width: 100% !important;
  padding: 18px 20px !important;
  border-radius: 6px;
  border: none;
  font-size: 16px !important;
  color: #999999;
  cursor: pointer;
  height: 60px;
}

.project-form form input[type="checkbox"] {
  height: auto !important;
  width: auto !important;
}

.project-form form .gfield--type-choice .ginput_container.ginput_container_consent {
  display: flex;
  align-items: start;
  gap: 12px;
  position: relative;
  margin: 24px auto 30px auto;
  width: fit-content;
}

.project-form form textarea {
  height: 120px !important;
  resize: none;
}



.project-form .gform-footer input {
  background: #ffffff;
  color: #114870;
  border: none;
  border-radius: 30px;
  padding: 13px 30px !important;
  font-size: 16px !important;
  font-weight: 500;
  cursor: pointer;
  min-width: 225px;
  margin: 0 auto;
  display: inline-block;
  width: auto !important;
  height: auto !important;
  transition: all linear .3s;
  border: 1px solid transparent;
}

.project-form .gform-footer input:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.project-form .gform-footer {
  flex-direction: column;
  justify-content: center;
  padding: 0 !important;
  margin: 0 !important;
}

.project-form .submit-btn:hover {
  background: #f1f1f1;
}

.project-form .gf-submit-note {
  font-size: 16px;
  color: #FFFFFFBF;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  line-height: 100%;
  margin: 30px 0 0 0;
}

.project-form .gf-submit-note a {
  text-decoration: underline;
}

.project-form .gf-submit-note a:hover {
  color: #ffffff;
}

.project-form .cta-contact {
  display: flex;
  justify-content: center;
  gap: 90px;
  margin-top: 54px;
}

.project-form .contact-item {
  display: flex;
  align-items: center;
  gap: 22px;
}

.project-form .contact-item .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-form .contact-item small {
  font-size: 16px;
  opacity: 0.8;
  color: #ffffff;
  margin-bottom: 10px;
  display: block;
}

.project-form .contact-item a {
  font-size: 24px;
  margin: 0;
  color: #ffffff;
  font-weight: 500;
}

.project-form .contact-item a:hover {
  text-decoration: underline;
}

.project-form-inner {
  background: #114870;
  border-radius: 24px;
  padding: 80px 144px;
}

.project-form-inner .section-title {
  color: #ffffff;
  margin-bottom: 24px;
}

.project-form-inner .section-subtitle {

  color: #ffffff;
  margin-bottom: 35px;
}

.form-field.form-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Gravity Form checkbox row */


/* Label becomes clickable row */
.project-form .gfield--type-choice .ginput_container.ginput_container_consent label {
  display: flex !important;
  align-items: start;
  gap: 12px;
  font-size: 18px !important;
  color: #ffffff;
  cursor: pointer;
  justify-content: center;
  margin-bottom: 0 !important;
}

/* Hide native checkbox */
.project-form .gfield--type-choice .ginput_container.ginput_container_consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Custom checkbox box */
.project-form .gfield--type-choice .ginput_container.ginput_container_consent label::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: relative;
  top: 3px;
}

/* Checkmark */
.project-form .gfield--type-choice .ginput_container.ginput_container_consent label::after {
  content: "✓";
  position: absolute;
  margin-left: 4px;
  font-size: 17px;
  color: #134a6f;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s ease;
  left: 0;
}

/* Checked state */
.project-form .gfield--type-choice .ginput_container.ginput_container_consent input[type="checkbox"]:checked+label::before {
  background: #ffffff;
}

.project-form .gfield--type-choice .ginput_container.ginput_container_consent input[type="checkbox"]:checked+label::after {
  opacity: 1;
  transform: scale(1);
}

/* Optional hover */
.project-form .gfield--type-choice .ginput_container.ginput_container_consent li label:hover::before {
  background: rgba(255, 255, 255, 0.15);
}



.project-form label,
.project-form .gfield_label {
  font-size: 18px !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
  display: block !important;
  font-weight: 400 !important;
}

.project-form .name_first.gform-grid-col {
  padding-right: 0 !important;
}

.project-form .gform-body .gform_fields {
  column-gap: 24px !important;
}

/* project form section */




/* other service section  */






.other-services .other-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.other-services.transparent-section {
  background-color: #F1F5F8;
  padding: 75px 0;
  margin-bottom: 130px;
}

.other-services.transparent-section .other-services-grid {

  grid-template-columns: repeat(3, 1fr);
}

.other-services.transparent-section .other-services-grid .other-service-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
}

.other-services.transparent-section .other-service-card {
  padding: 45px 35px;
}

.other-services .other-service-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px 40px;
  text-align: left;
  transition: all 0.25s ease;
  box-shadow: 0px 0px 2px 0px #00000040;
  display: flex;
  flex-direction: column;
}

.other-services .other-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.other-services .other-service-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 30px;
}

.other-services .other-service-card h3 {
  font-size: 24px;
  font-weight: 500;
  color: #114870;
  margin-bottom: 16px;
}

.other-services .other-service-card p {
  font-size: 18px;
  color: #555555;
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 400;
}

.other-services .other-service-link {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #114870;
  margin-top: auto;
}

.other-services .other-service-link:hover {
  text-decoration: underline;
}

.other-services .other-service-link span {
  font-size: 18px;
  margin-left: 5px;
  display: none;
}

.other-services .other-service-link:after {
  content: "↗";
  font-size: 18px;
  margin-left: 5px;
}

/* other service section  */

/* challenge section */
.challenges-section {
  background: linear-gradient(0deg, rgba(241, 245, 248, 0) 0%, rgba(241, 245, 248, 1) 100%);
}

.challenges-section .challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.challenges-section .challenge-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 45px;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 2px 0px #00000040;
}


.challenges-section .icon-circle {
  width: 63px;
  height: 63px;
  display: flex;
  margin-bottom: 25px;
}

.challenges-section .challenge-card h3 {
  font-size: 24px;
  color: #114870;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 130%;
}



.challenges-section .label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 8px;
  color: #25282B;
  line-height: 150%;
}

.challenges-section .label.solution {
  color: #114870;
}

.challenges-section .challenge-card p {
  font-size: 18px;
  line-height: 150%;
  color: #555555;
  margin: 0 0 20px 0;
}

.challenges-section .container {
  max-width: 1510px;
}

.challenges-section .challenge-card .card-block:last-child p:last-child {
  margin-bottom: 0;
}

/* challenge section */

/* integration section */



.integrations-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.integrations-stat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 35px;
  text-align: center;
  transition: all 0.3s ease;
  margin: 0;
  box-shadow: 0px 0px 2px 0px #00000040;
}

.integrations-section .stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.integrations-section .icon-circle {
  width: 63px;
  height: 63px;
  margin: 0 auto 23px auto;
}

.integrations-section .stat-number {
  font-size: 46px;
  font-weight: 700;
  color: #114870;
  margin-bottom: 15px;
  line-height: 130%;
}

.integrations-section .stat-title {
  font-size: 24px;
  font-weight: 500;
  color: #25282B;
  margin-bottom: 12px;
  line-height: 130%;
}

.integrations-section .stat-desc {
  font-size: 18px;
  color: #555555;
  line-height: 150%;
  margin: 0;
}

/* integration section */

/* fasion store form section */
.fashion-store-cta {
  background: #114870;
  padding: 65px 0;
  margin-bottom: 130px;
}

.fasion-store-cta__inner {
  display: flex;
  gap: 85px;
  align-items: center;
}

/* LEFT */
.fashion-store-cta__left h2 {
  font-weight: 400;
  font-size: 46px;
  line-height: 130%;
  color: #ffffff;
  max-width: 470px;
  margin: 0 0 23px 0;
}

.fashion-store-cta__subtext {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 39px;
  max-width: 610px;
}

.fashion-store-cta__what-title {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 150%;
  font-weight: 700;
}

.fashion-store-cta__benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 45px;
}

.fashion-store-cta__benefits li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 150%;
}

.fashion-store-cta__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  background-image: url(../images/yl-arrow.svg);
  background-size: contain;
  width: 18px;
  height: 13px;
  top: 8px;
  background-repeat: no-repeat;
}

.fashion-store-cta__benefits li:last-child {
  margin-bottom: 0;
}

/* CONTACT */
.fashion-store-cta__contact {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.fashion-store-cta__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fashion-store-cta__icon {
  width: 60px;
  height: 60px;
}

.fashion-store-cta__contact-item span {
  display: block;
  font-size: 16px;
  color: #ffffffc2;
  line-height: 130%;
  margin-bottom: 10px;
}

.fashion-store-cta__contact-item p {
  margin: 0;

}

.fashion-store-cta__contact-item a {
  margin: 0;
  color: #ffffff;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
}

.fashion-store-cta__contact-item a:hover {
  text-decoration: underline;
}

.fashion-store-cta__form-wrapper {
  background: #ffffff;
  padding: 30px 40px 45px 40px;
  border-radius: 16px;
  flex: 1;
}

.fashion-store-cta__left {
  width: 40%;
  max-width: 634px;
}

.fashion-store-cta__form-wrapper label {
  font-size: 14px !important;
  margin-bottom: 6px !important;
  display: block !important;
  color: #25282B !important;
  font-weight: 500 !important;
  line-height: 21px;
}

.fashion-store-cta__form-wrapper .gform_wrapper.gravity-theme .gform_fields {
  gap: 24px !important;
}

.fashion-store-cta__form-wrapper .gform-body input,
.fashion-store-cta__form-wrapper .gform-body select,
.fashion-store-cta__form-wrapper .gform-body textarea {
  width: 100% !important;
  padding: 12px 16px !important;
  border-radius: 10px;
  font-size: 16px !important;
  background: #F1F5F8;
  outline: none;
  border: 0;
  height: 50px;
  color: #25282B80 !important;
  cursor: pointer;
}

.fashion-store-cta__form-wrapper .gform-body textarea {
  height: 122px !important;
  resize: none;
}

/* Wrapper spacing */
.fashion-store-cta__form-wrapper .gfield--type-consent {
  margin-top: 10px;
}


.fashion-store-cta__form-wrapper .gfield--type-choice .ginput_container_consent {
  display: flex;
  align-items: start;
  gap: 10px;

}

.fashion-store-cta__form-wrapper .gfield--type-choice {
  margin-bottom: 24px !important;
}

/* Hide default checkbox */
.fashion-store-cta__form-wrapper .gfield--type-choice input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 15px !important;
  height: 15px;
  border: 1px solid #000000;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  padding: 0 !important;
  top: 3px;
}

/* Checked state */
.fashion-store-cta__form-wrapper .gfield--type-choice input[type="checkbox"]:checked {
  background: #1f4f73;
  border-color: #1f4f73;
}

.fashion-store-cta__form-wrapper .gfield--type-choice input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 12px;
  color: #fff;
}

/* Label */
.fashion-store-cta__form-wrapper .gfield--type-choice label {
  font-size: 16px !important;
  color: #555555 !important;
  line-height: 21px;
  cursor: pointer;
  margin: 0 !important;
}

/* Remove duplicate required asterisk next to text */
.fashion-store-cta__form-wrapper .gfield_consent_label .gfield_required {
  display: none;
}

.fashion-store-cta__form-wrapper .gform_wrapper.gravity-theme .gform_footer {
  padding: 0;
  margin: 0;
}


.fashion-store-cta__form-wrapper .gform_wrapper.gravity-theme .gfield_required {
  color: #25282B !important;
}

.fashion-store-cta__form-wrapper .gform_wrapper.gravity-theme .gform_footer input {
  background-color: #114870;
  color: #ffffff;
  border-radius: 50px;
  padding: 13px 19px;
  font-weight: 500;
  font-size: 16px;
  line-height: 131%;
  cursor: pointer;
  width: 100%;
  margin: 0;
  border: 1px solid transparent;
  transition: all linear .3s;
}

.fashion-store-cta__form-wrapper .gform_wrapper.gravity-theme .gform_footer input:hover {
  color: #114870;
  border-color: #114870;
  background-color: transparent;
}

/* fasion store form section */

/* new case studies section */
.new-case-studies {
  background: linear-gradient(0deg, rgba(241, 245, 248, 0) 93%, rgba(241, 245, 248, 1) 100%);
}

.new-case-studies__filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}

.new-case-studies__filter-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 131%;
  letter-spacing: 0;
  color: #114870;
}

.new-case-studies__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.new-case-studies__btn {
  padding: 8px 22px;
  border-radius: 30px;
  border: 1px solid #114870;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
  color: #114870;
  line-height: 130%;
  font-weight: 500;
}

.new-case-studies__btn.active,
.new-case-studies__btn:hover {
  background: #114870;
  color: #fff;
  border-color: #114870;
}

.new-case-studies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.new-case-studies__card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0px 0px 2px 0px #00000040;
}

.new-case-studies__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

/* IMAGE */
.new-case-studies__image img {
  width: 100%;
  display: block;
}

.new-case-studies__content {
  padding: 30px 35px 35px 35px;
  display: flex;
  flex-direction: column;
}

.new-case-studies__badge {
  display: inline-block;
  background: #F1F5F8;
  color: #114870;
  font-size: 14px;
  padding: 6px 13px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-weight: 500;
  width: fit-content;
}

.new-case-studies__title a {
  font-size: 24px;
  margin-bottom: 16px;
  color: #114870;
  line-height: 130%;
  display: block;
}

.new-case-studies__description {
  font-size: 18px;
  color: #555555;
  line-height: 150%;
  margin-bottom: 24px;
}

.new-case-studies__result {
  padding-bottom: 16px;
}

.new-case-studies__result-label,
.new-case-studies__industry-label {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
  color: #25282B;
  line-height: 150%;
}

.new-case-studies__result-text,
.new-case-studies__result-item {
  font-weight: 700;
  color: #114870;
  font-size: 18px;
  margin: 0 0 10px 0;
  line-height: 150%;
}


.new-case-studies__industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.new-case-studies__industry-tags span {
  font-size: 14px;
  padding: 6px 15px;
  border-radius: 12px;
  border: 1px solid #0000004f;
  background: #fff;
  line-height: 150%;
  font-weight: 500;
  color: #555555;
}

.load-more-btn {
  margin: 50px auto 0 auto;
  align-items: center;
  padding: 13px 29px;
  border-radius: 40px;
  border: 1px solid #114870;
  text-decoration: none;
  font-size: 16px;
  background: #114870;
  transition: 0.3s ease;
  white-space: nowrap;
  color: #ffffff;
  font-weight: 500;
  line-height: 130%;
  display: block;
  width: fit-content;
}

.new-case-studies__filter .reset-icon {
  font-size: 0;
}

.new-case-studies__filter .reset-icon:after {
  content: '';
  background-image: url(../images/reset-icon.svg);
  background-size: contain;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  display: block;
}

.new-case-studies__filter button.reset-btn {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-case-studies__image,
.new-case-studies__image img {
  height: 420px;
  object-fit: cover;
}

.load-more-btn:hover {
  background: transparent;
  color: #114870;
}

.new-case-studies__industry {
  border-top: solid 1px #80808054;
  padding-top: 16px;
}

.new-case-studies__result-list li:last-child,
.new-case-studies__result-text:last-child {
  margin-bottom: 0;
}

/* new case studies section */



/* work cta section */


.work-cta-inner {
  background: #F1F5F8;
  border-radius: 24px;
  padding: 45px 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.work-cta h2 {
  font-weight: 400;
  font-size: 46px;
  line-height: 130%;
  letter-spacing: 0;
  color: #114870;
  margin-bottom: 16px;
}

.work-cta__text {
  font-size: 18px;
  color: #555555;
  max-width: 605px;
  line-height: 150%;
  margin: 0;
}

/* RIGHT */
.work-cta__right {
  display: flex;
  gap: 16px;
}

.work-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  border-radius: 40px;
  border: 1px solid #114870;
  text-decoration: none;
  font-size: 16px;
  color: #114870;
  background: transparent;
  transition: 0.3s ease;
  white-space: nowrap;
}

.work-cta__btn img {
  display: none !important;
}

.work-cta__btn:hover {
  background: #123a59;
  color: #ffffff;
}

.work-cta__btn:after {
  content: "↗";
  font-size: 19px;
}

/* Optional subtle variation */
.work-cta__btn--secondary {
  background: transparent;
}

.work-cta {
  padding-bottom: 0;
  margin-bottom: 24px;
}

/* work cta section */


/* work inner banner section */
.case-hero {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 24px;
}

.case-hero__title {
  font-weight: 400;
  font-size: 64px;
  line-height: 130%;
  text-align: center;
  color: #114870;
  margin-bottom: 30px;
}

/* DESCRIPTION */
.case-hero__description {
  max-width: 1270px;
  margin: 0 auto 45px auto;
}

.case-hero__image {
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
}

.case-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-hero__description p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: #555555;
}

.case-hero__description p:last-child {
  margin-bottom: 0;
}

/* work inner banner section */

/* case meta section */


.case-meta__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.case-meta__card {
  background: #F1F5F8;
  border-radius: 24px;
  padding: 25px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-meta__label {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #555555;
  margin-bottom: 23px;
}

.case-meta__value {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0px;
  color: #114870;
}

.case-meta__value a {
  color: #123a59;
  text-decoration: none;
}

.case-meta__value a:hover {
  text-decoration: underline;
}

.case-meta__card p:last-child {
  margin-bottom: 0;
}

/* case meta section */

/* case showcase */
.case-showcase {
  padding: 70px 0;
  overflow: hidden;
  background: linear-gradient(311.47deg, #141414 -74.27%, #414141 111.9%);
}



/* Base image styling */
.case-showcase__image {
  width: 100%;
}

.case-showcase-inner {
  padding: 0 145px;
}

.case-shocase__left h4 {
  font-size: 15px;
  line-height: 100%;
  color: #ffffff;
  margin-bottom: 42px;
}



/* case showcase */

/* mobile showcase section */
.case-mobile-showcase {
  padding: 85px 0 85px 0;
  background: #f2f3f5;
}



.case-mobile-showcase__grid {
  padding: 0 145px;
}



/* mobile showcase section */

/* case three column */
.case-three-column {
  padding: 120px 0 0 0;
  background: linear-gradient(320.24deg, #141414 -93.83%, #414141 136.28%);
  margin-bottom: 130px;
}

.case-three-column+.new-case-studies {
  background: #ffffff;
}

.load-more-btn img {
  display: none !important;
}

.case-three-column+.new-case-studies .load-more-btn:after {
  content: "↗";
  font-size: 19px;
  margin-left: 6px;
}

.case-three-column+.new-case-studies .load-more-btn {
  background: transparent;
  color: #114870;
}

.case-three-column+.new-case-studies .load-more-btn:hover {
  background: #114870;
  color: #ffffff;
}

/* case three column */

/* mega menu */
.mega-menu__title {
  font-size: 16px;
  line-height: 131%;
  text-transform: uppercase;
  color: #114870;
  letter-spacing: 0.6px;
  font-weight: 500;
  margin-bottom: 25px;
}

.mega-menu__item a {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: #555555;
}

.mega-menu__item {
  margin-bottom: 10px;
}

.mega-menu__item:hover a {
  color: #114870;
}

.mega-menu__footer a {
  text-decoration: none;
  color: #114870;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 131.2%;
  padding: 18px 20px;
  text-align: center;
  border-radius: 24px;
  background: #F1F5F8;
  transition: all linear .3s;
}

.mega-menu__footer a:after {
  content: "↗";
  margin-left: 10px;
}

.mega-menu:before {
  content: "";
  position: absolute;
  background-image: url(../images/top-vector.svg);
  width: 35px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

span.nav__link-arrow {
  font-size: 0;
  margin-left: 10px;
  cursor: pointer;
}

span.nav__link-arrow:after,
span.title-arrow:after {
  content: "";
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  position: relative;
  top: -5px;
}

span.mega-menu__view-all-icon {
  display: none;
}

.mega-menu__footer img,
.mega-menu__footer span {
  display: none !important;
}

.header-mega-menu {
  position: relative;
}

.mega-menu {
  left: -375px;
}
.service-mega .mega-menu {
    left: -395px;
}
/* mega menu */


.gform_confirmation_message {
  text-align: center !important;
  color: #ffffff !important;
  font-size: 22px !important;
}

.fashion-store-cta .gform_confirmation_message {
  color: #000000 !important;
  padding-top: 56px;
  padding-bottom: 30px;
}

.page-not-found-head {
  text-align: center;
}

.page-not-found h1 {
  margin: 0;
  font-size: 82.4468px;
  line-height: 131.2%;
  color: #e83c35;
}

.page-not-found h2 {
  margin: 0;
  font-style: normal;
  font-size: 38.046px;
  line-height: 131.2%;
  color: #114870;
  margin-bottom: 20px;
}

.btn.back-home {
  border-color: #114870;
  color: #114870;
}

.btn.back-home:hover {

  color: #ffffff;
}

.simple-banner-content {
  text-align: center;
}

.simple-banner-content h1 {
  font-size: var(--font-size-hero);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-heading);
  color: var(--color-primary);
  margin-bottom: 20px;
}

.simple-banner-content p a {
  color: #114870;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.simple-banner-content p a:hover {

  text-decoration: none;
}

.case-study-single-content>.container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* work inner banner */

.work-inner-banner {
  background: #114870;
  padding: 35px 0;
}


.work-inner-banner__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
  margin-bottom: 45px;
}

.work-inner-banner__content {
  width: 50%;
  max-width: 760px;
}

.work-inner-banner__brand {
  margin-bottom: 30px;
  display: block;
}

.work-inner-banner h1.hero__heading {
  color: #ffffff;
  margin-bottom: 20px;
}

.work-inner-banner__subtitle p {
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0px;
}

/* Image */
.work-inner-banner__image {
  flex: 1;
  height: 448px;
}

.work-inner-banner__image img {
  width: 100%;
  display: block;
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
}

/* Info Section */
.work-inner-banner__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.work-inner-banner__info-box {
  padding: 20px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.work-inner-banner__info-box:last-child {
  border-right: none;
}

.work-inner-banner__info-label {
  opacity: 0.8;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.work-inner-banner__info-value {
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0px;
  margin: 0;
}


.work-inner-banner-stats {
  padding: 46px 0;
  background-color: #F1F5F8;
}

.work-inner-banner-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.work-inner-banner-stats__item {
  position: relative;
  border-right: solid 1px #114870;
  padding: 0 15px;
}

.work-inner-banner-stats__item:last-child {
  border: 0;
}

.work-inner-banner-stats__number {
  font-weight: 400;
  font-size: 46px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  color: #114870;
  margin-bottom: 10px;
}

.work-inner-banner-stats__label {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: #555555;
  margin: 0;
}

/* work inner banner */

/* cta project overview section */



.cta-project-overview__description {
  max-width: 750px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Grid */
.cta-project-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 45px;
}

.cta-project-overview .section-subtitle {
  max-width: 1128px;
  margin: 0 auto 45px auto;
}

.cta-project-overview .section-title {
  margin-bottom: 35px;
}

.cta-project-overview .section-subtitle p {
  font-weight: 500;
}

/* Card */
.cta-project-overview__card {
  background: #ffffff;
  padding: 50px 40px 40px 40px;
  border-radius: 24px;
  box-shadow: 0px 0px 2px 0px #00000040;
}

.cta-project-overview__icon {
  width: 74px;
  height: 74px;
  margin-bottom: 30px;
}

.cta-project-overview__card-title {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0;
  color: #114870;
}

.cta-project-overview__list ul {
  padding-left: 26px;
  padding-top: 16px;
}

.cta-project-overview__list li {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: #555555;
  list-style: disc;
}

/* Footer Text */
.cta-project-overview__footer p {

  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: #555555;
  margin-bottom: 0;
}

/* cta project overview section */


/* project features  */

.project-features .section-subtitle {
  max-width: 1128px;
  margin: 0 auto 45px auto;
}

.project-features .section-title {
  margin-bottom: 35px;
}

.project-features__phase {
  margin-bottom: 65px;
}

.project-features__phase-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #F1F5F8;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
}

.project-features__badge {
  border-radius: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  background-color: #FFFFFF;
  padding: 8px 21px;
  color: #555555;
}

.project-features__phase-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 130%;
  letter-spacing: 0;
  color: #114870;
}

/* Grid */
.project-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Card */
.project-features__card {
  background: #FFFFFF;
  padding: 45px 42px;
  border-radius: 25px;
  box-shadow: 0px 0px 2px 0px #00000040;
}

.project-features__card h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0;
  color: #25282B;
  margin-bottom: 24px;
}

.project-features__card ul {
    padding-left: 30px;
    margin-bottom: 24px;
    margin-top: 24px;
}

.project-features__card ul:last-child {
  margin-bottom: 0;
}

.project-features__card li,
.project-features__card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: #555555;
  margin-bottom: 14px;
}
.project-features__card-content p:last-child {
    margin-bottom: 0;
}
.project-features__card li {
  list-style: disc;
}

.project-features__phase:last-child {
  margin-bottom: 0;
}

/* project features  */

/* impact section */



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

.results-impact__card {
  display: flex;
  align-items: center;
  gap: 45px;
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0px 0px 2px 0px #00000040;
}


.results-impact__icon {
  width: 136px;
  height: 136px;
  display: flex;
}
.results-impact__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.results-impact__number {
  font-weight: 400;
  font-size: 46px;
  line-height: 130%;
  color: #114870;
  margin-bottom: 10px;
}

.results-impact__highlight {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #114870;
  margin-bottom: 10px;
}

.results-impact__label {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  margin: 0;
}

/* impact section */



/* technologies section */

.technologies-tools {
  background: #F1F5F8;
  padding: 43px 0;
  margin-bottom: 125px;
}

.technologies-tools__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.technologies-tools__card {
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0px 0px 2px 0px #00000040;
}



.technologies-tools__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.technologies-tools__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.technologies-tools__card-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  color: #114870;
  margin-bottom: 16px;
}

.technologies-tools__list {
  padding-left: 30px;
  list-style: disc;
}

.technologies-tools__list li,
.technologies-tools__list p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #555555;
  margin-bottom: 10px;
}

/* technologies section */

/* project success */


.project-success {
  color: #ffffff;
}

.project-success .section-title {
  margin-bottom: 35px;
}


.project-success .section-subtitle {
  max-width: 1128px;
  margin: 0 auto 45px auto;
}

.project-success__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-success__card {
  background: #ffffff;
  color: #333;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0px 0px 2px 0px #00000040;
}


.project-success__badge {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #FFFFFF;
  background-color: #114870;
  border-radius: 12px;
  padding: 8px 24px;
  margin-bottom: 16px;
  display: block;
  width: fit-content;
}

.project-success__card-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  color: #114870;
  margin-bottom: 30px;
}


.project-success__card ul {
  padding-left: 30px;
  list-style: disc;
  margin-bottom: 20px;
  margin-top: 20px;
}

.project-success__card li,
.project-success__card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #555555;
  margin-bottom: 10px;
}


/* project success */

/* project quote */
.testimonial-card__quote p:empty {
  margin: 0;
}

.project-quote .testimonial-card {
  background-color: #114870;
  padding: 85px 80px;
}

.project-quote p {
  color: #FFFFFF;
}

.project-quote .testimonial-card .testimonial-card__quote-icon svg path {
  fill: #F1F5F8;
}

.project-quote .testimonial-card__author {
  color: #FFFFFF;
}

.project-image-wrapper img {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 24px;
}
.project-image-wrapper img:last-child {
    margin-bottom: 0;
}
p:empty {
    display: none !important;
}
/* project quote */
  .accordion__header {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .accordion ul li {
    list-style: disc;
  }

  .accordion ol li {
    list-style: decimal;
  }

 .accordion ul, .accordion ol {
    padding-left: 30px;
    margin-top: 20px;
    margin-bottom: 25px;
}

  .accordion h2,
  .accordion h3,
  .accordion h4,
  .accordion h5 {
    margin-bottom: 15px;
  }
.accordion h2 {
    font-size: 22px;
    font-weight: 500;
}
.accordion p + h2,
.accordion p + h3,
.accordion p + h4 {
    margin-top: 30px
}
.accordion p:empty + h2,
.accordion p:empty + h3,
.accordion p:empty + h4 {
    margin-top: 0;
}
.accordion h4 {
    font-size: 18px;
    font-weight: 500;
}
.case-study-single-content + .new-case-studies {
    background: none;
}
.chetaru-sitemap {
    max-width: 1745px;
    margin: 0 auto;
    padding: 160px 20px 0 20px;
    width: 100%;
}
h2.chetaru-sitemap__title, h2.wp-block-heading {
    
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-heading);
    color: #114870;
    margin-bottom: 25px;
    letter-spacing: -1px;
    font-size: 36px;
}
h2.wp-block-heading {
	color: #28282b
}
h3.wp-block-heading {
    margin-bottom: 15px;
}
h4.wp-block-heading {
    font-weight: 500;
    margin-bottom: 15px;
}
h5.wp-block-heading {
font-weight: 500;
 margin-bottom: 15px;
}
.wp-block-list {
    padding-left: 30px;
    list-style: disc;
    margin: 24px 0;
}
.has-page-toc .entry-content ol {
    padding-left: 30px;
    list-style: number;
}
.chetaru-sitemap__list a {
    color: #114870;
    text-decoration: underline;
}

ul.chetaru-sitemap__list {
    column-count: 2;
}
.chetaru-sitemap__list a:hover {
  text-decoration: none;
}
.has-page-toc .toc-block.toc-content {
  width: 359px;float: left;margin-left: -400px;
}

.has-page-toc .entry-content .container {padding-left: 420px;
}

.has-page-toc .entry-content p + h3.wp-block-heading,
.has-page-toc .entry-content p + h4.wp-block-heading {
    margin-top: 30px
}
.entry-content p + h2.wp-block-heading,
.entry-content .wp-block-list + h2.wp-block-heading {
  margin-top: 40px;
}
.has-page-toc .entry-content {
    padding-top: 60px;
    padding-bottom: 60px;
}
.wp-block-list li {
    margin-bottom: 10px;
}
.admin-bar.toc-block.toc-content, .admin-bar .blog-right-sticky, .admin-bar .toc-content {
    top: 150px !important;
}
.toc-block.toc-content,
.toc-content {
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: none;
}
.toc-block.toc-content .toc-heading:after {
    content: "";
    background-image: url(../images/know-arr.svg);
    width: 11px;
    height: 6px;
    background-size: contain;
    background-repeat: no-repeat;
}
.banner-right p:last-child {
    margin-bottom: 0;
}
h1.wp-block-heading {
    font-size: 52px;
    color: #114870;
    padding-top: 70px;
}
.wp-block-table th, .wp-block-table td {
    font-size: 16px;
}
body:has(.wp-block-table) .entry-content {
    padding-bottom: 40px;
}
body:has(.wp-block-table) .entry-content p a,
.wp-block-list a {
    color: #114870;
    text-decoration: underline;
}
body:has(.wp-block-table) .entry-content p a:hover,
.wp-block-list a {
    text-decoration: none;
}
 .accordion__content {
  font-size: 16px;
 }
 .cta-project-overview {
  margin-top: 125px;
 }
@media(min-width: 992px) {

  /* mega menu  */
  .mega-menu__columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .mega-menu__container {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 35px 40px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);


  }


  .mega-menu {
    position: absolute;
    width: 880px;
    top: 103px;
    visibility: hidden;
    pointer-events: none;
    transition: all linear .3s;
    opacity: 0;
    z-index: 999;
  }

  .header-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;

  }

  .mega-menu__icon img {
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
  }



  .mega-menu__footer a:hover {
    background-color: #114870;
    color: #ffffff;
  }

  .mega-menu__footer {
    margin-top: 30px;
  }

  .mega-menu__column {
    padding-right: 20px;
    border-right: 1px solid #eee;
  }

  .mega-menu__column:last-child {
    border-right: none;
  }



  header .menu-item {
    padding: 40px 0;
  }

  span.title-arrow {
    display: none;
  }

  /* mega menu  */


}



@media(max-width: 1750px) {
   .cta-project-overview {
  margin-top: 90px;
 }
   .accordion__content {
  font-size: 14px;
 }
  .agencies-mega .mega-menu {
    left: -325px;
}
  .service-mega .mega-menu {
    left: -340px;
}
   .container,
   .chetaru-sitemap {
    padding-left: 50px;
    padding-right: 50px;
  }

  .split-content:first-child .split-link {
    max-width: 100%;
    padding-left: 50px;
  }

  .nav__link {
    font-size: 14px;
  }

  header .container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero__heading {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 500px;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 50px;
  }

  .hero__subheading {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -1px;
  }

  .hero__team-image img {
    max-width: 420px;
  }

  .hero__description {
    font-size: 14px;
    max-width: 330px;
  }

  .btn {
    padding: 9px 18px;
    font-size: 14px;
  }

  .btn__icon svg {
    width: 10px;
    height: 10px;
  }

  .hero__actions {
    gap: 10px;
    margin-bottom: 110px;
  }

  .hero__scroll-hint {
    font-size: 14px;
  }

  .hero__scroll-hint svg {
    width: 12px;
    height: 12px;
  }

  .hero__scroll-hint span {
    margin-left: 8px;
  }

  .stats__subtitle {
    font-size: 18px;
    padding: 0px 40px 15px 30px;
  }

  .stats-main {
    padding: 100px 55px 50px 55px;
  }

  .stat-card__number {
    font-size: 50px;
    margin-bottom: 10px;
  }

  .stat-card__label {
    font-size: 24px;
  }

  .stat-card {
    padding: 20px 25px 25px 35px;
  }

  .stat-card__icon {
    width: 60px;
    height: 60px;
  }

  .stat-card__icon img {
    width: 100%;
    height: 100%;
  }

  .stat-card {
    height: 300px;
  }

  .stats__grid {
    gap: 20px;
  }

  section {
    padding-bottom: 90px;
  }

  .section-title,
  h2.chetaru-sitemap__title,
  h2.wp-block-heading {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .partnership-models .section-title,
  .testimonials .section-title,
  .industries .section-title,
  .faq .section-title,
  .portfolio .section-title,
  .who-we-work-with .section-title {
    margin-bottom: 10px;
  }

  .section-subtitle,
  .section-subtitle p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .who-card__icon img,
  .service-card__icon img,
  .why-feature-card__icon img,
  .industry-card__icon img {
    width: 100%;
    height: 100%;
  }

  .who-card__icon {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
  }

  .who-card__heading {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .who-card__description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .who-card__section-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .who-card__list li {
    font-size: 14px;
  }

  .who-card__list li::before,
  .know-more-content ol li::before {
    width: 12px;
    height: 12px;
    top: 6px;
  }

  .who-card__section {
    margin-bottom: 20px;
  }

  .service-card__icon {
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
  }

  .service-card {
    border-radius: 18px;
    padding: 27px;
  }

  .service-card__heading {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .service-card__description {
    font-size: 14px;
  }

  .service-card__specialties-title {
    font-size: 16px;
  }

  .service-card__specialties-text {
    font-size: 14px;
  }

  .service-card__specialties {
    margin-top: 18px;
  }

  .services__grid {
    gap: 20px;
  }

  .service-card--full-width {
    gap: 20px;
  }

  .floating-text img {
    max-width: 900px;
  }

  .portfolio-card-row:nth-child(odd) {
    column-gap: 150px;
  }

  .portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(even) {
    max-width: 525px;
  }

  .portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(odd) {
    max-width: 590px;
  }

  .portfolio-card__title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .portfolio-card__image {
    padding: 16px;
  }

  .portfolio-card__content {
    padding: 0 20px 30px 20px;
  }

  .portfolio-card__tags {
    font-size: 14px;
  }

  .portfolio-card-row:nth-child(even) {
    column-gap: 130px;
    padding-left: 75px;
  }

  .portfolio-card-row:nth-child(even) .portfolio-card-wrapper:nth-child(odd) {
    max-width: 560px;
  }

  .why-choose-us__heading,
  .tech-stack__heading {
    font-size: 32px;
  }

  .portfolio {
    margin-bottom: 90px;
  }

  .why-choose-us__left,
  .tech-stack__left {
    padding: 50px 55px;
  }

  .why-choose-us__subheading,
  .tech-stack__subheading {
    font-size: 18px;
    line-height: 130%;
  }



  .why-choose-us__content,
  .tech-stack__content {
    grid-template-columns: 540px 1fr;
  }

  .why-feature-card__icon {
    width: 40px;
    height: 40px;
  }

  .why-feature-card__heading,
  .tech-card__title {
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 10px;
  }

  .why-feature-card__description,
  .tech-card__tech-list {
    font-size: 14px;
  }

  .why-feature-card p:last-child {
    margin-bottom: 0;
  }

  .why-feature-card,
  .tech-card {
    padding: 35px 30px;
  }

  .partnership-card__title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .partnership-card {
    border-radius: 18px;
    padding: 35px 30px;
  }

  .partnership-card__subtitle {
    font-size: 14px;
  }

  .partnership-card__header,
  .partnership-card__section {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .partnership-models h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .partnership-card__section-text {

    margin-bottom: 13px;
  }

  .partnership-card p,
  .partnership-card li {
    font-size: 14px;
  }

  .partnership-card__section .know-more-toggle__text {
    font-size: 14px;
  }

  .partnership-card__section .know-more-toggle__text:after {
    width: 9px;
    right: -15px;
    top: 8px;
  }

  .partnership-card__price {
    font-size: 30px;
  }

  .partnership-card__price-label {
    font-size: 14px;
  }

  .partnership-card__price small {
    font-size: 14px;
  }

  p.saving-text {
    font-size: 14px;
  }

  .testimonial-card__quote-icon svg {
    width: 65px;
    height: 65px;
  }

  .testimonial-card {
    border-radius: 18px;
    gap: 30px;
    padding: 45px 30px;
    min-height: 300px;
  }

  .testimonial-card__quote,
  .testimonial-card__quote p {
    font-size: 18px;
    margin-bottom: 25px;

  }

  .testimonial-card__author {
    font-size: 14px;
  }

  .testimonials__carousel .slick-dots {
    margin-top: 18px;
  }

  .industry-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;

  }

  .industry-card {
    border-radius: 18px;
    padding: 30px;
  }

  .industry-card__heading {
    font-size: 18px;
    margin-bottom: 10px;

  }

  .industry-card p {
    font-size: 14px;
  }

  .industries__grid {
    gap: 18px;
  }

  .tech-card--full-width {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .tab {
    padding: 0 10px 10px 10px;
    font-size: 16px;
  }

  .faq__tabs {
    margin-top: 20px;
  }

  .tabs {
    gap: 30px;
  }

  .faq__accordions {
    margin-top: 35px;
  }

  .accordion__title {
    font-size: 22px;
}

  .accordion p,
  .accordion li {
    font-size: 14px;
    margin-bottom: 10px;
  }

.accordion h2 {
    font-size: 22px;
}
.accordion h3 {
    font-size: 20px;
}
  .accordion__header:before {
    height: 18px;
    right: 23px;
  }
  .accordion h4 {
    font-size: 18px;
}

  .accordion__header:after {
    width: 18px;
  }

  .accordion__content p {
    font-size: 14px;
  }

  .footer-col.footer-contact h4 {
    font-size: 13px;
    margin-bottom: 0px;
  }

  .footer-col p,
  .footer-col a {
    font-size: 12px;
  }

  .footer-col h4 {
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 20px;
  }

  .footer-double-link {
    margin-bottom: 10px;
  }

  .footer-menu-column h5 {
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .footer-col li {
    margin-bottom: 0;
  }

  .footer-main-wrapper {
    border-radius: 18px;
    padding: 50px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    margin-bottom: 45px;

  }

  .footer-nav a {
    margin-left: 35px;
    font-size: 14px;
  }

  .banner-right p {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 20px;
  }

  .banner-right {
    max-width: 480px;
  }

  .banner-info .info-item a {
    font-size: 22px;
    line-height: 30px;
  }

  .banner-info .info-item span {
    font-size: 14px;
    line-height: 130%;
  }

  .banner-section,
  .page-not-found,
  .simple-banner {
    padding-top: 200px;
    padding-bottom: 60px;
  }

  .contact-left p {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 20px;
  }

  .contact-form h2 {
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 130%;
  }

  .contact-wrapper {
    gap: 115px;
    padding: 35px;
  }

  .contact-form label {
    font-size: 14px !important;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px !important;
    font-size: 14px !important;
  }

  .contact-form {
    padding: 35px 40px;
  }

  .social-grid {
    margin-top: 35px;
    gap: 18px;
  }

  .social-grid .social-card {
    padding: 18px;
    gap: 45px;
    font-size: 24px;
  }

  .social-card img {
    width: 40px;
    height: 40px;
  }

  .features-grid {
    gap: 16px;
  }

  .feature-card {
    padding: 25px;
  }

  .feature-icon img {
    width: 30px;
    height: 30px;
    margin-bottom: 16px;
  }

  .feature-card h3 {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 130%;
  }

  .feature-card p {
    font-size: 14px;
  }

  .cta-text h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .cta-text p {
    font-size: 14px;
  }

  .cta-box {
    padding: 20px 20px;
    border-radius: 18px;
  }

  .blog-box-title {
    font-size: 20px;
  }

  .blog-box {
    padding: 15px;
  }

  .blog-img {
    margin-bottom: 18px;
  }

  .blog-box-date span,
  .blog-box-date {
    font-size: 16px;
  }

  .pagination .nav-links .page-numbers {
    font-size: 16px;
    width: 50px;
    height: 50px;
  }

  .blog-single-banner-content .blog-box-date {

    margin-bottom: 9px;
  }

  h1.blog-title {
    font-size: 40px;
    max-width: 790px;
    margin: 0 auto 40px auto;
  }

  .blog-single-banner {
    margin-bottom: 60px;
  }

  .blog-single-content .blog-single-middle h2 {

    font-size: 24px;
    margin-bottom: 14px;
  }

  .blog-single-content .blog-single-middle p,
  .blog-single-content .blog-single-middle li {

    font-size: 16px;
    line-height: 150%;
  }

  .toc-heading {
    font-size: 16px;
  }

  .toc-content {
    border-radius: 18px;
    padding: 20px 20px;
  }

  .social-share {
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 18px;
  }

  .blog-single-middle {
    padding-left: 80px;
    padding-right: 60px;
  }

  .social-share h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .social-share-links img {
    width: 30px;
    height: 30px;
  }

  .social-share-links {
    gap: 10px;
  }

  .talk-content {
    border-radius: 20px;
    padding: 20px;
  }

  .talk-content h2,
  .talk-content h3 {

    font-size: 24px;
  }

  .talk-content h3 {
    margin-bottom: 10px;
  }

  .talk-content p {
    font-size: 16px;
    line-height: 150%;
  }

  .blog-single-content .blog-single-middle h3 {

    font-size: 20px;
    margin-bottom: 15px;
  }

  .blog-single-content .blog-single-middle p+h3 {
    margin-top: 30px;
  }

  .blog-single-content .blog-single-middle p+h2 {
    margin-top: 45px;
  }

  .subscribe-left h2 {
    font-size: 32px;
    max-width: 420px;
  }

  .subscribe-inner {
    border-radius: 20px;
    padding: 60px 60px;
    gap: 40px;
  }

  .subscribe-form form .gform-body input {
    font-size: 24px !important;
  }

  .subscribe-form form {
    padding-bottom: 8px;
  }

  .subscribe-text {
    margin-top: 6px;
    font-size: 14px;
  }

  .subscribe-form .gform-footer input {
    background-size: 20px;
  }

  .related-blog h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .subscribe-form .gfield_validation_message {

    bottom: 48px;
  }

  .toc-list a,
  .toc-list li {
    font-size: 14px;
  }

  .toc-heading img {
    width: 10px;
    height: 6px;
  }

  .banner-left.full-width .hero__heading {
    max-width: 1100px;
  }

  .mission-vision-card {
    padding: 30px 35px;
  }

  .icon-box img {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
  }

  .mission-vision-card {
    border-radius: 20px;
  }

  .mission-vision-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .mission-vision-card p {
    font-size: 14px;
  }

  .mission-vision-grid {
    gap: 16px;
  }

  .cta-inner h2 {
    font-size: 36px;
    margin: 0 auto 30px auto;
  }

  .cta-inner p {
    font-size: 18px;
    max-width: 910px;
    margin: 0 auto 35px auto;
  }

  .cta-inner {
    border-radius: 20px;
    padding: 70px 20px;
  }

  .value-grid {
    gap: 16px;
  }

  .value-card {
    border-radius: 20px;
    padding: 38px 28px;
  }

  .value-icon img {
    width: 30px;
    height: 30px;
    margin-bottom: 18px;
  }

  .value-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .value-card p {
    font-size: 14px;
  }

  .value-card p:last-child {
    margin-bottom: 0;
  }

  .split-link {
    font-size: 30px;
  }

  .split-link:after {
    font-size: 25px;
    margin-left: 18px;
  }

  .split-content:last-child {
    padding-left: 70px;
  }

  .split-content {
    padding-bottom: 60px;
  }

  .gallery-box img {
    height: 245px;
  }

  .split-links-grid {
    min-height: 500px;
  }

  .service-highlights .service-highlights-wrapper {

    border-radius: 18px;
    padding: 50px 60px;
    gap: 50px;
  }

  .banner-left p {
    max-width: 690px;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .banner-section .hero__actions {
    margin-bottom: 20px;
    gap: 15px;
  }

  span.banner-note {
    font-size: 14px;
  }

  .service-highlights .service-card {
    border-radius: 18px;
    padding: 25px 30px;
  }

  .service-highlights .service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 25px;
  }

  .service-highlights .service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .service-highlights .service-card p {
    font-size: 14px;
  }

  .who-we-work-with .who-we-work-with__grid--count-6 .who-card__icon,
  .who-we-work-with .who-we-work-with__grid--count-5 .who-card__icon {
    width: 55px;
    height: 55px;
    margin-bottom: 24px;
  }

  .who-we-work-with .who-we-work-with__grid--count-6 .who-card,
  .who-we-work-with .who-we-work-with__grid--count-5 .who-card {
    padding: 30px;
  }

  .who-we-work-with .who-we-work-with__grid--count-6 .who-card__heading,
  .who-we-work-with .who-we-work-with__grid--count-5 .who-card__heading {
    font-size: 18px;
  }

  .who-card__section-description p {
    font-size: 14px;
  }

  .wp-technologies .tech-title span {

    font-size: 30px;
  }

  .wp-technologies .tech-title {
    border-radius: 18px;
    padding: 28px;
  }

  .wp-technologies .tech-title small {
    font-size: 14px;
  }

  .wp-technologies .tech-row {
    border-radius: 18px;
    padding: 15px 25px;
    margin-bottom: 16px;
    gap: 26px;
  }

  .wp-technologies .tag {
    border-radius: 8px;
    padding: 8px 13px;
    font-size: 13px;
  }

  .industry-solutions .industry-solutions-grid {

    gap: 18px;
  }

  .industry-solutions .industry-solutions-card {

    border-radius: 18px;
    padding: 30px 12px;
  }

  .industry-solutions .industry-solutions-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 19px;
  }

  .industry-solutions .industry-solutions-card p {
    font-size: 14px;
  }

  .project-form-inner .section-title {

    margin-bottom: 20px;
  }

  .other-services .other-service-card {

    border-radius: 18px;
    padding: 35px 30px;
  }

  .other-services .other-service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
  }

  .other-services .other-service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .other-services .other-service-card p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .other-services .other-service-link {
    font-size: 14px;
  }

  .other-services .other-service-link:after {

    font-size: 16px;
  }

  .other-services .other-services-grid {
    gap: 18px;
  }

  .banner-info .info-item h4 {
    font-size: 24px;
  }

  .portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(odd) .portfolio-card__image {
    height: 330px;
  }

  .portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(even) .portfolio-card__image {
    height: 277px;
  }

  .portfolio-card-row:nth-child(even) .portfolio-card-wrapper:nth-child(odd) .portfolio-card__image {
    height: 277px;
  }

  .portfolio-card-row:nth-child(even) .portfolio-card-wrapper:nth-child(even) .portfolio-card__image {
    height: 284px;
  }

  .recent-projects .project-header a {
    font-size: 18px;
  }

  .recent-projects .project-content {
    padding: 20px;
  }

  .recent-projects .projects-grid {

    gap: 18px;
  }

  .recent-projects .project-results li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 20px;

  }

  .recent-projects .project-type {
    font-size: 10px;
  }

  .recent-projects .results-title {
    font-size: 12px;
  }

  .recent-projects .project-results li::before {

    font-size: 14px;
  }

  .recent-projects .project-tags span {
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 12px;
    ;
  }

  .recent-projects .project-tags {
    gap: 8px;
    margin-bottom: 40px;
  }

  .recent-projects .project-results {
    margin-bottom: 18px;
  }

  .recent-projects .project-link,
  .services .service-card__link {
    font-size: 14px;
    gap: 6px;
  }

  .recent-projects .project-link:after,
  .services .service-card__link:after {

    font-size: 16px;
  }

  .recent-projects .project-card {
    border-radius: 18px;
  }

  .recent-projects .project-image,
  .recent-projects .project-image img {
    height: 220px;
  }

  .project-form .cta-points li {
    font-size: 14px;
    padding-left: 20px;
  }

  .project-form .cta-points {
    gap: 30px;
  }

  .project-form .cta-points li::before {
    width: 14px;
    height: 11px;
  }

  .project-form label,
  .project-form .gfield_label {
    font-size: 14px !important;
    margin-bottom: 10px !important;
  }

  .project-form-inner {
    border-radius: 18px;
    padding: 60px 100px;
  }

  .project-form form input,
  .project-form form textarea,
  .project-form form select {

    padding: 8px 15px !important;
    font-size: 14px !important;
    height: 50px;
  }

  .project-form .gform-body .gform_fields {
    column-gap: 20px !important;
  }

  .project-form form .gfield--type-choice .ginput_container.ginput_container_consent {

    margin: 10px auto 20px auto;
  }

  .project-form .gform-footer input {
    padding: 8px 26px !important;
    font-size: 14px !important;
    min-width: auto;
  }

  .project-form .gfield--type-choice .ginput_container.ginput_container_consent label {

    gap: 10px;
    font-size: 14px !important;
  }

  .project-form .gfield--type-choice .ginput_container.ginput_container_consent label::before {

    width: 16px;
    height: 16px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    top: 1px;
  }

  .project-form .gf-submit-note {
    font-size: 14px;
    margin: 20px 0 0 0;
  }

  .project-form .contact-item .icon {
    width: 50px;
    height: 50px;
  }

  .project-form .contact-item {
    gap: 16px;
  }

  .project-form .contact-item small {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .project-form .contact-item a {
    font-size: 18px;
  }

  .project-form .cta-contact {
    margin-top: 40px;
    gap: 60px;
  }

  .project-form .gfield--type-choice .ginput_container.ginput_container_consent label::after {

    margin-left: 3px;
    font-size: 14px;
  }

  .recent-projects.transparent-section,
  .fashion-store-cta {
    margin-bottom: 90px;
  }

  .banner-info.three-column img+h4 {
    font-size: 16px;
  }

  .banner-info.three-column img {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }

  .challenges-section .challenge-card {
    border-radius: 18px;
    padding: 25px 35px;
  }

  .challenges-section .icon-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }

  .challenges-section .container {
    max-width: 1325px;
  }

  .challenges-section .challenge-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .challenges-section .challenges-grid {
    gap: 18px;
  }

  .challenges-section .label {

    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 100%;
  }

  .challenges-section .challenge-card p {
    font-size: 14px;
    margin: 0 0 18px 0;
  }

  .integrations-section .stats-grid {
    gap: 18px;
  }

  .integrations-stat-card {
    padding: 25px;
  }

  .integrations-section .icon-circle {
    width: 50px;
    height: 50px;
  }

  .integrations-section .stat-number {
    font-size: 36px;
    line-height: 100%;
  }

  .integrations-section .stat-title {
    font-size: 18px;
    line-height: 100%;
  }

  .integrations-section .stat-desc {
    font-size: 14px;
  }

  .fashion-store-cta {
    padding: 50px 0;
  }

  .fashion-store-cta__left h2 {
    font-size: 36px;
    margin: 0 0 15px 0;
  }

  .fashion-store-cta__subtext {
    font-size: 14px;
    max-width: 465px;
    margin-bottom: 30px;
  }

  .fashion-store-cta__what-title {

    font-size: 14px;
  }

  .fashion-store-cta__benefits li {
    font-size: 14px;
    padding-left: 20px;
  }

  .fashion-store-cta__benefits li::before {
    width: 12px;
    height: 11px;
    top: 6px;
  }

  .fashion-store-cta__icon {
    width: 45px;
    height: 45px;
  }

  .fashion-store-cta__contact-item span {

    font-size: 12px;
    margin-bottom: 5px;
  }

  .fashion-store-cta__contact-item a {

    font-size: 18px;
  }

  .fashion-store-cta__form-wrapper {
    padding: 20px 30px 35px 30px;
  }

  .fashion-store-cta__form-wrapper label {
    font-size: 12px !important;
  }

  .fashion-store-cta__form-wrapper .gform-body input,
  .fashion-store-cta__form-wrapper .gform-body select,
  .fashion-store-cta__form-wrapper .gform-body textarea {
    padding: 8px 16px !important;
    font-size: 13px !important;
    height: 40px;
    border-radius: 8px;
  }

  .fashion-store-cta__form-wrapper .gform_wrapper.gravity-theme .gform_fields {
    gap: 18px !important;
  }

  .fashion-store-cta__form-wrapper .gfield--type-choice label {
    font-size: 12px !important;
  }

  .fashion-store-cta__form-wrapper .gfield--type-choice .ginput_container_consent {

    gap: 6px;
  }

  .fashion-store-cta__form-wrapper .gfield--type-choice input[type="checkbox"] {

    width: 12px !important;
    height: 12px;
    border-radius: 3px;
    top: 4px;
  }

  .fashion-store-cta__form-wrapper .gfield--type-choice {
    margin-bottom: 15px !important;
  }

  .fashion-store-cta__form-wrapper .gform_wrapper.gravity-theme .gform_footer input {

    padding: 11px 19px;
    font-weight: 500;
    font-size: 12px;
  }

  .fasion-store-cta__inner {
    gap: 50px;
  }

  .gform_wrapper.gravity-theme .description,
  .gform_wrapper.gravity-theme .gfield_description,
  .gform_wrapper.gravity-theme .gsection_description,
  .gform_wrapper.gravity-theme .instruction {

    font-size: 12px !important;
  }

  span.nav__link-arrow:after {
    padding: 3.5px;
    top: -3px;
  }

  .mega-menu__container {
    border-radius: 18px;
    padding: 25px 30px;
  }

  .mega-menu__icon img {
    width: 25px;
    height: 25px;
    margin-bottom: 15px;
  }

  .mega-menu__title {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .mega-menu__item a {
    font-size: 14px;
  }

  .mega-menu__item {
    margin-bottom: 6px;
  }

  .mega-menu__columns {
    gap: 30px;
  }

  .mega-menu {
    width: 750px;
  }

  .mega-menu__footer a {
    font-size: 14px;
    padding: 14px 20px;
  }

  .mega-menu__footer a:after {
    margin-left: 6px;
  }

  .banner-info.three-column.statistics-show-below {
    gap: 18px;
    margin-top: 20px;
  }

  .banner-info.three-column.statistics-show-below .info-item {
    border-radius: 18px;
    padding: 30px;
  }

  .new-case-studies__filter-label {

    font-size: 14px;
  }

  .new-case-studies__filter {
    gap: 10px;
    margin-bottom: 40px;
  }

  .new-case-studies__btn {
    font-size: 12px;
    padding: 7px 22px;

  }

  .new-case-studies__buttons {
    gap: 10px;
  }

  .new-case-studies__filter .reset-icon:after {
    width: 18px;
    height: 18px;
  }

  .new-case-studies__grid {
    gap: 18px;
  }

  .new-case-studies__card {
    border-radius: 18px;
  }

  .new-case-studies__image,
  .new-case-studies__image img {
    height: 310px;
  }

  .new-case-studies__content {
    padding: 25px 25px 25px 25px;
  }

  .new-case-studies__badge {
    font-size: 12px;
    padding: 5px 11px;
  }

  .new-case-studies__title a {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .new-case-studies__description {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .new-case-studies__result-label,
  .new-case-studies__industry-label {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .new-case-studies__result-text,
  .new-case-studies__result-item {

    font-size: 14px;
  }

  .new-case-studies__result {
    padding-bottom: 12px;
  }

  .new-case-studies__industry {
    padding-top: 12px;
  }

  .new-case-studies__industry-tags span {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 8px;
  }

  .load-more-btn {
    margin: 40px auto 0 auto;
    padding: 10px 20px;
    font-size: 12px;
  }

  .work-cta h2 {
    font-size: 36px;
    line-height: 120%;
    margin-bottom: 12px;
  }

  .work-cta__text {
    font-size: 14px;
    max-width: 480px;

  }

  .work-cta__btn {
    gap: 5px;
    padding: 7px 22px;
    font-size: 12px;
  }

  .work-cta__btn:after {
    font-size: 15px;
  }

  .work-cta__right {
    gap: 12px;
  }

  .work-cta-inner {
    border-radius: 18px;
    padding: 35px 60px;
    gap: 30px;
  }

  .work-cta {
    margin-bottom: 18px;
  }

  .case-hero__title {
    font-size: 46px;
    margin-bottom: 20px;
  }

  .case-hero {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .case-hero__description p {
    font-size: 14px;
  }

  .case-hero__description {
    max-width: 990px;
    margin: 0 auto 35px auto;
  }

  .case-hero__image {
    border-radius: 18px;
    height: 350px;
  }

  .case-meta__card {
    border-radius: 18px;
    padding: 20px 25px;
  }

  .case-meta__label {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .case-meta__value {
    font-size: 16px;
  }

  .case-meta__grid {
    gap: 18px;
  }

  .case-three-column {
    padding: 80px 0 0 0;
    margin-bottom: 90px;
  }

  .case-three-column+.new-case-studies .load-more-btn:after {

    font-size: 15px;
    margin-left: 4px;
  }

  .other-services.transparent-section {
    padding: 60px 0;
    margin-bottom: 90px;
  }

  .other-services.transparent-section .other-service-card {
    padding: 35px 30px;
  }

  .mega-menu {
    left: -310px;
  }

  .footer-cta-brand img {
    width: 150px;
  }

  .footer-cta-text {
    gap: 6px;
  }

  .footer-cta-text span {
    font-size: 12px;
  }

  .footer-cta-text a {
    font-size: 18px;
  }

  .footer-cta-icon {
    width: 45px;
    height: 45px;
  }

  .footer-cta-contacts {
    gap: 35px;
  }

  .footer-cta-inner {
    gap: 20px;
    padding: 25px 45px 25px 35px;
  }

  .footer-cta {
    border-radius: 18px;
    margin-bottom: 50px;
  }

  .footer-menu-column ul {
    margin-bottom: 20px;
  }

  .footer-inner {
    gap: 80px;
  }

  .footer-social {
    gap: 14px;
  }

  p.copyright {
    font-size: 14px;
  }

  ul.footer-bottom-links li a {
    font-size: 14px;
  }

  p.copyright {
    font-size: 12px;
  }

  ul.footer-bottom-links li a {
    font-size: 12px;
  }

  .simple-banner-content h1 {
    font-size: 48px;
    color: #114870;
    margin-bottom: 10px;
  }

  .work-inner-banner__image {
    height: 400px;
}

  .work-inner-banner__brand {
    margin-bottom: 20px;
    max-width: 135px;
  }

  .work-inner-banner__subtitle p {
    font-size: 16px;
  }

  .work-inner-banner {
    padding: 30px 0;
  }

  .work-inner-banner__top {
    gap: 60px;
    margin-bottom: 30px;
  }

  .work-inner-banner h1.hero__heading {

    max-width: 100%;
  }

 .work-inner-banner__content {
    max-width: 730px;
}
  .work-inner-banner__info-label {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .work-inner-banner__info-value {
    font-size: 16px;
  }

  .work-inner-banner__info-box {
    padding: 20px 20px;
  }

  .work-inner-banner-stats__number {

    font-size: 36px;
    margin-bottom: 5px;
  }

  .work-inner-banner-stats__label {

    font-size: 14px;
  }

  .work-inner-banner-stats {
    padding: 36px 0;
  }

  .cta-project-overview .section-title,
  .project-features .section-title,
  .project-success .section-title {
    margin-bottom: 20px;
  }

  .cta-project-overview .section-subtitle,
  .project-features .section-subtitle,
  .project-success .section-subtitle {
    max-width: 850px;
    margin: 0 auto 30px auto;
  }

  .cta-project-overview__card {
    padding: 40px 30px 30px 30px;
    border-radius: 18px;
  }

  .cta-project-overview__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .cta-project-overview__grid {
    gap: 18px;
    margin-bottom: 45px;
  }

  .cta-project-overview__card-title {
    font-size: 18px;
  }

  .cta-project-overview__list ul {
    padding-top: 12px;
  }

  .cta-project-overview__list li {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .cta-project-overview__grid {
    margin-bottom: 30px;
  }

  .cta-project-overview__footer p {
    font-size: 14px;
  }

  .project-features__badge {
    border-radius: 8px;
    font-size: 14px;
    padding: 6px 18px;
  }

  .project-features__phase-bar {
    padding: 20px;
    gap: 18px;
    margin-bottom: 20px;
  }

  .project-features__phase-title {
    font-size: 22px;
  }
  .project-features__card {
    padding: 35px 30px;
    border-radius: 18px;
}
.project-features__card h4 {
    font-size: 18px;
    margin-bottom: 16px;
}
.project-features__card li, .project-features__card p {
   
    font-size: 14px;
    margin-bottom: 8px;
}
.project-features__grid {
    gap: 18px;
}
.project-features__phase {
    margin-bottom: 45px;
}
.results-impact__number {
    font-size: 34px;
        margin-bottom: 5px;
}
.results-impact__highlight {
    font-size: 14px;
        margin-bottom: 5px;
}
.results-impact__label {
    font-size: 14px;
}
.results-impact__icon {
    width: 100px;
    height: 100px;
}
.results-impact__card {
    gap: 30px;
    padding: 25px;
    border-radius: 18px;
}
.results-impact__grid {
    gap: 18px;
}
.technologies-tools__card {
    padding: 25px;
    border-radius: 18px;
}
.technologies-tools__icon {
    width: 30px;
    height: 30px;
    margin-bottom: 12px;
}
.technologies-tools__card-title {
  
    font-size: 18px;
    margin-bottom: 10px;
}
.technologies-tools__list {
    padding-left: 25px;
}
.technologies-tools__list li, .technologies-tools__list p {
    
    font-size: 14px;
    margin-bottom: 5px;
}
.technologies-tools__grid {
    gap: 18px;
}
.technologies-tools {
    padding: 35px 0;
    margin-bottom: 90px;
}
.project-success__card {
    padding: 25px;
    border-radius: 18px;
}
.project-success__badge {
    font-size: 14px;
    border-radius: 8px;
    padding: 6px 20px;
    margin-bottom: 12px;
}
.project-success__card-title {
    font-size: 18px;
    margin-bottom: 30px;
        margin-bottom: 16px;
}
.project-success__card li, .project-success__card p {
   
    font-size: 14px;
    margin-bottom: 5px;
}
.technologies-tools {
    margin-bottom: 90px;
}
.project-image-wrapper img {
    border-radius: 18px;
}
.toc-block.toc-content {
    padding: 25px 20px !important;
}
h1.wp-block-heading {
    font-size: 46px;
}
}

@media(max-width: 1200px) {
  .chetaru-sitemap {
    padding: 130px 20px 0 20px;
}
 .nav__menu {
    gap: 25px;
}
  .hero__heading {
    font-size: 36px;
    max-width: 400px;
  }

  .hero {
    padding-bottom: 70px;
  }

  .hero__content {
    gap: 80px;
  }

  .hero__team-image img {
    max-width: 350px;
  }

  .hero__actions {
    margin-bottom: 60px;
  }

  .hero__image-wrapper {
    min-height: unset;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main-wrapper {
    padding: 40px 20px 20px 20px;
  }

  .footer-inner {
    gap: 15px;
  }

  .why-choose-us__content,
  .tech-stack__content {
    grid-template-columns: 1fr;
  }

  .why-choose-us__left,
  .tech-stack__left {
    padding: 150px 55px;
    border-bottom: solid 1px #ffffff3d;
  }

  .blog-grid-inner {
    grid-template-columns: 1fr 1fr;
  }

  .blog-single-middle {
    padding-left: 40px;
    padding-right: 40px;
  }

  .related-blog h2 {
    font-size: 34px;
  }

  .subscribe-left h2 {
    font-size: 26px;
    max-width: 340px;
  }

  .subscribe-form form .gform-body input {
    font-size: 20px !important;
  }

  .input-wrap button img {
    width: 16px;
    height: 16px;
  }

  .subscribe-inner {
    padding: 40px;
  }

  .blog-single-content .blog-single-middle p,
  .blog-single-content .blog-single-middle li {
    font-size: 14px;
  }

  .talk-content p {
    font-size: 14px;
  }

  .talk-content h2,
  .talk-content h3 {
    font-size: 20px;
  }

  .cta-inner h2 {
    font-size: 30px;
    margin: 0 auto 20px auto;
  }

  .cta-inner p {
    font-size: 16px;
    margin: 0 auto 25px auto;
  }

  .service-highlights .service-highlights-wrapper {

    padding: 35px 45px;
    gap: 35px;
  }

  .why-choose-us__heading {
    text-align: center;
  }
.why-choose-us__subheading {
    text-align: center;
}
  .wp-technologies .tech-title span {
    font-size: 24px;
  }

  .industry-solutions .industry-solutions-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .who-we-work-with .who-we-work-with__grid--count-6.who-we-work-with__grid,
  .who-we-work-with .who-we-work-with__grid--count-3.who-we-work-with__grid,
  .who-we-work-with .who-we-work-with__grid--count-4.who-we-work-with__grid,
  .who-we-work-with .who-we-work-with__grid--count-5.who-we-work-with__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wp-technologies .tech-title small {
    font-size: 12px;
  }

  .recent-projects .projects-grid.projects-grid--4,
  .recent-projects .projects-grid.projects-grid--3,
  .recent-projects .projects-grid {

    grid-template-columns: repeat(2, 1fr);
  }

  .project-form-inner {
    padding: 50px;
  }

  .project-form .cta-points {
    margin: 0 auto 30px;
    gap: 20px;

  }

  .project-form .contact-item .icon {
    width: 45px;
    height: 45px;
  }

  .project-form-inner {
    padding: 35px;
  }

  .fashion-store-cta__contact {
    gap: 25px;
  }

  .new-case-studies__image,
  .new-case-studies__image img {
    height: 220px;
  }

  .case-mobile-showcase {
    padding: 60px 0 60px 0;
  }

  .new-case-studies__card {
    border-radius: 12px;
  }
  .work-inner-banner-stats__number {
    font-size: 26px;
}
.work-inner-banner-stats__label {
    font-size: 12px;
}
.project-features__phase-title {
    font-size: 18px;
}
.results-impact__icon {
    width: 80px;
    height: 80px;
}
.results-impact__card {
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
}
.results-impact__number {
    font-size: 28px;
}
.results-impact__highlight {
    font-size: 12px;
}
.results-impact__label {
    font-size: 12px;
}
.technologies-tools__card {
    padding: 20px;
    border-radius: 12px;
}
.technologies-tools__list {
    padding-left: 18px;
}
.project-success__card {
    padding: 25px;
    border-radius: 18px;
}
.project-success__badge {
    font-size: 14px;
    border-radius: 8px;
    padding: 6px 20px;
    margin-bottom: 16px;
}
.project-success__card-title {
    font-size: 18px;
    margin-bottom: 16px;
}
.project-success__card li, .project-success__card p {
  
    font-size: 14px;
    margin-bottom: 5px;
}
}

@media(max-width: 1080px) {
  .other-services .other-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cta-inner {
    padding: 25px 25px 25px 25px;
    flex-direction: column;
  }
}

@media(max-width: 992px) {
  .project-image-wrapper img {
    border-radius: 12px;
}
  
  .hero__content {
    flex-wrap: wrap;
    gap: 0;
  }

  .hero__text {
    width: 100%;
  }

  .hero__description {
    margin-left: 0;
    margin-top: 31px;
  }

  .hero__team-image {
    display: none;
  }

  .hero__description {
    margin-left: 0;
    margin-top: 0;
    max-width: 100%;
  }

  .hero__actions {
    margin-bottom: 30px;
  }

  .hero__heading {
    max-width: 100%;
  }

  .stats-main {
    padding: 70px 30px 35px 30px;
  }

  .stat-card {
    height: 240px;
  }

  .stat-card__icon {
    width: 50px;
    height: 50px;
  }

  .stat-card {
    padding: 20px 25px 25px 25px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(4),
  .stat-card:nth-child(6) {
    margin-top: unset;
  }

  .stat-card:nth-child(2) {
    margin-top: unset;
  }

  section {
    padding-bottom: 60px;
  }

  .section-title {
    text-align: center;
    margin-bottom: 24px;
  }
h2.chetaru-sitemap__title,
h2.wp-block-heading {
  margin-bottom: 24px;
}
  .portfolio-card-row:nth-child(odd) {
    column-gap: 70px;
  }

  .portfolio-card-row:nth-child(even) {
    column-gap: 60px;
    padding-left: 20px;
  }

  .portfolio-card-row:nth-child(even) .portfolio-card-wrapper:nth-child(even) {

    margin-top: 95px;
  }

  .portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(even) {

    margin-top: 100px;
  }

  .portfolio {
    margin-bottom: 60px;
  }

  .partnership-models__grid {
    overflow-x: auto;
  }

  .partnership-card {
    min-width: 300px;
  }

  .container,
  .chetaru-sitemap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial-card__quote,
  .testimonial-card__quote p {
    font-size: 16px;
  }

  .testimonial-card__quote-icon svg {
    width: 50px;
    height: 50px;
  }

  .section-title,
  h2.chetaru-sitemap__title,
  h2.wp-block-heading  {
    font-size: 30px;
  }

  .section-subtitle,
  .section-subtitle p {
    font-size: 16px;
  }

  .industries__grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-choose-us__heading,
  .tech-stack__heading {
    font-size: 26px;
    text-align: center;
	margin-bottom: 10px;
  }

  .why-choose-us__left,
  .tech-stack__left {
    padding: 60px 55px;
  }

  .footer-inner {
    gap: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 30px;
  }

  .why-choose-us__subheading,
  .tech-stack__subheading {

    text-align: center;
  }

  .footer-bottom {
    margin-bottom: 30px;
  }

  .mobile-menu-toggle span {
    border-radius: 5px;
    background: #363636;
    display: block !important;
    border: none;
    height: 3px;
    width: 28px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: .35s;
    transition: .35s;
    cursor: pointer;
  }

  .mobile-menu-toggle span.middle {
    top: 8px;
  }

  .mobile-menu-toggle span.bottom {
    top: 16px;
  }

  .mobile-menu-toggle {
    display: block;
    position: relative;
    height: 21px;
    width: 28px;
  }

  .nav__logo img {
    max-width: 115px;
  }

  .header {
    height: unset;
  }

  header .container {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .hero {
    padding-bottom: 60px;
  }

  .open-menu .mobile-menu-toggle .middle {
    opacity: 0;
  }

  .open-menu .mobile-menu-toggle .top {
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    top: 50%;
  }

  .open-menu .mobile-menu-toggle .bottom {
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -moz-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    top: 50%;
  }

ul.nav__menu {
    display: block;
    position: fixed;
    left: -100%;
    height: 100vh;
    overflow: auto;
    background-color: #fff;
    top: 70px;
    width: 100%;
    padding: 40px 30px 20px 30px;
    transition: all 0.5s ease-in-out;
    border-top: solid 1px #114870;
	z-index: 999;
}

  .open-menu ul.nav__menu {
    left: 0;
  }

  .footer-logo img {
    max-width: 120px;
  }

  .banner-section,
  .page-not-found,
  .simple-banner {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .banner-grid {
    gap: 0;
    justify-content: unset;
    flex-direction: column;
  }

  .contact-wrapper {
    gap: 40px;
    padding: 35px;
    flex-direction: column;
    align-items: start;
  }

  .contact-left {
    width: 100%;
  }

  .contact-form {
    width: 100%;
  }

  .blog-box img {
    height: 240px;
  }

  .blog-grid-inner {
    gap: 16px;
    margin-bottom: 30px;
  }

  .blog-box-title {
    font-size: 16px;
  }

  .blog-box-date span,
  .blog-box-date {
    font-size: 14px;
  }

  .pagination .nav-links .page-numbers {
    font-size: 14px;
    width: 40px;
    height: 40px;
  }

  .blog-single-left {
    width: 100%;
    max-width: 100%;
  }

  .blog-single-content-row {
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
  }

  .blog-single-middle {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .blog-single-right {
    width: 100%;
    max-width: 100%;
  }

  .nav__item {
    margin-bottom: 15px;
  }

  h1.blog-title {
    font-size: 26px;
  }

  .blog-single-banner {
    margin-bottom: 30px;
    padding-top: 120px;
  }

  .blog-single-content .blog-single-middle h2 {
    font-size: 20px;
  }

  .blog-single-content .blog-single-middle p+h3 {
    margin-top: 25px;
  }

  .blog-single-content .blog-single-middle h3 {
    font-size: 18px;
  }

  .blog-single-content .blog-single-middle p+h2 {
    margin-top: 30px;
  }

  .blog-single-content {
    padding-bottom: 40px;
  }

  .split-content:first-child .split-link,
  .split-content:last-child {

    padding-left: 15px;
  }

  .split-content {
    padding-bottom: 25px;
  }

  .split-link {
    font-size: 20px;
  }

  .split-link:after {
    font-size: 17px;
    margin-left: 10px;
  }

  .split-links-grid {
    min-height: 250px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }



 .admin-bar ul.nav__menu {
    top: 101px;
}
  .banner-right {
    max-width: 100%;
  }

  .service-highlights .service-highlights-wrapper {
    padding: 30px;
    gap: 30px;
  }

  .wp-technologies .tech-title {
    width: 40%;
  }

  .wp-technologies .tech-tags {

    width: 60%;
    padding-right: 25px;
  }

  .industry-solutions .industry-solutions-grid {

    padding: 0;
  }

  .service-highlights .service-card {
    padding: 20px;
  }

  .portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(odd) .portfolio-card__image {
    height: 270px;
  }

  .portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(even) .portfolio-card__image {
    height: 217px;
  }

  .portfolio-card-row:nth-child(even) .portfolio-card-wrapper:nth-child(odd) .portfolio-card__image {
    height: 217px;
  }

  .portfolio-card-row:nth-child(even) .portfolio-card-wrapper:nth-child(even) .portfolio-card__image {
    height: 224px;
  }

  .recent-projects.transparent-section,
  .fashion-store-cta {
    margin-bottom: 60px;
  }

  .fasion-store-cta__inner {

    flex-wrap: wrap;
  }

  .fashion-store-cta__left {
    width: 100%;
    max-width: 100%;
  }

  .fashion-store-cta__left h2 {
    max-width: 100%;
  }
.fashion-store-cta__left h2 br {
  display: none;
}
  .fashion-store-cta__subtext {
    max-width: 100%;
  }

  .case-hero__title {
    font-size: 36px;
  }

  .case-meta__value {
    font-size: 14px;
  }

  .case-meta__grid {
    gap: 15px;
  }

  .case-showcase {
    padding: 50px 0;
  }

  .case-mobile-showcase {
    padding: 50px 0;
  }

  .case-three-column {
    padding: 60px 0 0 0;
    margin-bottom: 60px;
  }

  .new-case-studies__content {
    padding: 20px;
  }

  .new-case-studies__image,
  .new-case-studies__image img {
    height: 185px;
  }

  .case-showcase-inner {
    padding: 0;
  }

  .case-mobile-showcase__grid {
    padding: 0;
  }

  .work-cta h2 {
    font-size: 30px;
  }

  .work-cta-inner {
    border-radius: 12px;
    padding: 25px 35px;
    gap: 25px;
  }

  .banner-info.three-column.statistics-show-below .info-item {
    border-radius: 12px;
    padding: 20px;
  }

  .mega-menu__icon img {
    display: none;
  }

  .mega-menu {
    width: 100%;
    display: none;
  }

  .mega-menu__container {
    padding: 20px 0 0 0;
  }

  .mega-menu__footer a {
    padding: 0;
    justify-content: start;
    background-color: transparent;
    border-radius: 0;
  }

  .mega-menu__items {
    padding-left: 15px;
    display: none;
  }

  .mega-menu__column {
    margin-bottom: 25px;
  }

  .mega-menu__title {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  span.nav__link-arrow {
    position: absolute;
    right: 0px;
    top: 10px;
    width: 20px;
    height: 20px;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .other-services.transparent-section {
    margin-bottom: 60px;
    padding: 50px 0;
  }

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

  span.nav__link-arrow.active:after {
    transform: rotate(-135deg);
    top: 0;
  }



  .mega-menu__title.active span.title-arrow:after {
    transform: rotate(-135deg);
    top: 0;
  }

  span.nav__link-arrow:after {
    padding: 4px;
  }

  span.title-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  a.mega-menu__view-all {
    display: none;
  }

  .footer-col {
    width: 100% !important;
    max-width: unset;
  }

  .footer-cta-inner {
    padding: 20px;
  }

  .footer-cta-contacts {
    gap: 25px;
  }

  .footer-cta-icon {
    width: 40px;
    height: 40px;
  }

  .footer-cta-text a {
    font-size: 16px;
  }

  .footer-cta-text {
    gap: 3px;
  }

  .footer-contact {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
  }

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

  .fashion-store-cta .gform_confirmation_message {

    padding-top: 30px;
    padding-bottom: 18px;
    text-align: left !important;
  }
  .work-inner-banner__top {
   
    flex-direction: column;
    align-items: start;
}
.work-inner-banner {
    padding: 35px 0;
}

.work-inner-banner {
    padding: 70px 0 30px 0;
}
.work-inner-banner__top {
    gap: 35px;
}
.work-inner-banner__content {
    max-width: 100%;
        width: 100%;
}
.work-inner-banner__image {
   
    width: 100%;
}
.work-inner-banner__info-value {
    font-size: 14px;
}

.results-impact__grid {
    grid-template-columns: repeat(2, 1fr);
}
.technologies-tools__grid {
    grid-template-columns: repeat(3, 1fr);
   
}
.project-success__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.project-quote .testimonial-card {
    padding: 40px 45px;
}
.technologies-tools {
    margin-bottom: 60px;
}
.chetaru-sitemap__list a {
    font-size: 14px;
}
body:has(.banner-section) .header, body:has(.blog-single-banner) .header {
    background-color: #ffffff;
   
}
.has-page-toc .entry-content .container {
    padding-left: 20px;
}
.has-page-toc .toc-block.toc-content {
  width: 100%;
    float: none;
    margin-left: 0;
    position: unset !important;
        margin-bottom: 30px;
}
.toc-block.toc-content, .toc-content {
  overflow: unset;
  max-height: unset;
}
.blog-single-content .blog-single-middle h4.wp-block-heading {
    font-size: 16px;
}
.entry-content p + h2.wp-block-heading,.entry-content .wp-block-list + h2.wp-block-heading {
    margin-top: 35px;
}
 .cta-project-overview {
  margin-top: 90px;
 }

}

@media(max-width: 767px) {
  .hero__heading {
    font-size: 26px;
  }

  .hero__subheading {
    font-size: 18px;
    letter-spacing: 0;
  }

  .stats__subtitle {
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    padding: 0px 20px 15px 20px;
    font-size: 16px;
  }

  .stat-card__number {
    font-size: 26px;
  }

  .stat-card__label {
    font-size: 16px;
  }

  .section-title,
  h2.chetaru-sitemap__title,
  h2.wp-block-heading  {
    font-size: 26px;
  }

  .who-card {
    min-width: 300px;
  }

  .who-we-work-with__grid {
    overflow-x: auto;
  }

  .who-card__icon {
    width: 55px;
    height: 55px;
  }

  .who-card {
    padding: 30px 25px;
  }

  .btn {
    font-size: 12px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card--full-width {
    gap: 18px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .portfolio-card-row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(odd) {
    max-width: 100%;
  }

  .portfolio-card-wrapper {
    width: 100%;
  }

  .portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(even) {
    margin-top: 0;
  }

  .portfolio-card-row:nth-child(even) {
    column-gap: 0;
    padding-left: 0;
  }

  .portfolio-card-row:nth-child(even) .portfolio-card-wrapper:nth-child(even) {
    max-width: 100%;
    margin-top: 0px;
  }

  .portfolio-card-row:nth-child(even) .portfolio-card-wrapper:nth-child(odd) {
    max-width: 100%;
  }

  .why-choose-us__left,
  .tech-stack__left {
    padding: 40px 20px;
  }

  .why-choose-us__grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-direction: column;
    gap: 15px;
    padding: 30px 20px;
    min-height: 340px;
  }

  .testimonial-card__quote-icon svg {
    width: 40px;
    height: 40px;
  }

  .partnership-card__price {
    font-size: 26px;
  }

  .why-choose-us__subheading,
  .tech-stack__subheading {
    font-size: 16px;
  }

  .testimonials__carousel .slick-dots {
    margin-top: 0px;
  }

  .carousel__slide {
    padding: 0 6px;
  }

  .industries__grid {
    grid-template-columns: 1fr;
  }

  .tech-stack__grid {
    grid-template-columns: 1fr;
  }

  .tab {
    padding: 0 5px 10px 5px;
    font-size: 14px;
  }

  .tabs {
    gap: 20px;
  }

 .accordion__title {
    font-size: 18px;
}
.accordion h2 {
    font-size: 18px;
}
  .accordion__header:before {
    height: 16px;
    right: 22px;
  }

  .accordion__header:after {
    width: 16px;
  }
.accordion h3 {
    font-size: 17px;
}
.accordion h4 {
    font-size: 16px;
}
  .stats-main {
    padding: 70px 20px 35px 20px;
  }

  .stat-card {
    padding: 20px 10px 25px 10px;
  }

  .stat-card {
    height: 200px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col.footer-contact {
    width: 100%;
  }

  .footer-col {
    width: 50%;
    padding-right: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-nav a {
    margin-left: 0;
  }

  nav.footer-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .banner-right {
    max-width: 100%;
    margin-top: 0;
  }

  .banner-right p {
    font-size: 16px;
  }

  .banner-info .info-item a {
    font-size: 18px;
  }

  .contact-wrapper {
    padding: 20px;
    gap: 25px;
  }

  .contact-left p {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .social-grid .social-card {
    padding: 18px;
    gap: 35px;
    font-size: 18px;
  }

  .contact-form h2 {
    font-size: 26px;
  }

  .contact-form {
    padding: 20px;
  }

  .feature-card {
    min-width: 300px;
  }

  .features-grid {
    overflow-x: auto;
  }

  .banner-info {
    gap: 30px;
  }

  .cta-box {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }

  .cta-text h3 {
    margin-bottom: 0;
  }

  .blog-actions {
    flex-direction: column;
    align-items: start;
  }

  .blog-box-title {
    margin-bottom: 15px;
  }

  .blog-box img {
    height: 180px;
  }

  .blog-grid-inner {
    grid-template-columns: 1fr;
  }

  .subscribe-inner {
    flex-direction: column;
    align-items: start;
    padding: 20px;
    gap: 25px;
  }

  .subscribe-right {
    width: 100%;
    max-width: 100%;
  }

  .subscribe-form form .gform-body input {
    font-size: 16px !important;
  }

  .subscribe-left h2 {
    font-size: 20px;
    max-width: 265px;
  }

  .related-blog h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .related-blog .blog-grid-inner {
    margin-bottom: 25px;
  }

  .gallery-box img {
    height: 130px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-card {
    padding: 20px;
  }

  .icon-box img {
    width: 45px;
    height: 45px;
  }

  .cta-inner h2 {
    font-size: 26px;
  }

  .cta-inner p {
    font-size: 14px;
  }

  .cta-inner {
    padding: 35px 20px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .split-link {
    font-size: 14px;
  }

  .split-link:after {
    font-size: 17px;
    margin-left: 4px;
  }

  .gallery .slick-list.draggable {
    padding-right: 50px;
  }


  .admin-bar ul.nav__menu {
    top: 70px;
  }

  span.banner-note {
    margin-bottom: 15px;
    line-height: 150%;
    display: block;
  }

  .service-highlights .service-highlights-wrapper {

    grid-template-columns: 1fr;
  }

  .who-we-work-with .who-we-work-with__grid--count-6.who-we-work-with__grid,
  .who-we-work-with .who-we-work-with__grid--count-3.who-we-work-with__grid,
  .who-we-work-with .who-we-work-with__grid--count-4.who-we-work-with__grid,
  .who-we-work-with .who-we-work-with__grid--count-5.who-we-work-with__grid {
    grid-template-columns: 1fr;
    overflow: unset;
  }

  .who-we-work-with .who-we-work-with__grid--count-6 .who-card,
  .who-we-work-with .who-we-work-with__grid--count-3 .who-card,
  .who-we-work-with .who-we-work-with__grid--count-4 .who-card,
  .who-we-work-with .who-we-work-with__grid--count-5 .who-card {
    padding: 20px;
    min-width: unset;
  }

  .wp-technologies .tech-row {
    padding: 15px 20px;
    gap: 20px;
    flex-direction: column;
    align-items: start;
  }

  .wp-technologies .tech-title {
    width: 100%;
    border-radius: 12px;
    padding: 20px;
  }

  .wp-technologies .tech-tags {
    width: 100%;
    padding-right: 0;
  }

  .industry-solutions .industry-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-services .other-service-card {

    padding: 20px;
  }

  .other-services .other-service-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 18px;
  }

  .wp-technologies .tech-row:last-child {
    margin-bottom: 0px;
  }

  .other-services .other-services-grid {
    grid-template-columns: 1fr;
  }

  .section-subtitle,
  .section-subtitle p {
    font-size: 15px;
  }

  .testimonials__carousel .slick-dots {
    margin-top: 24px;
  }

  .service-highlights .service-highlights-wrapper {
    padding: 20px;
    gap: 20px;
  }

  .banner-section .hero__actions {
    gap: 10px;
  }

  .wp-technologies .tech-title span {
    font-size: 20px;
  }

  .banner-info.three-column {
    gap: 10px;
  }

  .portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(even) {
    max-width: 100%;
  }

  .portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(odd) .portfolio-card__image,
  .portfolio-card-row:nth-child(odd) .portfolio-card-wrapper:nth-child(even) .portfolio-card__image,
  .portfolio-card-row:nth-child(even) .portfolio-card-wrapper:nth-child(odd) .portfolio-card__image,
  .portfolio-card-row:nth-child(even) .portfolio-card-wrapper:nth-child(even) .portfolio-card__image {
    height: 260px;
  }

  .project-form-inner .section-title {
    margin-bottom: 15px;
    text-align: left;
  }

  .project-form-inner .section-subtitle {

    margin-bottom: 25px;
    text-align: left;
  }

  .project-form .cta-points {
    gap: 15px;
    justify-content: start;
  }

  .project-form-inner {
    border-radius: 12px;
    padding: 20px;
  }

  .project-form form input,
  .project-form form textarea,
  .project-form form select {

    height: 40px;
  }

  .project-form .name_first.gform-grid-col {
    margin-bottom: 0 !important;
  }

  .recent-projects .projects-grid.projects-grid--4,
  .recent-projects .projects-grid.projects-grid--3,
  .recent-projects .projects-grid {

    grid-template-columns: 1fr;
  }

  .project-form .cta-contact {
    margin-top: 30px;
    gap: 20px;
    flex-direction: column;
  }

  .project-form .gf-submit-note {

    line-height: 140%;
  }

  .project-form .gfield--type-choice .ginput_container.ginput_container_consent label::before {
    width: 14px;
    height: 14px;
    top: 3px;
    flex: 0 0 14px;
  }

  .fashion-store-cta__left h2 {
    font-size: 26px;
  }

  .integrations-section .stats-grid {
    grid-template-columns: 1fr;
  }

  .integrations-section .stat-number {
    font-size: 26px;
  }

  .challenges-section .challenges-grid {

    grid-template-columns: 1fr;
  }

  .banner-info.three-column img+h4 {
    font-size: 14px;
  }

  .fashion-store-cta__form-wrapper {
    padding: 20px;
  }

  .case-hero__title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .case-hero__image {
    border-radius: 12px;
    height: 200px;
  }

  .case-meta__grid {
    grid-template-columns: 1fr;
  }

  .case-three-column {
    padding: 40px 0 0 0;
  }

  .new-case-studies__grid {
    grid-template-columns: 1fr;
  }

  .banner-info.three-column.statistics-show-below {

    grid-template-columns: 1fr 1fr;
  }

  .work-cta-inner {
    flex-direction: column;
    align-items: start;
  }

  .work-cta h2 {
    font-size: 26px;
  }

  .work-cta-inner {
    padding: 40px 20px;
    gap: 20px;
  }

  .work-cta__right {
    flex-wrap: wrap;
  }

  .new-case-studies__filter-label {
    order: 0;
  }

  .new-case-studies__filter button.reset-btn {
    order: 1;

    margin-left: auto;
  }

  .new-case-studies__buttons {
    order: 2;

  }

  .other-services.transparent-section .other-services-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-contacts {
    flex-direction: column;
    align-items: start;
    width: 100%;
    gap: 15px;
  }

  p.copyright {
    width: 100%;
  }

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

  ul.footer-bottom-links li {
    line-height: 100%;
  }

 .footer-social {
    order: 0;
    width: 100%;
}
  ul.footer-bottom-links {
    order: 1;
  }

  p.copyright {
    order: 2;
  }

  .footer-contact {
    gap: 15px;
  }

  .project-form .gform_confirmation_message {
    text-align: left !important;
    font-size: 20px !important;
  }

  .fashion-store-cta .gform_confirmation_message {

    font-size: 18px !important;
  }

  h1.blog-title {
    font-size: 22px;
    margin: 0 auto 26px auto;
  }

  .banner-section,
  .page-not-found,
  .simple-banner {
    padding-top: 120px;
  }
  .work-inner-banner__info {
    grid-template-columns: repeat(2, 1fr);
}
.work-inner-banner__info-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.work-inner-banner__info {
    border-bottom: 0;
}
.work-inner-banner-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.work-inner-banner-stats__item {
    border-right: 0;
}
.cta-project-overview__grid,
.technologies-tools__grid,
.results-impact__grid,
.project-features__grid,
.project-success__grid {
    grid-template-columns: 1fr;
}
.work-inner-banner__subtitle p {
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 0;
}
.work-inner-banner h1.hero__heading {
    
    margin-bottom: 25px;
}
.work-inner-banner__brand {
    margin-bottom: 25px;
}
.project-features__badge {
    font-size: 12px;
}
.project-features__phase-bar {
    padding: 15px;
    gap: 12px;
    border-radius: 8px;
    flex-direction: column;
        align-items: start;
}
.project-features__phase-title {
    font-size: 16px;
}

.project-features__card {
    padding: 35px 20px;
    border-radius: 12px;
}
.cta-project-overview__card {
    padding: 30px 20px 30px 20px;
    border-radius: 12px;
}
.cta-project-overview__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}
.project-features__card ul {
    margin-top: 15px;
        padding-left: 20px;
}
.project-success__card ul {
    padding-left: 20px;
}
body.admin-bar:has(.banner-section) .header,
body.admin-bar:has(.blog-single-banner) .header {
    margin-top: 0;
}
.admin-bar .header--scrolled {
    top: 0;
}
html #wpadminbar {
    display: none !important;
}
html {
    margin-top: 0 !important;
}
.has-page-toc .toc-block.toc-content {
    width: 100%;
}
h3.wp-block-heading {
    font-size: 22px;
}
h2.wp-block-heading {
    margin-bottom: 15px;
}
.blog .banner-section {
    padding-bottom: 30px;
}
h1.wp-block-heading {
    font-size: 36px;
}
.wp-block-table .has-fixed-layout {
    
    min-width: 500px;
}
.wp-block-table th, .wp-block-table td {
    font-size: 14px;
}
}