.product-hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

.about-hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: #dadada;
  max-width: 800px;
  margin: 0 auto;
}

/* Stats Section */
.about-stats-section {
  padding: 80px 0;
  background: #1a1c1e;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.about-stat-card {
  text-align: center;
  padding: 32px 24px;
  background: #111113;
  border: 1px solid rgb(255, 255 ,255, .1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-4px);
  border-color: #daff01;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.about-stat-value {
  font-size: 48px;
  font-weight: 700;
  color: #daff01;
  margin-bottom: 8px;
  line-height: 1;
}

.about-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Mission Section */
.about-mission-section {
  padding: 120px 0;
  background: #111113;
}

.mission-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}

.mission-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission-description {
  font-size: 18px;
  line-height: 1.7;
  color: #dadada;
}

.mission-image {
  display: flex;
  justify-content: center;
}

.mission-image-card {
  background: #1a1c1e;
  border: 1px solid rgb(255, 255 ,255, .1);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
}

.mission-icon {
  color: #daff01;
  margin-bottom: 24px;
}

.mission-image-card h3 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.mission-image-card p {
  font-size: 16px;
  color: #dadada;
  line-height: 1.6;
}

/* Values Section */
.about-values-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.about-values-section .section-header {
text-align: center;
margin-bottom: 64px;
}
.about-values-section .section-title {
font-size: 48px;
font-weight: 700;
line-height: 1.1;
letter-spacing: .03em;
color: #ffffff;
margin-bottom: 16px;
}

.about-values-section .section-subtitle {
color: #dadada;
font-size: 18px;
line-height: 1.6;
margin: 0 auto;
max-width: 600px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.value-card {
    background: #111113;
    border: 1px solid rgb(255, 255, 255,.1);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: #daff01;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: rgb(218, 255, 1, .1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #daff01;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  background: #daff01;
  color: #111113;
}

.value-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.value-description {
  font-size: 16px;
  line-height: 1.6;
  color: #dadada;
}

/* Journey Section */
.about-journey-section {
  padding: 120px 0;
  background: #111113;
}

.journey-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgb(255, 255 ,255, .1);
  transform: translateX(-50%);
}

.about-journey-section .section-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.1;
    margin-bottom: 16px;
}
.about-journey-section .section-subtitle {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  position: relative;
}

.timeline-item:nth-child(even) {
  direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
  direction: ltr;
  text-align: right;
}

.timeline-year {
  font-size: 42px;
  font-weight: 700;
  color: #daff01;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-year {
  text-align: left;
}

.timeline-content {
  padding: 32px;
  background: #1a1c1e;
  border: 1px solid rgb(255, 255 ,255, .1);
  border-radius: 16px;
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #daff01;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(218, 255, 1, 0.5);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -38px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -38px;
}

.timeline-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.timeline-description {
  font-size: 16px;
  color: #dadada;
  line-height: 1.6;
}

/* CTA Section */
.about-cta-section {
  padding: 120px 0;
  background: #1a1c1e;
}

.about-cta-card {
  background: linear-gradient(135deg, #111113 0%, var(--bg-tertiary) 100%);
  border: 1px solid rgb(255, 255 ,255, .1);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(218, 255, 1, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-icon {
  color: #daff01;
  margin-bottom: 24px;
}

@media (max-width: 968px) {
  .about-hero-title {
    font-size: 36px;
  }

  .about-hero-subtitle {
    font-size: 16px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-content {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .journey-timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    padding-left: 60px;
  }

  .timeline-year {
    text-align: left;
    font-size: 32px;
  }

  .timeline-content {
    text-align: left;
  }

  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }

  .timeline-content::before {
    left: -38px !important;
  }

  .about-cta-card {
    padding: 60px 32px;
  }
}


/*........impact-sec..............*/

.impact-sec {
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden;
    position: relative;
}
.grid-pattern {
    opacity: 0.3;
    inset: 0px;
    position: absolute;
    background-image: linear-gradient(rgb(218, 255, 1, .09) 1px, #0000 0), linear-gradient(90deg, rgb(218, 255, 1, .09) 1px, #0000 0);
    background-size: 50px 50px;
}

.blur-sec {
    filter: blur(150px);
    background-color: rgb(218 255 1 / 0.05);
    border-radius: 9999px;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    position: absolute;
}

.impact-sec .mini-title {
    font-size: 0.875rem;
    line-height: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    color: #daff01;
    margin-bottom: 14px;
    display: block;
}
.impact-sec .hero-title-large {
font-size: 3rem;
line-height: 1;
color: #fff;
font-weight: 700;
margin-bottom: 1.5rem;
}
.impact-sec .hero-title-large span {
color: #daff01;
}

.impact-sec .mb-16 {
    margin-bottom: 4rem;
}

.number-grid {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    z-index: 10;
    position: relative;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    display: grid;

}

.number-grid .number-box {
text-align: center
}
.number-grid .number-box .label {
font-size: 3.75rem;
line-height: 1;
color: #daff01;
font-weight: 700;
margin-bottom: 0.5rem;
}
.number-grid .number-box p {
color: #9ca3af;
font-size: 1.125rem;
line-height: 1.75rem;
margin: 0;
}



.hero-content-left {
    margin: 0
}

.hero-title-large {
    font-size: 3rem;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #9ca3af;
    max-width: 48rem;
    margin-bottom: 2rem;
}

.hero-features-list {
    display: flex;
    flex-direction: column;
}

.hero-feature-item {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 16px;
    color: #9ca3af;
}

    .hero-feature-item:not(:last-child) {
        margin-bottom: 24px
    }

.svg-sec {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #daff01;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    display: flex;
}

.hero-feature-item .svg-sec svg {
    color: #000;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
}

.mini-title {
    font-size: 0.875rem;
    line-height: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    color: #daff01;
    margin-bottom: 14px;
    display: block;
}

.hero-feature-item h4 {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2rem;
    color: #fff;
    margin: 0;
}

.hero-feature-item p {
    font-size: 1rem;
    line-height: 1.75rem;
    color: #6b7280;
    margin-bottom: 0;
}

.hero-video-sec {
    width: 100%;
    height: 100%;
    border-width: 1px;
    border-color: rgb(26, 26, 26,.1);
    border-radius: 1rem;
    overflow: hidden;
    border-style: solid;
    background: #111111;
    background: linear-gradient(to bottom, #141414, #1f1f1f);
}

.video-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .video-content .video-icon {
        width: 5rem;
        height: 5rem;
        background-color: rgb(218, 255, 1, 0.1);
        border-radius: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 1rem auto;
    }

        .video-content .video-icon svg {
            width: 2.5rem;
            height: 2.5rem;
            color: #daff01;
        }

    .video-content p {
        font-size: 1rem;
        line-height: 1.25rem;
        color: #6b7280;
        margin-bottom: 0;
    }

        .video-content p span {
            font-size: .85rem;
            line-height: 1.25rem;
            color: #4b5563;
            margin-bottom: 0;
        }
 