body,
html {
  font-family: "Poppins", sans-serif;
  color: #171717;
}

/* 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, transform 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;
}

@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: block !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-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-description {
  font-weight: 400;
  font-size: 18px;
  color: #444;
}

.custom-btn-green {
  background-color: #99c455;
  color: #fff;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.custom-btn-green:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.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;
}

.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: 100px;
  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;
}

.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-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 {
  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;
}

/* 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;
}

/* 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 {
  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;
}

.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: 6px;
}

.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-testimonials-track-wrapper {
  overflow: hidden;
}

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

.industries-testimonials-card {
  flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
  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;
  /* ~12px */
  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;
}

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

.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;
}