/* Hero Section with TradingView Candlestick Preview */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1b263b, #0d1b2a);
    color: white;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-in-out;
  }

  .hero canvas {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 120px;
    opacity: 0.5;
  }

  .btn-cta {
    background-color: #14b8a6;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
  }

  .btn-cta:hover {
    background-color: #0f766e;
    transform: scale(1.05);
  }

  /* Workflow Section */
  .workflow {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
  }

  .workflow .card {
    padding: 20px;
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(40px);
  }

  .workflow .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
  }

  .workflow .arrow {
    font-size: 2rem;
    color: #14b8a6;
    margin: 20px;
  }

  @keyframes pulseGlow {
    0% {
      box-shadow: 0px 0px 10px rgba(20, 184, 166, 0.4);
    }

    50% {
      box-shadow: 0px 0px 20px rgba(20, 184, 166, 0.8);
    }

    100% {
      box-shadow: 0px 0px 10px rgba(20, 184, 166, 0.4);
    }
  }

  .glow {
    animation: pulseGlow 2s infinite alternate ease-in-out;
  }

  /* Features Section */
  .features {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
  }

  .feature-box {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  }

  .feature-icon {
    font-size: 3rem;
    color: #14b8a6;
    margin-bottom: 15px;
    transition: transform 0.3s;
  }

  .feature-box:hover .feature-icon {
    transform: scale(1.1);
  }

  /* Supported Brokers */
  .brokers {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
  }

  .brokers img {
    max-height: 50px;
    margin: 10px 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
  }

  .brokers img:hover {
    filter: grayscale(0%);
  }

  /* Call-To-Action */
  .cta-section {
    background: #14b8a6;
    color: white;
    padding: 60px 0;
    text-align: center;
  }

  /* Footer */
  footer {
    background: #0d1b2a;
    color: white;
    padding: 20px 0;
    text-align: center;
  }

  /* Scroll Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }