.hero-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/moon-about.webp');
}

.hero-wave {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, #3b0c8c 0%, #1a0050 40%, transparent 75%),
    radial-gradient(ellipse 60% 40% at 50% 20%, #5c1ac2 0%, transparent 60%);
  opacity: 0.9;

}

.hero-card {
  position: relative;
  z-index: 10;
  /* max-width: 1200px; */
  width: 100%;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.02);
  padding: 80px 64px;
  text-align: center;
}

.hero-card h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 24px;
}

.hero-card p {
  color: #d1d5db;
  font-size: clamp(16px, 2vw, 20px);
  max-width: 100%;
  width: 75%;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-card {
    padding: 60px 24px;
  }
}

/* ============================================================
       LEGACY SECTION
    ============================================================ */
.legacy-section {
  background: var(--proven-bg);
  padding: 80px 0 40px;
  text-align: center;
}

/* .legacy-section h2 {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(36px, 4vw, 50px);
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 24px;
    } */

/* .legacy-section h2 span { color: var(--heading-red); } */

.legacy-section p {
  font-size: 20px;
  color: var(--gray-one);
  max-width: 80%;
  width: 100%;
  margin: 0 auto 16px;
  line-height: 1.75;

}

.legacy-section h2 {
  line-height: 1.3;
}

/* ============================================================
       ICON CARDS (Experience / Customers / Legacy)
    ============================================================ */
.icons-section {
  background: var(--proven-bg);
  padding: 20px 0 60px;
}

.icons-grid {
  display: flex;
  justify-content: center;
  gap: 4%;
  flex-wrap: wrap;
}

.icon-card {
  background: #1d1d1d;
  border-radius: 16px;
  border: 0.91px solid #4c4c4c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 64px;
  gap: 16px;
  transition: border-color 0.3s;
  cursor: default;
}

.icon-card:hover {
  border-color: #1059B64D;
}

.icon-card:nth-child(1) {
  transform: translateY(32px);
}

.icon-card:nth-child(2) {
  transform: translateY(-32px);
  /* border-color: #cf0f0f; */
}

.icon-card:nth-child(3) {
  transform: translateY(32px);
}

.icon-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.icon-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

@media (max-width: 768px) {
  .icon-card {
    transform: none !important;
    padding: 32px 40px;
  }

  .icons-grid {
    gap: 16px;
  }
}

/* ============================================================
       VISION & MISSION
    ============================================================ */
.vm-section {
  background: var(--proven-bg);
  padding: 60px 0 80px;
}

.vm-inner {
  display: flex;
  gap: 40px;
  align-items: stretch;
  justify-content: center;
}

.vm-box {
  flex: 1;
  max-width: 50%;
}

.vm-box.right {
  text-align: right;
}

.vm-box.left {
  text-align: left;
}

.vm-box h3 {
  /* font-family: 'DM Sans', sans-serif; */
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.vm-box p {
  font-size: 20px;
  color: var(--gray-one);
  line-height: 1.75;
}

.vm-divider {
  width: 1px;
  background: #9d9d9d;
  align-self: stretch;
}

@media (max-width: 768px) {
  .vm-inner {
    flex-direction: row;
  }

  .vm-divider {
    width: 1px;
    background: #9d9d9d;
    align-self: stretch;
  }

  .vm-box.right,
  .vm-box.left {
    text-align: center;
  }
}

/* ============================================================
       INNOVATION / ZIGZAG
    ============================================================ */
.innovation-section {
  background: var(--bg);
  padding: 80px 0;
}

.innovation-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 80px; */
  flex-wrap: wrap;
  justify-items: center;
  margin: 0 auto;
}

.innovation-left {
  /* max-width: 480px; */
  flex: 1;
}

.innovation-left h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  /* color: var(--heading-main); */
  margin-bottom: 24px;
}

/* .innovation-left h2 span { color: var(--heading-red); } */

.innovation-left p {
  font-size: 20px;
  color: var(--gray-one);
  line-height: 1.75;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--heading-red);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.85;
}

/* Zigzag Grid */
.zz-grid {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.zz-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.zz-col:nth-child(2) {
  margin-top: 80px;
}

.zz-card {
  width: 180px;
  height: 180px;
  /* background: #1b1b1b; */
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  padding: 1px;
}

.zz-card-inner {
  width: 100%;
  height: 100%;
  background: #1b1b1b;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0.91px solid #f0f0f0;
}

.zz-card-inner img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.zz-card-inner p {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 768px) and (max-width: 992px) {
  .zz-card-inner {
    gap: 0;
  }

  .innovation-inner {
    flex-direction: row;
  }

  .zz-card {
    width: 160px;
    height: 160px;
  }

  .vm-inner {
    flex-direction: row;
  }

  .glass-wrapper {
    bottom: 10% !important;
    left: 0;
  }

  .glass-box {
    padding: 50px !important;
    width: 100% !important;
    height: fit-content !important;

  }

  .glass-box h3 {
    font-size: 28px !important;
  }

  .glass-box p {
    font-size: 14px !important;
  }
}
@media (max-width: 424px) {
    .about-image {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .innovation-inner {
    flex-direction: column;
  }

  .zz-col:nth-child(2) {
    margin-top: 0;
  }
  .glass-box {
    padding: 15px 0 !important;
    height: auto !important;
    width: 100% !important;
  }

  .glass-wrapper {
    bottom: 10% !important;
  }

  .glass-box h3 {
    font-size: 16px !important;
  }

  .glass-box p {
    font-size: 11px !important;
  }

  .zz-card-inner {
    padding: 20px;
  }

  .timeline-section h2 {
    font-size: 26px !important;
    margin-bottom: 0 !important;
  }

  .zz-card {
    width: auto;
    height: auto;
  }

  .icons-section {
    padding: 0;
  }

  .vm-inner {
    flex-direction: column !important;
    gap: 20px;
  }

  .vm-box {
    max-width: 100%;
  }

  .vm-section {
    padding: 30px 0 0 0;
  }

  .vm-box h3 {
    font-size: 26px;
  }

  .zz-grid {
    margin-top: 20px;
  }
}

/* ============================================================
       INDUSTRIES
    ============================================================ */
.industries-section {
  background: var(--proven-bg);
  padding: 80px 0;
  text-align: center;
}

.industries-section h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.industries-section h2 span {
  color: var(--heading-red);
}

.industries-section .sub-para {
  font-size: 18px;
  color: var(--para);
  margin-bottom: 48px;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 64px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.ind-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-par);
}

.ind-item::before {
  content: "»";
  color: var(--heading-red);
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .ind-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
  }
}

@media (max-width: 480px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
       TIMELINE
    ============================================================ */
.timeline-section {
  background: var(--bg);
  padding: 0 0 80px 0;
}

.timeline-section h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.3;
}

.timeline-section h2 span {
  color: var(--heading-red);
}

.timeline-wrapper {
  position: relative;
  overflow: hidden;
}

.timeline-line {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: #3a3a3a;
}

.timeline-scroll {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding-top: 20px;
  padding-bottom: 48px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.timeline-scroll::-webkit-scrollbar {
  display: none;
}

.tl-spacer {
  width: 360px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tl-spacer {
    width: 20px;
  }
}

.tl-item {
  position: relative;
  width: 320px;
  flex-shrink: 0;
  margin-left: -40px;
}

.tl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid #2563eb;
  background: var(--proven-bg);
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}

.tl-content {
  margin-top: 40px;
  padding-left: 8px;
  max-width: 85%;
}

.tl-content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
  object-fit: cover;
}

.tl-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-main);
  margin-bottom: 8px;
}

.tl-content p {
  font-size: 15px;
  color: var(--text-par);
  line-height: 1.65;
}

.tl-arrows {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-left: 340px;
}

@media (max-width: 768px) {
  .tl-arrows {
    padding-left: 20px;
  }

  .tl-item {
    width: calc(90vw - 20px);
    margin-left: 0;
  }
}

.tl-btn {
  width: 48px;
  height: 48px;
  background: var(--heading-red);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.tl-btn:hover {
  opacity: 0.8;
}

/* ============================================================
       TEAM
    ============================================================ */
.team-section {
  background: var(--proven-bg);
  padding: 80px 0;
  text-align: center;
}

.team-section h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 600;
  margin-bottom: 48px;
  line-height: 1.3;
}

.team-section h2 span {
  color: var(--heading-red);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto 48px;
  }
}

.team-card {
  border-radius: 16px;
  padding: 8px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(9, 9, 9, 0));
  border: 1px solid rgba(238, 238, 238, 0.5);
}

.team-card img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.team-card-info {
  text-align: left;
  padding: 20px 8px 12px;
}

.team-card-info h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-main);
  margin-bottom: 4px;
}

.team-card-info p {
  font-size: 13px;
  color: var(--text-par);
}

/* ============================================================
       TESTIMONIALS
    ============================================================ */
.testimonials-section {
  background: #000;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.testimonials-section h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  text-align: center;
  color: #fff5df;
  margin-bottom: 56px;
  line-height: 1.35;
}

.testimonials-section h2 span {
  color: #cf0f0f;
}

.testi-fade-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.testi-fade-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.testi-track-wrap {
  overflow: hidden;
  padding: 0 0 16px;
}

.testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testi-card {
  width: 300px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  border-radius: 14px;
  padding: 28px;
  flex-shrink: 0;
}

.testi-card .quote-icon {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
  display: block;
}

.testi-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #cf0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.testi-author span {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}