:root {
  /* Core palette (no pure black) */
  --bg-0: #000f2b; /* primary dark */
  --bg-1: #011740; /* deep navy */
  --bg-2: #001f59; /* rich blue */
  --bg-ink: #0b1330; /* dark copy on light */

  /* Light surface */
  --light: #f6f9ff;

  /* Text */
  --text-hi: #ffffff;
  --text-med: #cbd6f3;
  --text-low: #9fb3e8;

  /* Brand accents */
  --blue: #22a0da;
  --blue-strong: #0141bf;
  --orange: #0141bf;
  --green: #80b140;
  --purple: #8e44ad;
  --teal: #17a2b8;
  --darkblue: #001f59;
  --gray: #6c757d;
  --yellow: #f1c40f;
  --red: #0141bf;
  --cyan: #00b8ff;

  /* UI */
  --border: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.05);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.45);

  /* Gradients */
  --grad-core: linear-gradient(90deg, #bfe8ff, #4cc9ff);
  --grad-cta: linear-gradient(90deg, #ff7a21, #ff5a00);

  /* Radii */
  --r: 16px;
  --r-lg: 22px;

  --brand-dark: #000f2b;
  --brand-mid: #011740;
  --brand-light: #001f59;
  --brand-accent: #ff6600;
  --brand-blue: #00b8ff;
  --radius-xl: 1.25rem;
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.18);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* General custom CSS for all pages*/

/* #region Card */
.card {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
  background-color: transparent;
  background-clip: border-box;
  border: none;
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card.is-featured-left {
  height: 580px;
}
.card.is-featured-right {
  width: calc(100% - 1.5rem);
  height: calc(290px - 0.75rem);
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
}
.card.is-featured-right:last-child {
  margin-bottom: 0;
}
.card .card-header {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  border: none;
  background: none;
}
.card .card-header:first-child {
  border-radius: 0;
}
.card .card-body {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
}
.card.is-horizontal .card-body {
  width: 55%;
}
.card .card-metadata {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.card .card-metadata .item {
  margin-right: 1rem;
}
.card .sticky-post-icon {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  transform: rotate(45deg);
  border-radius: 50%;
  background-color: var(--color);
}
.card .sticky-post-icon.has-gap {
  top: 25px;
  right: 25px;
}
.card .sticky-post-icon .icon {
  width: 30px;
  height: 30px;
  font-size: 1rem;
  line-height: 30px;
  text-align: center;
  color: var(--color);
}
.card .wishlist-icon {
  position: absolute;
  z-index: 4;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card .wishlist-icon:hover {
  background-color: var(--hover-color);
}
.card .wishlist-icon.has-gap {
  top: 25px;
  right: 25px;
}
.card .wishlist-icon .icon {
  font-size: 1.2rem;
  line-height: 30px;
  text-align: center;
  color: var(--color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card .wishlist-icon:hover .icon {
  color: var(--hover-color);
}
.card .overlay-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  display: block;
  font-size: 2.5rem;
  color: var(--color);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
}
.card .card-icon {
  font-size: 2.75rem;
  color: var(--color);
}
.card .card-image-icon {
  width: auto;
  height: 50px;
  margin-right: auto;
  display: block;
  fill: var(--color);
  stroke: var(--color);
}
.card .card-image-icon.smaller {
  width: auto;
  height: 35px;
}
.card .title {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color);
}
.card.has-icon .title {
  margin-top: 1rem;
}
.card.has-price .title {
  margin: 0 0 1rem 0;
}
.card .description {
  margin-bottom: 0rem;
}
.card .button-wrapper {
  display: flex;
  margin: 1.75rem 0 0;
}
.card .button-wrapper .button {
  position: relative;
  z-index: 2;
}
.card .number-wrapper {
  margin: 0 0 1.5rem 0;
  display: block;
}
.card .number {
  line-height: 0.8;
  color: var(--color);
}
.card .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  line-height: 1;
}
.card .price-wrapper .price {
  margin: 0;
  line-height: 0.9;
  color: var(--color);
}
.card .price-wrapper .currency,
.card .price-wrapper .billing {
  color: var(--color);
}
.card.tip-box {
  width: fit-content;
  margin: auto;
}
.card.tip-box .card-body {
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
}
.card.tip-box .button {
  margin-left: 1rem;
}
.card.has-image .image-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.card.has-image .image-wrapper .image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.card.has-image.is-horizontal {
  flex-direction: row;
}
.card.has-image.is-horizontal .image-wrapper {
  width: 45%;
  z-index: 2;
}
.card.has-full-image {
  overflow: hidden;
}
.card.has-full-image .title {
  margin-top: 1.5rem;
}
.card.has-full-image .image-wrapper {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.card.has-full-image .image-wrapper .image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.card.has-full-image .overlay {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color);
  background: -webkit-linear-gradient(190deg, transparent 0%, var(--color) 70%);
  background: -o-linear-gradient(190deg, transparent 0%, var(--color) 70%);
  background: linear-gradient(190deg, transparent 0%, var(--color) 70%);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
.card .card-flex-wrapper {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card .overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color);
  opacity: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.card .full-link {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .card.has-image.is-horizontal {
    flex-direction: column;
  }
  .card.has-image.is-horizontal .image-wrapper {
    width: 100%;
  }
  .card.is-horizontal .card-body {
    width: 100%;
  }
  .card .label-vertical.to-bottom-right-out,
  .card .label-vertical.to-bottom-left-out {
    bottom: 1.75rem;
    right: initial;
    left: 1.75rem;
    transform: rotate(0);
    -webkit-writing-mode: unset;
    writing-mode: unset;
  }
  .card.has-metadata .label-vertical.to-bottom-right-out,
  .card.has-metadata .label-vertical.to-bottom-left-out,
  .card.has-shop-price .label-vertical.to-bottom-right-out,
  .card.has-shop-price .label-vertical.to-bottom-left-out {
    display: none;
  }
  .card .label-vertical.to-bottom-right-out .label-line,
  .card .label-vertical.to-bottom-left-out .label-line {
    display: none;
  }
  .card .label-vertical.to-bottom-right-out .icon,
  .card .label-vertical.to-bottom-left-out .icon {
    transform: rotate(0);
    margin-bottom: 0;
  }
  .card.is-featured-left {
    height: 50vh;
    margin-bottom: 1rem;
  }
  .card.is-featured-right {
    width: 100%;
    height: 50vh;
    margin-bottom: 1rem;
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .card.has-full-image .card-metadata {
    display: block;
  }
}
/* #endregion Card */
/* #region Card Outline */
.card.outline .overlay {
  background-color: transparent;
  opacity: 1;
}
.card.outline .overlay::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid;
  border-radius: inherit;
  border-color: var(--color);
  transform: rotate(0deg);
}
/* #endregion Card Outline */
/* #region Card Double Edge */
.card.double-edge .card-header {
  padding: 2.25rem;
}
.card.double-edge .card-body {
  padding: 2.25rem;
}
.card.double-edge .overlay {
  background-color: transparent;
  opacity: 1;
}
.card.double-edge .overlay::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color);
  transform: rotate(0deg);
}
.card.double-edge .overlay::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color);
  transform: rotate(5deg);
}
/* #endregion Card Double Edge */
/* #region Card Boxed */
.card.boxed {
  position: relative;
  width: 100%;
  height: 100%;
}
.card.boxed .image-wrapper {
  position: relative;
  overflow: hidden;
  width: 80%;
  margin-bottom: 20%;
  display: block;
}
.card.boxed .image-wrapper .image {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.boxed .image-wrapper .image.outline {
  padding: 10px 10px 0;
  filter: drop-shadow(2px 0 0 transparent) drop-shadow(-2px 0 transparent)
    drop-shadow(0 2px 0 transparent) drop-shadow(0 -2px 0 transparent)
    drop-shadow(2px 2px 0 transparent) drop-shadow(2px -2px 0 transparent)
    drop-shadow(-2px 2px 0 transparent) drop-shadow(-2px -2px 0 transparent);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.boxed .image-wrapper .image.outline.active,
.card.boxed:hover .image-wrapper .image.outline {
  filter: drop-shadow(2px 0 0 var(--color)) drop-shadow(-2px 0 var(--color))
    drop-shadow(0 2px 0 var(--color)) drop-shadow(0 -2px 0 var(--color))
    drop-shadow(2px 2px 0 var(--color)) drop-shadow(2px -2px 0 var(--color))
    drop-shadow(-2px 2px 0 var(--color)) drop-shadow(-2px -2px 0 var(--color));
}
.card.boxed .image-wrapper .image-overlay {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color);
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.boxed .image-wrapper .image-overlay.outline {
  background-color: transparent;
  border: 2px solid;
  border-color: var(--color);
}
.card.boxed .image-wrapper .image-overlay.active,
.card.boxed:hover .image-wrapper .image-overlay {
  background-color: var(--hover-color);
}
.card.boxed .box {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 20%;
  width: 80%;
  height: auto;
  display: block;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.card.boxed .box .list-wrapper {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .card.boxed .box .link {
    display: block;
  }
  .card.boxed .box .link .badge {
    margin: 1rem 0 0 !important;
    display: inline-block;
  }
}
/* #endregion Card Boxed */

/* Testimonial Card Boxed */

.card.boxed {
  position: relative;
  width: 100%;
  height: 100%;
}

.card.boxed .image-wrapper {
  position: relative;
  overflow: hidden;
  width: 80%;
  margin-bottom: 20%;
  display: block;
}

.card.boxed .image-wrapper .image {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.card.boxed .image-wrapper .image.outline {
  padding: 10px 10px 0;
  filter: drop-shadow(2px 0 0 transparent) drop-shadow(-2px 0 transparent)
    drop-shadow(0 2px 0 transparent) drop-shadow(0 -2px 0 transparent)
    drop-shadow(2px 2px 0 transparent) drop-shadow(2px -2px 0 transparent)
    drop-shadow(-2px 2px 0 transparent) drop-shadow(-2px -2px 0 transparent);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.card.boxed .image-wrapper .image.outline.active,
.card.boxed:hover .image-wrapper .image.outline {
  filter: drop-shadow(2px 0 0 var(--color)) drop-shadow(-2px 0 var(--color))
    drop-shadow(0 2px 0 var(--color)) drop-shadow(0 -2px 0 var(--color))
    drop-shadow(2px 2px 0 var(--color)) drop-shadow(2px -2px 0 var(--color))
    drop-shadow(-2px 2px 0 var(--color)) drop-shadow(-2px -2px 0 var(--color));
}

.card.boxed .image-wrapper .image-overlay {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color);
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.card.boxed .image-wrapper .image-overlay.outline {
  background-color: transparent;
  border: 2px solid;
  border-color: var(--color);
}

.card.boxed .image-wrapper .image-overlay.active,
.card.boxed:hover .image-wrapper .image-overlay {
  background-color: var(--hover-color);
}

.card.boxed .box {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 20%;
  width: 80%;
  height: auto;
  display: block;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.card.boxed .box .list-wrapper {
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .card.boxed .box .link {
    display: block;
  }

  .card.boxed .box .link .badge {
    margin: 1rem 0 0 !important;
    display: inline-block;
  }
}

.label-vertical-icons {
  position: absolute;
  z-index: 3;
  bottom: calc(100% + 15px);
  right: 10%;
  width: fit-content;
  height: fit-content;
}

.label-icons .link,
.label-vertical-icons .link {
  margin: 0;
  padding: 5px;
}

.label-icons .icon {
  font-size: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.label-vertical-icons .icon {
  margin: 0;
  display: block;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.label-icons .label-line,
.label-vertical-icons .label-line {
  width: 1px;
  height: 35px;
  margin: 5px 0 0 0;
  display: inline-block;
  background-color: var(--color);
}
/* #end Testimonial Card Boxed */

/* General custom CSS for all pages End*/

/* Home Page Custom CSS Start */
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg-0);
  color: var(--text-med);
  font-family: Inter, system-ui, Arial, sans-serif;
}

.badge-chip {
  display: inline-block;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(34, 160, 218, 0.14) !important;
  border: 1px solid rgba(34, 160, 218, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
}
.badge-chip--ink {
  color: #0141bf;
  background: rgba(1, 65, 191, 0.12);
  border-color: rgba(1, 65, 191, 0.22);
}

/* Purpose Section */
.purpose-points {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.purpose-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}
.purpose-points .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-blue));
  margin-top: 6px;
  flex: 0 0 10px;
}
.purpose-points-dark {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.purpose-points-dark li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}
.purpose-points-dark .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-blue));
  margin-top: 6px;
  flex: 0 0 10px;
}
.purpose-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 22px;
}

.purpose-badges {
  display: grid;
  /*grid-template-columns: repeat(4, minmax(120px, 1fr));*/
  gap: 12px;
  margin-top: 8px;
}
@media (max-width: 680px) {
  .purpose-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}
.badge {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.badge-num {
  font-size: 16px;
  font-weight: 800;
  color: #000f2b;
}
.badge-label {
  font-size: 11px;
  color: #5272a7;
  margin-top: 2px;
}

.purpose-card {
  background: #fff;
  color: var(--brand-dark);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 22px;
}
.card-head {
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 10px;
}
.card-list {
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 10px;
  color: #27324d;
}
.card-foot {
  margin-top: 12px;
}
.link-inline {
  color: var(--brand-accent);
  font-weight: 700;
  text-decoration: none;
}
.link-inline:hover {
  text-decoration: underline;
}

/* Cards / chips */
.card-js {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  transition: 0.25s;
}
.card-js:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 160, 218, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(34, 160, 218, 0.14);
  border: 1px solid rgba(34, 160, 218, 0.28);
  color: #bfe8ff;
  margin-bottom: 10px;
}
.card-title {
  color: #fff;
  margin-bottom: 6px;
}
.card-copy {
  color: var(--text-med);
  margin: 0;
}

/* Purpose Section End */

/* Operating model */
.callout {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
}
.step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 0.5rem;
}
.dot--accent {
  background: var(--orange);
}
.dot--green {
  background: var(--green);
}
.dot--blue-strong {
  background: var(--blue-strong);
}
.dot--purple {
  background: var(--purple);
}
.dot--teal {
  background: var(--teal);
}
.dot--darkblue {
  background: var(--darkblue);
}
.dot--gray {
  background: var(--gray);
}
.dot--yellow {
  background: var(--yellow);
}
.dot--red {
  background: var(--red);
}
.dot--cyan {
  background: var(--cyan);
}
.hero-visual {
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}

/* Industries we serve */
.industry-image-container {
  margin: 0vh;
  position: relative;
  width: 100%;
  border-radius: 10px;
  height: 300px;
  transition: all 0.3s ease;
}

.industry-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 10px;
  transition: opacity 0.3s ease;
  background: linear-gradient(
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.9)
  );
  z-index: 9;
}
/* .industry-image-container:hover {
  border: 5px solid rgb(225, 225, 255);
  border-radius: 10px;
} */
.industry-image-container:hover .industry-image-overlay {
  opacity: 1;
}

.industry-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.industry-image-container .description {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #d6ccaa;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  width: 85% !important;
}

.industry-image-container:hover .description {
  opacity: 1;
}

.industry-image-container h3 {
  color: #22a0da;
}
.industry-image-container p {
  color: #000;
}

/* Social Trust */
.ratings {
  font-size: 1rem;
  display: grid;
}
@media (max-width: 1199px) {
  .ratings {
    padding: 2rem;
    grid-gap: 2.5rem 1rem;
    background-color: #f3f4f5;
  }
}
@media (max-width: 767px) {
  .ratings {
    grid-gap: 2.5rem 1rem;
  }
}
.ratings .rating {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.ratings .rating__detail {
  margin-top: 1rem;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .ratings .rating__detail {
    flex-direction: column;
  }
}
.ratings .rating__logo img {
  max-width: 200px;
  height: 44px;
}
.ratings .rating__logo.clutch img {
  max-width: 100px;
}
.ratings .rating__count {
  margin-right: 10px;
  line-height: 1;
  font-size: 1.25rem;
  display: inline-block;
}
.ratings .star-ratings {
  unicode-bidi: bidi-override;
  color: #808080;
  font-size: 1.5rem;
  position: relative;
  margin: 0;
  padding: 0;
}
.ratings .star-ratings .fill-ratings {
  color: #fbb21b;
  padding: 0;
  position: relative;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}
.ratings .star-ratings .fill-ratings span {
  display: inline-block;
}
.ratings .star-ratings .empty-ratings {
  padding: 0;
  display: block;
  z-index: 0;
}

/* About Jurysoft */
.mini-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.mini-stats div {
  background: #f2f6ff;
  border: 1px solid #e3ebff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  color: #1c2745;
}
.mini-stats span {
  font-weight: 800;
  color: var(--brand-light);
  margin-right: 6px;
}

/* Home Page Custom CSS End */

/* Mobile app overview Start */
.grid-panel-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: calc(clamp(0.938rem, 1.592vw + 0.589rem, 2.5rem));
}

@media (max-width: 576px) {
  .grid-panel-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid-panel-2 .card {
  padding: calc(clamp(0.625rem, 1.274vw + 0.346rem, 1.875rem));
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-top: 2px solid #0096ff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  border-radius: 0;
}

@media (max-width: 991px) {
  .grid-panel-2 .card {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }
}

.grid-panel-2 .card:hover {
  background-color: #0096ff;
  border-color: #0096ff;
  color: #fff;
}

.grid-panel-2 .card p {
  margin: 0;
}

.grid-panel-2 .card h4 {
  font-weight: 600;
  font-size: calc(clamp(1.125rem, 0.382vw + 1.041rem, 1.5rem));
  line-height: 1.25;
}

.grid-panel-2 .card .small {
  font-size: 1rem;
}

.js-tabs__wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0px;
  align-items: start;
}

.js-tabs__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--js-border);
  border: 1px solid var(--js-border);
}

.js-tabs__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20% 5% 20% 5%;
  border: 0;
  cursor: pointer;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.js-tabs__icon svg {
  width: 52px;
  height: 52px;
  fill: var(--js-text);
  display: block;
  margin: 0 auto;
}

.js-tabs__label {
  text-align: center;
  line-height: 1.25;
}

.js-tabs__tab.is-active {
  background: var(--js-accent);
}

.js-tabs__tab.is-active .js-tabs__label {
  color: #0dcaf3;
}
.js-tabs__tab.is-active .js-tabs__icon i {
  color: #0dcaf3;
}
.js-tabs__tab.is-active .js-tabs__icon svg {
  fill: #0dcaf3;
}

.js-tabs__panels {
  border: 1px solid var(--js-border);
  background: #0d3364;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: calc(0.4rem + 2vw);
  height: 100%;
}

.js-tabs__panel {
  display: none;
}
.js-tabs__panel.is-active {
  display: block;
}

@media (max-width: 1024px) {
  .js-tabs__wrap {
    grid-template-columns: 1fr;
  }

  .js-tabs__nav {
    display: flex;
    overflow-x: auto;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--js-border);
    gap: 0;
  }

  .js-tabs__tab {
    flex: 0 0 auto;
    padding: 14px 18px;
    background: transparent;
    white-space: nowrap;
  }

  .js-tabs__icon {
    display: none;
  }

  .js-tabs__tab.is-active {
    background: transparent;
  }

  .js-tabs__tab.is-active .js-tabs__label {
    color: var(--js-accent);
    position: relative;
    padding-bottom: 8px;
  }

  .js-tabs__tab.is-active .js-tabs__label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--js-accent);
  }
}

/* Mobile App overview End */
