*

section {
    min-height: 100vh;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
}

.hero:before {
    content: '';
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(90deg, rgba(0,255,0,0), #362d83, rgba(0,255,0,0));
    filter: blur(20px);
    z-index: 0;
    opacity: 0.5;
}

.big-number {
    font-size: 8rem;
    font-weight: bold;
    color: #ccc;
    text-shadow: 0 0 15px rgba(93, 149, 253, 0.7);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.intro-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #ddd;
    position: relative;
    z-index: 1;
}

/* Timeline Section */
.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.year {
    background-color: #222;
    color: #00ff00;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    min-width: 80px;
    text-align: center;
    margin-right: 1rem;
}

.stat-box {
    margin: 2rem 0;
    text-align: center;
}

.big-stat {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.button {
    background-color: #1e90ff;
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
    text-decoration: none;
}

/* Video Section */
.video-section {
    text-align: center;
    background-image: url('https://via.placeholder.com/500x300/333/333');
    background-size: cover;
    background-position: center;
    padding: 4rem 1rem;
    position: relative;
}

.desktop-mockup {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.play-button {
    background-color: rgba(0,0,0,0.6);
    color: #00ff00;
    border: 2px solid #151157;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 2rem;
    display: inline-block;
}

/* Mission Section */
.mission {
    text-align: left;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mission h2 {
    color: #00ff00;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mission p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Stats Section */
.stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background-color: #222;
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
}

.stat-card:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #1e90ff;
    border-radius: 10px 0 0 10px;
}

.stat-value {
    color: #00ff00;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-size: 1rem;
}

/* Footer Navigation */
.footer-nav {
    text-align: center;
    padding: 2rem 0;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #444;
}

.dot.active {
    background-color: #00ff00;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .big-number {
        font-size: 6rem;
    }

    .big-stat {
        font-size: 2rem;
    }
}


        section {
            padding: 2rem 1.5rem;
            display: flex;
            flex-direction: column;
        }

        /* Testimony Section */
        .testimony-section {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .quote {
            padding: 1rem 0;
        }

        .quote-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 1rem;
            color: #ccc;
        }

        .quote-author {
            color: #999;
            font-size: 0.9rem;
        }

        /* Feature Cards */
        .feature-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 1rem;
        }

        .feature-card {
            background-color: #222;
            border-radius: 8px;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .feature-icon {
            width: 32px;
            height: 32px;
            background-color: #00ff00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
        }

        .feature-title {
            font-size: 0.9rem;
            font-weight: bold;
        }

        .feature-desc {
            font-size: 0.8rem;
            color: #999;
        }

        .show-more {
            display: inline-block;
            margin-top: 1rem;
            color: #1e90ff;
            text-decoration: none;
            align-self: center;
            font-size: 0.9rem;
        }

        /* Trader Profile Section */
        .trader-profile {
            position: relative;
            margin: 2rem 0;
        }

        .trader-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }

        .trader-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            border-radius: 0 0 10px 10px;
        }

        .trader-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .search-box {
            display: flex;
            margin-top: 1rem;
        }

        .search-input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 25px 0 0 25px;
            background-color: #222;
            color: #fff;
        }

        .search-button {
            background: linear-gradient(to right, #00ff00, #00aa00);
            color: #000;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 25px 25px 0;
            font-weight: bold;
            cursor: pointer;
        }

        /* License Section */
        .license-section {
            text-align: center;
            padding: 3rem 1rem;
        }

        .license-text {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .social-icon {
            width: 30px;
            height: 30px;
            background-color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-3d {
            width: 150px;
            height: 150px;
            margin: 0 auto;
            position: relative;
        }

        .logo-3d img {
            width: 100%;
            height: auto;
        }


        /* Timeline Section */
        .timeline {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 50px 0;
        }

        .timeline-container {
            display: flex;
            max-width: 1200px;
            width: 90%;
        }

        /* Left Side - Years and Milestones */
        .timeline-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .timeline-item {
            display: flex;
            align-items: center;
            gap: 20px;
            opacity: 0.4;
            transition: opacity 0.3s;
        }

        .timeline-item.active {
            opacity: 1;
        }

        .year {
            background: #555;
            color: #000;
            font-weight: bold;
            font-size: 24px;
            padding: 15px 30px;
            border-radius: 40px;
        }

        .timeline-item.active .year {
            background: #fff;
        }

        /* Right Side - Stats Box */
        .timeline-right {
            display: flex;
            justify-content: center;
            align-items: center;
            flex: 1;
        }

        .stat-box {
            text-align: center;
            background: rgba(0, 0, 0, 0.8);
            padding: 20px;
            border-radius: 10px;
        }

        .big-stat {
            font-size: 64px;
            font-weight: bold;
        }

        .subtext {
            font-size: 16px;
            margin: 10px 0;
        }

        /* Join Button */
        .button {
            display: inline-block;
            margin-top: 20px;
            padding: 15px 40px;
            background: #1e90ff;
            color: #000;
            font-weight: bold;
            font-size: 18px;
            text-decoration: none;
            border-radius: 50px;
            transition: background 0.2s;
        }

        .button:hover {
            background: #1e90ff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .timeline-container {
                flex-direction: column;
                align-items: center;
            }

            .timeline-item {
                text-align: center;
                flex-direction: column;
            }

            .year {
                margin-bottom: 10px;
            }
        }

            /* Right Side - Stats Box */
        .timeline-right {
            display: flex;
            justify-content: center;
            align-items: center;
            flex: 1;
        }

        .stat-box {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
        }

        /* Background Image */
        .stat-box img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Overlay Text */
        .stat-box .big-stat,
        .stat-box .subtext,
        .stat-box .button {
            position: absolute;
            color: #fff;
            z-index: 2;
        }

        /* Big Stat */
        .big-stat {
            font-size: 64px;
            font-weight: bold;
            top: 35%;
        }

        /* Subtext */
        .subtext {
            font-size: 16px;
            top: 50%;
        }

        /* Join Button */
        .button {
            display: inline-block;
            margin-top: 10px;
            padding: 15px 40px;
            background: #1e90ff;
            color: #000;
            font-weight: bold;
            font-size: 18px;
            text-decoration: none;
            border-radius: 50px;
            top: 65%;
            transition: background 0.2s;
        }

        .button:hover {
            background: #00cc66;
        }

        .desktop-mockup img{
          width: 100%;
        }


/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 100px;
}

/* Stat Card */
.stat-card {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  text-align: left;
}

/* Large Card */
.large {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px;
}

/* Headings */
h2 {
  font-size: 32px;
  margin: 0;
  color: #fff;
  font-weight: 700;
}

h2 span {
  color: #888;
  font-weight: 700;
  font-size: 32px;

}

/* Paragraph */
p {
  font-size: 14px;
  color: #ccc;
  font-weight: 700;

}

/* Button */
.cta-button {
  display: inline-block;
  background: #1e90ff;
  color: #000;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Social Icons */
.social-icons i {
  color: #fff;
  margin-right: 10px;
  font-size: 20px;
  margin-top: 100px;
}

/* Service Info */
.service-info {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  margin-top: 100px;
}

.service-info span {
  background: #333;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  color: #ccc;
}

/* Grid Layout */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
}


/* Section Container */
.play-section {
  /* max-width: 350px; */
  margin: 20px auto;
  text-align: center;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 150px;
}

/* Video Container */
.video-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

/* Image */
.video-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Play Button */
.play-button {
  position: absolute;
  /* top: 50%; */
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1e90ff;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.play-button:hover {
  background: rgb(119, 168, 209);
}

/* Mission Text */
.mission-text {
  background: #000;
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
}

/* Highlighted Text */
.mission-text span {
  color: #888;
  font-weight: 500;
}

/* Empower Section */
.empower-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 100px;
}

/* Text Section */
.empower-text {
  max-width: 40%;
}

.empower-text h2 {
  font-size: 28px;
  margin: 0;
  line-height: 1.4;
}

.empower-text h2 strong {
  color: #fff;
}

.empower-text p {
  color: #ccc;
  margin-top: 10px;
  font-size: 16px;
}

/* Cards Section */
.empower-cards {
  max-width: 60%;
}

/* Featured Card */
.empower-featured {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.empower-featured img {
  width: 100%;
  display: block;
}

.featured-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
}

/* Grid Cards */
.empower-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* Single Card */
.empower-card {
  background: #111;
  padding: 15px;
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Tags */
.tag {
  background: #333;
  color: #fff;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 12px;
  display: inline-block;
}

/* View All Button */
.view-all {
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 15px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .empower-section {
    flex-direction: column;
    align-items: center;
  }

  .empower-text,
  .empower-cards {
    max-width: 100%;
  }

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


/* Support Section */
.support-section {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  padding: 50px;
}

.support-card {
  position: relative;
  width: 100%;
  /* max-width: 600px; */
  border-radius: 15px;
  overflow: hidden;
}

.support-card img {
  width: 100%;
  display: block;
}

.support-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.support-text h3 {
  margin: 0;
  font-size: 20px;
  max-width: 300px;
}

/* Support Button */
.support-btn {
  margin-top: 10px;
  background: #1e90ff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

/* Broker Section */
.broker-section {
  text-align: center;
  margin-top: 50px;
}

/* Icons */
.icons {
  margin: 20px 0;
}

.icons img {
  width: 30px;
  margin: 0 5px;
}

/* Learn More Button */
.learn-more {
  background: none;
  border: none;
  color: #1e90ff;
  font-size: 14px;
  cursor: pointer;
  margin: 20px 0;
}

/* Broker Logo */
.broker-logo {
  margin-top: 20px;
}

.broker-logo img {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .support-card {
    max-width: 100%;
  }

  .support-text h3 {
    font-size: 16px;
  }

  .support-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}


