/*--------------------  HERO SECTION START --------------------*/

.hero-section {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  background-color: #070425;
  padding: 4rem 0;
}

.hero-section__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-section__title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.hero-section__highlight {
  color: #ffd766;
  color: var(--bg-color-accent);
}

.hero-section__subtitle {
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  max-width: 40ch;
}

.hero-section__cta {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.hero-section__cta-button {
  background-color: var(--bg-color-primary);
  font-size: 1.25rem;
  line-height: 1.6;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  border-radius: 0.375rem;
  max-height: 3.5rem;
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  max-width: 351px;
  flex-grow: 1;
}

.hero-section__image {
  border-radius: 1rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 570px;
}

@media (min-width: 640px) {
  .hero-section__cta {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-section {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .hero-section__text-content {
    grid-column: span 5 / span 5;
  }

  .hero-section__cta {
    justify-content: flex-start;
  }

  .hero-section__image-wrapper {
    grid-column-start: 7;
    grid-column-end: 13;
  }
}

@media (min-width: 1024px) {
  .hero-section__title {
    font-size: 3.75rem;
    line-height: 1.1;
  }

  .hero-section__subtitle {
    margin-bottom: 3rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

/*--------------------  HERO SECTION END --------------------*/

/*--------------------  INFINITE SCROLL START --------------------*/

.infinite-scroll {
  background-color: #070425;
}

.infinite-scroll__container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.infinite-scroll__title {
  margin-bottom: 3.5rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.infinite-scroll__slider-wrapper {
  /* overflow: hidden; */
  padding: 12px 0;
  white-space: nowrap;
  position: relative;
}

.infinite-scroll__slider-wrapper::before,
.infinite-scroll__slider-wrapper::after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.infinite-scroll__slider-wrapper::before {
  left: 0;
  background: linear-gradient(to left, rgba(7, 4, 37, 0), #070425);
}

.infinite-scroll__slider-wrapper::after {
  right: 0;
  background: linear-gradient(to right, rgba(7, 4, 37, 0), #070425);
}

.infinite-scroll__slider-wrapper:hover .infinite-scroll__logo-slider {
  animation-play-state: paused;
}

.infinite-scroll__logo-slider {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.infinite-scroll__logo-slider.reverse {
  display: inline-block;
  animation: 35s slide infinite linear reverse;
}

.infinite-scroll__logo-slider img {
  height: 50px;
  margin: 0 40px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (min-width: 768px) {
  .infinite-scroll__title {
    margin-bottom: 2rem;
  }
}

/*--------------------  INFINITE SCROLL END --------------------*/

/*--------------------  elevate section START --------------------*/

.elevate-section {
  background-color: #070425;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.elevate-section__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.elevate-section__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  max-width: 970px;
}

.elevate-section__grid {
  display: grid;
  column-gap: 2rem;
  row-gap: 1.5rem;
}

.elevate-section__icon {
  margin-bottom: 1rem;
}

.elevate-section__subtitle {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}

.elevate-section__description {
  font-size: 1rem;
  line-height: 1.5rem;
}

@media (min-width: 768px) {
  .elevate-section__container {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .elevate-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .elevate-section__container {
    gap: 4rem;
  }

  .elevate-section__title {
    text-align: center;
  }

  .elevate-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .elevate-section__subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/*--------------------  elevate section END --------------------*/

/*--------------------  SERVICES SECTION START --------------------*/

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
}

/* Services Section */
.services-section__container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  text-align: center;
}

/* Section Title */
.services-section__title {
  margin-bottom: 1.75rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
}

/* Section Description */
.services-section__description {
  font-size: 1.25rem;
  line-height: 1.75rem;
  max-width: 970px;
  margin: 0 auto 2rem;
}

/* Services Grid */
.services-section__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start; /* Prevents stretching */
}

/* Service Card */
.services-section__card {
  display: flex;
  flex-direction: column;
  width: fit-content; /* Prevents stretching */
  max-width: 370px;
  border: 1px solid #dfe3e7;
  border-radius: 0.75rem;
  padding: 1.5rem;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1);
}

/* Hover Effect */
.services-section__card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Card Icon */
.services-section__card-icon {
  margin-bottom: 1.75rem;
}

/* Card Title */
.services-section__card-title {
  margin-top: 40px;
  margin-bottom: 3px;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Card Text */
.services-section__card-text {
  color: #67737e;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* Card Link */
.services-section__card-link {
  color: var(--bg-color-primary, #007bff);
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  text-decoration: none;
}

.services-section__card-link-icon {
  background-color: var(--bg-color-primary, #007bff);
  margin-left: 0.5rem;
  border-radius: 9999px;
  padding: 0.25rem;
  color: #fff;
}

/* Responsive Fixes */
@media (min-width: 768px) {
  .services-section__container {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .services-section__title {
    font-size: 3rem;
    line-height: 1;
  }

  .services-section__description {
    margin-bottom: 3.5rem;
  }

  .services-section__grid {
    justify-content: center;
  }

  .services-section__card {
    padding: 2rem;
  }

  .services-section__card-icon {
    margin-bottom: 2rem;
  }

  .services-section__card-text {
    margin-bottom: 2.25rem;
  }

  .services-section__card-link-icon {
    padding: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .services-section__grid {
    justify-content: center;
    max-width: 1200px;
    margin: auto;
  }
}

/*--------------------  SERVICES SECTION END --------------------*/

/*--------------------  STRATEGY SECTION START --------------------*/

.strategy-talent-technology__container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.strategy-talent-technology__title {
  color: #050033;
  max-width: 870px;
  margin-bottom: 1rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.strategy-talent-technology__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.strategy-talent-technology__content {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.strategy-talent-technology__icon-container {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.strategy-talent-technology__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.375rem;
}

.strategy-talent-technology__label {
  color: #171a1c;
  margin-left: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.strategy-talent-technology__heading {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
  color: #171a1c;
  margin-bottom: 2.5rem;
}

.strategy-talent-technology__description {
  color: #070425;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.strategy-talent-technology__image {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .strategy-talent-technology__container {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .strategy-talent-technology__title {
    font-size: 3rem;
    line-height: 1;
  }

  .strategy-talent-technology__grid {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
    margin-bottom: 3.5rem;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    border-radius: 1rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .strategy-talent-technology__content {
    grid-column: span 5 / span 5;
    padding-left: 0px;
    padding-right: 0px;
  }

  .strategy-talent-technology__image-container {
    grid-column-start: 7;
    grid-column-end: 13;
    justify-self: stretch;
    border-radius: 1rem;
  }

  .strategy-talent-technology__image {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 1024px) {
  .strategy-talent-technology__heading {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .strategy-talent-technology__description {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

/*--------------------  STRATEGY SECTION END --------------------*/

/*--------------------  ACCORDION START --------------------*/

.faq-section {
  padding: 100px 0;
}

.faq-section__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.faq-section__accordion-item {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom-width: 2px;
  border-bottom-color: #f9fafb;
  cursor: pointer;
}

.faq-section__accordion-header {
  display: flex;
  column-gap: 0.75rem;
}

.faq-section__accordion-content-container {
  font-size: 1.25rem;
  line-height: 1.75rem;
  width: 100%;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.faq-section__accordion-content {
  max-height: 0;
  /* overflow: hidden; */
  transition: max-height 0.3s ease-out;
}

.faq-section__accordion-icon {
  transition: background-color 0.3s linear, stroke 0.3s linear, fill 0.3s linear,
    transform 0.3s linear;
}

.faq-section__accordion-icon rect {
  stroke: var(--bg-color-primary);
}

.faq-section__accordion-icon path {
  fill: var(--bg-color-primary);
}

.faq-section__accordion-icon.active {
  transform: rotate(-135deg);
}

.faq-section__accordion-icon.active rect:first-of-type {
  fill: var(--bg-color-primary);
}

.faq-section__accordion-icon.active rect:last-of-type {
  stroke: #fff;
}

.faq-section__accordion-icon.active path {
  fill: #fff;
}

.faq-section__accordion-text {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  padding-top: 1rem;
  max-width: 770px;
}

@media (min-width: 768px) {
  .faq-section__title {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .faq-section__accordion-header {
    column-gap: 3.5rem;
  }

  .faq-section__accordion-content-container {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .faq-section__accordion-text {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

/*--------------------  ACCORDION END --------------------*/

/*--------------------  CONTACT START --------------------*/

.contact-info-section {
  background-color: var(--bg-color-accent);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  text-align: center;
  font-weight: 500;
}

.contact-info-section__container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.contact-info-section__title {
  max-width: 970px;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  color: var(--text-color-primary);
}

.contact-info-section__cta {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.cta-button {
  font-size: 1.25rem;
  line-height: 1.6;
  border-radius: 0.375rem;
  max-height: 3.5rem;
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-button--tertiary {
  background-color: var(--bg-color-secondary);
  color: var(--text-color-dark);
}

.cta-button--secondary {
  border: 1px solid var(--bg-color-secondary);
  color: var(--text-color-dark);
}

@media (min-width: 640px) {
  .contact-info-section__cta {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .contact-info-section__title {
    font-size: 3rem;
    line-height: 1;
  }
}

/*--------------------  CONTACT END --------------------*/
