
        /* ══════════════════════════════════
       SECTION WRAPPER
    ══════════════════════════════════ */
        .leadership {
            display: flex;
            align-items: center;
            max-width: 1448px;
            margin: 0 auto;
			padding: 0;
        }

        /* ══════════════════════════════════
       LEFT — TEXT
    ══════════════════════════════════ */
        .leadership__text {
            flex: 0 0 62%;
            padding-right: 138px;
			    text-align: left;
        }

        .leadership__eyebrow {
            display: block;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: #999999;
            margin-bottom: 22px;
        }

       section#inner-page-banner .leadership__heading {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.38;
            color: #111111;
            letter-spacing: -0.3px;
        }

        /* ══════════════════════════════════
       RIGHT — IMAGE GROUP
    ══════════════════════════════════ */
        .leadership__imgs {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 14px;
        }

        /*
     * Pink decorative dot
     * Sits at the BOTTOM, horizontally centred in the image group
     */
        .pink-dot {
            position: absolute;
            bottom: 0;
            left: 22%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #f9c0cc;
            opacity: 0.75;
            z-index: 0;
        }

        /*
     * Tall pill / rounded-rectangle images
     * border-radius: 100px makes it pill-shaped on a portrait div
     */
        .pill {
            position: relative;
            z-index: 1;
            flex-shrink: 0;
            width: 188px;
            height: 300px;
            border-radius: 100px 100px 100px 0;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
        }

        .pill img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        /* ══════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════ */
        @media (max-width: 991px) {
            .leadership {
                flex-direction: column;
                padding: 40px 24px;
                gap: 40px;
                min-height: auto;
            }
div.team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
div.team-img-wrapper {
        height: 228px;
    }
section.team-section, section.squads-section, section.process-section {
    padding: 60px 0;
}
div.team-name {
    font-size: 1.1rem;
}
            .leadership__text {
                flex: none;
                width: 100%;
                padding-right: 0;
            }

           section#inner-page-banner .leadership__heading {
                font-size: 24px;
            }

            .leadership__imgs {
                width: 100%;
                justify-content: flex-start;
            }

            .pill {
                width: 150px;
                height: 240px;
            }
		div.team-info {
    padding: 10px 15px;
		}
.leadership__eyebrow {
    font-size: 15px;
    letter-spacing: 1px;
}
div.squad-card {
    padding: 5px 20px 40px;
}
    .join-cta-box {
        padding: 70px 20px;
    }
			
        }
/* ===== devXta — Teams Page Styles ===== */

/* --- Team Leaders Section --- */
.team-section {
  background-color: var(--sada);
  padding: 120px 0;
  position: relative;
}

.team-section .section-header {
  margin-bottom: 70px;
}

.team-section .section-title {
  color: var(--text-light);
  font-family: var(--font);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.team-section .section-title span {
  font-weight: 400;
  color: var(--primary);
}

.team-section .section-desc {
  font-size: 2.5rem;
  color: #000;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

@media (min-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  background: var(--sada);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
box-shadow: -1px -1px 1px 0px rgba(0, 0, 0, 0.05);
}



.team-img-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.03);
}

/* Glassmorphism Social Overlay */
.team-socials {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 12%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 5;
}

.team-card:hover .team-socials {
  opacity: 1;
}

.social-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sada);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: var(--primary);
  color: var(--sada);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 16px rgba(176, 246, 0, 0.3);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.team-info {
  padding: 28px 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(21, 50, 36, 0.03);
  position: relative;
  z-index: 2;
}

.team-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-ligh);
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 8px 0 12px;
}

.team-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}


/* --- Technical Squads Section --- */
.squads-section {
  background-color: var(--bg-light);
  padding: 120px 0;
  position: relative;
  color: var(--sada);
  overflow: hidden;
}

.squads-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(176, 246, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.squads-section .section-header {
  margin-bottom: 50px;
}

.squads-section .section-title {
  color: var(--primary);
  font-family: var(--font);
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 24px;
}

.squads-section .section-title span {
  font-weight: 400;
  color: var(--primary);
}

.squads-section .section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 1000px;
}

.squads-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .squads-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .squads-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.squad-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgb(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 45px 35px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.squad-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(183, 183, 183, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.squad-icon-box {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

.squad-card:hover .squad-icon-box {
  transform: scale(1.1) rotate(5deg);
}

.squad-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-light);
}

.squad-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
  flex-grow: 1;
}

.squad-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.tech-badge {
  background: rgba(225, 225, 225, 0.4);
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(225, 225, 225, 0.08);
  transition: all 0.3s ease;
}

.squad-card:hover .tech-badge {
  border-color: rgba(97, 97, 97, 0.25);
  color: var(--text-light);
  background: rgba(97, 97, 97, 0.03);
}


/* --- Collaboration Process Section --- */
.process-section {
  background-color: var(--sada);
  padding: 120px 0;
  position: relative;
}

.process-section .section-header {
  max-width: 800px;
  margin-bottom: 50px;
}

.process-section .section-title {
  color: var(--text);
  font-family: var(--font);
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.process-section .section-title span {
  font-weight: 400;
  color: var(--text-light);
}

.process-section .section-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.75;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}

@media (min-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

.process-step {
  position: relative;
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(21, 50, 36, 0.03);
  box-shadow: 0 8px 30px rgba(21, 50, 36, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(21, 50, 36, 0.05);
  border-color: #cfcfcf;
}

.step-number {
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(21, 50, 36, 0.05);
  line-height: 1;
  position: absolute;
  top: 15px;
  right: 25px;
  transition: all 0.4s ease;
  user-select: none;
}

.process-step:hover .step-number {
  color: rgba(0, 0, 0, 0.05);
  transform: scale(1.1) translateY(-3px);
}

.step-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon-box {
  transform: scale(1.05);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.process-step:hover .step-icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* --- Join CTA Section --- */
.join-cta-section {
  background-color: var(--sada);
  padding: 20px 0 100px;
  position: relative;
  overflow: hidden;
}

.join-cta-box {
  background: var(--sada);
  border-radius: 36px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--primary);
  box-shadow: 0 20px 50px rgba(21, 50, 36, 0.15);
}

.join-cta-box::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(176, 246, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.join-cta-box::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(176, 246, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.join-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.join-title span {
  font-weight: 400;
  color: var(--text-light);
}

.join-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 1000px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.join-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (min-width: 576px) {
  .join-actions {
    flex-direction: row;
  }
}

.join-actions .btn {
  font-size: 1rem;
}

.btn-lime {
  background: var(--primary);
  color: var(--sada);
}

.btn-lime:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-outline-white {
  color: var(--text-light);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  transition: var(--transition);
}

.btn-outline-white:hover {
  color: var(--dark-2);
  text-decoration: none;
  transform: translateY(-2px);
}
@media (max-width: 1200px) {
section#inner-page-banner .leadership__heading {
    font-size: 40px;
}
.leadership__imgs .pill {
    width: 175px;
}
.team-img-wrapper {
    height: 210px;
}
}
@media (max-width: 767px) {
    section#inner-page-banner .container.leadership {
        padding: 0 15px;
    }
    section#inner-page-banner .leadership__heading {
        font-size: 28px;
    }
    div.team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    div.team-img-wrapper {
        height: 158px;
    }
div.team-name {
    font-size: 1.1rem;
}
div.team-role {
    font-size: 0.6rem;
    letter-spacing: 1.2px;
    margin: 5px 0;
}
}