/* =============================================================
   Bundled common stylesheet — built from global.css + common/*.css
   Source order preserved to keep cascade/specificity identical.
   Source files remain in assets/css/ and assets/css/common/ for
   reference; edit the source file, then re-run the concat build.
   ============================================================= */

/* --- global.css --- */
body,
html {
  font-family: "Poppins", sans-serif;
  color: #171717;
  scroll-behavior: smooth;
  overflow-x: clip;
  /* Hide scrollbar but keep scrolling functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Home Page */
.home-hero-section {
  height: 100vh;
}

.home-hero-gradient-top-left,
.home-hero-gradient-bottom-right {
  pointer-events: none;
  z-index: 1;
}

/* .home-hero-gradient-top-left {
  background: linear-gradient(to bottom right, rgba(153, 196, 85, 0.2), transparent 50%);
  top: 0;
  left: 0;
} */

.home-hero-gradient-bottom-right {
  background: linear-gradient(to top left,
      rgba(153, 196, 85, 0.2),
      transparent 50%);
  bottom: 0;
  right: 0;
}

.home-hero-content {
  z-index: 2;
}

@media (max-width: 576px) {
  .home-hero-content {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .home-hero-content h1 {
    font-size: 1.75rem;
    /* smaller than display-5 */
    line-height: 1.3;
  }

  .home-hero-content p {
    font-size: 0.95rem;
    margin-top: 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  .home-hero-content a {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.95rem;
  }
}


.home-banner-marquee {
  background-color: #171717;
  background-image: url("../images/home/marquee_banner_pattern.png");
  background-repeat: repeat;
  background-size: cover;
  overflow: hidden;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.home-marquee-track {
  display: inline-flex;
  animation: home-marquee-scroll 20s linear infinite;
}

.home-marquee-track span {
  white-space: nowrap;
  font-weight: 500;
  font-size: 1.1rem;
}

@keyframes home-marquee-scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.common-subheading {
  color: #99c455;
  font-size: 26px;
  font-weight: 600;
}

.common-title {
  font-size: 42px;
  font-weight: 600;
}

@media (max-width: 576px) {
  .common-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .text-start-mobile {
    text-align: left !important;
  }
}


.home-what-we-offer-section {
  background-color: #f4f4f4;
}

.home-offer-card {
  background-image: url("../images/home/what_we_offer_card_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px;
}

.home-right-offer-card {
  transition: all 0.3s ease;
  background-color: white;
  cursor: pointer;
}

.home-right-offer-card:hover {
  background-color: #99c455;
  color: white;
}

.home-right-offer-card:hover .fw-semibold,
.home-right-offer-card:hover p {
  color: white;
}

.home-offer-icon {
  width: 48px;
  height: 48px;
  background-color: #171717;
  border-radius: 4px;
}

.home-right-offer-card .home-offer-icon {
  width: 48px;
  height: 48px;
  background-color: #171717;
  transition: background-color 0.3s ease;
}

.home-right-offer-card:hover .home-offer-icon {
  background-color: white;
}

.home-right-offer-card .home-offer-icon img {
  transition: filter 0.3s ease;
}

.home-right-offer-card:hover .home-offer-icon img {
  filter: brightness(0) saturate(100%) invert(73%) sepia(34%) saturate(477%) hue-rotate(39deg) brightness(92%) contrast(88%);
}

@media (max-width: 576px) {
  .home-offer-card .fs-2 {
    font-size: 24px !important;
  }

  .home-offer-card .fs-5 {
    font-size: 16px !important;
  }

  .home-offer-icon {
    width: 40px;
    height: 40px;
  }
}

.home-top-border-cards-top-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #99c455;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.home-top-border-cards-card {
  background-color: white;
  transition: box-shadow 0.3s ease;
}

.home-top-border-cards-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.home-top-border-cards-card .home-top-border-cards-arrow-btn {
  transition: background 0.3s ease;
}

.home-top-border-cards-card:hover .home-top-border-cards-arrow-btn {
  background: linear-gradient(to right, #1c3442, #2a7041);
}

.home-top-border-cards-arrow-icon {
  transition: transform 0.3s ease;
}

.home-top-border-cards-card:hover .home-top-border-cards-arrow-icon {
  transform: rotate(-45deg) !important;
}

/* Image zoom effect */
.placeholder-img {
  position: relative;
  min-height: 200px;
  overflow: hidden;               /* Prevent container from scaling */
  border-radius: 0.5rem;          /* Keep rounded edges */
}

.placeholder-img::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-image: inherit;      /* Fallback */
  transition: transform 0.4s ease;
  z-index: 0;
}

/* Use inline style background-image but make it zoom */
.placeholder-img[style]::before {
  background-image: attr(style url);
}

.home-top-border-cards-card:hover .placeholder-img::before {
  transform: scale(1.08);         /* Zooms the image inside */
}

@media (max-width: 767.98px) {
  #home-top-border-cards-wrapper .col-md-6:nth-child(n + 4) {
    display: none;
  }

  #home-top-border-cards-wrapper.home-top-border-cards-show-all .col-md-6 {
    display: flex !important;
  }
}


.home-work-exp-bg-green {
  background-color: #99c455;
}

.home-work-exp-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  margin: auto;
  border-radius: 12px;
  background-color: white;
  overflow: hidden;
}

.home-work-exp-dots-image {
  position: absolute;
  width: 20%;
  bottom: 5%;
  left: 20%;
  z-index: 0;
}

.home-work-exp-top-left-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  z-index: 1;
}

.home-work-exp-overlay-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
  border: 10px solid white;
}

.home-work-exp-bottom-right-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.home-work-exp-overlay-shade {
  position: absolute;
  inset: 0;
  background-color: #99c455;
  opacity: 0.3;
  z-index: 1;
}

.home-work-exp-overlay-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 1rem;
}

.home-work-exp-overlay-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}

.home-tab-btn {
  background: transparent;
  border: none;
  font-weight: 500;
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.3s;
  position: relative;
  z-index: 1;
}

.home-tab-btn.active {
  background-color: #99c455;
  color: white;
  box-shadow: 0 2px 8px rgba(153, 196, 85, 0.4);
}

.home-tab-line-wrapper {
  bottom: 0;
  left: 0;
  height: 8px;
  padding: 0 10px;
}

.home-tab-line {
  background: #99c455;
  height: 2px;
  width: 100%;
}

.home-tab-dot {
  width: 8px;
  height: 8px;
  background-color: #99c455;
  border-radius: 50%;
  flex-shrink: 0;
}

.home-whyus-icon-wrapper {
  width: 28px;
  height: 28px;
  background-color: #171717;
  border-radius: 50%;
  flex-shrink: 0;
}

.home-industry-card {
  position: relative;
  min-height: 220px;
  background-color: #f4f4f4;
  border-radius: 5px;
  padding: 20px;
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow: hidden;
}

.home-industry-card:hover {
  background-color: #171717;
  color: white;
}

.home-industry-card:hover .home-industry-title,
.home-industry-card:hover .home-industry-description {
  color: white;
}

.home-industry-card::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50% 50% 0% 50%;
  z-index: 1;
}

.home-industry-btn {
  position: absolute;
  bottom: 35px;
  right: 35px;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  transform: translate(50%, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8cc55b;
  cursor: pointer;
  z-index: 2;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.home-industry-card:hover .home-industry-btn {
  background: linear-gradient(135deg, #067d3c, #143c55);
}

.home-industry-arrow {
  width: 60%;
  height: 60%;
  transform: rotate(-45deg);
  transition: transform 0.4s ease;
}

.home-industry-card:hover .home-industry-arrow {
  transform: rotate(45deg);
}

.home-industry-title {
  color: #171717;
  transition: color 0.4s ease;
}

.home-industry-description {
  color: #333;
  transition: color 0.4s ease;
}

/* Initial state for hidden cards */
.industry-hidden {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

/* When expanded */
.industry-hidden.expand {
  max-height: 300px;
  /* adjust based on your card height */
  opacity: 1;
}

/* When collapsed */
.industry-hidden.collapse {
  max-height: 0;
  opacity: 0;
}

.home-awards-scroll {
  -ms-overflow-style: none;
  /* IE & Edge */
  scrollbar-width: none;
  /* Firefox */
  scroll-snap-type: x mandatory;
  /* Enable snap scroll */
  scroll-behavior: smooth;
}

.home-awards-scroll::-webkit-scrollbar {
  /* height: 8px; */
  display: none;
}

.home-awards-scroll::-webkit-scrollbar-track {
  background: #575757;
  border-radius: 10px;
}

.home-awards-scroll::-webkit-scrollbar-thumb {
  background: #b1f676;
  border-radius: 10px;
}

.home-award-card {
  min-width: 200px;
  background-color: #2c2c2c;
  border-radius: 12px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.home-awards-scroll::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

.transition-all {
  transition: transform 0.4s ease;
}

/* Smooth transition setup */
.primary-faq-section {
  overflow-x: hidden;
  overflow-y: hidden;
}

.primary-faq-answer-wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.primary-faq-icon {
  transition: transform 0.4s ease;
}

.primary-faq-item.active .primary-faq-icon {
  transform: rotate(45deg);
  /* plus to minus */
}

.home-media-grid-marquee-row {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.home-media-grid-marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
}

.home-media-grid-marquee-track img {
  height: 250px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
}

.home-media-grid-left .home-media-grid-marquee-track {
  animation: home-media-grid-scroll-left 25s linear infinite;
}

.home-media-grid-right .home-media-grid-marquee-track {
  animation: home-media-grid-scroll-right 25s linear infinite;
}

@keyframes home-media-grid-scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes home-media-grid-scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.home-media-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "large large"
    "small1 small2"
    "small3 small4";
  gap: 12px;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.home-media-grid-wrapper.fade-out {
  opacity: 0;
}

.home-media-grid-wrapper.fade-in {
  opacity: 1;
}

.home-media-grid-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.home-media-grid-large {
  grid-area: large;
  aspect-ratio: 2/1.2;
}

.home-media-grid-small1 {
  grid-area: small1;
  aspect-ratio: 1/1;
}

.home-media-grid-small2 {
  grid-area: small2;
  aspect-ratio: 1/1;
}

.home-media-grid-small3 {
  grid-area: small3;
  aspect-ratio: 1/1;
}

.home-media-grid-small4 {
  grid-area: small4;
  aspect-ratio: 1/1;
}

.home-media-grid-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.home-media-grid-dot.active {
  background-color: #99c455;
}

.bg-light-green {
  background-color: rgba(153, 196, 85, 0.1);
}

.text-green {
  color: #99c455;
}

.about-trusted-section {
  overflow-x: hidden;
  overflow-y: hidden;
}

.about-trusted-description {
  font-weight: 400;
  font-size: 18px;
  color: #444;
}

.custom-btn-green {
  background-color: #99c455;
  color: #fff;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Add transform to the transition */
}

.custom-btn-green:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  /* Make box-shadow more prominent */
  transform: translateY(-2px);
  /* Lift the button slightly */
}

.custom-btn-green:hover .custom-btn-green-arrow {
  transform: translateX(5px);
}

.custom-btn-green-label,
.custom-btn-green-arrow {
  transition: all 0.3s ease;
}

.custom-btn-primary {
  background-color: #171717;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Add transform to the transition */
}

.custom-btn-primary:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  /* Make box-shadow more prominent */
  transform: translateY(-2px);
  /* Lift the button slightly */
}

.custom-btn-primary:hover .custom-btn-arrow {
  transform: translateX(5px);
}

.custom-btn-label,
.custom-btn-arrow {
  transition: all 0.3s ease;
}

.about-logo-marquee-container {
  max-height: 300px;
  height: 300px;
}

.about-logo-marquee-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 100px;
  gap: 20px;
  animation: about-logo-scroll 18s linear infinite;
}

.about-logo-marquee-track img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  justify-self: center;
  align-self: center;
}

@keyframes about-logo-scroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.about-timeline-wrapper {
  position: relative;
  overflow: hidden;
  padding: 40px 10px 0;
}

.about-timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.about-timeline-track {
  display: flex;
  gap: 160px;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 2;
}

.about-timeline-year {
  font-size: 80px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  position: relative;
  text-align: center;
  min-width: 120px;
  transition: color 0.4s ease;
  font-family: "Times New Roman", Times, serif;
  cursor: pointer;
}

.about-timeline-year.active {
  color: #ffffff;
}

.about-timeline-year::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgb(117, 117, 117);
  z-index: 3;
}

.about-timeline-year.active::before {
  background-color: #99c455;
}

.about-timeline-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.about-timeline-btn.disabled:hover {
  background-color: #99c455;
  border: none;
}

.about-timeline-btn.disabled:hover img {
  filter: brightness(0) invert(1);
}

.about-experience-tag-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #1c3442, #2a7041);
  color: white;
  border-radius: 12px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  z-index: 2;
}

.about-experience-tag-content {
  display: flex;
  align-items: center;
  z-index: 3;
}

.about-experience-tag-years {
  font-size: 2.5rem;
  font-weight: bold;
  margin-right: 10px;
}

.about-experience-tag-text {
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: left;
}

.about-experience-tag-shadow {
  position: absolute;
  left: -25px;
  bottom: 0;
  width: 25px;
  height: 25px;
  background: linear-gradient(45deg, #1c3442, #2a7041);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  z-index: 1;
}

.about-work-card {
  width: 280px;
  height: 400px;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  margin-top: 2rem;
}

.about-work-step-circle {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  background-color: #99c455;
  box-shadow: 0 0 0 10px rgba(154, 196, 85, 0.2);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
  box-sizing: border-box;
}

.about-work-arc {
  flex-shrink: 0;
}

@media (max-width: 1199.98px) {
  .about-work-arc {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .about-work-section .d-flex.flex-nowrap {
    flex-direction: column;
    align-items: stretch;
  }

  .about-work-card {
    width: 90%;
    max-width: 100%;
  }
}

.about-presence-bottom-line {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  height: 1px;
  background-color: #99c455;
}

.about-presence-dot {
  position: absolute;
  bottom: -4px;
  width: 8px;
  height: 8px;
  background-color: #99c455;
  border-radius: 50%;
}

.about-presence-dot-left {
  left: 15px;
}

.about-presence-dot-right {
  right: 15px;
}

.about-presence-subheading {
  color: #99c455;
  font-size: 26px;
}

.about-presence-heading {
  font-size: 48px;
}

.about-presence-description {
  font-size: 18px;
  line-height: 31px;
}

.about-presence-stat-icon {
  background-color: #99c455;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-presence-stat-icon img {
  width: 36px;
  height: 36px;
}

.about-presence-stat-number {
  font-size: 56px;
  font-weight: 600;
  line-height: 100%;
}

.about-presence-stat-label {
  font-size: 22px;
  line-height: 40px;
  color: #cccccc;
  font-weight: 300;
}

@media (max-width: 767.98px) {
  .about-presence-subheading {
    font-size: 18px;
  }

  .about-presence-heading {
    font-size: 28px;
  }

  .about-presence-description {
    font-size: 15px;
    line-height: 26px;
  }

  .about-presence-stat-number {
    font-size: 40px;
  }

  .about-presence-stat-label {
    font-size: 18px;
  }

  .about-presence-stat-icon {
    width: 45px;
    height: 45px;
  }

  .about-presence-stat-icon img {
    width: 24px;
    height: 24px;
  }

  .about-presence-bottom-line {
    left: 10px;
    right: 10px;
  }

  .about-presence-dot-left {
    left: 10px;
  }

  .about-presence-dot-right {
    right: 10px;
  }
}

.about-image-grid-tabs-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.about-image-grid-tabs-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.about-image-grid-tab-wrapper {
  width: 100%;
  position: relative;
}

.about-image-grid-tab-border {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #ddd;
  z-index: 0;
}

.about-image-grid-tabs {
  position: relative;
  z-index: 1;
  gap: 16px;
}

.about-image-grid-tabs .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.about-image-grid-tabs .nav-link {
  background: none;
  border: none;
  color: #4c4c4c;
  font-weight: 400;
  font-size: 15px;
  padding: 8px 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: color 0.2s ease;
  position: relative;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.about-image-grid-tabs .nav-link img {
  height: 20px;
  width: 20px;
  filter: grayscale(1) brightness(0.6);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.about-image-grid-tabs .nav-link.active {
  color: #99c455;
  font-weight: 600;
}

.about-image-grid-tabs .nav-link.active img {
  filter: brightness(0) saturate(100%) invert(88%) sepia(4%) saturate(5525%) hue-rotate(31deg) brightness(91%) contrast(71%);
}

.about-image-grid-tabs .nav-link:hover img {
  transform: scale(1.05);
}

.about-image-grid-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #99c455;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about-image-grid.layout-1 {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-gap: 16px;
  grid-template-areas:
    "large1 large1 large1 large1 large1 small1 small1 small1 small2 small2 small2"
    "large1 large1 large1 large1 large1 small3 small3 small3 small4 small4 small4"
    "small5 small5 small5 small6 small6 small6 large2 large2 large2 large2 large2"
    "small7 small7 small7 small8 small8 small8 large2 large2 large2 large2 large2";
}

.about-image-grid.layout-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, auto);
  gap: 16px;
  grid-template-areas:
    "small1 small2 small3 small4"
    "large2 large1 large1 small5"
    "large2 large1 large1 small5"
    "small6 large1 large1 small7"
    "small6 large1 large1 small7"
    "small8 small9 small10 small11";
}

.about-image-grid.layout-3 {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-gap: 16px;
  grid-template-areas:
    "small1 small1 small1 small2 small2 small2 large1 large1 large1 large1 large1"
    "small3 small3 small3 small4 small4 small4 large1 large1 large1 large1 large1"
    "large2 large2 large2 large2 large2 small5 small5 small5 small6 small6 small6"
    "large2 large2 large2 large2 large2 small7 small7 small7 small8 small8 small8";
}

.about-image-grid.layout-4 {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 16px;
  grid-template-areas:
    "large1 large1 large1 large1 large1 large1 small1 small1 small2 small2"
    "large1 large1 large1 large1 large1 large1 small1 small1 small2 small2"
    "large1 large1 large1 large1 large1 large1 small3 small3 small4 small4"
    "large1 large1 large1 large1 large1 large1 small3 small3 small4 small4"
    "small5 small5 small6 small6 small6 small6 large2 large2 large2 large2"
    "small5 small5 small6 small6 small6 small6 large2 large2 large2 large2"
    "small5 small5 small6 small6 small6 small6 large2 large2 large2 large2"
    "small5 small5 small7 small7 small7 small7 large2 large2 large2 large2"
    "small5 small5 small7 small7 small7 small7 large2 large2 large2 large2"
    "small5 small5 small7 small7 small7 small7 large2 large2 large2 large2";
}

.about-image-grid.layout-5 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(7, 1fr);
  grid-gap: 16px;
  grid-template-areas:
    "large1 large1 large2 large2"
    "large1 large1 large2 large2"
    "small1 small2 small3 small4"
    "small1 small2 small3 small4"
    "small1 small2 small3 small4"
    "small5 small5 small6 small6"
    "small5 small5 small6 small6";
}

.about-image-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image-grid.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image-grid.fade-in {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.about-image-grid-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.5s ease, transform 0.4s ease;
}

.about-image-grid-item.fade-in {
  opacity: 1;
  transform: scale(1);
}

.about-image-grid-large1 {
  grid-area: large1;
}

.about-image-grid-large2 {
  grid-area: large2;
}

.about-image-grid-small1 {
  grid-area: small1;
}

.about-image-grid-small2 {
  grid-area: small2;
}

.about-image-grid-small3 {
  grid-area: small3;
}

.about-image-grid-small4 {
  grid-area: small4;
}

.about-image-grid-small5 {
  grid-area: small5;
}

.about-image-grid-small6 {
  grid-area: small6;
}

.about-image-grid-small7 {
  grid-area: small7;
}

.about-image-grid-small8 {
  grid-area: small8;
}

.about-image-grid-small9 {
  grid-area: small9;
}

.about-image-grid-small10 {
  grid-area: small10;
}

.about-image-grid-small11 {
  grid-area: small11;
}

@media (max-width: 992px) {
  .about-image-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 12px;
    grid-template-areas:
      "large1 large1"
      "large1 large1"
      "small1 small2"
      "small3 small4";
  }

  .about-image-grid-item {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  #about-image-grid-dots {
    display: flex !important;
  }
}

@media (max-width: 576px) {
  .about-image-grid-item {
    flex: 1 1 100%;
  }
}

@media (min-width: 993px) {
  #about-image-grid-dots {
    display: none !important;
  }
}

.about-image-grid-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.about-image-grid-dot.active {
  background-color: #99c455;
}

.services-intro-card {
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.services-intro-card:hover {
  background: linear-gradient(0deg, #1C3442, #2A7041);
  color: #ffffff;
}

.services-intro-card:hover .services-intro-icon-wrapper {
  background-color: #ffffff;
}

.services-intro-card:hover .services-intro-icon-wrapper img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(21%) saturate(1710%) hue-rotate(93deg) brightness(94%) contrast(94%);
}

.services-intro-card:hover .services-intro-line,
.services-intro-card:hover .services-intro-dot {
  background-color: #ffffff;
}

.services-intro-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: #171717;
  transition: all 0.3s ease;
}

.services-intro-icon-wrapper img {
  height: 24px;
  width: 24px;
  transition: filter 0.3s ease;
}

.services-intro-line-wrapper {
  gap: 0;
}

.services-intro-dot {
  width: 5px;
  height: 5px;
  background-color: #99c455;
  transition: background-color 0.3s ease;
}

.services-intro-line {
  height: 1px;
  background-color: #99c455;
  transition: background-color 0.3s ease;
}

.services-intro-card .fw-semibold,
.services-intro-card .fs-6 {
  transition: color 0.3s ease;
}

.services-intro-card:hover .fw-semibold,
.services-intro-card:hover .fs-6 {
  color: #ffffff !important;
}

.services-cards-stats-card {
  gap: 1rem;
  color: #171717;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .services-cards-stats-card {
    flex-direction: row;
    align-items: stretch;
  }

  .services-cards-stats-card.inverted {
    flex-direction: row-reverse;
  }
}

.services-cards-stats-image {
  cursor: pointer;
  flex: 1;
  position: relative;
  min-height: 240px;
  /* background-color: #f4f4f4; */
  border-radius: 8px;
  overflow: hidden;
}

.services-cards-stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-cards-stats-image::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 100px;
  height: 100px;
  background: #f4f4f4;
  z-index: 1;
}

.services-cards-stats-white-image::after {
  background: white;
}

.services-cards-stats-card:not(.inverted) .services-cards-stats-image::after {
  right: -5px;
  border-radius: 50% 50% 0% 50%;
}

.services-cards-stats-card.inverted .services-cards-stats-image::after {
  left: -5px;
  border-radius: 50% 50% 50% 0%;
}

.services-cards-stats-btn {
  position: absolute;
  bottom: 45px;
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8cc55b;
  cursor: pointer;
  z-index: 2;
  transition: background 0.4s ease;
}

.services-cards-stats-card:not(.inverted) .services-cards-stats-btn {
  right: 45px;
  transform: translate(50%, 50%);
}

.services-cards-stats-card.inverted .services-cards-stats-btn {
  left: 45px;
  transform: translate(-50%, 50%);
}

.services-cards-stats-btn-arrow {
  width: 40%;
  height: 40%;
  transform: rotate(-45deg);
  transition: transform 0.4s ease;
}

.services-cards-stats-image:hover .services-cards-stats-btn {
  background: linear-gradient(135deg, #067d3c, #143c55);
}

.services-cards-stats-image:hover .services-cards-stats-btn-arrow {
  transform: rotate(45deg);
}

.services-cards-stats-content {
  flex: 1;
  padding: 0 1rem;
}

.services-cards-stats-label {
  color: #99c455;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.services-cards-stats-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.services-cards-stats-desc {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

.services-cards-stats-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .services-cards-stats-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
  }
}

.services-cards-stats-stat-label {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: #666;
}

.services-cards-stats-divider {
  position: relative;
  margin: 1.5rem 0;
  height: 1px;
  background-color: #99c455;
}

.services-cards-stats-divider::before,
.services-cards-stats-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #99c455;
  border-radius: 50%;
}

.services-cards-stats-divider::before {
  left: 0;
}

.services-cards-stats-divider::after {
  right: 0;
}

.services-cards-stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  /* Add transition for a smooth effect */
}

/* Scale down the image when hovering on its parent container */
.services-cards-stats-image:hover img {
  transform: scale(0.95);
  /* Scales down the image to 95% of its size */
}

/* fallback for the image, just for now */
.services-marketing-segment-banner-section {
  /* background-color: #d9d9d9; */
  position: relative;
  padding: 4rem 0;
}

.services-marketing-segment-bg-image {
  position: absolute;
  inset: 0;
  background: url('/assets/images/services/marketting_section_img.png') no-repeat center center/cover;
  /* opacity: 0.2; */
  z-index: 0;
}

.services-marketing-segment-card {
  background-color: white;
}

.services-marketing-segment-subheading {
  font-size: 26px;
  font-weight: 600;
  color: #99c455;
}

.services-marketing-segment-title {
  font-size: 48px;
  color: #1c1c1c;
}

.services-marketing-segment-btn {
  background-color: #171717;
  color: white;
}

.services-marketing-segment-btn img {
  transition: transform 0.3s ease;
}

.services-marketing-segment-btn:hover img {
  transform: translateX(4px);
}

/* media query for title 26px */

.services-global-title {
  font-size: 42px;
  font-weight: 600;
}

.services-global-industry-country-list li {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  background-color: #eee;
  font-weight: 500;
  color: #333;
  transition: 0.3s ease;
  cursor: pointer;
  min-height: 64px;
}

.services-global-industry-country-list li span {
  flex: 1;
  text-align: center;
}

.services-global-industry-country-list li.active {
  background: linear-gradient(0deg, #1C3442 0%, #2A7041 100%);
  color: white;
}

.services-global-industry-country-list li.active .country-icon {
  background-color: white;
}

.services-global-industry-country-list .country-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: #d9d9d9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-global-industry-country-list .country-icon img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.services-global-industry-country-list li.active .country-icon img {
  filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(50deg) brightness(1.1);
}

.services-global-industry-logos {
  background: linear-gradient(180deg, #ecffcf80 0%, #ffffff 100%);
  border: 1px solid #99c455;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.services-global-industry-logos img {
  max-height: 60px;
  object-fit: contain;
}

@media (max-width: 768px) {
  #services-global-industry-country-list {
    display: none !important;
  }

  #services-global-industry-mobile-tabs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
  }

  #services-global-industry-mobile-tabs .nav-item {
    flex: 0 0 auto;
  }

  #services-global-industry-mobile-tabs .nav-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background-color: #eee;
    color: #333;
    border-radius: 12px;
    text-align: center;
    font-size: 12px;
    padding: 8px;
  }

  #services-global-industry-mobile-tabs .nav-link.active {
    background-color: #3E6500;
    color: white;
  }

  #services-global-industry-mobile-tabs .nav-link img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    filter: brightness(0) invert(0.3);
  }

  #services-global-industry-mobile-tabs .nav-link.active img {
    filter: brightness(0) invert(1);
  }
}

/* Main wrapper should be fixed height */
.services-tech-stack-tab-wrapper {
  display: flex;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

/* Domains and techs sides both take 50% width and full height */
.services-tech-stack-domains,
.services-tech-stack-techs-container {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Scrollable domain list */
.services-tech-stack-domains {
  background: linear-gradient(to bottom, #1C3442, #2A7041);
  padding: 1rem;
  border-radius: 16px 0 0 16px;
  /* overflow-y: auto; */
}

#services-tech-stack-domain-list {
  height: 100%;
  overflow-y: auto;
}


/* Domain items */
.services-tech-stack-domain-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  margin: 4px;
  cursor: pointer;
  white-space: normal;
  transition: background 0.3s ease;
  flex-shrink: 0;
  /* text-align: center; */
}

.services-tech-stack-domain-item.active {
  background-color: white;
  color: #1C3442;
}

.services-tech-stack-domain-item svg {
  margin-left: auto;
  stroke: currentColor;
}

.services-tech-stack-domain-item.active svg {
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.services-tech-stack-domain-item.active img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(32%) saturate(865%) hue-rotate(158deg) brightness(91%) contrast(89%);
}

#services-tech-stack-domain-list::-webkit-scrollbar {
  width: 4px;
}

#services-tech-stack-domain-list::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
}

#services-tech-stack-domain-list::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

#services-tech-stack-domain-list::-webkit-scrollbar-track {
  background: transparent;
}

.services-tech-stack-techs-container {
  background-color: white;
  padding: 0;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
}

/* Scrollable tech list */
.services-tech-stack-techs-scroll {
  flex: 1;
  height: 100%;
  overflow-y: auto;
  padding: 1rem;
}

.services-tech-stack-techs-scroll::-webkit-scrollbar {
  width: 2px;
}

.services-tech-stack-techs-scroll::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 6px;
}

/* Individual tech item */
.services-tech-stack-tech {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #f8f9fa;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 500;
}

.services-tech-stack-tech img {
  width: 28px;
  height: 28px;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
  .services-tech-stack-tab-wrapper {
    flex-direction: column;
    height: 500px;
  }

  .services-tech-stack-domains {
    flex-direction: row;
    border-radius: 16px 16px 0 0;
    padding: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .services-tech-stack-domain-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 100px;
    max-width: 140px;
    padding: 8px;
    border: 1px solid white;
  }

  .services-tech-stack-domain-item img {
    margin-bottom: 6px;
  }

  .services-tech-stack-domain-item span {
    font-size: 13px;
    line-height: 1.2;
  }

  .services-tech-stack-domain-item svg {
    display: none;
  }

  .services-tech-stack-techs-container {
    border-radius: 0 0 16px 16px;
  }

  .services-tech-stack-techs-scroll {
    max-height: unset;
  }

  .services-tech-stack-tech {
    flex-direction: column;
    text-align: center;
  }

  #services-tech-stack-domain-list::-webkit-scrollbar {
    height: 6px;
  }

  #services-tech-stack-domain-list::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 4px;
  }

  #services-tech-stack-domain-list::-webkit-scrollbar-track {
    background: transparent;
  }
}

.industries-global-industry-country-list li {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #333;
  transition: 0.3s ease;
  cursor: pointer;
  min-height: 64px;
}

.industries-global-industry-country-list li span {
  flex: 1;
  text-align: left;
}

.industries-global-industry-country-list li.active {
  background: #3E6500;
  color: white;
}

.industries-global-industry-country-list li.active .country-icon {
  background-color: #99c455;
}

.industries-global-industry-country-list .country-icon img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

/* .industries-global-industry-country-list li.active .country-icon img {
  filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(50deg) brightness(1.1);
} */

.industries-global-industry-country-list .country-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: #d9d9d9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industries-global-industry-logos {
  background: linear-gradient(180deg, #ecffcf80 0%, #ffffff 100%);
  border: 1px solid #99c455;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.industries-global-industry-logos img {
  max-height: 60px;
  object-fit: contain;
}

@media (max-width: 768px) {
  #industriesCountryList {
    display: none !important;
  }

  #industriesMobileCountryTabs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
  }

  #industriesMobileCountryTabs .nav-item {
    flex: 0 0 auto;
    margin-bottom: 12px;
  }

  #industriesMobileCountryTabs .nav-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 108px;
    background-color: #eee;
    color: #333;
    border-radius: 12px;
    text-align: center;
    font-size: 12px;
    padding: 8px;
  }

  #industriesMobileCountryTabs .nav-link.active {
    background-color: #3E6500;
    color: white;
  }

  #industriesMobileCountryTabs .nav-link img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    filter: brightness(0) invert(0.3);
  }

  #industriesMobileCountryTabs .nav-link.active img {
    filter: brightness(0) invert(1);
  }
}

.common-capabilities-card {
  background-color: #ffffff;
  color: #171717;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.common-capabilities-icon-wrapper {
  background-color: #99C455;
  transition: background-color 0.4s ease;
}

.common-capabilities-card:hover {
  background: linear-gradient(135deg, #1C3442, #2A7041);
  color: #ffffff;
}

.common-capabilities-card:hover .common-capabilities-icon-wrapper {
  background-color: #ffffff;
}

.common-capabilities-card:hover h5,
.common-capabilities-card:hover p {
  color: #ffffff;
}
/* Hide reCAPTCHA badge — attribution shown in footer */
.grecaptcha-badge { visibility: hidden !important; }

/* Inline field validation errors — shared across all lead-capture forms
   (get-in-touch, services landing, sticky sidebar, exit popup, AI dev LP) */
.im-field-error {
  display: none;
  color: #dc3545;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.3;
}

.im-input-invalid {
  border-color: #dc3545 !important;
}

/* --- common/client-logos.css --- */
.clients-logos-section {
  background-color: #fff;
  overflow: hidden;
}

.clients-logos-logo {
  height: 70px;
  width: auto;
  margin: 0 2.5rem;
  flex-shrink: 0;
}

.clients-logos-marquee-wrapper {
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 2rem;
}

.clients-logos-marquee-track {
  display: inline-flex;
  animation: clients-marquee-scroll-ltr 60s linear infinite;
}

.clients-logos-marquee-track.reverse {
  animation-name: clients-marquee-scroll-rtl;
}

@keyframes clients-marquee-scroll-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes clients-marquee-scroll-rtl {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .clients-logos-logo {
    height: 50px;
    margin: 0 2rem;
  }
}

@media (max-width: 768px) {
  .clients-logos-marquee-track {
    animation-duration: 60s;
  }
}
/* --- common/stats-banner.css --- */
.home-stats-banner {
  background: linear-gradient(to bottom, #067d3c, #143c55);
}

.home-stats-icon {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-stats-icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

/* --- common/client-testimonials.css --- */
.home-client-image-card,
.home-client-video-card {
  scroll-snap-align: start;
}

.home-client-image-card {
  flex: 0 0 calc((100% - 2rem) / 3); /* 3 cards per view, with 2rem (32px) gap total */
  max-width: calc((100% - 2rem) / 3);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.home-client-image-card img {
  width: 100%;
  display: block;
  border-radius: 12px 12px 0 0;
}

.home-client-image-content {
  padding: 16px;
  font-size: 16px;
  color: #333;
}
.home-client-image-content .company {
  font-style: italic;
  color: #888;
  margin-bottom: 6px;
}
.home-client-image-content p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.home-client-video-card {
  flex: 0 0 calc((100% - 2rem) / 3); /* 3 cards per view, with 2rem (32px) gap total */
  max-width: calc((100% - 2rem) / 3);
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.home-client-video-wrapper {
  width: 100%;
  min-height: 100%;
  position: relative;
  border-radius: 12px;
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  /* aspect-ratio: 3 / 4; */
}

.home-client-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 1;
  border-radius: 12px;
}

.home-client-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  color: #99c455;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.home-client-video-text-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 16px;
  color: #fff;
  font-size: 16px;
}

.home-client-video-text-content .company {
  font-style: italic;
  color: #ccc;
  margin-top: 4px;
}

.home-client-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 3;
  border-radius: 12px;
}

.home-client-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.home-client-scroll::-webkit-scrollbar {
  display: none;
}

.home-client-scroll-track {
  height: 8px;
  width: 200px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.home-client-scroll-thumb {
  height: 100%;
  width: 40px;
  background-color: #99c455;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  transition: left 0.2s ease;
}

.home-client-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.home-client-scroll::-webkit-scrollbar {
  display: none;
}

.home-scrollbar-wrapper {
  width: 100%;
  justify-content: center;
  gap: 10px;
  user-select: none;
}

.home-scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
}

.home-scroll-btn:hover {
  background-color: #171717;
}
.home-scroll-btn:hover img{
  filter: brightness(0) invert(1);
}

#home-client-pagination-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1d1d1;
  transition: background-color 0.3s;
  cursor: pointer;
}

#home-client-pagination-dots .dot.active {
  background-color: #99c455;
}


.home-scrollbar-track {
  flex-grow: 1;
  height: 6px;
  background: #171717;
  border-radius: 10px;
  position: relative;
}

.home-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 80px;
  background-color: #99c455;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .home-client-image-card,
  .home-client-video-card {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

/* Mobile: 1 card per view */
@media (max-width: 576px) {
  .home-client-image-card,
  .home-client-video-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .home-scrollbar-track {
    display: none !important;
  }
}
/* --- common/client-testimonials-2.css --- */
.industries-testimonials-track-wrapper {
  overflow: hidden;
}

.industries-testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.industries-testimonials-card {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 1rem;
  opacity: 0.75;
  transition: transform 0.3s, box-shadow 0.3s;
  transform: scale(0.8);
}

.industries-testimonials-card.active {
  transform: scale(1.05);
  opacity: 1;
}

.industries-testimonials-card .card-body {
  border-radius: 0.75rem;
  height: 100%;
}

.industries-testimonials-dots {
  justify-content: center;
}

.industries-testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s;
}

.industries-testimonials-dot.active {
  background-color: #99c455;
}

.text-green {
  color: #99c455;
}

/* Stars wrapping for tablets and smaller screens */
@media (max-width: 1024px) {
  .stars-wrapper {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .header-content {
    flex-direction: column;
    align-items: center !important;
  }

  .user-info {
    text-align: center;
    margin-bottom: 0.5rem;
  }
}

/* Responsive adjustment */
@media (max-width: 767px) {
  .industries-testimonials-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* --- common/trusted-case-study-carousel.css --- */
.home-case-study-carousel-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition-duration: 0.3s;
}

.home-case-study-carousel-btn:hover {
  background-color: white;
  color: #171717;
}

.home-case-study-carousel-card {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  background: transparent;
  border-radius: 12px;
  color: #fff;
}


.case-study-spl-card {
  position: relative;
  min-height: 220px;
  background-color: #141414;
  border-radius: 5px;
  overflow: hidden;
  padding: 0; /* no padding for full image */
  transition: background-color 0.4s ease;
}

.case-study-spl-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-study-spl-card::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 100px;
  height: 100px;
  background: #141414;
  border-radius: 50% 50% 0% 50%;
  z-index: 1;
}

.case-study-spl-btn {
  position: absolute;
  bottom: 45px;
  right: 45px;
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  transform: translate(50%, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8cc55b;
  cursor: pointer;
  z-index: 2;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.case-study-spl-card:hover .case-study-spl-btn {
  background: linear-gradient(135deg, #067d3c, #143c55);
}

.case-study-spl-arrow {
  width: 50%;
  height: 50%;
  transform: rotate(-45deg);
  transition: transform 0.4s ease;
}

.case-study-spl-card:hover .case-study-spl-arrow {
  transform: rotate(45deg);
}

.case-study-label {
  color: #9ce37d;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}

.case-study-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 8px;
}

.case-study-description {
  font-size: 14px;
  font-weight: 300;
  color: #e0e0e0;
}

.case-study-stats {
  font-size: 14px;
}

.home-case-study-stat-label {
  font-size: 13px;
  font-weight: 300;
  color: #ccc;
}

@media (min-width: 768px) {
  .home-case-study-carousel-card {
    max-width: calc(50% - 0.5rem); /* 2 cards */
  }
}

@media (min-width: 992px) {
  .home-case-study-carousel-card {
    max-width: calc(33.3333% - 0.5rem); /* 3 cards */
  }
}

/* --- common/navbar.css --- */
.nav-left {
  font-weight: bold;
}

.nav-right span {
  margin-left: 15px;
  cursor: pointer;
}

.floating-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px);
  z-index: 900;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}


@media (min-width: 993px) {
  .floating-navbar {
    top: 20px;
    left: 5%;
    right: 5%;
    border-radius: 15px;
  }
}

.no-outline:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #ccc;
}

/* === Mobile Sidebar Styles === */
.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
  z-index: 900;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 900;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  transition: transform 0.3s ease;
  transform: translateX(100%);
}

.mobile-sidebar.show {
  transform: translateX(0);
}

.mobile-sidebar-header {
  border-bottom: 1px solid #ddd;
}

.mobile-sidebar-body .main-nav-item {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  cursor: pointer;
}

.mobile-sidebar-body .main-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-sidebar-body .subpage-list {
  padding-left: 1rem;
  margin-top: 8px;
  display: none;
}

.mobile-sidebar-body .subpage-list a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

@media (min-width: 1121px) {
  .custom-desktop-nav {
    display: flex !important;
  }
  .custom-mobile-nav {
    display: none !important;
  }
}

@media (max-width: 1170px) {
  .custom-desktop-nav {
    display: none !important;
  }
  .custom-mobile-nav {
    display: flex !important;
  }
  .mobile-searchbar {
    display: block !important;
  }
}

/* --- common/blog-section.css --- */
.blog-findmore-btn {
  border: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.blog-btn-arrow {
  transition: transform 0.3s ease;
  will-change: transform;
}
.blog-findmore-btn:hover .blog-btn-arrow {
  transform: translateX(5px);
}

.blog-title-arrow {
  width: 20px;
  height: 20px;
}

.blog-card {
  transition-duration: 0.3s;
  box-shadow: none;
}

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

/* --- common/white-case-study-carousel.css --- */
.white-case-carousel-track {
  scroll-behavior: smooth;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.white-case-carousel-track::-webkit-scrollbar {
  display: none;
}

.white-case-carousel-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 100%;
  max-width: 300px;
  min-height: 340px;
  background: white;
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.white-case-card-arrow {
  border: none;
  background: linear-gradient(135deg, #1C3442, #2A7041);
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.white-case-card-arrow.dark-arrow {
  background: #99c455 !important;
}

.white-case-card-arrow.dark-arrow:hover {
  background: #88b545 !important;
}


.white-case-card-arrow svg {
    width: 80%;
    height: 80%;
    transform: rotate(-45deg);
    transition: transform 0.4s ease;
}

.white-case-card-arrow:hover {
  background: linear-gradient(135deg, #16303b, #1e5e36);
}

.white-case-card-img-container {
  padding: 12px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.white-case-card-img-container img {
  max-width: 100%;
  border-radius: 12px;
}

.white-case-carousel-btn {
  border: none;
  background: #99c455;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.white-case-carousel-btn:hover {
  background: #2a7041;
}

.white-case-carousel-scrollbar-container {
  position: relative;
  height: 6px;
  background: #d6d6d6;
  border-radius: 3px;
  overflow: hidden;
}

.white-case-carousel-scrollbar-thumb {
  position: absolute;
  height: 100%;
  background: #000;
  border-radius: 3px;
  width: 60px;
  transition: left 0.3s ease;
}


/* --- common/industries-carousel.css --- */
.industries-carousel-window {
  width: 100%;
}

.industries-carousel-track {
  transition: transform 0.5s ease;
  gap: 1rem;
}

.industries-carousel-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  min-height: 350px;
  color: white;
  flex: 0 0 auto;
  width: calc(100% / 4 - 0.75rem);
  overflow: hidden;
  cursor: pointer;
}

.industries-carousel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: background 0.3s ease;
}

.industries-carousel-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem;
}

.industries-carousel-title {
  font-weight: 600;
  font-size: 1.5rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
  text-align: left;
}

.industries-carousel-description {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  background: white;
  text-align: left;
  color: #171717;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-radius: 8px;
  margin: 1rem;
  z-index: 2;
  opacity: 0;
  transition: bottom 0.4s ease, opacity 0.4s ease;
}

.industries-carousel-card:hover .industries-carousel-title {
  transform: translateY(-20px);
  opacity: 0;
}

.industries-carousel-card:hover .industries-carousel-description {
  bottom: 0.2rem;
  opacity: 1;
}

.industries-carousel-hover-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.industries-carousel-card:hover .industries-carousel-hover-btn {
  opacity: 1;
  transform: scale(1);
}

.industries-hover-arrow {
  width: 16px;
  height: 16px;
  stroke: #171717;
  transform: rotate(-45deg);
}

.industries-carousel-btn {
  border: none;
  background: #99c455;
  color: white;
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.industries-carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.industries-carousel-btn:hover {
  background: #2a7041;
}

@media (max-width: 992px) {
  .industries-carousel-card {
    width: calc(100% / 3 - 0.75rem);
  }
}

@media (max-width: 768px) {
  .industries-carousel-card {
    width: calc(100% / 2 - 0.75rem);
  }
}

@media (max-width: 576px) {
  .industries-carousel-window {
    overflow: visible !important;
  }

  .industries-carousel-track {
    flex-direction: column !important;
    transform: none !important;
    gap: 1rem;
  }

  .industries-carousel-card {
    width: 100% !important;
  }

  .industries-carousel-btn {
    display: none !important;
  }

  .industries-carousel-card:hover .industries-carousel-description {
    bottom: -11rem;
    opacity: 1;
  }
}


/* --- common/badges-carousel.css --- */
.badges-scroll-container {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  gap: 1rem;
  overflow-x: auto;
}

.badges-scroll-container::-webkit-scrollbar {
  display: none;
}

.badges-scroll-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.badge-card {
  scroll-snap-align: start;
  background: white;
  border-radius: 12px;
  border: 1px solid #eee;
  min-width: calc(100% / 4 - 1rem);
  max-width: calc(100% / 4 - 1rem);
  padding: 1rem 0.5rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  flex-shrink: 0;
}

.badge-label {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  text-align: center;
}

.badge-border-top {
  height: 5px;
  background-color: #99c455;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin: -1rem -0.5rem 1rem -0.5rem;
}

.badge-img-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.badge-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  transition: transform 0.4s ease;
}

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

.badge-label {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  text-align: center;
}

@media (max-width: 992px) {
  .badge-card {
    min-width: calc(100% / 3 - 1rem);
    max-width: calc(100% / 3 - 1rem);
  }
}

@media (max-width: 768px) {
  .badge-card {
    min-width: calc(100% / 2 - 1rem);
    max-width: calc(100% / 2 - 1rem);
  }
}

@media (max-width: 576px) {
  .badge-card {
    min-width: 85%;
    max-width: 85%;
  }
}

/* --- common/exit-popup.css --- */
/* ── overlay ─────────────────────────────────────────────────────────── */
.ep-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.ep-overlay.ep-visible {
    opacity: 1;
}

.ep-overlay.ep-open {
    display: flex;
    opacity: 0;
}

.ep-overlay.ep-visible {
    opacity: 1;
}

/* ── modal ────────────────────────────────────────────────────────────── */
.ep-modal {
    background: linear-gradient(135deg, #0f4c35, #123c4a);
    border-radius: 16px;
    width: 100%;
    max-width: 720px;
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.ep-overlay.ep-visible .ep-modal {
    transform: translateY(0);
}

/* ── close ────────────────────────────────────────────────────────────── */
.ep-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: background 0.15s;
}

.ep-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ── layout ───────────────────────────────────────────────────────────── */
.ep-body {
    display: flex;
    align-items: stretch;
    background: linear-gradient(180deg, #2A7041, #1C3442);

}

.ep-image {
    flex: 0 0 45%;
    background: url('/assets/images/PopUp-Image.webp') center/cover no-repeat;
    border-radius: 12px;
    margin: 16px;
}

.ep-content {
    flex: 1;
    padding: 32px 24px 24px;
    /* overflow-y: auto; */
    /* max-height: 90vh; */
}

/* ── text ─────────────────────────────────────────────────────────────── */
.ep-eyebrow {
    color: #F4F4F4;
    font-size: 28px;
    letter-spacing: 0%;
    /* text-transform: uppercase; */
    margin: 0 0 6px;
    text-align: center;
    font-weight: 900;
}

.ep-heading {
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 8px;
    text-align: center;
}

.ep-sub {
    color: #F4F4F4;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

/* ── form ─────────────────────────────────────────────────────────────── */
.ep-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.ep-input {
    flex: 1;
    width: 100%;
    padding: 9px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 13px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s;
    font-family: inherit;
}

.ep-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.ep-input:focus {
    border-color: rgba(255, 255, 255, 0.55);
}

.ep-select {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.ep-select option {
    background: #0f4c35;
    color: #fff;
}

.ep-textarea {
    display: block;
    resize: none;
    margin-bottom: 10px;
    height: 42px;
}

.ep-submit {
    width: 80%;
    padding: 10px;
    border-radius: 22px;
    background: #F4F4F4;
    border: none;
    color: #0a3525;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s, opacity 0.15s;
    margin-bottom: 8px;
    font-family: inherit;
    display: block;
    margin: 0 auto;
}

.ep-submit:hover {
    background: #22c55e;
}

.ep-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── messages ─────────────────────────────────────────────────────────── */
.ep-msg {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 10px;
    display: none;
}

.ep-msg--error {
    background: rgba(220, 38, 38, 0.25);
    color: #fca5a5;
}

.ep-msg--success {
    background: rgba(74, 222, 128, 0.2);
    color: #86efac;
}

.ep-note {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    text-align: center;
    margin: 5px;
}

/* ── responsive ───────────────────────────────────────────────────────── */
@media (max-width: 560px) {
    .ep-image {
        display: none;
    }

    .ep-row {
        flex-direction: column;
    }

    .ep-content {
        padding: 28px 18px 20px;
    }
}