* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #1c1c1c;
  color: #fff;
}


html,
body {
  width: 100%;
  overflow-x: hidden;
}


/* ========================================================================================================================================= */

/* ========================= */
/* HERO SECTION */
/* ========================= */
.about-hero {
  position: relative;
    height: clamp(320px, 70vh, 560px);
    margin-top: 80px;
    padding: 40px 20px;
    background-color: #0b0b0b;
    background-image: linear-gradient(135deg, #041a12 0%, #0b0b0b 45%, #074432 100%);

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ========================= */
/* OVERLAY */
/* ========================= */
.about-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.75) 40%,
    rgba(150, 255, 180, 0.2) 75%,
    rgba(150, 255, 180, 0.08) 100%
  );

  z-index: 1;
}

/* ========================= */
/* BREADCRUMB */
/* ========================= */
.breadcrumb {
  position: relative;
  z-index: 2; /* ✅ overlay वर */

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 22px;
  border-radius: 40px;

  /* 🔥 gradient */
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.85) 0%,
    rgba(20, 20, 20, 0.5) 40%,
    rgba(40, 40, 40, 0) 100%
  );

  color: #fff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;

  border: 1px solid rgba(255,255,255,0.08);

  /* ✨ glass effect */
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255,255,255,0.06);

  transition: all 0.3s ease;
  margin-bottom: 80px;
}

/* ========================= */
/* HOVER */
/* ========================= */
.breadcrumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(158, 255, 198, 0.088);
}

/* ========================= */
/* ICON */
/* ========================= */
.home-icon i {
  color: #9effc7;
  font-size: 14px;
  transition: 0.3s;
}

.breadcrumb:hover .home-icon i {
  transform: scale(1.2);
}

/* ========================= */
/* TEXT */
/* ========================= */
.breadcrumb-text {
  color: #bbb;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.breadcrumb-text:hover {
  color: #9effc7;
  cursor: pointer;
}

.breadcrumb-active {
  color: #fff;
  font-weight: 500;
}

.arrow {
  color: #777;
  font-size: 16px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {
  .about-hero {
    height: 80vh;
  }
}

@media (max-width: 768px) {

  .about-hero {
    height: 60vh;
    padding: 0 15px;
  }

  .breadcrumb {
    font-size: 12px;
    padding: 8px 14px;
    gap: 6px;
  }

  .arrow {
    font-size: 14px;
  }
}


/* =================================================================================================================================== */

.team-section {
  position: relative;
  padding: clamp(76px, 8vw, 120px) 5%;
  background: #ffffff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(65, 134, 110, 0.12), transparent 30%),
    radial-gradient(circle at 88% 88%, rgba(15, 23, 42, 0.06), transparent 28%);
  z-index: -1;
  pointer-events: none;
}

.sk-services-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(65, 134, 110, 0.1), rgba(123, 214, 177, 0.15));
  color: #336959;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 24px;
  border: 1px solid rgba(65, 134, 110, 0.16);
  box-shadow: 0 14px 30px rgba(65, 134, 110, 0.1);
}

.sk-services-badge i {
  font-size: 16px;
}

/* MAIN HEADING */
.team-header h2 {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 700;
  margin: 0;
  color: #0f172a;
  line-height: 1.16;
}

.team-header h2 span {
  background: linear-gradient(135deg, #2f6f59, #41866e 55%, #7bd6b1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.team-header p {
  max-width: 800px;
  margin: 16px auto clamp(38px, 5vw, 68px);
  color: #5f6b7a;
  line-height: 1.7;
  font-size: 15px;
}

/* GRID */
.team-container {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  perspective: 1300px;
}

/* CARD */
.team-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 390px;
  padding: 14px 14px 24px;
  border-radius: 28px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(145deg, rgba(65, 134, 110, 0.22), rgba(15, 23, 42, 0.08)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  will-change: transform;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 80% 6%, rgba(123, 214, 177, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(65, 134, 110, 0.08), transparent 48%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.team-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #2f6f59, #7bd6b1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.team-card .team-img::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.28) 46%,
    rgba(255, 255, 255, 0) 72%
  );
  transform: translateX(-130%);
  transition: transform 0.65s ease;
  pointer-events: none;
  z-index: 1;
}

.team-card:hover,
.team-card.is-active,
.team-card:focus-within {
  border-color: rgba(65, 134, 110, 0.42);
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.13),
    0 20px 48px rgba(65, 134, 110, 0.15);
}

.team-card:hover::before,
.team-card.is-active::before,
.team-card:focus-within::before {
  opacity: 1;
}

.team-card:hover::after,
.team-card.is-active::after,
.team-card:focus-within::after {
  transform: scaleX(1);
}

.team-card:hover .team-img::before,
.team-card.is-active .team-img::before,
.team-card:focus-within .team-img::before {
  transform: translateX(130%);
}

.team-card:focus-visible {
  outline: 2px solid #41866e;
  outline-offset: 4px;
}

/* IMAGE */
.team-img {
  position: relative;
  overflow: hidden;
  width: min(100%, 240px);
  max-width: 240px;
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid rgba(65, 134, 110, 0.18);
  background:
    radial-gradient(circle at 50% 18%, rgba(123, 214, 177, 0.16), transparent 44%),
    #f6faf8;
  transform: translateZ(34px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.09);
}

.team-img img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

/* HOVER ZOOM */
.team-card:hover img,
.team-card.is-active img {
  transform: scale(1.07) translateZ(18px);
  filter: saturate(1.05) contrast(1.02);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.02),
    rgba(3, 16, 11, 0.82)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-card:hover .overlay,
.team-card.is-active .overlay,
.team-card:focus-within .overlay {
  opacity: 1;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateY(24px) scale(0.9);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.team-card:hover .social-icons,
.team-card.is-active .social-icons,
.team-card:focus-within .social-icons {
  transform: translateY(70px) scale(1);
  opacity: 1;
}

.social-icons a {
  position: relative;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.social-icons a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.social-icons i {
  font-size: 19px;
}

.social-icons a:hover {
  background: linear-gradient(160deg, #d5fee9, #77e4b9, #287c5f);
  color: #034f2d;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28), 0 0 0 4px rgba(123, 214, 177, 0.2);
}

.social-icons a:hover::before,
.social-icons a:focus-visible::before {
  opacity: 1;
}

.social-icons a:active {
  transform: translateY(-1px) scale(0.98);
}

.social-icons a:focus-visible {
  outline: 2px solid #8fecc4;
  outline-offset: 2px;
}

/* NAME */
.team-card h4 {
  position: relative;
  margin: 20px 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  transform: translateZ(28px);
}

.team-card span {
  position: relative;
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  color: #336959;
  background: rgba(65, 134, 110, 0.08);
  border: 1px solid rgba(65, 134, 110, 0.14);
  font-size: 14px;
  font-weight: 700;
  transform: translateZ(22px);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .team-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 76px 20px;
  }

  .team-header h2 {
    font-size: 34px;
  }

  .team-header p {
    margin-bottom: 34px;
  }
}

@media (max-width: 576px) {
  .team-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card {
    min-height: auto;
    padding: 12px 12px 22px;
    border-radius: 22px;
  }

  .team-img,
  .team-img img {
    border-radius: 18px;
  }
}

@media (max-width: 420px) {
  .team-header h2 {
    font-size: 28px;
  }

  .team-header p {
    font-size: 14px;
  }

  .team-card h4 {
    font-size: 18px;
  }

  .team-card span {
    font-size: 13px;
    padding: 6px 11px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .team-card {
    transform: none !important;
  }

  .team-card:active {
    transform: translateY(-3px) !important;
  }

  .social-icons {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-card,
  .team-card::before,
  .team-card::after,
  .team-card .team-img::before,
  .team-img img,
  .overlay,
  .social-icons,
  .social-icons a {
    transition: none !important;
  }
}


* {
  scroll-behavior: smooth;
}

.showcase-item,
.product-step,
.feature-card {
  will-change: transform, opacity;
}
