/* ============================================
   About Page Styles
   ============================================ */

/* Hide default CTA section on about page */
#cta-section-placeholder {
  display: none !important;
}

/* Who We Are Section */
.who-we-are-section {
  padding: var(--common-padding);
  margin: var(--equal-margin);
}

.who-we-are-wrapper {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 2rem 0;
  text-align: center;
}

.who-we-are-title {
  font-size: var(--font-size-large);
  font-weight: 500;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-family: 'Urbanist', sans-serif;
}

.who-we-are-title .highlight {
  background: linear-gradient(90deg, #6320F6 0%, #6571C3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.who-we-are-text {
  font-size: var(--font-size-small);
  font-weight: 500;
  line-height: 1.6;
  color: #1F1F1F;
  margin: 0;
  /* max-width: 800px; */
  margin: 0 auto;
  font-family: 'Urbanist', sans-serif;
}

.who-we-are-text .highlight {
  background: linear-gradient(90deg, #6320F6 0%, #6571C3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Problem Section Styles */
.problem-section {
  margin-bottom: 2.5rem;
  /* OLD: text-align: left; */
  text-align: left; /* Keep for mobile/tablet */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.problem-section:last-child {
  margin-bottom: 0;
}

.problem-section-title {
  font-size: var(--font-size-mid);
  font-weight: 500 !important;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: 'Urbanist', sans-serif;
  /* NEW: Enhanced title styling */
  letter-spacing: -0.02em;
  position: relative;
}

.problem-section-title .title-highlight {
  color: #000000;
  position: relative;
}

.problem-section-text {
  font-size: var(--font-size-small);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(31, 31, 31, 1) !important;
  margin: 0;
  font-family: 'Urbanist', sans-serif;
  /* NEW: Justified text alignment (left and right aligned) */
  text-align: justify;
}

.problem-section-text .highlight {
  color: rgba(31, 31, 31, 1) !important;
}

/* ============================================
   ALTERNATIVE LAYOUT OPTIONS
   Uncomment the layout you prefer and comment out the current one
   ============================================ */

/* OPTION 1: Card-based layout with subtle borders */
/*
.problem-section {
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  background: #FAFAFA;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #D0D0D0;
}
*/

/* OPTION 2: Numbered sections layout */
/*
.problem-section {
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4rem;
  position: relative;
}

.problem-section::before {
  content: counter(section-counter);
  counter-increment: section-counter;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 3rem;
  font-weight: 700;
  color: #6320F6;
  line-height: 1;
  opacity: 0.3;
}

.who-we-are-wrapper {
  counter-reset: section-counter;
}
*/

/* OPTION 3: Grid layout (3 columns on desktop) */
/*
.who-we-are-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .who-we-are-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  
  .problem-section {
    margin-bottom: 0;
  }
}
*/

/* OPTION 4: Alternating left-right layout */
/*
.problem-section {
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.problem-section:nth-child(odd) {
  text-align: left;
  padding-right: 2rem;
}

.problem-section:nth-child(even) {
  text-align: right;
  padding-left: 2rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1023px) {
  .problem-section:nth-child(even) {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }
}
*/

/* OPTION 5: Vertical timeline with connecting line */
/*
.problem-section {
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  position: relative;
  border-left: 2px solid #E5E5E5;
}

.problem-section::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(90deg, #6320F6 0%, #6571C3 100%);
  border: 3px solid #FFFFFF;
}

.problem-section:last-child {
  border-left: none;
}
*/

/* Expertise From Section */
.expertise-section {
  background-color: #000000;
  padding: 3rem var(--common-padding);
  margin: 0;
  margin-top: 50px;
}

.expertise-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.expertise-title {
  font-size: var(--heading-size);
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 2.5rem;
  font-family: 'Urbanist', sans-serif;
}

.expertise-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.expertise-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.expertise-logo-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered animation delays for logos */
.expertise-logo-item:nth-child(1) {
  transition-delay: 0.1s;
}

.expertise-logo-item:nth-child(2) {
  transition-delay: 0.2s;
}

.expertise-logo-item:nth-child(3) {
  transition-delay: 0.3s;
}

.expertise-logo-item:nth-child(4) {
  transition-delay: 0.4s;
}

.expertise-logo-item:nth-child(5) {
  transition-delay: 0.5s;
}

.expertise-logo-item:nth-child(6) {
  transition-delay: 0.6s;
}

.expertise-logo {
  height: auto;
  width: auto;
  max-height: 50px;
  max-width: 150px;
  object-fit: contain;
}

/* Individual logo sizing */
.expertise-logo-item:nth-child(1) .expertise-logo {
  /* Atypical */
  max-height: 40px;
  max-width: 120px;
}

.expertise-logo-item:nth-child(2) .expertise-logo {
  /* Western Digital */
  max-height: 35px;
  max-width: 180px;
}

.expertise-logo-item:nth-child(3) .expertise-logo {
  /* Walmart */
  max-height: 55px;
  max-width: 170px;
}

.expertise-logo-item:nth-child(4) .expertise-logo {
  /* WarnerMedia */
  max-height: 40px;
  max-width: 160px;
}

.expertise-logo-item:nth-child(5) .expertise-logo {
  /* uplift */
  max-height: 40px;
  max-width: 100px;
}

.expertise-logo-item:nth-child(6) .expertise-logo {
  /* Dropbox */
  max-height: 55px;
  max-width: 160px;
}

/* Meet The Team Section */
.meet-team-section {
  padding: 3rem var(--common-padding);
  margin: var(--equal-margin);
  background-color: #FFFFFF;
}

.meet-team-wrapper {
  max-width: 1200px;
  margin: 0 4%;
  text-align: center;
}

.meet-team-title {
  font-size: var(--heading-size);
  font-weight: 500;
  color: #000000;
  margin-bottom: 3rem;
  font-family: 'Urbanist', sans-serif;
}

.meet-team-title .highlight {
  background: linear-gradient(90deg, #6320F6 0%, #6571C3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.team-card {
  flex: 0 0 calc(100% - 2rem);
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card:hover .team-card-image {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.team-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.team-card-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.9) 100%);
  padding: 1.5rem;
}

.team-card-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.team-card-text {
  flex: 1;
  text-align: left;
}

.team-card-name {
  font-size: var(--font-size-mid);
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 0.25rem 0;
  font-family: 'Urbanist', sans-serif;
}

.team-card-title {
  font-size: var(--font-size-small);
  font-weight: 400;
  color: #939393;
  margin: 0;
  font-family: 'Urbanist', sans-serif;
}

.team-card-linkedin {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-linkedin img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

/* Building Together Section */
.building-together-section {
  padding: 0;
  margin: 0 !important;
  background-color: #000000;
}

.building-together-wrapper {
  width: 99%;
  /* max-width: 1440px; */
  margin: 0 auto;
  padding: 0;
}

.building-together-image {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.building-together-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.building-together-img-desktop {
  display: block !important;
}

.building-together-img-mobile {
  display: none !important;
}

.building-together-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
  padding: 2rem 1.5rem;
  text-align: center;
}

.building-together-text p {
  font-size: var(--font-size-mid);
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
  padding: 0 1.5rem;
  font-family: 'Urbanist', sans-serif;
  line-height: 1.4;
}

/* Backed By Section */
.backed-by-section {
  padding: 3rem var(--common-padding);
  margin: var(--equal-margin);
  background-color: #FFFFFF;
}

.backed-by-wrapper {
  /* max-width: 1200px; */
  margin: 0 6%;
  text-align: center;

}

.backed-by-title {
  font-size: var(--heading-size);
  font-weight: 500;
  margin-bottom: 2.5rem;
  font-family: 'Urbanist', sans-serif;
}

.backed-gradient {
  background: linear-gradient(90deg, #6320F6 0%, #6571C3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.backed-by-text {
  color: #1F1F1F;
  font-weight: 500;
}

.backed-by-companies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.backed-by-company {
  font-size: var(--text-size);
  font-weight: 500;
  color: #1F1F1F;
  font-family: 'Urbanist', sans-serif;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.backed-by-company.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for backed by companies */
.backed-by-company:nth-child(1) {
  transition-delay: 0.1s;
}

.backed-by-company:nth-child(2) {
  transition-delay: 0.2s;
}

.backed-by-company:nth-child(3) {
  transition-delay: 0.3s;
}

.backed-by-company:nth-child(4) {
  transition-delay: 0.4s;
}

/* About Content Section */
.about-content {
  padding: var(--common-padding);
  margin: var(--equal-margin);
}

.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.about-title {
  text-align: center;
  font-size: var(--heading-size);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-bottom: 2rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-text p {
  font-size: var(--text-size);
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

/* Tablet Styles (720px+) */
@media (min-width: 720px) {
  .expertise-section {
    padding: 2rem var(--tablet-common-padding);
  }

  .expertise-title {
    font-size: var(--tablet-heading-size);
    margin-bottom: 3rem;
  }

  .expertise-logos {
    gap: 3rem;
  }

  .expertise-logo {
    max-height: 60px;
  }

  .expertise-logo-item:nth-child(1) .expertise-logo {
    max-height: 50px;
    max-width: 150px;
  }

  .expertise-logo-item:nth-child(2) .expertise-logo {
    max-height: 45px;
    max-width: 220px;
  }

  .expertise-logo-item:nth-child(3) .expertise-logo {
    /* Walmart */
    max-height: 70px;
    max-width: 210px;
  }

  .expertise-logo-item:nth-child(4) .expertise-logo {
    max-height: 50px;
    max-width: 200px;
  }

  .expertise-logo-item:nth-child(5) .expertise-logo {
    max-height: 50px;
    max-width: 130px;
  }

  .expertise-logo-item:nth-child(6) .expertise-logo {
    /* Dropbox */
    max-height: 70px;
    max-width: 200px;
  }

  .meet-team-section {
    padding: 4rem var(--tablet-common-padding);
  }

  .meet-team-title {
    font-size: var(--tablet-heading-size);
    margin-bottom: 3.5rem;
  }

  .team-cards {
    gap: 2.5rem;
  }

  .team-card {
    flex: 0 0 calc(50% - 1.25rem);
    max-width: 400px;
  }

  .building-together-text {
    padding: 2.5rem 2rem;
  }

  .building-together-text p {
    font-size: var(--tablet-font-size-mid);
  }

  .backed-by-section {
    padding: 4rem var(--tablet-common-padding);
  }

  .backed-by-title {
    font-size: var(--tablet-heading-size);
    margin-bottom: 3rem;
  }

  .backed-by-companies {
    gap: 3rem;
  }

  .backed-by-company {
    font-size: var(--tablet-text-size);
  }

  .who-we-are-section {
    padding: var(--tablet-common-padding);
  }

  .who-we-are-wrapper {
    padding: 3rem 0;
  }

  .who-we-are-title {
    font-size: var(--tablet-font-size-large);
    margin-bottom: 2rem;
  }

  .who-we-are-text {
    font-size: var(--tablet-font-size-small);
    line-height: 1.7;
  }

  .problem-section {
    margin-bottom: 3rem;
  }

  .problem-section-title {
    font-size: var(--tablet-font-size-mid);
    margin-bottom: 1.25rem;
    font-weight: 500;
    color: #000000;
  }

  .problem-section-text {
    font-size: var(--tablet-font-size-small);
    line-height: 1.7;
    /* NEW: Justified text alignment */
    text-align: justify;
    color: rgba(31, 31, 31, 1) !important;
    font-weight: 400;
  }

  .about-content {
    padding: var(--tablet-common-padding);
  }

  .about-wrapper {
    padding: 3rem 0;
  }

  .about-title {
    font-size: var(--tablet-heading-size);
    margin-bottom: 2.5rem;
  }

  .about-text {
    gap: 2rem;
  }

  .about-text p {
    font-size: var(--tablet-text-size);
  }
}

/* Desktop Styles (1024px+) */
@media (min-width: 1024px) {
  .expertise-section {
    padding: 2rem var(--desktop-equal-margin);
  }

  .expertise-wrapper {
    max-width: 1440px;
  }

  .expertise-title {
    font-size: var(--desktop-font-size-large);
    margin-bottom: 4rem;
  }

  .expertise-logos {
    gap: 4rem;
    flex-wrap: nowrap;
  }

  .expertise-logo {
    max-height: 70px;
  }

  .expertise-logo-item:nth-child(1) .expertise-logo {
    max-height: 60px;
    max-width: 180px;
  }

  .expertise-logo-item:nth-child(2) .expertise-logo {
    max-height: 55px;
    max-width: 260px;
  }

  .expertise-logo-item:nth-child(3) .expertise-logo {
    /* Walmart */
    max-height: 80px;
    max-width: 250px;
  }

  .expertise-logo-item:nth-child(4) .expertise-logo {
    max-height: 60px;
    max-width: 240px;
  }

  .expertise-logo-item:nth-child(5) .expertise-logo {
    max-height: 140px;
    max-width: 160px;
  }

  .expertise-logo-item:nth-child(6) .expertise-logo {
    /* Dropbox */
    max-height: 80px;
    max-width: 240px;
    transform: translateY(-18px);
  }

  .meet-team-section {
    padding: 5rem var(--desktop-equal-margin);
    max-width: 1440px;
    margin: 0 auto;
  }

  .meet-team-wrapper {
    max-width: 1200px;
  }

  .meet-team-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }

  .team-cards {
    gap: 3rem;
    flex-wrap: nowrap;
  }

  .team-card {
    flex: 1;
    max-width: 380px;
  }

  .team-card-name {
    font-size: var(--desktop-font-size-mid);
  }

  .team-card-title {
    font-size: var(--desktop-font-size-small);
  }

  .building-together-wrapper {
    /* max-width: 1440px; */
    margin: 0 ;
  }

  .building-together-text {
    padding: 3rem 8rem;
    margin: 0 20%;
  }

  .building-together-text p {
    font-size: var(--desktop-font-size-large);
    padding: 0 2rem;
    line-height: 1.3;
  }

  .building-together-img-desktop {
    display: block !important;
  }

  .building-together-img-mobile {
    display: none !important;
  }

  .backed-by-section {
    padding: 10rem 0 ;
    margin: 0 auto;
  }

  .backed-by-wrapper {
    /* max-width: 1200px; */
  }

  .backed-by-title {
    font-size: var(--desktop-font-size-large);
    margin-bottom: 4rem;
  }

  .backed-by-companies {
    gap: 4rem;
    flex-wrap: nowrap;
  }

  .backed-by-company {
    font-size: var(--desktop-font-size-mid);
  }

  .who-we-are-section {
    padding: 4rem var(--desktop-equal-margin);
    /* max-width: 1440px; */
    margin: 0 auto;
  }

  .who-we-are-wrapper {
    padding: 0 0 3rem 0;
    /* NEW: Better centering for desktop */
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .who-we-are-title {
    font-size: var(--desktop-font-size-large);
    margin-bottom: 5rem;
    line-height: 1.2;
  }

  .who-we-are-text {
    font-size: var(--desktop-font-size-large);
    line-height: 1.8;
    margin: 0 6%;
    /* max-width: 900px; */
  }

  /* NEW: Professional desktop layout for problem sections */
  .problem-section {
    margin-bottom: 3.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .problem-section:last-child {
    margin-bottom: 0;
  }

  .problem-section-title {
    /* NEW: Enhanced desktop title */
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    text-align: left;
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.02em;
  }


  .problem-section-text {
    font-size: var(--desktop-font-size-small);
    line-height: 1.75;
    /* NEW: Justified text alignment (left and right aligned) */
    text-align: justify;
    margin: 0;
    color: rgba(31, 31, 31, 1) !important;
    font-weight: 400;
  }

  .about-content {
    padding: 4rem var(--desktop-equal-margin);
    max-width: 1440px;
    margin: 0 auto;
  }

  .about-wrapper {
    padding: 4rem 0;
  }

  .about-title {
    font-size: var(--desktop-font-size-large);
    margin-bottom: 3rem;
  }

  .about-text {
    gap: 2.5rem;
    max-width: 900px;
  }

  .about-text p {
    font-size: var(--desktop-text-size);
    line-height: 1.8;
  }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .about-content {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile Styles (below 720px) */
@media (max-width: 719px) {
  .who-we-are-section {
    padding: 0 !important;
  }

  .who-we-are-wrapper {
    padding: 1.5rem 0;
  }

  .who-we-are-text{
    font-size: var(--mobile-font-size-small);
  }

  .problem-section {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .problem-section-title {
    font-size: var(--mobile-font-size-mid);
    margin-bottom: 0.875rem;
    line-height: 1.3;
    font-weight: 500;
    color: #000000;
  }

  .problem-section-text {
    font-size: var(--mobile-font-size-small);
    line-height: 1.6;
    text-align: justify;
    color: rgba(31, 31, 31, 1) !important;
    font-weight: 400;
  }
  .meet-team-title{
    font-size: var(--mobile-font-size-large);
  }

  .expertise-section {
    padding: 2rem 20px;
  }

  .expertise-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-items: center;
    align-items: center;
    width: 100%;
  }

  .expertise-logo-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Reorder for mobile: Row 1 - Atypical, WarnerMedia, Walmart | Row 2 - Western Digital, Dropbox, uplift */
  .expertise-logo-item:nth-child(1) {
    order: 1; /* Atypical - Row 1, Col 1 */
  }

  .expertise-logo-item:nth-child(2) {
    order: 4; /* Western Digital - Row 2, Col 1 */
  }

  .expertise-logo-item:nth-child(3) {
    order: 3; /* Walmart - Row 1, Col 3 */
  }

  .expertise-logo-item:nth-child(4) {
    order: 2; /* WarnerMedia - Row 1, Col 2 */
  }

  .expertise-logo-item:nth-child(5) {
    order: 6; /* uplift - Row 2, Col 3 */
  }

  .expertise-logo-item:nth-child(6) {
    order: 5; /* Dropbox - Row 2, Col 2 */
  }

  .expertise-logo {
    max-height: 30px;
    max-width: 80px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Individual logo sizing for mobile */
  .expertise-logo-item:nth-child(1) .expertise-logo {
    max-height: 28px;
    max-width: 70px;
  }

  .expertise-logo-item:nth-child(2) .expertise-logo {
    max-height: 25px;
    max-width: 90px;
  }

  .expertise-logo-item:nth-child(3) .expertise-logo {
    max-height: 32px;
    max-width: 75px;
  }

  .expertise-logo-item:nth-child(4) .expertise-logo {
    max-height: 28px;
    max-width: 85px;
  }

  .expertise-logo-item:nth-child(5) .expertise-logo {
    max-height: 70px;
    max-width: 70px;
  }

  .expertise-logo-item:nth-child(6) .expertise-logo {
    max-height: 32px;
    max-width: 70px;
  }

  .building-together-section {
    margin: 0 10px;
    background-color: #000000 !important;
    padding: 0;
  }

  .building-together-wrapper {
    width: 100%;
    margin: 0;
    padding: 20px 15px;
  }

  .building-together-image {
    width: 100%;
    margin: 0;
  }

  .building-together-img-desktop {
    display: none !important;
  }

  .building-together-img-mobile {
    display: block !important;
    width: 100%;
    height: auto;
  }

  .building-together-text {
    padding: 1.5rem 0.5rem;
  }

  .building-together-text p {
    font-size: var(--mobile-font-size-mid);
    padding: 0;
    line-height: 1.5;
  }

  .backed-by-section {
    padding: 2rem var(--common-padding);
    margin: 0;
    /* background-color: #FFFFFF; */
 
  }

  .backed-by-wrapper {
    margin: 100px 0 50px 0;
    text-align: center;
  }

  .backed-by-title {
    font-size: var(--mobile-font-size-large);
    margin-bottom: 2rem;
  }

  .backed-by-companies {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .backed-by-company {
    font-size: var(--mobile-font-size-mid);
    text-align: left;
    width: fit-content;
  }

  /* Stacking Card Animation for Mobile */
  .team-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    perspective: 1000px;
  }

  .team-card {
    opacity: 0;
    transform: translateY(80px) scale(0.85) rotateX(10deg);
    animation: stackCardIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    will-change: transform, opacity;
  }

  .team-card:nth-child(1) {
    animation-delay: 0.1s;
    z-index: 3;
  }

  .team-card:nth-child(2) {
    animation-delay: 0.3s;
    z-index: 2;
  }

  .team-card:nth-child(3) {
    animation-delay: 0.5s;
    z-index: 1;
  }
}

/* Keyframes for stacking card animation */
@keyframes stackCardIn {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.85) rotateX(10deg);
    filter: blur(4px);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-15px) scale(0.98) rotateX(-2deg);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0);
  }
}



/*  */