:root {
  --heading-font: "Lato", sans-serif;
  --sub-heading-font: "DM Sans", sans-serif;


  --black: #060608;
  --off-black: #0c0c0f;
  --surface: #111115;
  --card: #18181e;
  --border: rgba(251, 146, 60, 0.14);
  --white: #f2f2f5;
  --muted: rgba(255, 255, 255, 0.586);
  --muted2: rgba(255, 255, 255, 0.22);
  --accent: #fb923c;
  --text-primary: #f2f2f5;
  --text-secondary: rgba(255, 255, 255, 0.62);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===================================
   BODY
=================================== */

body {
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  font-family: var(--sub-heading-font);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* ===================================
   HERO SECTION
  
  .team-sticky {
    position: relative;
    height: auto;
    overflow: visible;
    padding-bottom: 0;
    margin-bottom: 0;
    width: 100%;
  }
=================================== */


.hero-section {
  position: relative;
  padding: 80px 8% 120px;
  overflow: hidden;

}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
}

.blur-one {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -200px;
  left: -120px;
  will-change: transform;
  transform: translateZ(0);
}

.blur-two {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -200px;
  right: -120px;
  will-change: transform;
  transform: translateZ(0);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.hero-title {
  font-size: 58px;
  font-weight: 300;
  line-height: 1.1;
  padding-top: 30px;
  margin-bottom: 24px;
  font-family: var(--sub-heading-font);
  color: var(--white);
  letter-spacing: -0.02em;
}

@media (max-width: 700px) {
  .hero-title {
    font-size: 18px;
    white-space: wrap;
  }
}



.hero-text {
  max-width: 760px;
  margin: auto;
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.85;
  font-family: var(--sub-heading-font);
  font-weight: 300;
  padding-top: 10px;
  padding-bottom: 0 !important;
}

.mission-section {
  background: var(--black);
  padding: 20px 6%;
}

.mission-container {
  max-width: 1200px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-images {
  position: relative;
  height: 550px;
  width: 630px;
}

.mission-img-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 55%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mission-img-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 55%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  
}

.mission-img-top img,
.mission-img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: filter;
  transform: translateZ(0);
}



.mission-title {
  font-family: var(--heading-font);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

  .mission-title span {
    color: var(--accent);
  }

.mission-desc {
  font-family: var(--sub-heading-font);
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 520px;
}

.mission-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mission-list li {
  font-family: var(--sub-heading-font);
  font-size: 15px;
  font-weight: 350;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
}

.mission-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--black);
  border: 1.5px solid var(--accent);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fb923c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.vision-section {

  padding: 20px 6%;
}

.vision-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vision-section .mission-img-top img {
  filter: brightness(0.85) contrast(1.1) saturate(0.9);
  transition: filter 0.5s ease;
}

.vision-section .mission-img-top:hover img {
  filter: brightness(1) contrast(1) saturate(1);
}

.vision-section .mission-img-bottom img {
  filter: brightness(0.85) contrast(1.1) saturate(0.9);
  transition: filter 0.5s ease;
}

.vision-section .mission-img-bottom:hover img {
  filter: brightness(1) contrast(1) saturate(1);
}

.mission-section .mission-img-top img {
  filter: brightness(0.85) contrast(1.1) saturate(0.9);
  transition: filter 0.5s ease;
}

.mission-section .mission-img-top:hover img {
  filter: brightness(1) contrast(1) saturate(1);
}

.mission-section .mission-img-bottom img {
  filter: brightness(0.85) contrast(1.1) saturate(0.9);
  transition: filter 0.5s ease;
}

.mission-section .mission-img-bottom:hover img {
  filter: brightness(1) contrast(1) saturate(1);
}

.enhanced-img {
  filter: brightness(0.9) contrast(1.15) saturate(1.2);
  border-radius: 16px;
  box-shadow:
    0 0 40px rgba(251, 146, 60, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.5);
  transition: filter 0.5s ease, box-shadow 0.5s ease;
}

.enhanced-img:hover {
  filter: brightness(1) contrast(1.1) saturate(1.3);
  box-shadow:
    0 0 60px rgba(251, 146, 60, 0.25),
    0 30px 80px rgba(0, 0, 0, 0.6);
}

@media (max-width: 1182px) {

  .mission-container,
  .vision-container {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
  }

  .mission-images {
    height: 420px;
    width: 100%;
  }
}


@media (max-width: 600px) {

  .mission-section,
  .vision-section {
    padding: 20px 4%;
  }

  .mission-img-top,
  .mission-img-bottom {
    height: 220px;
  }

  .mission-title {
    font-size: 32px;
  }

  .mission-desc {
    font-size: 15px;
  }

  .mission-list li {
    font-size: 14px;
  }
}

@media (max-width: 1000px) {
  .vision-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vision-container .mission-images {
    order: -1;
  }
}

@media (max-width: 800px) {
  .mission-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* Mission: content pehle, images baad */
  .mission-container .mission-content {
    order: 1;
  }

  .mission-container .mission-images {
    order: 2;
  }

  .vision-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* Vision: content pehle, images baad */
  .vision-container .vision-content {
    order: 1;
  }

  .vision-container .mission-images {
    order: 2;
  }

  .mission-images {
    position: relative;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mission-img-top,
  .mission-img-bottom {
    position: relative;
    width: 100%;
    height: 380px;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    border: none;
  }
}

@media (max-width: 600px) {
  .mission-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* Mission: content pehle, images baad */
  .mission-container .mission-content {
    order: 1;
  }

  .mission-container .mission-images {
    order: 2;
  }

  .vision-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* Vision: content pehle, images baad */
  .vision-container .vision-content {
    order: 1;
  }

  .vision-container .mission-images {
    order: 2;
  }

  .mission-images {
    position: relative;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mission-img-top,
  .mission-img-bottom {
    position: relative;
    width: 100%;
    height: 300px;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    border: none;
  }
}


/* ===================================
   STATS
=================================== */

.stats-wrapper {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 2px 20px;
}

.stat-card {
  position: relative;
  min-height: 240px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 30px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: none;
  will-change: transform;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(251, 146, 60, 0.35);
  box-shadow:
    0 20px 50px rgba(251, 146, 60, 0.12),
    0 10px 30px rgba(0, 0, 0, 0.4);
}

/* .stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 85px;
  height: 85px;
  background: var(--black);
  border-bottom-right-radius: 65px;
} */

/* .stat-card::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.1), transparent 70%);
  right: -120px;
  bottom: -120px;
} */

.quote {
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  z-index: 3;
  font-family: var(--heading-font);
}

.stat-content {
  position: relative;
  z-index: 5;


}

.number {
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 14px;
  font-family: var(--sub-heading-font);
  color: var(--white);
  letter-spacing: -2px;
}

.label {

  font-size: 10px;
  font-family: var(--heading-font);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
}

.stat-content::after {
  content: '';
  width: 42px;
  height: 2px;
  background: var(--accent);
  display: block;
  margin: 10px auto 0;
  border-radius: 50px;

}

/* ===================================
   CULTURE SECTION
=================================== */

.culture-section {
  position: relative;
  width: 100%;
  padding: 50px 0 0;
  overflow: hidden;

}

.culture-section::after {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  /* background: radial-gradient(circle, rgba(251, 146, 60, 0.07), transparent 70%); */
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  pointer-events: none;
  will-change: transform;
}

.culture-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 8%;
  text-align: center;
}

.culture-tag {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.culture-tag::before,
.culture-tag::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.culture-title {
  font-size: 58px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: var(--sub-heading-font);
  color: var(--white);
  letter-spacing: -0.02em;
}

.culture-title span {
  /* color: var(--accent); */
  
  
}

.culture-desc {
  max-width: 760px;
  margin: auto;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.85;
  font-family: var(--sub-heading-font);
  font-weight: 300;
}



.filter-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 36px;
  margin-top: 60px;
  margin-bottom: 80px;
  position: relative;
  z-index: 5;
}

.filter-btn {
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid var(--off-black);
  background: var(--black);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
  font-family: var(--heading-font);
}

.filter-btn:hover {
  transform: translateY(-2px);
  color: var(--white);
  /* border-color: rgba(251, 146, 60, 0.35);
  background: rgba(255, 255, 255, 0.07); */
}

.filter-btn.active {
  background: var(--white);
  color: var(--black);

}



.culture-slider {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: var(--surface);
  color: var(--white);
  font-size: 20px;
  cursor: none;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 1px solid var(--border);
  font-family: var(--heading-font);
  align-items: center;
  justify-content: center;
}


.slider-btn:hover {
  background: var(--accent);
  color: var(--black);
  transform: translateY(-2px);
  /* box-shadow: 0 8px 28px rgba(251, 146, 60, 0.3); */
  border-color: var(--accent);
}

.slider-controls {
  display: flex;
  padding: 0px;

  gap: 40px;
  justify-content: center;
  align-items: center;
}

.prev-btn,
.next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1100px) {
  .stats-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:1099px) {
  .slider-wrapper {
    height: 400px;
  }
}

@media(max-width:800px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-text {
    font-size: 15px;
  }

  .stats-wrapper {
    grid-template-columns: 1fr;


  }

  .culture-title {
    font-size: 42px;
  }

  .culture-desc {
    font-size: 15px;
  }

  .culture-slider {
    gap: 14px;


  }


  .stats-wrapper {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 2px 10px;
  }

  .stat-card {
    position: relative;
    min-height: 140px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 15px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: none;
    will-change: transform;
  }

}

@media(max-width:620px) {
  .filter-buttons {
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .slider-wrapper {
    height: 300px;
    width: 100%;
  }
}

@media(max-width:528px) {
  .filter-buttons {
    padding: 9px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media(max-width:560px) {

  .slider-wrapper {
    height: 300px;


  }
}


#team-container {
  padding: 0 52px;
  background: var(--black);
}

#team {
  position: relative;
  min-height: auto;
  padding-bottom: 0;
}

.teamHeading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
  font-family: var(--heading-font);
  font-size: 50px;
}

/* .ourTeam-Orange {
  color: var(--accent);
} */

.team-sticky {
  position: relative;
  top: auto;
  height: auto;
  overflow: visible;
  padding-bottom: 0;
  margin-bottom: 0;
}

.team-heading {
  position: relative;
  inset: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  margin-bottom: 40px;
}

.team-kicker {
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.team-cards {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 52px;
  z-index: 2;
}

.tm-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  will-change: transform;
}

.tm-card:nth-child(odd) {
  margin-top: 28px;
}

.tm-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 245, 59, 0.18);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.tm-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  will-change: transform;
  transform: translateZ(0);
}

.tm-card:hover img {
  transform: scale(1.04);
}

.tm-card-body {
  padding: 20px 20px 24px;
  display: flex;
  text-align: center;
  flex-direction: column;
}

.tm-card-body h4 {
  font-family: var(--sub-heading-font);
  font-size: 21px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}

.tm-card-body span {
  font-family: var(--heading-font);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

@media(max-width: 1100px){
  #team-container {
    padding: 0 24px;
  }

  #team {
    padding: 60px 0 0;
    margin-bottom: 0;
  }

  .teamHeading {
    font-size: 36px;
    padding-bottom: 40px;
  }

  .team-sticky {
    position: relative;
    height: auto;
    overflow: visible;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .team-heading {
    position: relative;
    margin-bottom: 50px;
  }

  .team-cards {
    position: relative;
    left: auto;
    padding: 0 20px;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 0;
  }

  .tm-card:nth-child(odd) {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  #team-container {
    padding: 0 24px;
  }

  #team {
    padding: 60px 0 0;
    margin-bottom: 0;
  }

  .teamHeading {
    font-size: 36px;
    padding-bottom: 40px;
  }

  .team-sticky {
    position: relative;
    height: auto;
    overflow: visible;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .team-heading {
    position: relative;
    margin-bottom: 50px;
  }

  .team-cards {
    position: relative;
    left: auto;
    padding: 0 20px;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 0;
  }

  .tm-card:nth-child(odd) {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .team-cards {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 691px) {
  .stats-wrapper {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 2px 10px;
  }

  .stat-card {
    left: 17%;
    min-height: 200px;
    width: 70%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 15px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: none;
    will-change: transform;
  }
}

/* ===================================
   PERFORMANCE: GPU PROMOTION & CONTAINMENT
   Applied globally — no visual changes.
=================================== */

/* Isolate the slider from page repaints */
.slider-wrapper {
  contain: layout style paint;
  transform: translateZ(0);
}

/* Promote slide images to their own compositing layer */
.slide img {
  transform: translateZ(0);
  will-change: opacity;
}

/* Promote mission/vision image containers to avoid layout recalcs */
.mission-img-top,
.mission-img-bottom {
  transform: translateZ(0);
  contain: layout paint;
}

/* Contain the culture section so its pseudo-element gradient
   doesn't trigger full-page repaint on scroll */
.culture-section {
  contain: layout style;
}

/* Contain stats section */
.stats-wrapper {
  contain: layout;
}

/* enhanced-img box-shadow transition is expensive — promote layer */
.enhanced-img {
  transform: translateZ(0);
  will-change: filter, box-shadow;
}
