/* =========================================
   ABOUT SECTION
========================================= */
.zb-about-section {
  padding: 40px 0;
  background: #ffffff;
  overflow: hidden;
}

.zb-about-img-col {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
}

/* Orange glow blob */
.zb-about-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.14) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.zb-about-img-main {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.zb-about-img-main:hover {
  transform: scale(1.02);
}

.zb-about-img-secondary {
  width: 55%;
  height: 270px;
  object-fit: cover;
  border-radius: 20px;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 5px solid #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  display: block;
  z-index: 3;
  transition: transform 0.4s ease;
}

.zb-about-img-secondary:hover {
  transform: scale(1.03);
}

/* Floating stat card */
.zb-about-stat-card {
  position: absolute;
  top: 24px;
  right: -8%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  z-index: 6;
  animation: floatStat 3s ease-in-out infinite;
}

@keyframes floatStat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.zb-about-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 6px 16px rgba(251, 146, 60, 0.35);
  flex-shrink: 0;
}

.zb-about-stat-num {
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
  background: linear-gradient(135deg, #fb923c 20%, #ea580c 45%, #2563eb 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.zb-about-stat-lbl {
  font-size: 10px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 2px 0 0;
}

/* Right content */
.zb-about-content-col {
  padding-left: 16px;
}

.zb-about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(251, 146, 60, 0.25);
  color: #fb923c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.zb-tag-dot {
  width: 6px;
  height: 6px;
  background: #fb923c;
  border-radius: 50%;
  display: inline-block;
}

.zb-about-heading {
  font-size: 46px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.zb-gradient-text {
  background: linear-gradient(135deg, #fb923c 20%, #ea580c 45%, #2563eb 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zb-about-description {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 500px;
}

/* Checklist 2-col grid */
.zb-about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-bottom: 36px;
}

.zb-about-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.zb-about-check-item:hover {
  background: rgba(251, 146, 60, 0.06);
  border-color: rgba(251, 146, 60, 0.3);
  transform: translateX(4px);
}

.zb-about-check-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fb923c;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.zb-about-check-item:hover .zb-about-check-icon {
  background: #fb923c;
  color: #fff;
}

.zb-about-check-text {
  font-size: 13.5px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

/* Bottom row */
.zb-about-bottom-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.zb-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.zb-about-btn:hover {
  background: #fff;
  color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 14px 25px rgba(251, 146, 60, 0.4);
}

.zb-about-founder {
  display: flex;
  align-items: center;
  gap: 14px;
}

.zb-about-founder-avatars {
  display: flex;
  align-items: center;
}

.zb-founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: block;
}

.zb-founder-avatar:nth-child(2) {
  margin-left: -14px;
}

.zb-founder-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px;
}

.zb-founder-role {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

@media (max-width: 991px) {
  .zb-about-img-col {
    min-height: 360px;
    margin-bottom: 50px;
  }

  .zb-about-img-main {
    width: 72%;
    height: 340px;
  }

  .zb-about-img-secondary {
    width: 55%;
    height: 210px;
  }

  .zb-about-heading {
    font-size: 34px;
  }

  .zb-about-content-col {
    padding-left: 0;
  }

  .zb-about-stat-card {
    right: 0;
    top: 10px;
  }
}

@media (max-width: 575px) {
  .zb-about-section {
    padding: 60px 0;
  }

  .zb-about-heading {
    font-size: 28px;
  }

  .zb-about-img-main {
    width: 100%;
  }

  .zb-about-img-secondary {
    display: none;
  }

  .zb-about-checklist {
    grid-template-columns: 1fr;
  }

  .zb-about-stat-card {
    display: none;
  }
}


/* =========================================
   MARQUEE SECTION
========================================= */
.zb-marquee-section {
  padding: 20px 0;
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.zb-marquee-track {
  overflow: hidden;
  width: 100%;
}

.zb-marquee-inner {
  display: flex;
  width: max-content;
  animation: zb-marquee-scroll 24s linear infinite;
}

.zb-marquee-inner:hover {
  animation-play-state: paused;
}

@keyframes zb-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.zb-marquee-list {
  display: -webkit-box;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.zb-marquee-item {
  display: -webkit-box;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 0 28px;
  cursor: default;
  transition: transform 0.3s ease;
}

.zb-marquee-item:hover {
  transform: scale(1.06);
}

.zb-marquee-icon {
  font-size: 20px;
  color: #fb923c;
  transition: color 0.3s;
}

.zb-marquee-item:hover .zb-marquee-icon {
  color: #fbbf24;
}

.zb-marquee-text {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  margin-bottom: 0px;
}

.zb-marquee-sep {
  color: rgba(251, 146, 60, 0.4);
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
}


/* =========================================
   WORK PROCESS SECTION
========================================= */
.zb-process-section {
  padding: 30px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.zb-process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(251, 146, 60, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 146, 60, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.zb-process-header {
  margin-bottom: 52px;
}

.zb-process-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(251, 146, 60, 0.25);
    color: #fb923c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.zb-process-heading {
  font-size: 42px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.zb-process-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
  max-width: 380px;
}

/* Steps */
.zb-process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  padding: 28px 28px;
  margin-bottom: 18px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.zb-process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.zb-process-step:hover {
  border-color: rgba(251, 146, 60, 0.3);
  transform: translateX(8px);
  box-shadow: 0 12px 36px rgba(251, 146, 60, 0.12);
}

.zb-process-step:hover::before {
  transform: scaleY(1);
}

.zb-process-step:last-child {
  margin-bottom: 0;
}

.zb-process-num {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(251, 146, 60, 0.35);
  gap: 2px;
  transition: all 0.3s ease;
}

.zb-process-num i {
  font-size: 14px;
  opacity: 0.85;
}

.zb-process-num span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.zb-process-step:hover .zb-process-num {
  transform: rotate(-6deg) scale(1.1);
  box-shadow: 0 14px 32px rgba(251, 146, 60, 0.45);
}

.zb-process-step-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.zb-process-step-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Right images */
.zb-process-img-top {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}

.zb-process-img-top:hover {
  transform: scale(1.02);
}

.zb-process-img-bottom-wrap {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.zb-process-exp-box {
  background: linear-gradient(145deg, #fb923c, #ea580c);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 155px;
  text-align: center;
  gap: 4px;
}

.zb-exp-icon {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.zb-process-exp-number {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}

.zb-process-exp-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  display: block;
  margin-top: 4px;
}

.zb-process-img-bottom {
  flex: 1;
  height: 210px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .zb-process-heading {
    font-size: 30px;
  }

  .zb-process-img-top {
    height: 240px;
    margin-top: 40px;
  }

  .zb-process-img-bottom {
    height: 170px;
  }

  .zb-process-exp-box {
    min-width: 120px;
    padding: 20px 16px;
  }

  .zb-process-exp-number {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .zb-process-section {
    padding: 60px 0;
  }

  .zb-process-heading {
    font-size: 26px;
  }

  .zb-process-step {
    padding: 20px;
  }
}


/* =========================================
   TEAM SECTION
========================================= */
.zb-team-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  /* light orange shade */
  position: relative;
  overflow: hidden;
}

.zb-team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(234, 88, 12, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.zb-team-header {
  text-align: center;
  margin-bottom: 52px;
}

.zb-team-label {
     display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(251, 146, 60, 0.25);
    color: #fb923c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.zb-team-heading {
  font-size: 40px;
  font-weight: 900;
  color: #1e293b;
  /* dark for contrast */
  line-height: 1.15;
  letter-spacing: -0.03em;
}

/* Team Card */
.zb-team-card {
  position: relative;
}

.zb-team-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.zb-team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.zb-team-card:hover .zb-team-img {
  transform: scale(1.08);
}

.zb-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(234, 88, 12, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.zb-team-card:hover .zb-team-overlay {
  opacity: 1;
}

/* Share button */
.zb-team-share-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 16px;
  border-radius: 0 12px 0 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(251, 146, 60, 0.4);
}

.zb-team-share-btn:hover {
  transform: scale(1.1);
}

/* Social links */
.zb-team-social-links {
  position: absolute;
  bottom: 0;
  left: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
  max-width: 0;
  transition: max-width 0.4s ease;
}

.zb-team-img-wrap:hover .zb-team-social-links {
  max-width: 220px;
}

.zb-team-social-link {
  width: 46px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  font-size: 15px;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.zb-team-social-link:hover {
  color: #fff;
  background: linear-gradient(135deg, #fb923c, #ea580c);
}

/* Card Info */
.zb-team-card-info {
  padding: 18px 6px 0;
  text-align: center;
}

.zb-team-member-name {
  font-size: 17px;
  font-weight: 800;
  color: #1e293b;
  /* dark text */
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.zb-team-member-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ea580c;
  margin: 0;
}

/* Explore button */
.zb-team-btn-wrap {
  text-align: center;
  margin-top: 52px;
}

.zb-team-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(234, 88, 12, 0.4);
  color: #ea580c;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zb-team-btn:hover {
  background: linear-gradient(135deg, #fb923c, #ea580c);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(251, 146, 60, 0.4);
}

.zb-team-btn i {
  transition: transform 0.25s;
}

.zb-team-btn:hover i:last-child {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .zb-team-heading {
    font-size: 30px;
  }

  .zb-team-img {
    height: 260px;
  }
}

@media (max-width: 575px) {
  .zb-team-section {
    padding: 60px 0;
  }

  .zb-team-heading {
    font-size: 26px;
  }
}