:root {
  /* Color Palette */

  --primary-color: #5e64ef;

  --primary-dark: #0056b3;

  --primary-light: #3399ff;

  --secondary-color: #6c757d;

  --secondary-dark: #495057;

  --secondary-light: #868e96;

  --accent-color: #ac309d;

  --white: #ffffff;

  --black: #000000;

  --black-light: rgba(0, 0, 0, 0.64);

  --black-gray: #484554;

  --bg-light-offwhite: #dbdbdb;

  --border-light-gray: #e0e0e0;

  --border-gray: #eeeeee;

  /* Background Colors */

  --bg-primary: var(--white);

  --bg-secondary: var(--gray-50);

  --bg-tertiary: var(--gray-100);

  --bg-dark: var(--gray-800);

  --bg-light: var(--gray-100);

  --bg-product-steps: #2d1b69;

  /* Text Colors */

  --text-primary: var(--gray-900);

  --text-secondary: var(--gray-600);

  --text-muted: var(--gray-500);

  --text-light: var(--gray-400);

  --text-white: var(--white);

  --text-dark: var(--gray-800);

  /* Border Colors */

  --border-color: #ececec;

  --border-light: var(--gray-200);

  --border-dark: var(--gray-400);

  --border-primary: var(--primary-color);

  --border-success: var(--success-color);

  --border-warning: var(--warning-color);

  --border-danger: var(--danger-color);

  --border-info: var(--info-color);

  /* Link Colors */

  --link-color: var(--primary-color);

  --link-hover-color: var(--primary-dark);

  --link-decoration: none;

  --link-hover-decoration: underline;

  /* theme custom colors */

  --btn-solid-color: #5e64ef;

  --btn-primary-hover: #4a53d9;

  --text-purple: #ac309d;

  --bg-offwhite: #fafafa;

  --border-color-white: #faf9ff;

  --border-color-gray: #f4f4f4;

  --border-secondary: #dddddd;

  --grad-color-1: #5cc0ee;

  --grad-color-2: #5e64ef;

  --grad-color-3: #c997d2;

  --grad-color-4: #5ceea7;

  /* Font Weights */

  --font-weight-light: 300;

  --font-weight-normal: 400;

  --font-weight-medium: 500;

  --font-weight-semibold: 600;

  --font-weight-bold: 700;

  --font-weight-extrabold: 800;

  --font-weight-black: 900;

  --shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);

  --transition: all 0.3s ease-in-out;
  --bs-card-border-radius: 0.5rem;
}

/* Color Utilities */

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-danger {
  color: var(--danger-color) !important;
}

.text-warning {
  color: var(--warning-color) !important;
}

.text-info {
  color: var(--info-color) !important;
}

.text-light {
  color: var(--accent-color) !important;
}

.text-dark {
  color: var(--text-dark) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

/* Background Utilities */

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-offwhite {
  background-color: var(--bg-offwhite) !important;
}

.bg-blackgray {
  background-color: var(--black-gray);
}

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

.grad-color-1 {
  background: var(--grad-color-1);
}

.grad-color-2 {
  background: var(--grad-color-2);
}

.grad-color-3 {
  background: var(--grad-color-3);
}

/* border colors */

.border-lightoffwhite {
  border: 1px solid var(--bg-light-offwhite);
}

.bg-gradient-primary {
  background: linear-gradient(
    80deg,
    #5cc0ee 0%,
    #5e64ef 71.98%,
    #c997d2 136.15%
  );
}

/* Typography Utilities */

.fw-light {
  font-weight: var(--font-weight-light) !important;
}

.fw-normal {
  font-weight: var(--font-weight-normal) !important;
}

.fw-medium {
  font-weight: var(--font-weight-medium) !important;
}

.fw-bold {
  font-weight: var(--font-weight-bold) !important;
}

.fw-extrabold {
  font-weight: var(--font-weight-extrabold) !important;
}

.fw-black {
  font-weight: var(--font-weight-black) !important;
}

.shadow {
  box-shadow: var(--shadow) !important;
}

.transition {
  transition: var(--transition) !important;
}

.lh-40 {
  line-height: 40px;
}

/* General */

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;

  font-family: "Outfit", sans-serif;
}

img {
  max-width: 100%;

  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0px;
  color: var(--black);
}

h1 {
  font-size: 48px;

  font-weight: 600;

  line-height: 1.2;
}

h2 {
  font-size: 40px;

  font-weight: 600 !important;

  line-height: 1.25;
}

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

h3 {
  font-weight: 600 !important;
  letter-spacing: -0.3px;
}

p {
  font-size: 18px !important;
  line-height: 28px;
}

p:last-of-type {
  margin-bottom: 0px;
}

.mb-12 {
  margin-bottom: 12px;
}

a {
  text-decoration: none;
}

.font-14 {
  font-size: var(--bs-font-size-sm);
}

.fs-18 {
  font-size: 18px;

  line-height: 28px;
}

.fs-16 {
  font-size: 16px;
}

.gap-64 {
  gap: 0 64px;
}

.fs-20 {
  font-size: 20px !important;
  line-height: 30px;
}

.gap-64 {
  gap: 0 64px;
}

.btn {
  display: inline-block;

  height: 48px;

  line-height: 48px;

  font-weight: 600;

  font-size: 18px;

  border-radius: 8px !important;

  padding: 0px 28px;

  text-decoration: none !important;

  transition: var(--transition);

  box-shadow: var(--card-shadow);

  background-color: var(--btn-solid-color);

  cursor: pointer;

  color: var(--white);

  box-shadow: var(--shadow);
}

.btn-small {
  height: 48px;
  line-height: 48px;
}

/* 2. White Background Button */

.btn.white {
  background-color: var(--white) !important;
  color: var(--black) !important;
}

/* .btn.white:hover {
  color: var(--black) !important;
  border-color: var(--btn-solid-color);
} */

/* 3. Bordered Button */

.btn.bordered {
  background-color: var(--white) !important;

  color: var(--black) !important;

  border: 1px solid var(--border-light-gray) !important;
}

.btn.bordered:hover {
  color: var(--btn-primary-hover) !important;

  border-color: var(--btn-primary-hover);

  box-shadow: var(--shadow);
}

.btn,
.btn:hover,
.btn:focus,
.btn:active,
.btn:visited {
  color: var(--white);
  background-color: var(--btn-solid-color);
  /* border-color: var(--btn-solid-color); */
}

.btn:hover {
  color: var(--white) !important;
  background-color: var(--accent-color) !important;
}

.btn:hover span {
  color: var(--white) !important;
}

.section-space {
  padding-top: 96px;

  padding-bottom: 96px;
}

.site-header {
  position: fixed;

  left: 0;

  right: 0;

  top: 48px;

  z-index: 9;

  transition: all 0.3s ease-in-out;
}

.site-header.solid-header {
  transform: translateY(0);
  background: var(--white);
  border-bottom: 1px solid #e0e0e0 !important;
  padding: 16px 0px;
  top: 0;
}

.site-header.solid-header .header-main .site-logo img {
  filter: none;
}

.site-header.solid-header .main-navigation ul li > a {
  color: var(--black) !important;
}

.site-header.solid-header
  .main-navigation
  > ul
  .menu-item-has-children
  > a:after {
  filter: brightness(0);
}

.site-header.solid-header .header-ctas .btn {
  box-shadow: none;
}

.header-ctas {
  gap: 32px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--white);
}

.site-header.solid-header .header-phone {
  color: var(--black);
}

.site-header.solid-header .header-phone svg {
  color: var(--black);
}

/* .sticky-header .schedule-call-btn {
  background-color: white;
  border-color: transparent;
  color: black;
} */

.megamenu-footer a {
  color: white !important;
}

.header-phone svg {
  flex: 0 0 auto;
}

.header-phone span {
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
.schedule-call-btn {
  height: 40px !important;
  line-height: 40px !important;
}

/* When header becomes sticky, revert solid-header colors back to white */
.site-header.sticky-header .header-main .site-logo img {
  filter: none;
}

.site-header.sticky-header .main-navigation ul li > a {
  color: var(--black) !important;
}

.site-header.sticky-header
  .main-navigation
  > ul
  .menu-item-has-children
  > a:after {
  filter: brightness(100);
}

.site-header.sticky-header .header-phone,
.site-header.sticky-header .header-phone svg {
  color: var(--black);
}

.hamburger-icon {
  color: var(--white);
}

.site-header.solid-header .hamburger-icon {
  color: var(--black);
}

.site-header.sticky-header .hamburger-icon {
  color: var(--black);
}

.site-header.sticky-header {
  top: 0;

  /* background: linear-gradient(115deg, #2a62f2 0%, #7a2df0 100%); */

  background-color: white;

  backdrop-filter: blur(10px);

  box-shadow: var(--shadow);

  padding: 16px 0px;
}

.header-main .site-logo img {
  filter: brightness(100);
}

.megamenu-wrapper {
  background-image: url("../images/menu-mask.png");
}

.main-navigation > ul {
  display: flex;

  align-items: center;

  list-style: none;

  padding: 0;

  margin: 0;

  gap: 32px;
}

.main-navigation ul li a {
  position: relative;

  color: var(--white) !important;

  font-size: 16px;

  line-height: 20px;

  font-weight: 400;
}

.main-navigation > ul .menu-item-has-children > a {
  padding-right: 16px;
}

.main-navigation > ul .menu-item-has-children > a:after {
  content: "";

  position: absolute;

  transform: translateY(-50%);

  top: 50%;

  right: 0;

  width: 12px;

  height: 12px;

  background-image: url("../images/arrow-down.svg");

  background-size: contain;

  background-repeat: no-repeat;
}

.main-navigation > ul .menu-item-has-children ul.sub-menu li > a:after {
  filter: brightness(0);
  transform: translateY(-50%) rotate(270deg);
}

.main-navigation .sub-menu {
  opacity: 0;

  visibility: hidden;

  transition: var(--transition);

  position: absolute;

  background-color: var(--white);

  width: 275px;

  padding: 0;
}

.main-navigation .mega-menu .sub-menu {
  width: 634px;
}

.main-navigation > ul > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-navigation .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}

.megamenu-link {
  padding: 32px;
}

.megamenu-link-item-title {
  font-size: 14px;

  line-height: 22px;

  margin-bottom: 24px;

  color: var(--black-light);
}

.megamenu-link-item ul {
  list-style: none;

  padding: 0;

  display: flex;

  flex-direction: column;

  gap: 16px;
}

.megamenu-link-item ul li a {
  color: var(--black) !important;

  font-size: 18px;
}

.megamenu-footer {
  background-color: var(--accent-color);

  padding: 8px 32px;

  color: var(--white);

  font-size: 18px;

  font-weight: 600;
}

.megamenu-footer a {
  font-size: 20px !important;

  font-weight: 600 !important;

  line-height: 28px !important;
}

.main-navigation > ul .menu-item-has-children ul.sub-menu {
  padding: 32px;
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.main-navigation > ul .mega-menu.menu-item-has-children ul.sub-menu {
  padding: 0px !important;
}

.main-navigation
  > ul
  .menu-item-has-children
  .sub-menu
  .menu-item-has-children
  .sub-menu {
  right: -300px;
  top: -20px;
  padding: 8px 32px;
}

.main-navigation > ul .menu-item-has-children ul.sub-menu li {
  list-style: none;
  position: relative;
}

.menu-home-menu .menu-item-has-children .sub-menu li a {
  color: black !important;
}

.main-navigation > ul .menu-item-has-children ul.sub-menu li > a {
  color: black !important;
}

.main-nav .container > div {
  padding-top: 8px;
  padding-bottom: 8px;
}

.megamenu-footer a {
  text-decoration: underline;
}

.mobile-sliding-menu {
  position: fixed;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  min-height: 100vh;

  background-color: var(--white);

  z-index: 999;

  transition: left 0.3s ease-in-out;

  overflow-y: auto;

  overflow-x: hidden;
}

/* Prevent body scroll when menu is open */

body.menu-open {
  overflow: hidden;
}

.page-template-front-page-php .process-section,
.page-template-front-page-php .industries {
  background-color: var(--bg-offwhite);
}

.card {
  border-radius: 8px !important;
}

/* Footer Style */

footer * {
  color: var(--white);

  text-decoration: none;
}

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

.footer-link-heading {
  font-size: 18px;

  color: var(--white);

  font-weight: 400;

  line-height: 28px;
}

.middle-footer {
  background-color: #201f26;
  overflow: hidden;
}
.middle-footer a {
  font-size: 18px;
}
.footer-services {
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.footer-links ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-links ul li a {
  font-size: 16px;
  color: #828282;
}

.footer-links ul li:not(:last-child) {
  margin-bottom: 12px;
}

ul.social-icons li {
  margin-bottom: 0px !important;
}

.footer-links.newsletter label {
  color: #828282;
}

.newsletter .wpcf7-email {
  border: 1px solid var(--white);

  border-radius: 8px;

  height: 46px;

  background-color: color(srgb 1 1 1 / 0.7) !important;

  width: 100%;

  font-size: 16px;

  padding: 16px;

  color: var(--black);
}

.newsletter form.wpcf7-form p {
  margin-bottom: 24px !important;
}

.pre-footer {
  background-image: url("../../assets/images/performance.png");

  background-repeat: no-repeat;

  background-size: cover;

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

footer .pre-footer {
  padding: 140px 0 32px;
  background-image: url("../../assets/images/footer-location.jpg");
}

.trust-badge {
  margin-bottom: 37px;
}

#menu-ai-footer-2 li:first-child {
  position: relative;
}

#menu-ai-footer-2 li:first-child::after {
  content: "Trending";
  position: absolute;
  left: 79px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 400;
  padding: 2px 8px;
  color: #ED6B00;
  background-color: rgba(237, 107, 0, 0.16);
  border-radius: 40px;
  white-space: nowrap;
}

/* prevent overlap */
#menu-ai-footer-2 li:first-child a {
  display: inline-block;
  padding-right: 90px;
}

/* footer-block custom css start*/

.contact-info-section {
  position: relative;
  background-color: var(--bg-offwhite);
}

#contactSection .contact-form-wrapper {
  /* padding: 96px 0px; */
  position: relative;
}

.wpcf7-form-control:not(button) {
  border: 0px;
}

button.wpcf7-form-control.wpcf7-submit.btn.btn-primary {
  padding: 10px 24px;

  border-image: none !important;

  border-color: #5e64ef;
}

.wpcf7-form .btn-primary:focus span {
  color: #5e64ef;
}

.contact-list a {
  color: black !important;

  text-decoration: none;

  font-size: 18px;
}

.contact-list {
  margin-bottom: 0px;
}

.contact-form ::placeholder,
.newsletter .wpcf7-email::placeholder {
  color: black !important;
}

.contact-form p {
  margin-bottom: 8px !important;
}

.contact-list li {
  display: flex;

  gap: 8px;

  align-items: center;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="file"],
.contact-form textarea {
  width: 100%;

  padding: 14px 18px;

  border: 1px solid #bfbfbf;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.88);

  color: #000;

  font-size: 16px;

  outline: none;

  height: 48px;
}

.contact-form textarea {
  display: block;
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.88);
}

.contact-form input[type="file"] {
  padding: 10px;

  cursor: pointer;

  color: #fff;
}

.contact-form textarea {
  min-height: 200px;

  resize: none;
}

.contact-form input[type="submit"],
.contact-form button {
  border-radius: 30px;

  padding: 16px 28px;

  font-weight: 600;

  text-transform: uppercase;

  background-color: #5e64ef !important;

  color: white !important;

  text-transform: inherit;

  /* white-space: break-spaces; */
  height: 100%;
  width: 100%;
}

.contact-form .wpcf7-spinner {
  position: absolute !important;
  left: 7px;
  bottom: 9px;
}

.timeline {
  display: flex;

  justify-content: space-between;

  position: relative;

  width: 100%;
}

.timeline::after {
  content: "";

  position: absolute;

  top: 23px;

  z-index: 1;

  width: 70%;

  height: 2px;

  background: none;

  border-top: 1px solid black;
}

.step {
  width: 33%;
  position: relative;
  align-items: self-start;

  display: flex;

  flex-direction: column;
}

.step-box {
  width: 32px;

  height: 32px;

  font-family: "Outfit", sans-serif;

  color: white;

  font-size: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  outline: 1px solid #5e64ef;

  margin: 8px 0px;

  background-color: #5e64ef;

  border-radius: 30px;

  z-index: 2;
}

.timeline p {
  margin-bottom: 0px !important;
}

h2.footer-heading {
  font-size: 28px !important;
}

/* #wpcf7-f16237-p16238-o1 form.sent .wpcf7-response-output {
  display: none !important;
} */

.wpcf7-f15410 form.sent .wpcf7-response-output,
.wpcf7-f15865 form.sent .wpcf7-response-output {
  display: none !important;
}

/* ///contact form file upload */

.upload-wrapper {
  position: relative;
  width: 100%; /* ensure full width */
}

.file-name {
  flex: 1; /* take all remaining space inside the label */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 1rem; /* leave space for the icon */
  color: black; /* optional: make it lighter than label text */
  font-size: 16px;
  pointer-events: none; /* allow clicks to pass through to label */
}

.upload-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 30px;
  padding: 0 1.5rem;
  height: 48px;
  line-height: 1;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  width: 100%; /* ensure label is full width */
}

.upload-label img {
  width: 24px;
  height: 24px;
  margin-left: 1rem;
}

/* footer block custom css end */

.custom-tabs.text-center {
  display: flex;
}

button.tab-btn.show {
  color: var(--primary-color) !important;

  border-bottom: 2px solid var(--primary-color);

  border-radius: 0;

  font-size: 16px;

  line-height: 24px;

  font-weight: 600;
}

.custom-tabs .tab-btn {
  flex: 1;

  text-align: center;

  padding: 0.75rem 1rem;

  background: #f8f8f8;

  border-top: 1px solid #eaeaea;

  border-right: 1px solid #eaeaea;

  border: 1px solid #eaeaea;

  font-size: 16px;

  font-weight: 400;

  cursor: pointer;

  transition: background 0.2s ease;

  color: black !important;
}

/* .mobile-wrap {
  position: relative;
}

.mobile-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0) 0%, 
    rgba(0, 0, 0, 0.6) 100% 
  );
  pointer-events: none;
} */

/* =============================================================================
   BLOG POSTS STYLES
   ============================================================================= */

.blog-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.blog-post-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-post-card {
  background: var(--blog-card-bg);
  border-radius: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-post-thumbnail {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.blog-post-thumbnail img {
  width: 100%;
  height: 264px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-post-content {
  padding: 0 32px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-title,
.white-paper-title {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
}

.blog-post-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-title a:hover {
  color: var(--primary-color);
}

.post-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-post-footer {
  margin-top: auto;
  font-size: 18px;
}

.blog-read-more {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.blog-read-more:hover {
  color: var(--primary-dark);
}

.blog-load-more-container {
  text-align: center;
  margin-top: 2rem;
}

.blog-load-more-btn:hover {
  background: #e9ecef;
  color: #495057;
  border-color: #adb5bd;
}

.blog-load-more-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.blog-load-more-btn .btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.no-posts-found,
.no-more-posts {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.blog-error-message {
  text-align: center;
  margin-top: 1rem;
}

.post-email .d-flex.gap-2 {
  flex-direction: column;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-section-title {
    font-size: 2rem;
  }

  .blog-post-content {
    padding: 1rem;
  }

  .blog-post-title {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .blog-section-title {
    font-size: 1.75rem;
  }

  .blog-post-thumbnail {
    height: 180px;
  }
}

/* =============================================================================
   FEATURED POSTS STYLES
   ============================================================================= */
.featured-posts-swiper .swiper-slide {
  height: auto;
}

.featured-card {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 32px;
}

.featured-thumb {
  overflow: hidden;
  min-height: 260px;
}

.featured-title a {
  color: var(--text-primary);
  text-decoration: none;
}

.featured-title a:hover {
  color: var(--primary-color);
}

.featured-excerpt {
  color: var(--text-secondary);
}

.featured-meta .reading-time {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Force wrapper to respect container width and avoid inline width side-effects */
.featured-posts-swiper,
.featured-posts-swiper .swiper-wrapper {
  width: 100% !important;
  border: 1px solid #faf9ff;
  box-shadow: var(--shadow);
}

.featured-card .row {
  align-items: stretch;
}

.featured-thumb img {
  width: 100% !important;
  height: 535px !important;
  object-fit: cover !important;
}

.nav-btn img {
  background-color: #ffffff !important;
  border-radius: 8px !important;
  padding: 11px;
  border: 1px solid var(--border-light-gray);
}

.contact-info p {
  margin-bottom: 12px;
}

/* /////search form css */

.search-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 400px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--bg-light-offwhite);
}

.search-field {
  border: none;
  height: 48px;
  font-size: 16px;
  outline: none;
  background: transparent;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.search-field::placeholder {
  color: #b7b7b7;
}

.search-submit {
  background: none;
  border: none;
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.search-submit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 24px;
  height: 24px;
  background-image: url("../images/Magnifer.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.search-submit:hover {
  background-color: #f0f0f0;
}

.search-submit:focus,
.search-submit:active {
  outline: none;
  background-color: #e0e0e0;
}

.search-form-wrapper {
  flex-direction: row-reverse;
}

.search-field.form-control {
  box-shadow: none;
  padding: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

*,
::after,
::before {
  box-sizing: border-box !important;
}

/* single post page style */

.post-hero {
  height: 100vh;
  padding-bottom: 72px;
}

.post-email .wpcf7-email {
  width: 100%;
  border: 1px solid var(--bg-light-offwhite);
  height: 48px;
  border-radius: 8px;
  padding: 0 17px;
}

.post-email .wpcf7 br {
  display: none;
}

ul.post-toc-list {
  padding: 0;
}

ul.post-toc-list li {
  list-style: none;
  font-size: 20px;
  border-left: 4px solid var(--grad-color-1);
  padding-left: 8px;
  margin-bottom: 24px;
}

ul.post-toc-list li a {
  color: black;
}

.single-post .entry-content {
  padding: 0 24px;
}

.projects-filter__select {
  height: 48px;
  border-radius: 32px;
  padding-left: 24px;
}

.form-select {
  background-size: 16px;
  background-position: right 1.2rem center;
}

.post-type span {
  background-color: white;
  color: black;
  padding: 8px 24px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 20px;
}

.gal-feature-content {
  padding: 32px;
}

span.solution-category {
  background-color: white;
  color: black;
  padding: 8px 24px;
  border-radius: 32px;
  font-size: 14px;
  line-height: 22px;
  border: 1px solid #d5d5d5;
  display: inline-block;
  align-self: flex-start;
}

.shadow-top-only {
  box-shadow: 0px -6px 12px rgba(0, 0, 0, 0.12);
}

.shadow-bottom-only {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.12);
}

.our-solution p,
.client-challenge p {
  margin-bottom: 24px;
}

.our-solution ul li,
.client-challenge ul li {
  font-size: 18px;
  line-height: 28px;
}

.our-solution ul.strong-li li,
.client-challenge ul.strong-li li {
  margin-bottom: 28px;
  font-size: 18px;
  font-weight: 600;
}

ul.strong-li {
  list-style-type: disc;
  padding-left: 20px;
}

ul.strong-li li::marker {
  font-size: 0.7em;
  color: #000;
}

.client-challenge strong {
  font-weight: 600;
}

ul.li-space-24 li {
  margin-bottom: 24px;
}

.key-feaures ul {
  padding-left: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}

.key-feaures ul li {
  position: relative;
  padding: 16px 24px 16px 60px;
  box-shadow: var(--shadow) !important;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  font-size: 18px;
  list-style: none;
  margin-bottom: 0;
  height: 100%;
}

.key-feaures ul li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 26px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26' fill='none'%3E%3Crect width='26' height='26' rx='13' fill='%235E64EF' fill-opacity='0.08'/%3E%3Cpath d='M19 8.5L10.75 16.75L7 13' stroke='%235E64EF' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 767px) {
  .key-feaures ul {
    grid-template-columns: 1fr;
  }
}

.results .card-body {
  padding: 32px;
}

.solution-item .blog-post-card {
  padding: 32px;
}

.underline-blue::after {
  background-color: var(--grad-color-1);
}

.underline-purple::after {
  background-color: var(--grad-color-2);
}

.underline-violet::after {
  background-color: var(--grad-color-3);
}

.underline-cyan::after {
  background-color: var(--grad-color-1);
}

.footer-links.newsletter .wpcf7-form-control.btn {
  height: 48px;
  line-height: 48px;
  padding: 0 16px;
}

.contact-form-wrapper .wpcf7-response-output {
  margin: 0 !important;
  color: var(--white);
  font-size: 18px;
  border: 0 !important;
}

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

ul.post-toc-list li {
  padding: 0px 10px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

ul.post-toc-list li.active {
  border-left: 4px solid var(--grad-color-1);
  font-weight: 500;
  line-height: 28px;
}

ul.post-toc-list li:hover {
  border-left: 4px solid var(--grad-color-1);
  font-weight: 500;
}

.sticky-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  /* z-index: 10; */
}

.post-content .entry-content h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.post-content .entry-content h3 {
  margin-bottom: 24px;
}

.post-content .col-lg-3:first-child .sticky-sidebar {
  padding-right: 5px;
}

.post-content .col-lg-3:last-child .sticky-sidebar {
  padding-left: 5px;
}

.post-content .col-lg-6 {
  position: relative;
  z-index: 1;
}

.single-post .contact-info-section {
  background-color: var(--white);
}

.industry-leader-h {
  margin-bottom: 33px;
}

.footer-bottom-menu span.nav-links {
  display: flex;
  gap: 16px;
}

.contact-info a {
  color: var(--black);
}

.cover-height {
  min-height: 240px;
}

.post-thumbnail {
  position: relative;
}

.post-thumbnail.mb-4 img {
  width: 587px;
  height: 440px;
  object-fit: cover;
}


.project-category {
  position: absolute;
  top: 32px;
  right: 32px;
  background: #fff;
  color: black;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  display: inline-block;
  z-index: 2;
  white-space: nowrap;
  box-shadow: var(--shadow);
  letter-spacing: 0;
}

/* Equal height Swiper slider cards */
.keep-reading-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.keep-reading-swiper .blog-post-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.keep-reading-swiper .blog-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.keep-reading-swiper .blog-post-card:hover {
  transform: translateY(-5px);
}

.keep-reading-swiper .blog-post-thumbnail {
  flex-shrink: 0;
  padding: 32px 32px 12px 32px;
}

.keep-reading-swiper .blog-post-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 12px 32px 32px;
}

.keep-reading-swiper .blog-post-title {
  flex-shrink: 0;
  margin-bottom: 12px;
}

.keep-reading-swiper .blog-post-excerpt {
  flex-grow: 1;
  margin-bottom: 12px;
}

.keep-reading-swiper {
  padding: 2px 10px;
}

/* .post-email .wpcf7 form .wpcf7-response-output {
    margin: 0.5em 0;
} */

.wpcf7-response-output {
  margin: 0 !important;
}
.author-info {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 2px;
}
.featured-card .blog-read-more {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

/* .clutch_logo iframe {
    filter: brightness(0) invert(1);
} */
.post-email p {
  display: none;
}
.post-email label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.author.align-baseline {
  align-items: baseline !important;
}
.post-content ul.wp-block-list li {
  font-size: 18px;
}
.content.our-solution b,
.challenges-solution b {
  font-weight: 600 !important;
}

.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}

.submitting {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip:not(:first-of-type) {
  display: none;
}
.menu-close-text {
  display: none;
}
.single-post .entry-content h3 strong {
font-weight: unset;
}