     * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: Arial, sans-serif;
      background-color: #0f172a;
      color: #fff;
      line-height: 1.6;
    }

     /* Fixed Top Navbar */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #1e293b;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      z-index: 1000;
      border-bottom: 1px solid #334155;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo img {
      height: 40px;
    }

    .logo span {
      font-size: 1.4em;
      color: #38bdf8;
      font-weight: bold;
    }

    .nav-links a {
      color: #cbd5e1;
      margin-left: 20px;
      text-decoration: none;
      font-weight: 500;
    }

    .nav-links a:hover {
      color: #38bdf8;
    }

    .spacer {
      height: 70px; /* Offset for fixed navbar */
    }

    /* Hero Section with Video */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .hero .content {
      position: relative;
      z-index: 1;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      padding: 20px;
    }

    .hero h1 {
      font-size: 3em;
      color: #38bdf8;
    }

    .hero p {
      font-size: 1.2em;
      margin-top: 15px;
      max-width: 700px;
    }

    section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    h2 {
      color: #38bdf8;
      text-align: center;
      margin-bottom: 30px;
    }

    /* About Section with Background */
    .about {
      background: url('images/2bull.jpg') no-repeat center center/cover;
      padding: 80px 20px;
      color: #fff;
      text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    }

    .about p {
      background-color: rgba(15, 23, 42, 0.8);
      padding: 20px;
      border-radius: 10px;
      max-width: 800px;
      margin: auto;
    }



    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
    }

    .feature {
      width: 250px;
      background-color: #1e293b;
      padding: 20px;
      border-radius: 10px;
      margin: 10px;
      text-align: center;
    }

    .feature i {
      font-size: 2em;
      color: #38bdf8;
      margin-bottom: 10px;
    }

    .testimonials .cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    .testimonial {
      width: 300px;
      background-color: #1e293b;
      border-radius: 10px;
      padding: 20px;
      margin: 15px;
      text-align: center;
    }

    .testimonial img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 10px;
    }

    .gallery .images {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }

    .gallery img {
      width: 100%;
      border-radius: 8px;
    }

    .contact {
      text-align: center;
    }

    .contact a {
      display: inline-block;
      background: #38bdf8;
      color: #0f172a;
      padding: 15px 30px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }

     .faq {
  padding: 60px 20px;
  background-color: #1e293b;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  background-color: #0f172a;
  overflow: hidden;
  border: 1px solid #334155;
}

.faq-question {
  width: 100%;
  text-align: left;
  background-color: #1e293b;
  border: none;
  color: #38bdf8;
  font-size: 1.1em;
  font-weight: 600;
  padding: 15px 20px;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background-color: #1e293b;
  color: #cbd5e1;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-question::after {
  content: '+';
  float: right;
}

.faq-item.active .faq-question::after {
  content: '-';
}
.trading-team {
  padding: 60px 20px;
  background-color: #0f172a;
  text-align: center;
}

.trading-team h2 {
  color: #38bdf8;
  margin-bottom: 20px;
}

.team-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
  transition: transform 0.3s ease;
}

.team-image img:hover {
  transform: scale(1.02);
}

    footer {
      text-align: center;
      padding: 20px;
      background-color: #1e293b;
      color: #94a3b8;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2em;
      }

      .feature, .testimonial {
        width: 100%;
      }

      .nav-links {
        display: none;
      }
    }

    /* register page */
        .container {
      max-width: 400px;
      margin: 60px auto;
      background-color: #1e293b;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
    }
    h2 {
      text-align: center;
      color: #38bdf8;
      margin-bottom: 20px;
    }
    label {
      display: block;
      margin: 15px 0 5px;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"] {
      width: 100%;
      padding: 10px;
      border: none;
      border-radius: 6px;
      background-color: #334155;
      color: #fff;
    }
    .password-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .password-toggle input {
      width: 88%;
    }
    .password-toggle button {
      background: none;
      border: none;
      color: #38bdf8;
      cursor: pointer;
    }
    .checkbox-group {
      margin-top: 15px;
    }
    .checkbox-group input {
      margin-right: 10px;
    }
    .btn {
      width: 100%;
      padding: 12px;
      margin-top: 20px;
      background-color: #38bdf8;
      color: #0f172a;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
    }
    .login-link {
      text-align: center;
      margin-top: 15px;
    }
    .login-link a {
      color: #38bdf8;
      text-decoration: none;
    } 


    /* Login page */
   
    input[type="email"],
    input[type="password"] {
      width: 100%;
      padding: 10px;
      border: none;
      border-radius: 6px;
      background-color: #334155;
      color: #fff;
    }
    .password-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .password-toggle input {
      width: 88%;
    }
    .password-toggle button {
      background: none;
      border: none;
      color: #38bdf8;
      cursor: pointer;
    }
    .checkbox-group {
      margin-top: 15px;
    }
    .checkbox-group input {
      margin-right: 10px;
    }
    .btn {
      width: 100%;
      padding: 12px;
      margin-top: 20px;
      background-color: #38bdf8;
      color: #0f172a;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
    }
    .register-link {
      text-align: center;
      margin-top: 15px;
    }
    .register-link a {
      color: #38bdf8;
      text-decoration: none;
    }
  

  /* forget password */
  
      .container {
      max-width: 400px;
      margin: 80px auto;
      background-color: #1e293b;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
    }
    h2 {
      text-align: center;
      color: #38bdf8;
      margin-bottom: 20px;
    }
    p {
      text-align: center;
      color: #cbd5e1;
      font-size: 0.95em;
    }
    label {
      display: block;
      margin: 20px 0 5px;
    }
    input[type="email"] {
      width: 100%;
      padding: 10px;
      border: none;
      border-radius: 6px;
      background-color: #334155;
      color: #fff;
    }
    .btn {
      width: 100%;
      padding: 12px;
      margin-top: 20px;
      background-color: #38bdf8;
      color: #0f172a;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
    }
    .login-link {
      text-align: center;
      margin-top: 15px;
    }
    .login-link a {
      color: #38bdf8;
      text-decoration: none;
    }
  
