@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --inter: "Inter";
  --cg-container: 1620px;
  --blue: #1e88e5;
  --black: #111111;
  --dark: #1a1a1a;
  --grey: #555555;
  --white: #ffffff;
  --lightblue: #e5f1fc;
  --green-light: #17ad87;
  --yellow: #f2c200;
  --orange: #bc4923;
  --purple: #b007ed;
  --cyan-light: #00cfd9;
  --blue-filter: brightness(0) saturate(100%) invert(49%) sepia(20%) saturate(2875%) hue-rotate(176deg) brightness(90%) contrast(100%);
  --green-light-filter: brightness(0) saturate(100%) invert(48%) sepia(67%) saturate(465%) hue-rotate(114deg) brightness(99%) contrast(99%);
  --yellow-filter: brightness(0) saturate(100%) invert(75%) sepia(21%) saturate(5955%) hue-rotate(10deg) brightness(106%) contrast(105%);
  --orange-filter: brightness(0) saturate(100%) invert(31%) sepia(34%) saturate(2194%) hue-rotate(342deg) brightness(102%) contrast(93%);
  --purple-filter: brightness(0) saturate(100%) invert(19%) sepia(83%) saturate(6474%) hue-rotate(282deg) brightness(95%) contrast(114%);
  --cyan-light-filter: brightness(0) saturate(100%) invert(68%) sepia(83%) saturate(1670%) hue-rotate(130deg) brightness(89%) contrast(105%);
  --pink-filer: brightness(0) saturate(100%) invert(36%) sepia(80%) saturate(6394%) hue-rotate(298deg) brightness(92%) contrast(100%);
  --cyan-lightA50: #00bcd4;
  --pink: #E51EB3;
  --light-blue-bg: #f8fcff;
  --border-color: #dfdfdf;
  --tab-bg-color: #fffffa;
  --blue-ring-color: #cee9ff;
  --blue-card-bg: #eff6ff;
  --border-card-color: #dedede;
  --light-grey-border-color: #e1e1e1;
  --blue-btn-shadow:
    0 12.292px 18.438px -3.688px rgba(30, 136, 229, 0.25),
    0 4.917px 7.375px -4.917px rgba(30, 136, 229, 0.25);
  /* Font Sizes */
  --font-54: 54px;
  --font-52: 52px;
  --font-46: 46px;
  --font-44: 44px;
  --font-36: 36px;
  --font-32: 32px;
  --font-30: 30px;
  --font-26: 26px;
  --font-24: 24px;
  --font-22: 22px;
  --font-20: 20px;
  --font-18: 18px;
  --font-16: 16px;
  --font-14: 14px;
}

html {
  scroll-behavior: smooth;
}

/* Dynamic Scroll Margin for Anchor Link Targets */
section[id],
div[id],
h2[id],
h3[id] {
  scroll-margin-top: 130px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a:focus-visible {
  outline: none !important;
}

.post,
.page {
  margin: 0;
}

.row {
  margin: 0;
}

p,
ul {
  margin: 0;
  padding: 0;
}

.row>* {
  padding-left: 0;
  padding-right: 0;
}

body {
  width: 100%;
  font-family: var(--inter);
}

a {
  text-decoration: none;
  color: inherit;
}

.cg-container {
  width: 100%;
  max-width: var(--cg-container);
  margin: 0 auto;
}

.py-80 {
  padding: 80px 0px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-80 {
  padding-top: 80px;
}

h1 {
  color: var(--black);
  font-family: var(--inter);
  font-size: var(--font-54);
  font-style: normal;
  font-weight: 800;
  line-height: 136%;
  text-transform: capitalize;
}

h1 span {
  color: var(--blue);
}

h2 {
  color: var(--black);
  text-align: center;
  font-family: var(--inter);
  font-size: var(--font-36);
  font-style: normal;
  font-weight: 800;
  line-height: 122%;
}

h3 {
  color: var(--black);
  font-family: var(--inter);
  font-size: var(--font-26);
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: capitalize;
}

p {
  color: var(--grey);
  font-family: var(--inter);
  font-size: var(--font-20);
  font-style: normal;
  font-weight: 400;
  line-height: 134%;
}

p b {
  color: var(--black);
  font-weight: 700;
}

a.common-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  font-family: var(--inter);
  font-size: var(--font-18);
  font-style: normal;
  font-weight: 600;
  line-height: 134%;
  border-radius: 12px;
  background: var(--blue);
  box-shadow:
    0 12px 18px -4px rgba(30, 136, 229, 0.25),
    0 4px 8px -4px rgba(30, 136, 229, 0.25);
  padding: 20px 26px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

a.common-btn::before,
a.common-btn-white::before,
a.common-btn-white-blue-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

a.common-btn:hover {
  box-shadow:
    0 20px 30px -10px rgba(30, 136, 229, 0.4),
    0 10px 15px -5px rgba(30, 136, 229, 0.3);
  background: #2196f3;
}

a.common-btn:hover::before,
a.common-btn-white:hover::before,
a.common-btn-white-blue-border:hover::before {
  left: 100%;
}

a.common-btn:active,
a.common-btn-white:active,
a.common-btn-white-blue-border:active {
  transform: translateY(-2px) scale(0.98);
}

a.common-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--blue);
  text-align: center;
  font-family: var(--inter);
  font-size: var(--font-18);
  font-style: normal;
  font-weight: 600;
  line-height: 134%;
  padding: 18px 24px;
  border-radius: 12px;
  border: 1px solid var(--light-grey-border-color);
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  background-color: var(--white);
}

a.common-btn-white-blue-border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--blue);
  text-align: center;
  font-family: var(--inter);
  font-size: var(--font-18);
  font-style: normal;
  font-weight: 600;
  line-height: 134%;
  padding: 18px 24px;
  border-radius: 12px;
  border: 1px solid var(--blue);
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  background-color: var(--white);
}

a.common-btn-white:hover,
a.common-btn-white-blue-border:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 15px 35px -10px rgba(30, 136, 229, 0.5);
}

a.common-btn-white:active,
a.common-btn-white-blue-border:active {
  transform: translateY(-2px) scale(0.98);
}

.common-bg-gradient {
  background: url("../images/common-bg-gradiant.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.common-bg-gradient-light {
  background: url("../images/common-bg-gradiant-light.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ------------------- */
/* Coman Hero area */
.coman-hero-bg {
  min-height: 637px;
}

.inner-comman-hero-bg {
  min-height: calc(100dvh - 300px);
  display: flex;
  padding: 40px 0;
  align-items: center;
  justify-content: center;
}

.inner-comman-hero-bg .inner-hero-content {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}

.inner-comman-hero-bg h1 {
  color: var(--white);
  font-size: var(--font-54);
  text-align: center;
  font-weight: 800;
  line-height: 135%;
  text-transform: capitalize;
}

.inner-comman-hero-bg p {
  color: var(--white);
  text-align: center;
  font-size: var(--font-20);
  font-weight: 400;
  line-height: 180%;
  max-width: 1462px;
  margin: 0 auto;
}

.inner-comman-hero-bg p b {
  color: var(--white);
  font-weight: 700;
}

.inner-comman-hero-bg p {
  margin-bottom: 20px;
}

.inner-hero-content {
  align-items: center;
}

.inner-hero-content a.common-btn {
  width: fit-content;
}

.row-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 98px;
  padding: 60px 0;
}

.right-grid p {
  margin: 20px 0;
}

.right-grid p:last-of-type {
  margin-top: 0;
  margin-bottom: 40px;
}

.banner-chips {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-chips a {
  border-radius: 10px;
  border: 1px solid var(--blue);
  background: var(--white);
  padding: 8px 20px;
  min-width: 290px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.banner-chips>span {
  border-radius: 10px;
  border: 1px solid var(--blue);
  background: var(--white);
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  grid-gap: 10px;
  color: var(--black);
  font-size: var(--font-20);
  font-weight: 500;
  line-height: 194%;
}

.banner-chips a span {
  color: var(--black);
  font-size: var(--font-20);
  font-weight: 500;
  line-height: 194%;
}

/* Engagement Modal Our Modal Section */
.bluegredinentbg {
  border-radius: 20px;
  background: url("../images/bluegredinentbg.svg") no-repeat center center/cover;
}

.engagementmodal h2 {
  color: var(--white);
  margin-bottom: 30px;
}

.engagementgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  padding: 0 150px;
}

.engementbox {
  border-radius: 10px;
  background: var(--white);
  padding: 20px;
  box-shadow:
    0 12.292px 18.438px -3.688px rgba(0, 0, 0, 0.1),
    0 4.917px 7.375px -4.917px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.engementbox h4 {
  color: var(--black);
  text-align: center;
  font-family: var(--inter);
  font-size: var(--font-22);
  font-style: normal;
  font-weight: 600;
  line-height: 136%;
  margin-top: 10px;
}

/* ------------------- */
section[id] {
  scroll-margin-top: 120px;
}

/* Base Styles End */
/* Navbar Styling */
.navbar-brand img {
  object-fit: contain;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.responsive-cta {
  display: none;
}

header.custom-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
}

main {
  padding-top: 98px;
}

/* Base Mega Menu Styles */
.cg-custom-menu {
  width: 100%;
  position: relative;
}

.cg-custom-menu>ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.cg-custom-menu>ul>li {
  padding: 10px 0;
  position: relative;
}

.cg-custom-menu>ul>li.static-mega {
  position: static;
}

.cg-custom-menu>ul>li>a {
  color: var(--black);
  text-decoration: none;
  font-size: var(--font-18);
  font-weight: 600;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  font-family: var(--inter);
  position: relative;
  padding: 10px 0;
}

/* Dropdown Arrow */
.cg-custom-menu>ul>li.has-mega>a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  margin-left: 8px;
  margin-top: -3px;
}

.cg-custom-menu>ul>li.has-mega:hover>a::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

/* Underline Animation */
.cg-custom-menu>ul>li>a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--blue);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cg-custom-menu>ul>li>a:hover::before,
.cg-custom-menu>ul>li>a.active-link::before {
  width: 100%;
}

.cg-custom-menu>ul>li:hover>a,
.cg-custom-menu>ul>li>a.active-link {
  color: var(--blue);
}

.cg-custom-menu>ul>li>.mega-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform-origin: top center;
  transform: translateX(-50%) translateY(20px) scaleY(0.95);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  box-shadow:
    0 40px 80px -20px rgba(30, 136, 229, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  border-top: 4px solid var(--blue);
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  max-width: 90vw;
  gap: 60px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  min-width: max-content;
}

.cg-custom-menu>ul>li>.mega-menu.grid-3-2 {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  row-gap: 50px;
  column-gap: 60px;
}

.cg-custom-menu .mega-column {
  display: flex;
  flex-direction: column;
}

.cg-custom-menu .mega-heading {
  font-weight: 800;
  font-size: var(--font-18);
  color: var(--black);
  margin-bottom: 24px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
  transition: color 0.3s ease;
}

.cg-custom-menu .mega-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.cg-custom-menu .mega-heading:hover {
  color: var(--blue);
}

.cg-custom-menu .mega-heading:hover::after {
  width: 50px;
}

.cg-custom-menu .mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cg-custom-menu .mega-column ul li {
  padding: 0;
}

.cg-custom-menu .mega-column ul li a {
  color: var(--grey);
  font-size: var(--font-16);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  position: relative;
}

.cg-custom-menu .mega-column ul li a::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 6px;
  height: 6px;
  background-color: var(--blue);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cg-custom-menu .mega-column ul li a:hover {
  color: var(--blue);
  transform: translateX(16px);
}

.cg-custom-menu .mega-column ul li a:hover::before {
  transform: translateY(-50%) scale(1);
}

/* Footer Section */
.footer-section {
  background-color: var(--light-blue-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 300px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 0px;
}

.footer-logo img {
  max-width: 220px;
}

.footer-card {
  border-radius: 20px;
  border: 1px solid #1e88e5;
  background: linear-gradient(120deg,
      #e4f3ff -1.34%,
      #f9fcff 63.46%,
      #e4f3ff 100%);
  height: fit-content;
  padding: 30px;
}

.footer-column h4 {
  color: var(--dark);
  font-family: var(--inter);
  font-size: var(--font-20);
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-column h4::before {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  width: 50px;
  bottom: -20px;
  background-color: var(--dark);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style-type: none;
}

.footer-column ul li a {
  color: var(--grey);
  font-size: var(--font-16);
  font-weight: 500;
  line-height: 150%;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--blue);
  padding-left: 5px;
}

.footer-bottom-grid {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

footer hr {
  opacity: 1;
  margin: 0;
}

.terms-condition ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.terms-condition ul li,
.copyright p,
.design-by p {
  color: var(--grey);
  font-family: var(--inter);
  font-size: var(--font-14);
  font-weight: 600;
  line-height: 150%;
}

.terms-condition ul li:not(:first-of-type) {
  position: relative;
}

.terms-condition ul li:not(:first-of-type)::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  width: 6px;
  background-color: var(--grey);
  border-radius: 50%;
}

.footer-contact-links {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
}

.footer-card p {
  color: var(--grey);
  font-family: var(--inter);
  font-size: var(--font-18);
  font-weight: 400;
  line-height: 182%;
  margin-top: 16px;
}

.footer-contact-links ul li {
  list-style-type: none;
}

.footer-contact-links ul:first-of-type li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-links ul:first-of-type li a {
  color: var(--grey);
  font-size: var(--font-18);
  font-weight: 500;
  line-height: 190%;
  transition: all 0.3s ease;
}

.footer-contact-links ul:last-of-type {
  display: flex;
  gap: 6px;
}

.footer-contact-links ul:last-of-type li {
  min-width: 42px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--blue);
  transition: all 0.3s ease;
}

.footer-contact-links ul:last-of-type li img {
  transition: all 0.3s ease;
}

.footer-contact-links ul:last-of-type li:hover {
  background-color: var(--blue);
}

.footer-contact-links ul:last-of-type li:hover img {
  filter: brightness(0) invert(1);
}

/* Home Page Design Start */
.hero-main {
  position: relative;
}

.hero-inner-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 16px;
}

.hero-content>span {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  border: 1px solid var(--light-grey-border-color);
  background: var(--white);
  padding: 6px 14px;
  color: var(--blue);
  font-size: var(--font-18);
  font-style: italic;
  font-weight: 600;
  line-height: 190%;
  width: fit-content;
  margin-bottom: 26px;
}

.hero-content p {
  line-height: 180%;
  margin-bottom: 30px;
}

.highlight-content p {
  color: var(--blue);
  font-size: var(--font-20);
  font-style: italic;
  font-weight: 600;
  line-height: 180%;
  margin-bottom: 60px;
}

.hero-btn {
  display: flex;
  gap: 20px;
}

/* Swiper Customization */
.hero-slider.swiper {
  position: static;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--black);
  opacity: 0.3;
  transition: all 0.3s ease;
  right: 0;
}

.swiper-button-next {
  right: 40px;
}

.swiper-button-prev {
  left: 40px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
  color: var(--blue);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;
}

.swiper-pagination {
  bottom: 50px !important;
}

.swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.2;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--blue);
  border-radius: 5px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.stat-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 90px;
  width: 1px;
  background: var(--light-grey-border-color);
}

.stat-item h2,
.stat-item span {
  font-size: var(--font-46);
  font-weight: 700;
  color: var(--black);
  display: inline-block;
  margin: 0;
  line-height: 120%;
}

.stat-item p {
  width: 100%;
  font-size: var(--font-22);
  color: var(--grey);
  margin-top: 8px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.problem-card,
.vision-card {
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(30, 136, 229, 0.1);
  transition: transform 0.3s ease;
}

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

.problem-card h3,
.vision-card h3 {
  font-size: var(--font-36);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--black);
  line-height: 120%;
}

.problem-card h4,
.vision-card h4 {
  font-size: var(--font-22);
  font-weight: 600;
  color: var(--black);
  line-height: 180%;
  margin-bottom: 20px;
}

.problem-card h4 span,
.vision-card h4 span {
  color: var(--blue);
  font-weight: 700;
  display: block;
  font-size: var(--font-24);
  margin-bottom: 16px;
}

.problem-card p,
.vision-card p {
  color: var(--grey);
  font-size: var(--font-20);
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 12px;
}

.problem-card ul,
.vision-card ul {
  list-style: none;
  background: var(--white);
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
}

.problem-card ul li,
.vision-card ul li {
  display: flex;
  align-items: start;
  font-size: var(--font-20);
  color: var(--black);
  font-weight: 600;
  position: relative;
  padding-left: 35px;
  line-height: 150%;
}

.problem-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  background-image: url("../images/wrong.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.vision-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  background-image: url("../images/correct.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.card-footer p {
  line-height: 175%;
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header span {
  display: inline-block;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--light-grey-border-color);
  color: var(--blue);
  border-radius: 50px;
  font-size: var(--font-18);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header p {
  margin-top: 10px;
}

.deliver-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.deliver-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 4px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.deliver-card:hover {
  box-shadow: 0 2px 20px 0 rgba(30, 136, 229, 0.2);
}

.deliver-card.border-blue {
  border-top-color: var(--blue);
}

.deliver-card.border-green {
  border-top-color: var(--green-light);
}

.deliver-card.border-yellow {
  border-top-color: var(--yellow);
}

.deliver-card.border-orange {
  border-top-color: var(--orange);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box.bg-light-blue {
  background-color: #f4faff;
}

.icon-box.bg-light-green {
  background-color: #f1fffa;
}

.icon-box.bg-light-yellow {
  background-color: #fffdf4;
}

.icon-box.bg-light-orange {
  background-color: #fff7f5;
}

.title-box h3 {
  font-size: var(--font-22);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 150%;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 50px;
  font-size: var(--font-16);
  font-weight: 600;
  line-height: 180%;
  border: 1px solid var(--light-grey-border-color);
}

.badge-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pill-blue {
  background: #f4faff;
  color: var(--blue);
  border-color: #1e88e54d;
}

.pill-blue::before {
  background: var(--blue);
}

.pill-green {
  background: #f1fffa;
  color: var(--green-light);
  border-color: #17ad874d;
}

.pill-green::before {
  background: var(--green-light);
}

.pill-yellow {
  background: #fffdf4;
  color: var(--yellow);
  border-color: #facb0e4d;
}

.pill-yellow::before {
  background: var(--yellow);
}

.pill-orange {
  background: #fff7f5;
  color: var(--orange);
  border-color: #bc49234d;
}

.pill-orange::before {
  background: var(--orange);
}

.deliver-card ul {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deliver-card ul li {
  font-size: var(--font-20);
  color: var(--grey);
  font-weight: 400;
  position: relative;
  line-height: 150%;
  padding-left: 20px;
}

.deliver-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: bold;
}

.deliver-card.border-green ul li::before {
  color: var(--green-light);
}

.deliver-card.border-yellow ul li::before {
  color: var(--yellow);
}

.deliver-card.border-orange ul li::before {
  color: var(--orange);
}

.deliver-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
  cursor: pointer;
}

.deliver-card .card-footer span {
  font-size: var(--font-20);
  font-weight: 500;
  line-height: 150%;
  color: var(--black);
}

.deliver-card .card-footer img {
  width: 24px;
  transition: transform 0.3s ease;
}

.deliver-card:hover .card-footer img {
  transform: translateX(5px);
}

.section-badge-wrapper {
  margin-bottom: 20px;
}

.progress-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.progress-item {
  width: 100%;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.progress-info h3 {
  color: var(--black);
  font-size: var(--font-20);
  font-weight: 600;
  line-height: 170%;
}

.progress-info h3 span {
  color: #99a1af;
  font-size: var(--font-16);
  font-weight: 600;
  line-height: 125%;
  display: inline-block;
  margin-right: 12px;
}

.progress-info .value {
  color: var(--black);
  font-weight: 700;
  font-size: var(--font-18);
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background: #eef2f6;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 10px;
  transition: width 1.5s cubic-bezier(0.1, 0.42, 0.41, 1);
}

.bg-blue {
  background-color: #e5e7eb;
}

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

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

.bg-blue-dark {
  background-color: var(--blue);
}

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

.outcome-btns {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.outcome-content .section-header,
.outcome-content .section-header h2 {
  text-align: start;
}

.outcome-content {
  background-color: var(--light-blue-bg);
  padding: 100px;
  border-radius: 0 20px 20px 0;
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 740px;
  margin-right: 100px;
  align-items: center;
}

.outcome-image img {
  width: 100%;
}

/* Data That Drives Decisions */
.industry-section {
  background: linear-gradient(173deg,
      #fff -7.78%,
      #eff6ff 46.65%,
      #fdfdff 108.94%);
}

.industry-tab-wrapper {
  display: grid;
  grid-template-columns: 680px 1fr;
  gap: 50px;
}

.industry-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.industry-nav .nav-link {
  background: var(--white);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  transition: all 0.3s ease;
  color: var(--black);
  font-weight: 500;
  font-size: var(--font-18);
}

.industry-nav .nav-link .icon-box {
  width: 60px;
  height: 60px;
  background: #f8fbff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.industry-nav .nav-link:nth-child(1) .icon-box {
  background-color: #f1fffa;
}

.industry-nav .nav-link:nth-child(2) .icon-box {
  background-color: #f4faff;
}

.industry-nav .nav-link:nth-child(3) .icon-box {
  background-color: #fffdf4;
}

.industry-nav .nav-link:nth-child(4) .icon-box {
  background-color: #fff7f5;
}

.industry-nav .nav-link:nth-child(5) .icon-box {
  background-color: #fcf5ff;
}

.industry-nav .nav-link.active {
  background: var(--blue);
  color: var(--white);
}

.industry-nav .nav-link.active .icon-box {
  background: var(--white);
  color: var(--blue);
}

.industry-nav .nav-link.active .icon-box img {
  filter: brightness(0) saturate(100%) invert(46%) sepia(33%) saturate(2033%) hue-rotate(179deg) brightness(91%) contrast(97%);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 var(--pulse-color, rgba(23, 173, 135, 0.4));
  }

  70% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 0 10px rgba(23, 173, 135, 0);
  }

  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(23, 173, 135, 0);
  }
}

.industry-content {
  background: url("../images/data-driven.svg") no-repeat center center/cover;
  border-radius: 20px;
  padding: 30px;
}

.content-header {
  margin-bottom: 20px;
}

.content-icon {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background-color: var(--white);
}

.content-icon img {
  width: 40px;
  height: 40px;
}

.bg-light-green {
  background: #e6f7ef;
}

.text-green {
  color: var(--green-light);
}

.bg-light-blue {
  background: var(--lightblue);
}

.text-blue {
  color: var(--blue);
}

.bg-light-yellow {
  background: #fff9e6;
}

.text-yellow {
  color: var(--yellow);
}

.bg-light-orange {
  background: #fef0eb;
}

.text-orange {
  color: var(--orange);
}

.bg-light-purple {
  background: #f3efff;
}

.text-purple {
  color: #7c4dff;
}

.industry-content h3 {
  font-size: var(--font-30);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
  line-height: 120%;
}

.industry-content h4 {
  color: var(--black);
  font-size: var(--font-18);
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.industry-content p {
  font-size: var(--font-20);
  color: var(--grey);
  line-height: 150%;
  margin-bottom: 24px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.benefit-item {
  background: var(--white);
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.benefit-item .dot,
.risk-item .dot {
  min-width: 10px;
  min-height: 10px;
  background: var(--pulse-color, var(--green-light));
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: block;
}

.benefit-item span:not(.dot) {
  color: var(--black);
  font-size: var(--font-18);
  font-weight: 600;
  line-height: 130%;
}

.out-come-card {
  background-color: var(--white);
  padding: 10px 16px;
  border-radius: 12px;
  margin-top: 20px;
}

.out-come-card h4 {
  color: var(--blue);
  font-size: var(--font-20);
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 6px;
}

.out-come-card p {
  margin-bottom: 0;
}

.out-come-card p b {
  margin-bottom: 0;
  color: var(--black);
  font-size: var(--font-18);
  font-weight: 600;
  line-height: 133.333%;
}

.strategic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.strategic-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 14px 0 rgba(30, 136, 229, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.strategic-card h4 {
  font-size: var(--font-22);
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 150%;
}

.strategic-card .accent-line {
  width: 40px;
  height: 3px;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.strategic-card p {
  font-size: var(--font-20);
  color: var(--grey);
  line-height: 150%;
  margin: 0;
}

.strategic-card:hover .accent-line {
  width: 100%;
}

/* Nth-child Colors */
.strategic-card:nth-child(6n + 1) .accent-line {
  background: var(--green-light);
}

.strategic-card:nth-child(6n + 2) .accent-line {
  background: #1e88e5;
}

.strategic-card:nth-child(6n + 3) .accent-line {
  background: var(--yellow);
}

.strategic-card:nth-child(6n + 4) .accent-line {
  background: var(--orange);
}

.strategic-card:nth-child(6n + 5) .accent-line {
  background: #7c4dff;
}

.strategic-card:nth-child(6n + 6) .accent-line {
  background: var(--cyan-light);
}

.complete-finance-data .section-header,
.complete-finance-data .section-header h2 {
  text-align: start;
  margin-bottom: 0;
}

.complete-finance-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.complete-finance-left p {
  color: var(--grey);
  font-size: var(--font-20);
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 16px;
}

.complete-finance-left p:last-child {
  margin-bottom: 0;
}

/* Complete Finance Features Grid & Pulse Dot */
.finance-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.finance-feature-item {
  background: var(--white);
  padding: 24px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.finance-feature-item:hover {
  background: var(--blue);
  box-shadow: 0 15px 35px rgba(30, 136, 229, 0.4);
}

.finance-feature-item span:last-child {
  color: var(--black);
  font-size: var(--font-22);
  font-weight: 700;
  line-height: normal;
  transition: color 0.3s ease;
  line-height: 150%;
}

.finance-feature-item:hover span:last-child {
  color: var(--white);
}

.finance-feature-item .pulse-dot {
  transition: background 0.3s ease;
}

.finance-feature-item:hover .pulse-dot::after {
  background: var(--white);
}

.finance-feature-item:hover .pulse-dot::before {
  background: var(--white);
}

.pulse-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

/* The dark blue inner dot */
.pulse-dot::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--blue);
  /* Dark blue dot */
  border-radius: 50%;
  display: block;
  z-index: 2;
}

/* The pulsing effect */
.pulse-dot::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--blue);
  opacity: 0.4;
  border-radius: 50%;
  animation: dot-glow-pulse 2s infinite;
  z-index: 1;
}

@keyframes dot-glow-pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* Comparison Table Styling */
.comparison-table-container {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 0;
}

.comparison-table th {
  padding: 24px 30px;
  text-align: left;
  font-size: var(--font-20);
  font-weight: 700;
  color: var(--black);
  background: #e4f3ff;
  /* Brand light blue background for headers */
  border-right: 1px solid #efefef;
  /* Added vertical border */
}

.comparison-table th:last-child {
  border-right: none;
}

.comparison-table th.highlight-header {
  background: var(--blue);
  color: var(--white);
  border-right: none;
}

.comparison-table td {
  padding: 20px 30px;
  border-bottom: 1px solid #efefef;
  border-right: 1px solid #efefef;
  /* Added vertical border */
  font-size: var(--font-18);
  font-weight: 500;
  vertical-align: middle;
  color: #333;
}

.comparison-table td:last-child {
  border-right: none;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  vertical-align: middle;
}

.comparison-table .capability-cell {
  background: var(--light-blue-bg);
  color: var(--blue);
  font-weight: 600;
}

.comparison-table tr:hover td {
  background-color: #fcfdfe;
}

.comparison-table tr:hover .capability-cell {
  background-color: #f4f9ff;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.engagement-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* Transition Page Design Start */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.overview .content-box {
  margin-bottom: 50px;
}

.overview p {
  text-align: center;
  line-height: 150%;
}

.overview-item {
  background-color: var(--light-blue-bg);
  padding: 10px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 42px;
  transition: all 0.3s ease;
}

.overview-item span {
  color: var(--black);
  font-size: var(--font-20);
  font-weight: 600;
  line-height: 170%;
}

.overview-item::before {
  content: "";
  position: absolute;
  left: 20px;
  width: 6px;
  height: 6px;
  background-color: var(--black);
  border-radius: 50%;
}

/* Process Flow Design */
.process-flow-wrapper {
  margin-top: 50px;
  position: relative;
}

.process-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 90px;
  align-items: center;
}

.process-step {
  background: var(--white);
  padding: 16px;
  border-radius: 20px;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px 0 rgba(30, 136, 229, 0.25);
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
  height: 100%;
}

.process-step h4 {
  font-size: var(--font-22);
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  line-height: 150%;
}

/* Colorful underlines using after */
.process-step h4::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 3px;
  border-radius: 2px;
}

.process-step:nth-child(1) h4::after {
  background-color: var(--green-light);
}

.process-step:nth-child(2) h4::after {
  background-color: #1e88e5;
}

.process-step:nth-child(3) h4::after {
  background-color: var(--yellow);
}

.process-step:nth-child(4) h4::after {
  background-color: var(--orange);
}

.process-step:nth-child(5) h4::after {
  background-color: var(--purple);
}

.process-step p {
  padding-top: 24px;
  color: var(--black);
  text-align: center;
  font-size: var(--font-20);
  font-weight: 400;
  line-height: 150%;
}

/* Dotted Arrows using after */
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
  width: 50px;
  height: 20px;
  background: url("../images/dotted-arrow.svg") no-repeat center center;
  background-size: contain;
  opacity: 0.6;
  z-index: -1;
}

/* Ensure Section */
.ensure-section {
  margin-top: 60px;
}

.ensure-section>span {
  color: var(--grey);
  text-align: center;
  font-size: var(--font-20);
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
  display: inline-block;
}

.ensure-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ensure-item {
  border-radius: 10px;
  background: #f4faff;
  padding: 14px;
  box-shadow: 0 4px 14px 0 rgba(30, 136, 229, 0.08);
  min-width: 260px;
}

.ensure-item span {
  color: var(--black);
  font-size: var(--font-22);
  font-weight: 600;
}

/* Key Benefits Design */
.key-benefits {
  background: linear-gradient(0deg, #fff 0%, #f8fcff 100%);
}

.key-benefits-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
}

.key-benefits-left img {
  width: 100%;
  height: auto;
}

.key-benefits-right h2 {
  text-align: left;
  margin-bottom: 30px;
}

.benefits-custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-custom-list li {
  padding: 18px 0 18px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  font-size: var(--font-22);
  font-weight: 500;
  color: var(--grey);
  line-height: 150%;
  transition: all 0.3s ease;
}

.benefits-custom-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--grey);
  border-radius: 50%;
}

/* Tools & Communication Design */
.tools-communication-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tools-communication-card {
  border-radius: 10px;
  border: 1px solid var(--blue, #1e88e5);
  box-shadow: 0 4px 14px 0 rgba(30, 136, 229, 0.08);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tools-communication-card span {
  color: var(--black);
  font-size: var(--font-20);
  font-weight: 500;
  line-height: 170%;
}

/* Risk Mitigation Design */
.risk-mitigation-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
}

.risk-mitigation-left h2 {
  text-align: left;
  margin-bottom: 25px;
}

.risk-mitigation-left p {
  font-size: var(--font-20);
  line-height: 150%;
  margin-bottom: 14px;
  color: var(--grey);
}

.risk-mitigation-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.risk-item {
  background: var(--white);
  padding: 24px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.risk-item span:not(.dot) {
  font-size: var(--font-22);
  font-weight: 600;
  color: var(--black);
  line-height: 130%;
}

.cta-section {
  background-color: var(--blue);
  text-align: center;
}

.cta-wrapper {
  max-width: 1300px;
  margin: 0 auto;
}

.cta-wrapper h2 {
  color: var(--white);
  text-align: center;
  font-size: var(--font-44);
  font-weight: 800;
  line-height: 110%;
  margin-bottom: 20px;
}

.cta-wrapper p {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: var(--font-22);
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
}

.cta-wrapper b {
  color: var(--white);
}

/* Transition Page Design End */
/* For Tax Page Design Start */
.engagement-modal {
  background-color: var(--light-blue-bg);
}

.case-study-main-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
}

.case-study-right h2 {
  text-align: left;
  margin-bottom: 20px;
}

.case-subtitle {
  color: var(--blue);
  font-size: var(--font-24);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 125%;
}

.case-study-right p {
  font-size: var(--font-20);
  color: var(--grey);
  line-height: 150%;
  margin-bottom: 10px;
}

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

/* Process Timeline Design */
.process-timeline-main {
  background-color: var(--white);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
  margin-top: 50px;
}

.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
  background-color: var(--white);
  box-shadow:
    0 0 0 4px var(--white),
    0 0 0 12px var(--item-color);
  border: 4px solid var(--item-color);
  transition: all 0.3s ease;
}

.timeline-circle span {
  font-size: var(--font-30);
  font-weight: 800;
  color: var(--item-color);
}

.timeline-item h4 {
  font-size: var(--font-20);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 15px;
}

.timeline-item p {
  font-size: var(--font-16);
  color: var(--grey);
  line-height: normal;
  margin-bottom: 0;
}

/* Dotted Arrows */
.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -18%;
  transform: translateY(-50%);
  width: 70px;
  height: 30px;
  background: url("../images/dotted-arrow.svg") no-repeat center center;
  background-size: contain;
  opacity: 0.6;
}

/* Nth-child colors for timeline items */
.timeline-item:nth-child(1) {
  --item-color: #1e88e5;
}

.timeline-item:nth-child(2) {
  --item-color: var(--yellow);
}

.timeline-item:nth-child(3) {
  --item-color: var(--orange);
}

.timeline-item:nth-child(4) {
  --item-color: var(--purple);
}

/* For Tax PAge Design End */
/* Video Page Design Start */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
  gap: 30px;
}

.video-card {
  height: 100%;
  width: auto;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.video-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.video-desc p {
  display: inline;
}

.video-card img {
  max-height: 320px;
  object-fit: cover;
  width: 100%;
  border-radius: 20px 20px 0 0;
}

.video-content {
  transition: 0.3s linear;
  padding: 20px 30px 30px;
  background-color: var(--white);
  height: 100%;
  gap: 10px;
  border: 1px solid var(--light-grey-border-color);
  border-radius: 0 0 20px 20px;
}

.video-content h3 {
  color: var(--black);
  font-size: var(--font-22);
  font-style: normal;
  font-weight: 700;
  line-height: 136%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 50px;
  margin-bottom: 10px;
}

.video-content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.video-card:hover .video-content {
  background-color: var(--light-blue-bg);
  border-color: var(--blue);
}

/* Video Page Design End */
/* Contact Page Design start */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1220px;
  margin: 0 auto;
}

.location-card {
  border-radius: 10px;
  border: 1px solid var(--blue);
  background: var(--light-blue-bg);
  box-shadow: 0 4.082px 14.289px 0 rgba(30, 136, 229, 0.08);
  padding: 30px;
}

.location-card {
  display: flex;
  gap: 10px;
}

.location-card span {
  display: inline-block;
  margin-top: 6px;
  min-width: 28px;
}

.location-card h3 {
  color: var(--blue);
  font-size: var(--font-20);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
}

.location-card h4 {
  color: var(--black);
  font-size: var(--font-20);
  font-weight: 700;
  line-height: 150%;
}

.location-card a {
  color: var(--grey);
  font-size: var(--font-20);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.map-location {
  max-width: 1220px;
  margin: 0 auto;
}

.map-location iframe {
  border-radius: 20px;
}

/* Contact Page Design End */


/* services page css style here */
.common-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
}

.gradient-card-hover {
  position: relative;
}

.gradient-card-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/common-bg-gradiant-hover.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}

.common-card.gradient-card-hover:hover::before {
  opacity: 1;
}

/* common tabs start */
.common-tab {
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  margin-bottom: 40px;
}

.common-tab .nav-item .nav-link {
  color: var(--grey);
  font-size: var(--font-24);
  font-weight: 600;
  line-height: 143%;
  padding: 15px 0;
  border: none;
  background-color: unset;
  border-radius: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 15px;
}

.common-tab .nav-item {
  border: none;
  flex: auto;
}

.common-tab .nav-item .nav-link.active {
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
}

.common-tab .blue-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: var(--blue);
  border-radius: 50%;
}

.common-tab .nav-item .nav-link.active .blue-dot {
  box-shadow: 0 0 0 7px var(--blue-ring-color);
}

/* common tabs end */

/* service sticky section start */
.service-sticky-section {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--tab-bg-color);
  justify-content: center;
  grid-gap: 40px;
  position: sticky;
  top: 108px;
  z-index: 9;
}

.service-sticky-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 10px 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-sticky-list li a {
  color: var(--grey);
  font-size: var(--font-20);
  font-weight: 400;
  line-height: 194%;
  padding: 15px 0;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  border: none;
  white-space: nowrap;
}

.service-sticky-list li a.active {
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 600;
}

.service-sticky-list li a.active:hover {
  color: var(--blue);
}

.service-sticky-list li a:hover {
  color: var(--blue);
}

/* service sticky section end */

/* service overview section start */
.service-overview-section .content-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  margin-bottom: 50px;
}

.overview-content-row .service-image-card img {
  border-radius: 20px;
  filter: drop-shadow(0 2px 10px rgba(30, 136, 229, 0.05));
}

.overview-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.reverse-row {
  direction: rtl;
}

.reverse-row>* {
  direction: ltr;
}

.overview-content-row .common-card ul {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  list-style: none;
}

.overview-content-row .common-card ul li {
  color: var(--grey);
  font-size: var(--font-20);
  position: relative;
  padding-left: 18px;
  font-weight: 400;
  line-height: 150%;
}

.overview-content-row .common-card ul li::before {
  content: "";
  background-color: var(--grey);
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}

/* service overview section end */

/* our services section start */
.our-services .content-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  margin-bottom: 50px;
}

.our-service .our-services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 150px;
}

.common-card.services-card {
  position: relative;
  background: var(--light-blue-bg);
  display: flex;
  flex-direction: column;
  grid-gap: 15px;
  z-index: 1;
  overflow: hidden;
  max-height: 100%;
  transition: all 0.3s ease-in-out;
}

.common-card.services-card span img {
  filter: brightness(0) invert(1);
}

.common-card-header h5 {
  color: var(--black, #111);
  font-family: var(--inter);
  font-size: var(--font-22);
  font-weight: 700;
  line-height: 150%;
}

.common-card.services-card .common-card-header span {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  flex: none;
}

.common-card.services-card .common-card-header span img {
  width: 40px;
  height: 40px;
}

.information-security-section .common-card.services-card .common-card-header span img {
  width: 30px;
  height: 30px;
}

.information-security-section .common-card.services-card:nth-child(1),
.information-security-section .common-card.services-card:nth-child(2),
.information-security-section .common-card.services-card:nth-child(3),
.information-security-section .common-card.services-card:nth-child(4) {
  display: none;
}

.common-card.services-card:nth-child(6n + 1) .common-card-header span {
  background-color: var(--green-light);
}

.common-card.services-card:hover:nth-child(6n + 1) .common-card-header span img {
  filter: var(--green-light-filter);
}

.common-card.services-card:nth-child(6n + 2) .common-card-header span {
  background-color: var(--blue);
}

.common-card.services-card:hover:nth-child(6n + 2) .common-card-header span img {
  filter: var(--blue-filter);
}

.common-card.services-card:nth-child(6n + 3) .common-card-header span {
  background-color: var(--yellow);
}

.common-card.services-card:hover:nth-child(6n + 3) .common-card-header span img {
  filter: var(--yellow-filter);
}

.common-card.services-card:nth-child(6n + 4) .common-card-header span {
  background-color: var(--orange);
}

.common-card.services-card:hover:nth-child(6n + 4) .common-card-header span img {
  filter: var(--orange-filter);
}

.common-card.services-card:nth-child(6n + 5) .common-card-header span {
  background-color: var(--purple);
}

.common-card.services-card:hover:nth-child(6n + 5) .common-card-header span img {
  filter: var(--purple-filter);
}

.common-card.services-card:nth-child(6n + 6) .common-card-header span {
  background-color: var(--cyan-light);
}

.common-card.services-card:hover:nth-child(6n + 6) .common-card-header span img {
  filter: var(--cyan-light-filter);
}

.common-card.services-card:hover .common-card-header span {
  background-color: var(--white);
}

.common-card.services-card:hover .common-card-header span img {
  filter: none;
}

.our-service .our-services-wrapper .common-card-header {
  display: flex;
  align-items: center;
  grid-gap: 12px;
}

.our-services-wrapper .content-box p:not(:last-child) {
  margin-bottom: 10px;
}

.our-service .content-box {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  position: sticky;
  top: 200px;
  height: fit-content;
}

.our-service .content-box h2 {
  text-align: left;
}

.explore-btn {
  color: var(--blue);
  font-size: var(--font-20);
  font-weight: 400;
  line-height: 30px;
  display: flex;
  width: fit-content;
  grid-gap: 3px;
}

.our-service .service-card-list {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}

/* our services section end */
#our-services,
#overview,
#our-experience,
#how-it-works,
#benefits,
#how-it-works,
#our-solutions,
#industry-challenges,
#dental-bookkeeping-services,
#why-choose-crownglobe,
#virtual-cfo-bi,
#case-study {
  scroll-margin-top: 140px;
}

/* benefits section start */
.benefits-section .benefits-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.benefits-section .content-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  margin-bottom: 50px;
}

.common-card.benefits-card {
  /* grid-column: span 2; */
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* .common-card.benefits-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.common-card.benefits-card:nth-child(5) {
  grid-column: 4 / span 2;
} */

.common-card.benefits-card span {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease-in-out;
}

.common-card.benefits-card:nth-child(6n+1) span {
  background-color: var(--blue);
}

.common-card.benefits-card:hover:nth-child(6n+1) span img {
  filter: var(--blue-filter);
}

.common-card.benefits-card:nth-child(6n+2) span {
  background-color: var(--yellow);
}

.common-card.benefits-card:hover:nth-child(6n+2) span img {
  filter: var(--yellow-filter);
}

.common-card.benefits-card:nth-child(6n+3) span {
  background-color: var(--orange);
}

.common-card.benefits-card:hover:nth-child(6n+3) span img {
  filter: var(--orange-filter);
}

.common-card.benefits-card:nth-child(6n+4) span {
  background-color: var(--purple);
}

.common-card.benefits-card:hover:nth-child(6n+4) span img {
  filter: var(--purple-filter);
}

.common-card.benefits-card:nth-child(6n+5) span {
  background-color: var(--green-light);
}

.common-card.benefits-card:hover:nth-child(6n+5) span img {
  filter: var(--green-light-filter);
}

.common-card.benefits-card:nth-child(6n+6) span {
  background-color: var(--cyan-light);
}

.common-card.benefits-card:hover:nth-child(6n+6) span img {
  filter: var(--cyan-light-filter);
}

.common-card.benefits-card:hover span {
  background-color: var(--white);
}

.common-card.benefits-card:hover span img {
  filter: none;
}

.common-card.benefits-card span img {
  filter: brightness(0) invert(1);
  width: 35px;
  height: 35px;
}

.common-card.benefits-card h5 {
  color: var(--black);
  font-size: var(--font-22);
  font-weight: 700;
  line-height: 154%;
  margin-bottom: 10px;
}

.common-card.benefits-card p {
  color: var(--grey);
  font-size: var(--font-20);
  font-weight: 400;
  line-height: 150%;
}

.common-card.benefits-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* how it works section start */
.how-it-works-section .content-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  margin-bottom: 50px;
}

/* .how-it-works-list {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-gap: 40px;
  align-items: flex-end;
} */

.how-it-works-list.mobile-view {
  display: none !important;
}

.how-it-works-list>div:nth-child(1) {
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
  text-align: right;
}

.how-it-works-list>div:nth-child(2) {
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
  text-align: center;
  align-items: center;
}

.how-it-works-list>div:nth-child(3) {
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
  text-align: left;
}

.how-it-works-list p {
  color: var(--grey);
  font-size: var(--font-20);
  line-height: 1.5;
  margin: 0;
}

/* .how-it-works-list .how-it-works-img-box {
  position: relative;
  width: 100%;
} */

/* .how-it-works-list .how-it-works-img-box h6 {
  position: absolute;
  color: var(--white);
  text-align: center;
  font-size: var(--font-20);
  font-weight: 700;
  line-height: 120%;
  z-index: 2;
  max-width: 130px;
} */
/* Position labels over the SVG circles (approximate based on design) */
/* .how-it-works-list .how-it-works-img-box h6:nth-of-type(1) {
  bottom: 70px;
  left: 24px;
}

.how-it-works-list .how-it-works-img-box h6:nth-of-type(2) {
  top: 120px;
  left: 96px;
}

.how-it-works-list .how-it-works-img-box h6:nth-of-type(3) {
  top: 82px;
  left: 285px;
}

.how-it-works-list .how-it-works-img-box h6:nth-of-type(4) {
  top: 128px;
  right: 94px;
}

.how-it-works-list .how-it-works-img-box h6:nth-of-type(5) {
  bottom: 65px;
  right: 25px;
} */

.how-it-works-list.mobile-view {
  display: flex;
  grid-gap: 20px;
}

.how-it-works-list.mobile-view div {
  display: flex;
  grid-gap: 77px;
}

.how-it-works-list.mobile-view h6 {
  color: var(--white);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 125%;
  width: 120px;
  height: 120px;
  padding: 10px;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
}

.industry-specific-benefits .how-it-works-list.mobile-view h6 {
  color: var(--black) !important;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 125%;
  width: 90px !important;
  max-width: 90px !important;
  height: 90px !important;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white) !important;
  border: 5px solid;
  flex: none;
}

.industry-specific-benefits .how-it-works-list.mobile-view h6::before {
  content: "";
  width: 38px;
  height: 1px;
  position: absolute;
  right: -45px;
  top: 50%;
  border-bottom: 2px dashed var(--black) !important;
  transform: translateY(-50%);
}

.how-it-works-list.mobile-view h6::before {
  content: "";
  width: 38px;
  height: 1px;
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
}

.how-it-works-list.mobile-view h6::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  right: -48px;
  top: 50%;
  transform: translateY(-50%);
}

.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 1) h6,
.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 1) h6::after {
  background-color: var(--blue);
  border-color: var(--blue);
}

.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 2) h6,
.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 2) h6::after {
  background-color: var(--yellow);
  border-color: var(--yellow);
}

.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 3) h6,
.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 3) h6::after {
  background-color: var(--purple);
  border-color: var(--purple);
}

.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 4) h6,
.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 4) h6::after {
  background-color: var(--orange);
  border-color: var(--orange);
}

.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 5) h6,
.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 5) h6::after {
  background-color: var(--green-light);
  border-color: var(--green-light);
}

.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 1) h6::before,
.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 2) h6::before,
.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 3) h6::before,
.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 4) h6::before,
.industry-specific-benefits .how-it-works-list.mobile-view div:nth-of-type(5n + 5) h6::before {
  background-color: unset;
}







.how-it-works-list.mobile-view div:nth-of-type(5n + 1) h6,
.how-it-works-list.mobile-view div:nth-of-type(5n + 1) h6::before,
.how-it-works-list.mobile-view div:nth-of-type(5n + 1) h6::after {
  background-color: var(--blue);
}

.how-it-works-list.mobile-view div:nth-of-type(5n + 2) h6,
.how-it-works-list.mobile-view div:nth-of-type(5n + 2) h6::before,
.how-it-works-list.mobile-view div:nth-of-type(5n + 2) h6::after {
  background-color: var(--yellow);
}

.how-it-works-list.mobile-view div:nth-of-type(5n + 3) h6,
.how-it-works-list.mobile-view div:nth-of-type(5n + 3) h6::before,
.how-it-works-list.mobile-view div:nth-of-type(5n + 3) h6::after {
  background-color: var(--purple);
}

.how-it-works-list.mobile-view div:nth-of-type(5n + 4) h6,
.how-it-works-list.mobile-view div:nth-of-type(5n + 4) h6::before,
.how-it-works-list.mobile-view div:nth-of-type(5n + 4) h6::after {
  background-color: var(--orange);
}

.how-it-works-list.mobile-view div:nth-of-type(5n + 5) h6,
.how-it-works-list.mobile-view div:nth-of-type(5n + 5) h6::before,
.how-it-works-list.mobile-view div:nth-of-type(5n + 5) h6::after {
  background-color: var(--green-light);
}

/* how it works section end */

/* case study section start */
.case-study-section h2 {
  margin-bottom: 50px;
}

.case-study-section .case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 150px;
  align-items: center;
}

.case-study-section .img-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(30, 136, 229, 0.05);
}

.case-study-section .content-box h5 {
  color: var(--black);
  font-size: var(--font-26);
  font-weight: 600;
  line-height: 140%;
  text-transform: capitalize;
}

.case-study-section .content-box {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
}

/* case study section end */

/* our team section start */
.our-team-section {
  background: linear-gradient(180deg,
      var(--white) 0%,
      var(--light-blue-bg) 100%);
}

.our-team-section .our-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  align-items: stretch;
}

.our-team-section .content-box {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  text-align: center;
  margin-bottom: 50px;
}

.our-team-card {
  background-color: var(--blue-card-bg);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.our-team-card-img-box {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.our-team-card-content-box h5 {
  color: var(--black);
  font-size: var(--font-22);
  font-weight: 700;
  line-height: 154%;
  margin-bottom: 10px;
}

.our-team-card-content-box span {
  color: var(--grey);
  font-size: var(--font-20);
  text-align: center;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
  line-height: 120%;
}

.our-team-card-content-box a {
  display: inline-block;
}

.our-team-card-content-box a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease-in-out;
}

.our-team-card-content-box a:hover img {
  transform: scale(1.1);
}

/* faq section start */
.faq-section h2:not(.accordion-header) {
  margin-bottom: 50px;
}

.faq-section .accordion-item {
  border: none;
  background-color: var(--blue-card-bg);
  border-radius: 12px !important;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-section .accordion-button {
  font-size: var(--font-20);
  font-weight: 600;
  color: var(--black);
  padding: 24px;
  background-color: transparent;
  line-height: normal;
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--black);
}

.faq-section .accordion-button::after {
  background-size: 16px;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.faq-section .accordion-body {
  padding: 0 24px 24px;
}

.faq-section .accordion-body p {
  font-size: var(--font-20);
  color: var(--grey);
  line-height: 150%;
  margin: 0;
}

.faq-section .accordion-collapse a {
  color: var(--blue);
  font-weight: 600;
}

/* Industry Challenges Section */
.industry-challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
  /* margin-bottom: 40px; */
}

.industry-challenges:has(.industry-challenges-info) .industry-challenges-grid {
  margin-bottom: 40px;
}

.industry-challenges .common-card {
  background-color: var(--light-blue-bg);
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}

.industry-challenges .common-card h3 {
  font-size: var(--font-22);
  color: var(--black);
  font-weight: 700;
  line-height: 154%;
}

.industry-challenges .common-card p {
  font-size: var(--font-20);
  color: var(--grey);
  line-height: 150%;
  font-weight: 400;
}

.industry-challenges-info {
  text-align: center;
}

.industry-challenges-info p {
  color: var(--black);
  font-size: var(--font-24);
  font-weight: 500;
  line-height: 125%;
}

.industry-challenges-info p span {
  color: var(--blue);
  font-weight: 700;
}

/* engagement models section start */

/* pricing models */
/* Pricing Models Section */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 14px 0 rgba(30, 136, 229, 0.08);
  height: 100%;
  border-top: 4px solid transparent;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(30, 136, 229, 0.12);
}

.pricing-card .card-head {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-card-color);
}

.pricing-card .card-head h3 {
  color: var(--black);
  font-size: var(--font-26);
  font-weight: 700;
  line-height: 130%;
}

.pricing-card .card-head h2.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  grid-gap: 10px;
  font-size: var(--font-52);
  font-weight: 700;
  line-height: 100%;
}

.pricing-card .card-head h2.price span {
  color: var(--grey);
  font-size: var(--font-18);
  font-weight: 500;
  line-height: 166%;
}

.pricing-card .card-body {
  flex-grow: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-gap: 30px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}

.pricing-card ul li {
  color: var(--grey);
  font-size: var(--font-20);
  padding-left: 20px;
  font-weight: 400;
  line-height: 150%;
  position: relative;
}

.pricing-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 25px;
  border-radius: 12px;
  font-size: var(--font-18);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  width: 100%;
}

.pricing-btn img {
  width: 24px;
  transition: all 0.3s ease;
}

/* Themes */

/* Fixed Price - Blue */
.pricing-card:nth-child(4n + 1) {
  border-top-color: var(--blue);
}

.pricing-card:nth-child(4n + 1) h2.price {
  color: var(--blue);
}

.pricing-card:nth-child(4n + 1) ul li::before {
  background-color: var(--blue);
}

.pricing-card:nth-child(4n + 1) .pricing-btn {
  border-color: var(--blue);
  color: var(--blue);
}

.pricing-card:nth-child(4n + 1) .pricing-btn:hover {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.pricing-card:nth-child(4n + 1) .pricing-btn img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(94%) saturate(624%) hue-rotate(174deg) brightness(88%) contrast(104%);
}

/* Dedicated Team - Green */
.pricing-card:nth-child(4n + 2) {
  border-top-color: var(--green-light);
}

.pricing-card:nth-child(4n + 2) h2.price {
  color: var(--green-light);
}

.pricing-card:nth-child(4n + 2) ul li::before {
  background-color: var(--green-light);
}

.pricing-card:nth-child(4n + 2) .pricing-btn {
  border-color: var(--green-light);
  color: var(--green-light);
}

.pricing-card:nth-child(4n + 2) .pricing-btn:hover {
  background-color: var(--green-light);
  color: var(--white);
  border-color: var(--green-light);
}

.pricing-card:nth-child(4n + 2) .pricing-btn img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(86%) saturate(399%) hue-rotate(114deg) brightness(94%) contrast(93%);
}

/* Hourly Model - Yellow */
.pricing-card:nth-child(4n + 3) {
  border-top-color: var(--yellow);
}

.pricing-card:nth-child(4n + 3) h2.price {
  color: var(--yellow);
}

.pricing-card:nth-child(4n + 3) ul li::before {
  background-color: var(--yellow);
}

.pricing-card:nth-child(4n + 3) .pricing-btn {
  border-color: var(--yellow);
  color: var(--yellow);
}

.pricing-card:nth-child(4n + 3) .pricing-btn:hover {
  background-color: var(--yellow);
  color: var(--white);
  border-color: var(--yellow);
}

.pricing-card:nth-child(4n + 3) .pricing-btn img {
  filter: brightness(0) saturate(100%) invert(80%) sepia(38%) saturate(5000%) hue-rotate(9deg) brightness(106%) contrast(101%);
}

/* Outcome Based - Orange/Red */

.pricing-card:nth-child(4n + 4) {
  border-top-color: var(--orange);
}

.pricing-card:nth-child(4n + 4) h2.price {
  color: var(--orange);
  font-size: 42px;
}

.pricing-card:nth-child(4) h2.price {
  font-size: var(--font-32);
  line-height: 100%;
  margin-top: 20px;
}

.pricing-card:nth-child(4n + 4) ul li::before {
  background-color: var(--orange);
}

.pricing-card:nth-child(4n + 4) .pricing-btn {
  border-color: var(--orange);
  color: var(--orange);
}

.pricing-card:nth-child(4n + 4) .pricing-btn:hover {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.pricing-card:nth-child(4n + 4) .pricing-btn img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(88%) saturate(666%) hue-rotate(335deg) brightness(87%) contrast(99%);
}

.pricing-card .pricing-btn:hover img {
  filter: brightness(0) invert(1);
  transform: translateX(5px);
}

/* engagement models section end */




/* industry detail page styles start */

.dental-booking-service-section .benefits-list {
  grid-template-columns: repeat(3, 1fr);
}

.dental-booking-service-section {
  background-color: #f8fcff;
}

.dental-booking-service-section .common-card.benefits-card {
  grid-column: auto;
}

/* data strategy section start */
.data-strategy-wrapper {
  background-color: var(--light-blue-bg);
  padding: 40px 30px;
  border-radius: 20px;
}

.data-strategy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px;
}

.data-strategy-grid .common-card {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  transition: all 0.3s ease;
}

.data-strategy-grid .common-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 136, 229, 0.1);
}

.data-strategy-grid .common-card h3 {
  font-size: var(--font-22);
  color: var(--black);
  font-weight: 700;
}

.data-strategy-grid .common-card p {
  font-size: var(--font-20);
  color: var(--grey);
  line-height: 150%;
}

/* data strategy section end */

/* industry detail page styles end */
.common-card-header h5 {
  color: var(--black);
  font-size: var(--font-22);
  font-weight: 700;
  line-height: 150%;
}

/* industries case study section start */
.industries-case-study-section {
  background-color: var(--light-blue-bg);
}

.industries-case-study-section .industries-case-study-wrapper {
  display: flex;
  align-items: start;
  flex-direction: column;
  grid-gap: 30px;
}

.industry-challenges-info.common-card a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

.industries-case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 150px;
  align-items: center;
}

.industries-case-study-left h2 {
  text-align: left;
  margin-bottom: 30px;
}

.industries-content-box h6 {
  color: var(--blue);
  font-size: var(--font-22);
  line-height: 136%;
  font-weight: 700;
  margin-bottom: 10px;
}

.industries-content-box p,
.industries-content-box ul li {
  font-size: var(--font-20);
  color: var(--grey);
  line-height: 150%;
}

.industries-content-box ul {
  padding-left: 20px;
}

.industries-case-study-right img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(30, 136, 229, 0.05);
}

.quote-message-card {
  width: 100%;
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.quote-message-card p {
  font-size: var(--font-20);
  color: var(--black);
  font-weight: 400;
  line-height: 150%;
  max-width: 80%;
  margin: 0 auto 20px;
}

.quote-message-card strong {
  font-size: var(--font-20);
  color: var(--black);
  font-weight: 700;
  display: block;
}

/* industries case study section end */

/* industries benefits section start */
.industries-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px;
}

.industries-benefits .common-card {
  text-align: center;
  padding: 30px 20px;
  height: 100%;
  background-color: transparent;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.industries-benefits .common-card:nth-child(5n+1):hover {
  border-color: var(--blue);
}

.industries-benefits .common-card:nth-child(5n+1) img {
  filter: var(--blue-filter);
}

.industries-benefits .common-card:nth-child(5n+2):hover {
  border-color: var(--yellow);
}

.industries-benefits .common-card:nth-child(5n+2) img {
  filter: var(--yellow-filter);
}

.industries-benefits .common-card:nth-child(5n+3):hover {
  border-color: var(--purple);
}

.industries-benefits .common-card:nth-child(5n+3) img {
  filter: var(--purple-filter);
}

.industries-benefits .common-card:nth-child(5n+4):hover {
  border-color: var(--orange);
}

.industries-benefits .common-card:nth-child(5n+4) img {
  filter: var(--orange-filter);
}

.industries-benefits .common-card:nth-child(5n+5):hover {
  border-color: var(--green-light);
}

.industries-benefits .common-card:nth-child(5n+5) img {
  filter: var(--green-light-filter);
}

.industries-benefits .common-card img {
  height: 60px;
  width: auto;
  margin-bottom: 18px;
}

.industries-benefits .common-card h5 {
  font-size: var(--font-22);
  color: var(--black);
  font-weight: 500;
  line-height: 154%;
}

.industries-benefits .common-card p {
  font-size: var(--font-20);
  color: var(--grey);
  line-height: 150%;
  margin-top: 10px;
}


.engagement-model {
  background-color: var(--light-blue-bg);
}

/* .industry-specific-benefits .industry-specific-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 972px 1fr;
  grid-gap: 25px;
} */

.industry-specific-benefits .industry-text-box {
  display: flex;
  flex-direction: column;
  grid-gap: 80px;
  z-index: 1;
}

.industry-specific-benefits h6 {
  color: var(--black);
  text-align: center;
  font-size: var(--font-20);
  font-weight: 700;
  line-height: 120%;
  position: absolute;
  max-width: 140px;
}

.industry-specific-benefits .industry-text-box.left-side {
  text-align: right;
  margin-top: 50px;
}

.industry-specific-benefits .industry-text-box.right-side {
  margin-top: 50px;
  grid-gap: 60px;
}

.industry-specific-benefits .industry-text-box.left-side p:nth-of-type(1) {
  margin-right: -10px;
}

.industry-specific-benefits .industry-text-box.left-side p:nth-of-type(2) {
  margin-right: -150px;
}

.industry-specific-benefits .industry-text-box.right-side p:nth-of-type(1) {
  margin-left: -10px;
}

.industry-specific-benefits .industry-text-box.right-side p:nth-of-type(2) {
  margin-left: -150px;
}

.industry-specific-benefits .industry-specific-benefits-img-box {
  position: relative;
}

.industry-specific-benefits .industry-specific-benefits-img-box img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.industry-specific-benefits .industry-specific-benefits-img-box p {
  text-align: center;
  max-width: 40%;
  margin: 0 auto;
  margin-top: 12px;
}

.industry-specific-benefits .industry-specific-benefits-img-box h6:nth-of-type(1) {
  left: 18px;
  top: 100px;
}

.industry-specific-benefits .industry-specific-benefits-img-box h6:nth-of-type(2) {
  left: 167px;
  top: 285px
}

.industry-specific-benefits .industry-specific-benefits-img-box h6:nth-of-type(3) {
  left: 442px;
  top: 367px;
  max-width: 104px;
}

.industry-specific-benefits .industry-specific-benefits-img-box h6:nth-of-type(4) {
  right: 164px;
  top: 289px;
}

.industry-specific-benefits .industry-specific-benefits-img-box h6:nth-of-type(5) {
  right: 17px;
  top: 105px;
}

.industry-challenges-main {
  background-color: var(--light-blue-bg);
}

/* industries benefits section end */


/* Blog Page Design Start */
/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1);
  border-color: var(--blue);
}

.blog-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-meta span:last-child {
  background: var(--blue);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  text-transform: capitalize;
}

.recent-chip {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--blue);
  color: var(--white);
  padding: 6px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(23, 73, 173, 0.3);
  animation: chip-pulse 2s infinite;
}

@keyframes chip-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--blue);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(23, 95, 173, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(23, 53, 173, 0);
  }
}


.blog-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: var(--font-14);
  color: var(--grey);
}

.blog-meta span {
  font-size: var(--font-14);
  color: var(--black);
  font-weight: 500;
}

.blog-card-content h3 {
  font-size: var(--font-24);
  margin-bottom: 15px;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card:hover h3 {
  color: var(--blue);
}

.blog-card-content p {
  font-size: var(--font-16);
  line-height: 1.6;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-weight: 700;
  transition: all 0.3s ease;
}

.read-more-btn img {
  width: 18px;
  transition: transform 0.3s ease;
}

.blog-card:hover .read-more-btn {
  color: var(--blue);
}

.blog-card:hover .read-more-btn img {
  transform: translateX(5px);
}

/* Blog Detail Theme-Aligned Styles */

/* Main Grid Layout */
.blog-detail-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: stretch;
}

.blog-content-area {
  flex: 1;
  min-width: 0;
}

.blog-sidebar-area {
  flex-shrink: 0;
  height: 100%;
}

/* Hero Section */


.hero-meta-wrapper {
  display: flex;
  gap: 14px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.hero-chip {
  background: rgba(30, 136, 229, 0.1);
  color: var(--blue);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: var(--font-14);
  font-weight: 700;
  border: 1px solid rgba(30, 136, 229, 0.2);
}

.hero-chip.date {
  background: var(--white);
  color: var(--grey);
  border-color: var(--border-color);
}

.hero-content-centered h1 {
  font-size: var(--font-54);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content-centered p {
  font-size: var(--font-20);
  color: var(--grey);
  max-width: 800px;
  margin: 0 auto;
}

/* Sidebar Styling */
.sticky-sidebar-content {
  position: sticky;
  top: 120px;
}

.sidebar-wrapper {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.sidebar-wrapper h4 {
  font-size: var(--font-22);
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Category List Styles */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list li:last-child {
  margin-bottom: 0;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--light-blue-bg);
  border-radius: 12px;
  color: var(--black);
  font-size: var(--font-16);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.category-list li a span {
  font-size: var(--font-14);
  color: var(--blue);
  background: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.category-list li a:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(30, 136, 229, 0.15);
}

.category-list li a:hover span {
  color: var(--blue);
  background: var(--white);
  transform: scale(1.1);
}

/* Recent Posts Sidebar Styles */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  align-items: center;
  transition: all 0.3s ease;
}

.recent-post-img {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--lightblue);
}

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

.recent-post-info {
  flex: 1;
  min-width: 0;
}

.recent-post-info h5 {
  font-size: var(--font-14);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.recent-post-info p {
  font-size: var(--font-14);
  color: var(--grey);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.recent-post-item:hover {
  transform: translateX(5px);
}

.recent-post-item:hover .recent-post-img img {
  transform: scale(1.1);
}

.recent-post-item:hover h5 {
  color: var(--blue);
}

/* Article Content Styling */
.article-banner {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 50px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.blog-content-area img {
  width: 100%;
  max-height: 683px;
  object-fit: cover;
}

.blog-article-body h2,
.blog-article-body h3,
.blog-article-body h4,
.blog-article-body h5 {
  scroll-margin-top: 150px;
}

.blog-article-body h2 {
  text-align: left;
  margin: 50px 0 25px;
  font-size: var(--font-32);
  font-weight: 800;
  color: var(--black);
  padding-left: 18px;
  border-left: 5px solid var(--blue);
  line-height: 1.2;
}

.blog-article-body h2:first-child {
  margin-top: 0;
}

.blog-article-body h3 {
  margin: 40px 0 15px;
  font-size: var(--font-26);
  font-weight: 700;
  color: var(--black);
}

.blog-article-body h4 {
  margin: 30px 0 12px;
  font-size: var(--font-22);
  font-weight: 700;
  color: var(--black);
}

.blog-article-body h5 {
  margin: 25px 0 10px;
  font-size: var(--font-18);
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-article-body p {
  margin-bottom: 25px;
  font-size: var(--font-18);
  line-height: 1.6;
  color: var(--grey);
}

.blog-article-body a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.3s ease;
}

.blog-article-body a:hover {
  color: var(--black);
  text-decoration-color: var(--blue);
}

.blog-article-body ul,
.blog-article-body ol {
  margin-bottom: 35px;
  padding-left: 25px;
  margin-left: 0;
}

.blog-article-body li {
  margin-bottom: 15px;
  color: var(--grey);
  font-size: var(--font-18);
  line-height: 1.6;
  position: relative;
}

.blog-article-body ul li {
  list-style: none;
}

.blog-article-body ul li::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
}

.blog-article-body ol {
  counter-reset: blog-counter;
  list-style: none;
}

.blog-article-body ol li {
  counter-increment: blog-counter;
}

.blog-article-body ol li::before {
  content: counter(blog-counter) ".";
  position: absolute;
  left: -25px;
  font-weight: 800;
  color: var(--blue);
}

.blog-article-body b,
.blog-article-body strong {
  color: var(--black);
}

/* Tables */
.blog-article-body table {
  width: 100%;
  margin: 40px 0;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.blog-article-body th {
  background: var(--lightblue);
  padding: 20px;
  font-weight: 700;
  text-align: left;
  color: var(--black);
  border-bottom: 2px solid var(--blue-ring-color);
}

.blog-article-body td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-color);
  color: var(--grey);
}

.blog-article-body tr:last-child td {
  border-bottom: none;
}

/* Pagination Styles */
.cg-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 12px;
}

.cg-pagination .page-numbers {
  display: flex;
  align-items: center;
  grid-gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cg-pagination .page-numbers li a,
.cg-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--black);
  font-size: var(--font-16);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
}

.cg-pagination .page-numbers li a:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--light-blue-bg);
}

.cg-pagination .page-numbers li span.current {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--blue-btn-shadow);
}

.cg-pagination .page-numbers li .prev,
.cg-pagination .page-numbers li .next {
  width: auto;
  padding: 0 20px;
  grid-gap: 10px;
}

.cg-pagination .page-numbers li .prev img,
.cg-pagination .page-numbers li .next img {
  width: 16px;
  transition: transform 0.3s ease;
}

.cg-pagination .page-numbers li .prev img {
  transform: rotate(180deg);
}

.cg-pagination .page-numbers li .prev:hover img {
  transform: translateX(-5px) rotate(180deg);
}

.cg-pagination .page-numbers li .next:hover img {
  transform: translateX(5px);
}

/* Blog Page Design End */

/* career page start */

/* --- Tab Nav --- */
.current-openings .openings-tab-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 50px;
}

.current-openings .openings-tab-btn {
  border: 1px solid var(--border-color);
  background: var(--white);
  border-radius: 8px;
  padding: 10px 24px;
  font-size: var(--font-16);
  font-weight: 500;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.5;
}

.current-openings .openings-tab-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
}

.current-openings .openings-tab-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--blue-btn-shadow);
}

/* --- Tab Panes (Bootstrap JS hook support) --- */
.current-openings .tab-content>.tab-pane {
  display: none;
}

.current-openings .tab-content>.tab-pane.active {
  display: block;
}

/* --- Job Listings --- */
.current-openings .openings-list {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
}

.current-openings .opening-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 20px;
  padding: 30px 0;
  background: var(--white);
  transition: background 0.2s ease;
}

.current-openings .opening-item:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.current-openings .opening-item:first-of-type {
  padding-top: 0;
}

.current-openings .opening-item:last-of-type {
  padding-bottom: 0;
}

/* --- Job Info --- */
.current-openings .opening-info {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
}

.current-openings .opening-info>span {
  font-size: var(--font-16);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--blue);
}

.current-openings .opening-info h3 {
  font-size: var(--font-24);
  font-weight: 700;
  color: var(--black);
  line-height: 130%;
}

/* --- Meta List --- */
.current-openings .opening-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 16px;
  margin-top: 8px;
  list-style: none;
  padding: 0;
}

.current-openings .opening-meta li {
  display: inline-flex;
  align-items: center;
  grid-gap: 6px;
  font-size: var(--font-18);
  font-weight: 400;
  color: var(--grey);
  line-height: 150%;
}

.current-openings .opening-meta li img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.current-openings .opening-meta .employment-type {
  color: var(--blue);
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: var(--font-18);
  line-height: 165%;
  background: #F4FAFF;
}

/* --- Apply Button --- */
.current-openings .apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid var(--blue);
  background: var(--white);
  font-size: var(--font-18);
  font-weight: 600;
  color: var(--black);
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px 0 rgba(30, 136, 229, 0.08);
}

.current-openings .apply-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* career page end */
/* --- Premium 404 Page Styles --- */
.error-404-premium {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 10% 20%, rgba(30, 136, 229, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(30, 136, 229, 0.03) 0%, transparent 40%);
  position: relative;
  overflow: hidden;
}

.error-flex-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.error-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.giant-error-code {
  font-size: 280px;
  font-weight: 900;
  line-height: 1;
  display: flex;
  color: var(--black);
  position: relative;
  z-index: 2;
  font-family: var(--inter);
}

.giant-error-code .digit {
  color: var(--blue);
  opacity: 0.1;
}

.giant-error-code .digit-middle {
  color: var(--blue);
  position: relative;
  filter: drop-shadow(0 0 30px rgba(30, 136, 229, 0.3));
  animation: pulse-glow 4s infinite ease-in-out;
}

@keyframes pulse-glow {
  0% {
    filter: drop-shadow(0 0 20px rgba(30, 136, 229, 0.2));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 50px rgba(30, 136, 229, 0.5));
    transform: scale(1.02);
  }

  100% {
    filter: drop-shadow(0 0 20px rgba(30, 136, 229, 0.2));
    transform: scale(1);
  }
}

.visual-accent-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--blue);
  filter: blur(150px);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 1;
}

.error-content-col {
  position: relative;
  z-index: 5;
}

.error-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--blue-card-bg);
  color: var(--blue);
  border-radius: 50px;
  font-size: var(--font-14);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid var(--blue-ring-color);
}

.error-header-box h1 {
  font-size: 72px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.error-header-box p {
  font-size: var(--font-20);
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--grey);
}

/* Premium Search Form */
.error-search-wrap {
  margin-bottom: 40px;
  max-width: 500px;
}

.premium-search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.premium-search-input {
  width: 100%;
  padding: 20px 70px 20px 24px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: var(--white);
  font-family: var(--inter);
  font-size: var(--font-18);
  color: var(--black);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
}

.premium-search-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 15px 30px -10px rgba(30, 136, 229, 0.15);
}

.premium-search-btn {
  position: absolute;
  right: 10px;
  width: 50px;
  height: 50px;
  background: var(--blue);
  border: none;
  border-radius: 12px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.premium-search-btn:hover {
  background: #1565c0;
  transform: scale(1.05);
}

/* Quick Links Grid */
.error-quick-links {
  margin-bottom: 50px;
}

.quick-links-title {
  font-size: var(--font-16);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

.q-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: var(--font-16);
  font-weight: 600;
  color: var(--grey);
  transition: all 0.3s ease;
}

.q-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 136, 229, 0.1);
}

.q-link::before {
  content: "→";
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.q-link:hover::before {
  transform: translateX(5px);
}

/* --- Premium 404 & Thank You Styles --- */
.error-404-premium,
.thank-you-premium {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 10% 20%, rgba(30, 136, 229, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(30, 136, 229, 0.03) 0%, transparent 40%);
  position: relative;
  overflow: hidden;
}

.thank-you-premium .digit-middle {
  color: var(--blue);
  filter: drop-shadow(0 0 30px rgba(30, 136, 229, 0.3));
  animation: pulse-glow-success 4s infinite ease-in-out;
}

@keyframes pulse-glow-success {
  0% {
    filter: drop-shadow(0 0 20px rgba(30, 136, 229, 0.2));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 50px rgba(30, 136, 229, 0.5));
    transform: scale(1.02);
  }

  100% {
    filter: drop-shadow(0 0 20px rgba(30, 136, 229, 0.2));
    transform: scale(1);
  }
}

.success-accent {
  background: var(--blue);
  opacity: 0.15;
}

.success-tag {
  background: #eaf1ff;
  color: var(--blue);
  border-color: var(--border-color);
}

div#gform_1_validation_container {
  display: none;
}

.contact-us-form .section-header,
.contact-us-form .section-header h2 {
  text-align: left;
}

.gform-theme .gform_heading {
  display: none;
}

.gform-theme .gfield_label {
  color: #111 !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 194% !important;
  text-transform: uppercase;
}

.gform-theme legend.gfield_label {
  color: var(--black) !important;
  font-size: var(--font-26) !important;
  font-weight: 600 !important;
  line-height: 168% !important;
  text-transform: inherit !important;
}

.gform-theme .ginput_container input:not([type="checkbox"], [type="radio"]),
.gform-theme .ginput_container textarea {
  border-radius: 10px !important;
  border: 1px solid var(--blue) !important;
  background: #FFF;
  height: auto !important;
  padding: 10px 18px !important;
  color: #555 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 154%;
  box-shadow: none !important;
  outline: none !important;
}

.gform-theme .ginput_container textarea {
  height: 145px !important;
}

.gform-theme .ginput_container input::placeholder,
.gform-theme .ginput_container textarea::placeholder {
  opacity: 0.6;
}

.gform-theme .ginput_container select {
  border-radius: 10px !important;
  border: 1px solid var(--blue) !important;
  padding: 4px 18px !important;
  color: #555 !important;
  height: auto !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 194%;
  box-shadow: none !important;
  outline: none !important;
}

.gform-theme .ginput_container input:not([type="checkbox"], [type="radio"]):focus {
  box-shadow: none !important;
  outline: none !important;
}

.gform-theme .ginput_container input[type="checkbox"],
.gform-theme .ginput_container input[type="radio"] {
  border: 1px solid var(--blue) !important;
  box-shadow: none !important;
  outline: none !important;
  accent-color: var(--blue) !important;
}

.gform-theme .ginput_container input[type="radio"]::before {
  background-color: var(--blue) !important;
}

.gform-theme .ginput_container input[type="checkbox"]::before {
  color: var(--blue) !important;
}

.gform_wrapper.gform-theme .gform_footer {
  display: block;
}

.gform_wrapper.gform-theme .gform_footer input[type="submit"] {
  position: relative !important;
  overflow: hidden !important;
  font-family: var(--inter) !important;
  background: var(--blue) !important;
  color: var(--white) !important;
  border: 1px solid var(--primary);
  font-size: var(--font-18) !important;
  margin: 0;
  letter-spacing: 0 !important;
  text-transform: capitalize !important;
  padding: 16px 24px !important;
  box-shadow: 0 12px 18px -4px rgba(30, 136, 229, 0.25),
    0 4px 8px -4px rgba(30, 136, 229, 0.25) !important;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
  box-sizing: border-box !important;
  border-radius: 12px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: normal !important;
  z-index: 1 !important;
  width: 100% !important;
}

.gform_wrapper.gform-theme .gform_footer input[type="submit"]:focus {
  box-shadow: none !important;
  outline: none !important;
}

.gform_wrapper.gform-theme .gform_footer input[type="submit"]:hover,
.gform_wrapper.gform-theme .gform_footer input[type="submit"]:focus {
  background: #2196f3 !important;
  box-shadow: 0 20px 30px -10px rgba(30, 136, 229, 0.4),
    0 10px 15px -5px rgba(30, 136, 229, 0.3) !important;
}

/* --- Privacy & Legal Css Start --- */
.premium-legal-hero {
  background: #f8fafe;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 60px 60px;
}

.premium-legal-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(30, 136, 229, 0.05);
  filter: blur(100px);
  border-radius: 50%;
}

.hero-content-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--blue-card-bg);
  color: var(--blue);
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  border: 1px solid rgba(30, 136, 229, 0.1);
}

.hero-content-box h1 {
  font-size: 72px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1;
}

.hero-content-box h1 span {
  color: var(--blue);
}

.hero-content-box p {
  font-size: 22px;
  color: var(--grey);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.legal-grid-layout.swapped {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  margin-top: 80px;
}

.left-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sidebar-card {
  background: var(--white);
  padding: 40px;
  border-radius: 30px;
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.sidebar-card h3 {
  font-size: var(--font-18);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--black);
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.toc-list,
.other-policies-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.toc-list li,
.other-policies-list li {
  margin-bottom: 12px;
}

.toc-list li a,
.other-policies-list li a {
  font-size: var(--font-16);
  color: var(--grey);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  font-weight: 500;
}

.toc-list li a:hover,
.other-policies-list li a:hover {
  color: var(--blue);
  transform: translateX(8px);
}

.legal-updated-note {
  background: #f8fbff;
  padding: 15px 30px;
  border-radius: 12px;
  border: 1px solid rgba(30, 136, 229, 0.05);
  margin-bottom: 60px;
}

.legal-updated-note p {
  font-size: var(--font-16);
  color: var(--blue);
  font-weight: 600;
  margin: 0;
}

.legal-body-text h2 {
  font-size: var(--font-46);
  font-weight: 800;
  color: var(--black);
  margin: 80px 0 30px;
  letter-spacing: -1.5px;
  text-align: start;
}

.legal-body-text h2:first-child {
  margin-top: 0;
}

.legal-body-text p {
  font-size: 19px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.legal-body-text ul {
  margin-bottom: 40px;
}

.legal-body-text ul li {
  font-size: 19px;
  color: #555;
  margin-bottom: 15px;
  position: relative;
  list-style-type: none;
  padding-left: 30px;
}

.legal-body-text ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.legal-body-text a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  box-shadow: inset 0 -2px 0 rgba(30, 136, 229, 0.1);
  transition: all 0.3s ease;
}

.legal-body-text a:hover {
  box-shadow: inset 0 -25px 0 rgba(30, 136, 229, 0.05);
  color: var(--black);
}

/* --- Privacy & Legal Css End --- */

.brochures-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}

.brochure-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.brochure-card:hover {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1);
  border-color: var(--blue);
}

.brochure-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.brochure-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.brochure-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 136, 229, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.brochure-card:hover .brochure-overlay {
  opacity: 1;
}

.download-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.download-trigger img {
  width: 40px;
  filter: brightness(0) invert(1);
}

.brochure-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.brochure-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--light-blue-bg);
  color: var(--blue);
  border-radius: 6px;
  font-size: var(--font-14);
  font-weight: 700;
  margin-bottom: 15px;
}

.brochure-content h3 {
  font-size: var(--font-22);
  margin-bottom: 12px;
  color: var(--black);
}

.brochure-content p {
  font-size: var(--font-18);
  line-height: 1.5;
  margin-bottom: 25px;
}

.brochure-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed var(--border-color);
}

.file-info {
  font-size: var(--font-16);
  color: var(--grey);
  font-weight: 600;
}

.text-btn {
  color: var(--blue);
  font-weight: 700;
  font-size: var(--font-16);
}

.footer-bottom-grid a:hover {
  color: var(--blue);
}

.footer-bottom-grid a {
  transition: all 0.3s ease-in-out;
}

.engagement-model .tab-pane {
  max-width: 1040px;
  margin: 0 auto;
}



/* Information Security Section start */
.information-security-section .common-card-header {
  display: flex;
  align-items: center;
  grid-gap: 12px;
}

.common-point-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}

.common-point-list li {
  position: relative;
  padding-left: 23px;
}

.common-point-list li::before {
  content: "";
  background-color: var(--grey);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 10px;
}

.information-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.information-security-section .common-card.services-card {
  min-height: 266px;
}

.information-security-section .common-card.gradient-card-hover.services-card:not(:nth-child(1), :nth-child(2), :nth-child(3), :nth-child(4)) {
  grid-column: 1 / span 2;
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 1) span {
  background-color: var(--blue);
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 1):hover span {
  background-color: var(--white);
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 1):hover span img {
  filter: var(--blue-filter);
}

/* Card 2: Logical protection - Yellow */
.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 2) span {
  background-color: var(--yellow);
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 2):hover span {
  background-color: var(--white);
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 2):hover span img {
  filter: var(--yellow-filter);
}

/* Card 3: Employee Selection - Purple */
.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 3) span {
  background-color: var(--purple);
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 3):hover span {
  background-color: var(--white);
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 3):hover span img {
  filter: var(--purple-filter);
}

/* Card 4: Login only through authorized IP - Orange */
.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 4) span {
  background-color: var(--orange);
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 4):hover span {
  background-color: var(--white);
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(4):hover span img {
  filter: var(--orange-filter);
}

/* Card 5: Defining the user level access - Green */
.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 5) span {
  background-color: var(--green-light);
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 5):hover span {
  background-color: var(--white);
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 5):hover span img {
  filter: var(--green-light-filter);
}

/* Card 6: Audit of policies - Pink */
.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 6) span {
  background-color: var(--pink);
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 6):hover span {
  background-color: var(--white);
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 6):hover span img {
  filter: var(--pink-filer);
}

/* Card 7: Document Protection - Cyan */
.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 7) span {
  background-color: var(--cyan-lightA50);
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 7):hover span {
  background-color: var(--white);
}

.information-security-section .common-card.gradient-card-hover.services-card:nth-child(7n + 7):hover span img {
  filter: var(--cyan-light-filter);
}

/* Information Security Section end */

/* meet our experts page Start */
.meet-our-experts-page {
  background: var(--white);
}

/* meet our experts page end */
.meet-our-experts-hero-bg .row-grid {
  padding-bottom: 50px;
}

.meet-our-experts-hero-bg {
  padding-bottom: 80px;
}

.mission-hero-card-text {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.mission-hero-card-text p {
  color: var(--blue);
  font-size: var(--font-20);
  text-align: center;
  font-style: italic;
  font-weight: 600;
  line-height: 180%;
}

.vision-section .vision-grid,
.mission-section .mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  align-items: center;
}

.vision-section .section-header,
.mission-section .section-header {
  text-align: left;
}

.vision-section .section-header h2,
.mission-section .section-header h2 {
  text-align: left;
}

.vision-section .img-box img {
  display: block;
  margin-left: auto;
}

.vision-section p,
.mission-section p {
  margin-bottom: 16px;
}

.vision-section .blue-point-list {
  margin-bottom: 16px;
}

.mission-section .blue-point-list {
  margin-bottom: 16px;
}

.blue-point-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px 18px;
}

.blue-point-list li {
  font-size: var(--font-20);
  color: var(--blue);
  line-height: 170%;
  position: relative;
  padding-left: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.blue-point-list li::before {
  content: "";
  position: absolute;
  background-color: var(--blue);
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.benefits-section .blue-point-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 14px;
  margin: 18px 0;
}

.benefits-section .blue-point-list li {
  background-color: var(--light-blue-bg);
  padding: 6px 20px 6px 35px;
  border-radius: 10px;
}

.benefits-section .blue-point-list li::before {
  left: 16px;
  top: 21px;
}

.financial-philosophy-section {
  background: linear-gradient(180deg, #F8FCFF 0%, #FFF 53.48%);
}

.financial-philosophy-section .financial-philosophy-grid {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  justify-content: center;
}

.financial-philosophy-section .common-card:not(:last-of-type) {
  background-color: var(--light-blue-bg);
}

.financial-philosophy-section .common-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  grid-gap: 18px;
}

.financial-philosophy-section .common-card:last-of-type {
  background-color: var(--blue);
}

.financial-philosophy-section .common-card h4 {
  color: var(--black);
  font-size: var(--font-22);
  text-align: center;
  font-weight: 600;
  line-height: 155%;
  max-width: 13ch;
}

.financial-philosophy-section .common-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.financial-philosophy-section span img {
  width: 24px;
  height: 24px;
}

.financial-philosophy-section .common-card:last-of-type h4 {
  color: var(--white);
}

.book-consultation-iframe-box {
  height: 700px;
}

.card-description ul,
.benefit-description ul,
.case-study-grid ul,
.faq-section ul,
.our-services-wrapper ul {
  margin: 10px 0 10px 20px;
}

.case-study-grid ul {
  margin: 0 0 0 20px;
}

.card-description ul li,
.benefit-description ul li,
.case-study-grid ul li,
.faq-section ul li,
.our-services-wrapper ul li {
  color: var(--grey);
  font-size: var(--font-20);
  position: relative;
  font-weight: 400;
  line-height: 150%;
}

.card-description {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}


/* Site Map CSS Start */
.sitemap-wrapper {
  font-family: var(--inter);
  background-color: var(--white);
  padding: 40px 0 100px;
  color: var(--black);
}

.sitemap-container {
  max-width: var(--cg-container);
  margin: 0 auto;
  padding: 0 40px;
}

.sitemap-main-title {
  font-size: var(--font-44);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.title-line {
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 50px;
}

.sitemap-masonry {
  column-count: 3;
  column-gap: 50px;
}

.sitemap-group {
  break-inside: avoid;
  margin-bottom: 50px;
  display: block;
}

.level-0-head {
  font-size: var(--font-26);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 18px;
  text-decoration: none;
  display: block;
  transition: color 0.3s;
}

.level-0-head:hover {
  color: var(--blue);
}

.level-1-group {
  margin-top: 20px;
}

.level-1-head {
  font-size: var(--font-18);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.level-1-head:hover {
  color: var(--blue);
}

.child-list {
  border-left: 1.5px solid var(--border-color);
  padding-left: 20px;
  margin: 8px 0 15px 0;
  list-style: none;
}

.link-item {
  margin-bottom: 10px;
}

.link-item a {
  text-decoration: none;
  color: var(--grey);
  font-size: var(--font-18);
  font-weight: 400;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.link-item a:hover {
  color: var(--blue);
  padding-left: 3px;
}

.footer-group {
  break-inside: avoid;
  margin-top: 15px;
}

.big-link {
  font-size: var(--font-26);
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.big-link:hover {
  color: var(--blue);
}

/* Site Map CSS End */


.page-id-674 .industries-benefits-grid,
.page-id-674 .industry-challenges-grid {
  grid-template-columns: repeat(3, 1fr);
}

.page-id-674 .coman-hero-bg {
  min-height: 500px;
}

/* Blog Filtering CSS */
.blog-filter-section {
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  width: 100%;
  grid-gap: 20px;
}

.filter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.search-form {
  display: flex;
  flex: 1;
  max-width: 500px;
  position: relative;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
}

.search-input-wrapper input {
  width: 100%;
  padding: 14px 20px;
  padding-left: 45px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-family: var(--inter);
  font-size: var(--font-16);
  background: var(--white);
  color: var(--black);
  transition: all 0.3s ease;
}

.search-input-wrapper input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-ring-color);
}

.search-input-wrapper .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  opacity: 0.5;
}

.filters-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.filter-select {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-family: var(--inter);
  font-size: var(--font-14);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  min-width: 160px;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23111111' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.filter-select:focus {
  outline: none;
  border-color: var(--blue);
}

.submit-btn {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--inter);
  font-size: var(--font-16);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--blue-btn-shadow);
}

.submit-btn:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

.clear-btn {
  color: var(--grey);
  text-decoration: none;
  font-size: var(--font-14);
  font-weight: 500;
  transition: color 0.3s ease;
}

.clear-btn:hover {
  color: var(--orange);
}

.blog-grid:has(.no-results) {
  grid-template-columns: 1fr;
}

.no-results p {
  text-align: center;
  width: 100%;
  font-size: var(--font-30);
}

.filters-group select:first-child {
  min-width: 180px;
}

.how-it-works-img-box-desktop img {
  max-height: 720px;
  object-fit: contain;

}

.information-security-center-image img {
  max-height: 700px;
}


.services-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  padding-bottom: 80px;
}

/* Premium Blog Layout & Sidebar Grid */
.blog-layout-wrapper {
  display: grid;
  grid-template-columns: 3fr 1.1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
  width: 100%;
}

@media (max-width: 991px) {
  .blog-layout-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.blog-main-content {
  display: flex;
  flex-direction: column;
}

/* Premium Sticky Sidebar Card */
.blog-sidebar {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-color);
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sidebar-widget h3 {
  font-family: var(--inter);
  font-size: var(--font-18);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background-color: var(--blue);
}

/* Category List Items */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 8px;
}

.category-list li:last-child {
  margin-bottom: 0;
}

.category-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--inter);
  font-size: var(--font-16);
  color: var(--grey);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  margin: 0;
  padding: 8px 12px;
  border-radius: 8px;
}

.category-label:hover {
  color: var(--blue);
  background-color: var(--light-blue-bg);
  transform: translateX(4px);
}

.post-count {
  font-size: var(--font-14);
  background: var(--light-blue-bg);
  padding: 3px 10px;
  border-radius: 20px;
  color: var(--grey);
  transition: all 0.25s ease;
  font-weight: 600;
}

.category-label:hover .post-count {
  background: var(--lightblue);
  color: var(--blue);
}

/* Checked Categories Styling (uses has selector matching custom variables) */
.category-label:has(input:checked) {
  color: var(--blue);
  background-color: var(--lightblue);
  font-weight: 700;
}

.category-label:has(input:checked) .post-count {
  background: var(--blue);
  color: var(--white);
}

/* ==========================================================================
   Quick Links / Explore More Section
   ========================================================================== */
.explore-links-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--light-blue-bg) 100%);
  position: relative;
  overflow: hidden;
}

.explore-links-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.explore-card {
  background: var(--white);
  border-radius: 24px;
  padding: 50px 40px 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
}

.explore-card .card-num {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: var(--black);
  opacity: 0.04;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--inter);
  user-select: none;
}

.explore-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  flex-grow: 1;
  z-index: 2;
}

.explore-card h3 {
  font-size: var(--font-26);
  font-weight: 800;
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 40px;
  line-height: 1.3;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-card .card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-18);
  font-weight: 700;
  color: var(--grey);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid var(--light-grey-border-color);
  padding-top: 24px;
  width: 100%;
}

.explore-card .arrow-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-card .arrow-circle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translate(0, 0);
  transform-origin: center;
}

/* Individual card colors for subtle details */
.explore-card.card-brand {
  border-top: 4px solid var(--green-light);
}

.explore-card.card-brand .card-num {
  color: var(--green-light);
}

.explore-card.card-anim {
  border-top: 4px solid var(--blue);
}

.explore-card.card-anim .card-num {
  color: var(--blue);
}

.explore-card.card-mktg {
  border-top: 4px solid var(--orange);
}

.explore-card.card-mktg .card-num {
  color: var(--orange);
}

/* General Hover Shift */
.explore-card:hover {
  transform: translateY(-10px);
}

/* Hover State - Brand (Green) */
.explore-card.card-brand:hover {
  background-color: #f1fffa;
  border-color: var(--green-light);
  border-top-color: var(--green-light);
  box-shadow: 0 20px 40px rgba(23, 173, 135, 0.08);
}

.explore-card.card-brand:hover h3 {
  color: var(--green-light);
}

.explore-card.card-brand:hover .card-link {
  color: var(--green-light);
  border-top-color: rgba(23, 173, 135, 0.2);
}

.explore-card.card-brand:hover .arrow-circle {
  background-color: var(--green-light);
  color: var(--white);
}

/* Hover State - Anim (Blue) */
.explore-card.card-anim:hover {
  background-color: #f4faff;
  border-color: var(--blue);
  border-top-color: var(--blue);
  box-shadow: 0 20px 40px rgba(30, 136, 229, 0.08);
}

.explore-card.card-anim:hover h3 {
  color: var(--blue);
}

.explore-card.card-anim:hover .card-link {
  color: var(--blue);
  border-top-color: rgba(30, 136, 229, 0.2);
}

.explore-card.card-anim:hover .arrow-circle {
  background-color: var(--blue);
  color: var(--white);
}

/* Hover State - Mktg (Orange) */
.explore-card.card-mktg:hover {
  background-color: #fff7f5;
  border-color: var(--orange);
  border-top-color: var(--orange);
  box-shadow: 0 20px 40px rgba(188, 73, 35, 0.08);
}

.explore-card.card-mktg:hover h3 {
  color: var(--orange);
}

.explore-card.card-mktg:hover .card-link {
  color: var(--orange);
  border-top-color: rgba(188, 73, 35, 0.2);
}

.explore-card.card-mktg:hover .arrow-circle {
  background-color: var(--orange);
  color: var(--white);
}

.explore-card:hover .card-num {
  opacity: 0.12;
  transform: scale(1.05);
}

.explore-card:hover .arrow-circle svg {
  transform: translate(2px, -2px);
}

.page-template-how-we-for-tax .benefits-section .benefits-list,
.page-id-664 .benefits-section .benefits-list,
.page-id-587 .benefits-section .benefits-list,
.page-id-589 .benefits-section .benefits-list,
.page-id-591 .benefits-section .benefits-list,
.page-id-566 .benefits-section .benefits-list,
.page-id-582 .benefits-section .benefits-list,
.page-id-574 .benefits-section .benefits-list,
.page-id-572 .benefits-section .benefits-list,
.page-id-580 .benefits-section .benefits-list,
.page-id-109 .benefits-section .benefits-list,
.page-id-335 .benefits-section .benefits-list {
  grid-template-columns: repeat(6, 1fr);
}

.page-template-how-we-for-tax .common-card.benefits-card:not(:nth-child(4), :nth-child(5)),
.page-id-664 .common-card.benefits-card:not(:nth-child(4), :nth-child(5)),
.page-id-587 .common-card.benefits-card:not(:nth-child(4), :nth-child(5)),
.page-id-589 .common-card.benefits-card:not(:nth-child(4), :nth-child(5)),
.page-id-591 .common-card.benefits-card:not(:nth-child(4), :nth-child(5)),
.page-id-566 .common-card.benefits-card:not(:nth-child(4), :nth-child(5)),
.page-id-582 .common-card.benefits-card:not(:nth-child(4), :nth-child(5)),
.page-id-572 .common-card.benefits-card:not(:nth-child(4), :nth-child(5)),
.page-id-574 .common-card.benefits-card:not(:nth-child(4), :nth-child(5)),
.page-id-580 .common-card.benefits-card:not(:nth-child(4), :nth-child(5)),
.page-id-109 .common-card.benefits-card:not(:nth-child(4), :nth-child(5)),
.page-id-335 .common-card.benefits-card:not(:nth-child(4), :nth-child(5)) {
  grid-column: span 2;
}

.page-template-how-we-for-tax .common-card.benefits-card:nth-child(4),
.page-id-664 .common-card.benefits-card:nth-child(4),
.page-id-335 .common-card.benefits-card:nth-child(4),
.page-id-589 .common-card.benefits-card:nth-child(4),
.page-id-572 .common-card.benefits-card:nth-child(4),
.page-id-580 .common-card.benefits-card:nth-child(4),
.page-id-587 .common-card.benefits-card:nth-child(4),
.page-id-109 .common-card.benefits-card:nth-child(4),
.page-id-566 .common-card.benefits-card:nth-child(4),
.page-id-591 .common-card.benefits-card:nth-child(4),
.page-id-574 .common-card.benefits-card:nth-child(4),
.page-id-582 .common-card.benefits-card:nth-child(4),
.page-template-how-we-for-tax .common-card.benefits-card:nth-child(5),
.page-id-664 .common-card.benefits-card:nth-child(5),
.page-id-587 .common-card.benefits-card:nth-child(5),
.page-id-589 .common-card.benefits-card:nth-child(5),
.page-id-591 .common-card.benefits-card:nth-child(5),
.page-id-572 .common-card.benefits-card:nth-child(5),
.page-id-580 .common-card.benefits-card:nth-child(5),
.page-id-574 .common-card.benefits-card:nth-child(5),
.page-id-566 .common-card.benefits-card:nth-child(5),
.page-id-582 .common-card.benefits-card:nth-child(5),
.page-id-109 .common-card.benefits-card:nth-child(5),
.page-id-335 .common-card.benefits-card:nth-child(5) {
  grid-column: span 3;
}

.page-id-666 .industry-specific-benefits .industry-specific-benefits-img-box img,
.page-id-668 .industry-specific-benefits .industry-specific-benefits-img-box img {
  max-height: 720px;
}

.page-id-674 .industry-specific-benefits .industry-specific-benefits-img-box img {
  max-height: 920px;
}

.page-id-660 .strategic-grid,
.page-id-670 .strategic-grid,
.page-id-664 .strategic-grid {
  grid-template-columns: repeat(3, 1fr);
}

.page-id-676 .benefits-list {
  grid-template-columns: repeat(2, 1fr);
}

.page-id-674 .solution-grid,
.page-id-666 .solution-grid,
.page-id-593 .benefits-list,
.page-id-597 .benefits-list,
.page-id-668 .solution-grid {
  grid-template-columns: repeat(4, 1fr);
}

.page-id-674 .strategic-card:not(:nth-child(7)),
.page-id-666 .strategic-card:not(:nth-child(7)),
.page-id-593 .benefits-card:not(:nth-child(7)),
.page-id-597 .benefits-card:not(:nth-child(7)),
.page-id-668 .strategic-card:not(:nth-child(7)) {
  grid-column: span 2;
}

.page-id-674 .strategic-card:nth-child(7),
.page-id-666 .strategic-card:nth-child(7),
.page-id-593 .benefits-card:nth-child(7),
.page-id-597 .benefits-card:nth-child(7),
.page-id-668 .strategic-card:nth-child(7) {
  grid-column: span 4;
}

.page-id-585 .benefits-section .benefits-list {
  grid-template-columns: repeat(4, 1fr);
}

.page-id-599 .benefits-section .benefits-list {
  grid-template-columns: repeat(2, 1fr);
}

.our-services-wrapper .content-box h3 {
  color: var(--blue);
  font-size: var(--font-22);
  font-weight: 700;
  line-height: 150%;
  margin: 20px 0;
}

.engagement-model .text-center .price {
  color: var(--blue);
  font-size: var(--font-44);
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 20px;
  display: block;
}

.engagement-model .text-center .price span:last-of-type {
  font-size: var(--font-20);
  color: var(--grey);
}

.our-services-wrapper .content-box .common-btn {
  margin-top: 20px;
}

.page-id-662 .industry-challenges-grid {
  grid-template-columns: repeat(4, 1fr);
}

.page-id-670 .industry-challenges-grid {
  grid-template-columns: repeat(5, 1fr);
}

.page-id-666 .industries-benefits-grid {
  grid-template-columns: repeat(5, 1fr);
}

.page-id-676 .solution-grid {
  grid-template-columns: repeat(4, 1fr);
}

.page-id-664 .industries-benefits-grid {
  grid-template-columns: repeat(4, 1fr);
}

.page-id-662 .data-strategy-grid,
.page-id-666 .data-strategy-grid {
  grid-template-columns: repeat(4, 1fr);
}

.page-id-660 .data-strategy-grid,
.page-id-664 .data-strategy-grid {
  grid-template-columns: repeat(4, 1fr);
}

.page-id-668 .industry-challenges-grid {

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

}

.page-id-668 .data-strategy-grid, .page-id-676 .data-strategy-grid {
  grid-template-columns: repeat(4, 1fr);

}

.page-id-676 .industry-challenges-grid {
  grid-template-columns: repeat(4, 1fr);
}

.our-team-card-img-box img {
    border-radius: 12px;
}