
       @font-face {
            font-family: "Eras Light ITC";
            src: url("../fonts/ErasITC-Light.woff2") format("woff2"),
                url("../fonts/ErasITC-Light.woff") format("woff");
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: "Eras Medium ITC";
            src: url("../fonts/ErasITC-Medium.woff2") format("woff2"),
                url("../fonts/ErasITC-Medium.woff") format("woff");
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }


        @font-face {
            font-family: "ErasITC-Medium";
            src: url("../fonts/ErasITC-Medium.woff");
        }


        @font-face {
            font-family: "Inter_18pt-Regular";
            src: url(../fonts/Inter/static/Inter_18pt-Regular.ttf);
        }

        @font-face {
            font-family: "PublicSans-Regular";
            src: url(../fonts/Public_Sans/static/PublicSans-Regular.ttf);
        }

        @font-face {
            font-family: "PublicSans-Bold";
            src: url(../fonts/Public_Sans/static/PublicSans-Bold.ttf);
        }


        @font-face {
            font-family: "ErasDemiITC";
            src: url(../fonts/ErasDemiITC.ttf);
        }




        H2 span {
            font-size: 2.5rem;
            color: #0047bb;
            font-weight: bold;
            /* font-family: "Raleway-Medium"; *  /* font-family: "Montserrat-Regular"; */
            /* font-family: "PublicSans-Bold", sans-serif; */
            font-family: "ErasDemiITC";
        }

        h2 {
            /* text-align: center; */
            font-size: 2.5rem;
            line-height: 1.4em;
            color: #021440;
            /* font-family: "Raleway-Medium"; */
            /* font-family: "Montserrat-Regular"; */
            font-family: "PublicSans-Bold", sans-serif;
            /* margin-bottom: 90px; */
        }

        h3 {
            text-align: left;
            font-size: 17px;
            line-height: 25px;
             color: #021440;
            font-family: "PublicSans-Bold", sans-serif;
        }

        p {
            font-size: 17px;
            line-height: 25px;
            color: #434e5c;
            /* letter-spacing: 1.5px; */
            /* text-align: center; */
            /* font-family: "Poppins-Regular"; */
            font-family: "Inter_18pt-Regular";
        }


        .bttn {
            margin: 0 auto;
            box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
            text-decoration: none;
            font-size: 1.1rem;
            line-height: 1.5;
            width: fit-content;
            transition: 0.5s ease;
            text-align: left;
            /* margin: 0 auto; */
            border-radius: 3px;
            background: #f2b500;
            color: #0e0d0d;
            display: flex;
            align-items: center;
            padding: 0.575rem 1.9rem;
        }




         :root{
    --wbp-max: 1170px;
    --wbp-accent: #0065f2;
    --wbp-muted: #56606b;
    --wbp-bg: #ffffff;
    --wbp-card: #fbfdff;
    --wbp-radius: 12px;
  }

  /* Section base */
  .wbp-traders-section{
    background: var(--wbp-bg);
    padding: 64px 20px;

  }

  /* .wbp-container{
    max-width: var(--wbp-max);
    margin: 0 auto;
  } */

  .wbp-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
  }

  /* Left column */
  .wbp-left .wbp-title{
    /* font-size: 32px; */
    margin: 0 0 15px;
    font-weight: 700;
    line-height: 1.08;
  }

  .wbp-lead{
    margin: 0 0 14px;
  }

  .wbp-desc{
    color: #394b59;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .wbp-ctas{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
  }

  .wbp-btn{
    display:inline-block;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
  }

  .wbp-btn.primary{
    background: linear-gradient(90deg,var(--wbp-accent),#2b7bff);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37,99,235,0.12);
  }

  .wbp-btn.ghost{
    background: transparent;
    color: var(--wbp-accent);
    border: 1px solid rgba(6, 72, 180, 0.06);
  }

  /* Right column - features */
  .wbp-features{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:14px;
    padding: 30px;
    background: linear-gradient(180deg, #f9fbff, #f4f8ff);
    border: 1px solid #e1e9f8;
  }

  .feat{
    display:flex;
    gap:14px;
    align-items:flex-start;
    padding:14px;
    background:linear-gradient(135deg, #e4eeff9e 50%, #cedfffa8 100%);
    border: 2px solid #ffffff;
    box-shadow: 0 8px 20px rgba(11,33,71,0.03);
    transform: translateY(18px);
    opacity: 0;
    transition: transform .6s cubic-bezier(.2,.9,.3,1), opacity .6s ease;
  }

  .feat .icon{
    width:48px;
    height:48px;
    min-width:48px;
    display:grid;
    place-items:center;
    font-size:20px;
    border-radius:10px;
    background: #fff;
    color: var(--wbp-accent);
  }

  .feat h4{
    margin:0 0 6px;
    font-size:16px;
    font-weight:700;
    color: #021440;
  }

  .feat p{
    margin:0;
    font-size:14px;
    color: #021440;
    line-height:1.5;
  }

  /* Reveal state added by JS */
  .feat.revealed{
    transform: translateY(0);
    opacity: 1;
  }

  /* Responsive */
  @media (max-width: 980px){
    .wbp-grid{
      grid-template-columns: 1fr;
    }
    .wbp-right{
      order: 2;
    }
    .wbp-left{
      order: 1;
      margin-bottom: 18px;
    }
    .wbp-features{
      gap:12px;
    }
  }

  




.trader-section {
    background: #002d77;
    /* background: url("https://png.pngtree.com/background/20210710/original/pngtree-blue-technology-background-banner-picture-image_1034452.jpg"); */
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 10px;
    max-width: 1170px;
    margin: 50px auto;
  }

  .trader-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    text-align: center;
  }

  .trader-header p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
  }

  .trader-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
  }

  .feature-card {
    background: #fff;
    color: #111827;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .feature-card .icon {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .feature-card .icon img{
    width: 48px;
    height: 48px;
  }


  .feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
  }

      .bbp-btn {
            /* margin-top: 20px; */
            text-align: center;
            /* margin-bottom: 40px; */
    }
        .bbp-btn a {
            display: inline-block;
            padding: 15px 44px;
            background: #f2b500;
            color: #000000;
            font-size: 1.3rem;
            border-radius: 5px;
            text-decoration: none;
            box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
            transition: background 0.3s ease;
        }

        .bbp-btn a:hover{
            box-shadow: none;
        }

  @media (max-width: 768px) {
    .trader-header h2 {
      font-size: 22px;
    }
    .trader-header p {
      font-size: 14px;
    }
  }





.software-showcase {
  background:radial-gradient(ellipse at top, #f0f8ff 0%, #ffffff 70%);
  padding: 90px 0;
}

.showcase-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.showcase-content {
  flex: 1 1 45%;
  text-align: center;
}

.showcase-content h2 {
  /* font-size: 32px; */
  font-weight: 700;
  /* color: #102a43; */
  margin-bottom: 20px;
  letter-spacing: -0.038rem;
  text-align: center;
}

.showcase-content p {
  font-size: 17px;
  /* color: #4a5568; */
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;

}

.showcase-cta-btn {
  display: inline-block;
  /* background: #005aeb; */
  color: #fff;
  /* padding: 12px 28px; */
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  font-size: 16px;
  color: #0047bb;
  text-decoration: underline;
}

.showcase-cta-btn:hover {
  /* background: #0043b3; */
}

.showcase-image {
  flex: 1 1 50%;
  text-align: right;
  box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
}

.showcase-image img {
  max-width: 100%;
  border-radius: 12px;
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); */
}







/* addinaftional features */

.benefits-section{
    /* padding-top: 70px; */
    background:#ffffff;
    /* border-radius:16px; */
    position:relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -70%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.05));
    border-radius: 50%;
    z-index: 0;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(59, 130, 246, 0.03));
    border-radius: 50%;
    z-index: 0;
}
.benefits-section h2{
    /* font-size:3rem; */
    text-align:left;
    /* margin-bottom:40px; */
    /* color:#1d1f30; */
    font-weight:600;
    line-height: 1.2;
}

.benefits-section span{
    font-family:"ErasDemiITC";
}

.benefits-container{
    display:flex;
    gap:40px;
    align-items:center;
    justify-content:space-between;
   
}


.timeline{
    flex: 1;
    border-left:3px solid #1e21e9;
    padding-left:30px;
    display:flex;
    flex-direction:column;
    gap:35px;
}

.line-item h4{
    margin:0;
    font-size:20px;
}

.line-item p{
    margin:6px 0 0;
    font-size:17px;
    line-height:1.45;
    /* color:#3f4259; */
}

.benefits-rgt{
    flex: 1;
   background: url("../images/inner-pages/traders-business.webp")no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 540px;
    width: 100%;
}

  
       

        @media (max-width: 960px) {
            .benefits-container{
                flex-direction: column;
            }
            .benefits-rgt{
                min-height: 300px;
            }

            .timeline{
              margin-top: 20px
            };
          .trader-section{
            border-radius: none;
          }
        }

        @media(max-width:768px){
          h2{
            font-size: 2.3rem;
          }

            H2 span {
            font-size: 2.3rem;
       
        }
        .showcase-content h2{
          font-size: 2.3rem;
        }

        .trader-section{
          border-radius: 0;
        }
      }

      @media(max-width:480px){
          h2{
            font-size: 2rem;
          }

          H2 span {
            font-size: 2rem;
       
        }
       
        .showcase-content h2{
          font-size: 2rem;
        }

        .line-item h4{
            font-size: 16px;
          }
          .feature-card p{
            font-size: 1rem;
          }
          .showcase-content p{
            font-size: 15px;
          }
      }