/* ================= HERO SECTION ================= */

.fx-market-hero{
    position:relative;
  
    width:100%;
    overflow:hidden;
  
    padding:70px 5% 70px;
  
    background:
    linear-gradient(180deg,#f7fbff 0%, #eef5ff 100%);
  
    font-family:'Poppins',sans-serif;
  }
  
  /* CONTAINER */
  
  .fx-market-container{
    max-width:1320px;
    margin:auto;
  
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:40px;
  
    position:relative;
    z-index:2;
  }
  
  /* ================= LEFT ================= */
  
  .fx-market-left{
    width:100%;
  }
  
  /* BREADCRUMB */
  
  .fx-breadcrumb{
    display:flex;
    align-items:center;
    gap:6px;
    padding:8px 16px;
  
    margin-bottom:15px;
    
    color:#5f6470;
  
    font-size:15px;
    font-weight:600;
  }
  
  /* BADGE */
  
  .fx-market-badge{
    display:inline-flex;
    align-items:center;
  
    padding:8px 16px;
  
    border-radius:999px;
  
    background:rgba(10,122,255,0.08);
  
    color:#0a7aff;
  
    font-size:14px;
    font-weight:600;
  
    margin-bottom:20px;
  }
  
  /* TITLE */
  
  .fx-market-left h1{
    font-size:52px;
    line-height:1.05;
    font-weight:800;
  
    color:#071c3c;
  
    margin-bottom:18px;
  }
  
  /* SUBTITLE */
  
  .fx-market-left h3{
    font-size:24px;
    font-weight:700;
  
    color:#10284f;
  
    margin-bottom:14px;
  }
  
  /* PARAGRAPH */
  
  .fx-market-left p{
    max-width:540px;
  
    font-size:15px;
    line-height:1.8;
  
    color:#5f6470;
  
    margin-bottom:32px;
  }
  
  /* ================= BUTTONS ================= */
  
  .fx-market-buttons{
    display:flex;
    align-items:center;
    gap:14px;
  
    margin-bottom:34px;
  }
  
  /* PRIMARY */
  
  .fx-btn-primary{
    position:relative;
  
    height:52px;
  
    padding:0 26px;
  
    border-radius:14px;
  
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
  
    background:linear-gradient(
      135deg,
      #48b8e9,
      #3478ff
    );
  
    color:#fff;
    text-decoration:none;
  
    font-size:15px;
    font-weight:700;
  
    overflow:hidden;
  
    box-shadow:
    0 14px 34px rgba(72,184,233,0.20);
  
    transition:0.35s ease;
  }
  
  /* SHINE */
  
  .fx-btn-primary::before{
    content:"";
  
    position:absolute;
  
    top:0;
    left:-120px;
  
    width:80px;
    height:100%;
  
    background:rgba(255,255,255,0.25);
  
    transform:skewX(-22deg);
  
    transition:0.55s ease;
  }
  
  .fx-btn-primary:hover::before{
    left:130%;
  }
  
  .fx-btn-primary:hover{
    transform:translateY(-3px);
  
    box-shadow:
    0 18px 40px rgba(72,184,233,0.26);
  }
  
  .fx-btn-primary i{
    font-size:18px;
    transition:0.3s ease;
  }
  
  .fx-btn-primary:hover i{
    transform:translateX(4px);
  }
  
  /* SECONDARY */
  
  .fx-btn-secondary{
    height:52px;
  
    padding:0 24px;
  
    border-radius:14px;
  
    display:inline-flex;
    align-items:center;
    justify-content:center;
  
    background:rgba(255,255,255,0.7);
  
    border:1px solid rgba(72,184,233,0.14);
  
    backdrop-filter:blur(14px);
  
    color:#07152f;
    text-decoration:none;
  
    font-size:15px;
    font-weight:700;
  
    transition:0.35s ease;
  }
  
  .fx-btn-secondary:hover{
    background:#ffffff;
  
    transform:translateY(-3px);
  
    border-color:rgba(72,184,233,0.22);
  
    box-shadow:
    0 14px 32px rgba(0,0,0,0.05);
  }
  
  /* ================= STATS ================= */
  
  .fx-market-stats{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
  }
  
  /* CARD */
  
  .fx-stat-card{
    padding:16px 24px;
  
    border-radius:18px;
  
    background:rgba(255,255,255,0.75);
  
    border:1px solid rgba(255,255,255,0.9);
  
    backdrop-filter:blur(18px);
  
    box-shadow:
    0 10px 30px rgba(20,50,120,0.05);

    transition:0.35s ease;
  }

  .fx-stat-card:hover{
    transform:translateY(-4px);
  
    border-color:#0a84ff;
  
    box-shadow:
    0 14px 30px rgba(10,132,255,0.08);
  }
  
  .fx-stat-card h4{
    font-size:20px;
    font-weight:700;
  
    color:#071c3c;
  
    margin-bottom:5px;
  }
  
  .fx-stat-card span{
    font-size:12px;
  
    color:#5f6470;
  }
  
  /* ================= RIGHT ================= */
  
  .fx-market-right{
    position:relative;
  
    width:100%;
  
    display:flex;
    align-items:center;
    justify-content:center;
  }
  
  /* IMAGE */
  
  .fx-market-right img{
    width:100%;
    max-width:400px;
  
    position:relative;
    z-index:3;
  
    animation:floatY 5s ease-in-out infinite;
  }
  
  /* GLOW */
  
  .fx-image-glow{
    position:absolute;
  
    width:340px;
    height:340px;
  
    background:rgba(56,189,248,0.18);
  
    border-radius:50%;
  
    filter:blur(80px);
  
    z-index:1;
  }
  
  /* CIRCLE GRID */
  
  .fx-circle-grid{
    position:absolute;
  
    width:560px;
    height:560px;
  
    border-radius:50%;
  
    border:2px dashed rgba(56,189,248,0.10);
  
    z-index:0;
  }
  
  /* FLOATING CARD */
  
  .fx-floating-card{
    position:absolute;
  
    padding:13px 15px;
  
    border-radius:16px;
  
    background:rgba(255,255,255,0.82);
  
    backdrop-filter:blur(16px);
  
    box-shadow:
    0 10px 30px rgba(10,122,255,0.10);
  
    font-size:13px;
    font-weight:600;
  
    color:#071c3c;
  
    z-index:4;
  }
  
  .fx-floating-card span{
    display:block;
  
    margin-top:4px;
  
    color:#00b67a;
  
    font-size:12px;
  }
  
  /* POSITIONS */
  
  .fx-card-1{
    top:18%;
    left:2%;
  }
  
  .fx-card-2{
    bottom:12%;
    right:4%;
  }
  
  /* ================= BACKGROUND BLURS ================= */
  
  .fx-market-blur{
    position:absolute;
  
    border-radius:50%;
  
    filter:blur(100px);
  }
  
  .fx-blur-1{
    width:240px;
    height:240px;
  
    background:rgba(56,189,248,0.10);
  
    top:-80px;
    left:-80px;
  }
  
  .fx-blur-2{
    width:280px;
    height:280px;
  
    background:rgba(10,122,255,0.06);
  
    bottom:-120px;
    right:-100px;
  }
  
  /* ================= ANIMATION ================= */
  
  @keyframes floatY{
  
    0%{
      transform:translateY(0px);
    }
  
    50%{
      transform:translateY(-16px);
    }
  
    100%{
      transform:translateY(0px);
    }
  }
  
  /* ================= RESPONSIVE ================= */
  
  @media(max-width:1100px){
  
    .fx-market-container{
      grid-template-columns:1fr;
  
      text-align:center;
    }
  
    .fx-market-left p{
      margin-inline:auto;
    }
  
    .fx-market-buttons{
      justify-content:center;
    }
  
    .fx-market-stats{
      justify-content:center;
    }
  
    .fx-market-left h1{
      font-size:48px;
    }
  
    .fx-market-left h3{
      font-size:22px;
    }
  
    .fx-market-right{
      margin-top:30px;
    }
  
    .fx-card-1{
      left:10%;
    }
  
    .fx-card-2{
      right:10%;
    }
  }
  
  @media(max-width:768px){
  
    .fx-market-hero{
      padding:85px 5% 65px;
    }
  
    .fx-market-left h1{
      font-size:38px;
    }
  
    .fx-market-left h3{
      font-size:20px;
    }
  
    .fx-market-left p{
      font-size:14px;
    }
  
    .fx-market-buttons{
      flex-direction:column;
    }
  
    .fx-btn-primary,
    .fx-btn-secondary{
      width:100%;
    }
  
    .fx-market-right img{
      max-width:380px;
    }
  
    .fx-floating-card{
      transform:scale(0.9);
    }
  
    .fx-market-stats{
      gap:10px;
    }
  }
  
/* ================= MARKET HEADER ================= */

.mk-header{
    max-width:1100px;
  
    margin:50px auto 50px auto;
  
    text-align:center;
  
    padding:20px 16px;
  }
  
  /* BADGE */
  
  .mk-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1.6px;
    font-weight:700;
  
    color:#3478ff;
  
    padding:10px 18px;
  
    border-radius:999px;
  
    margin-bottom:18px;
  
    background:
    linear-gradient(
      135deg,
      rgba(72,184,233,0.12),
      rgba(52,120,255,0.10)
    );
  
    border:1px solid rgba(72,184,233,0.18);
  
    backdrop-filter:blur(10px);
  
    box-shadow:
    0 10px 25px rgba(72,184,233,0.10);
  }
  
  /* TITLE */
  
  .mk-title{
    font-size:40px;
    font-weight:700;
  
    line-height:1.2;
  
    margin:0;
  
    color:#071c3c;
  }
  
  /* ================= TRADINGVIEW CONTAINER ================= */
  
  .tv-container{
    max-width:1100px;
  
    margin:40px auto 0;
  
    display:flex;
    flex-direction:column;
    align-items:center;
  
    text-align:center;
  
    position:relative;
    z-index:2;
  
    overflow:hidden;
  
    border-radius:28px;
  
    padding:14px;
  
    background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.92),
      rgba(255,255,255,0.82)
    );
  
    border:1px solid rgba(72,184,233,0.18);
  
    backdrop-filter:blur(16px);
  
    box-shadow:
    0 20px 55px rgba(10,122,255,0.08);
  }
  
  /* TOP GLOW */
  
  .tv-container::before{
    content:"";
  
    position:absolute;
  
    top:-80px;
    right:-80px;
  
    width:180px;
    height:180px;
  
    border-radius:50%;
  
    background:rgba(72,184,233,0.14);
  
    filter:blur(70px);
  
    z-index:-1;
  }
  
  /* BOTTOM GLOW */
  
  .tv-container::after{
    content:"";
  
    position:absolute;
  
    bottom:-80px;
    left:-80px;
  
    width:180px;
    height:180px;
  
    border-radius:50%;
  
    background:rgba(52,120,255,0.10);
  
    filter:blur(70px);
  
    z-index:-1;
  }
  
  /* IFRAME */
  
  .tv-container iframe{
    width:100%;
  
    border:none;
  
    border-radius:18px;
  
    overflow:hidden;
  }
  
  /* ================= RESPONSIVE ================= */
  
  @media(max-width:768px){
  
    .mk-header{
      margin:80px auto 30px auto;
    }
  
    .mk-title{
      font-size:30px;
    }
  
    .mk-badge{
      font-size:11px;
  
      padding:9px 16px;
    }
  
    .tv-container{
      border-radius:22px;
  
      padding:10px;
    }
  
    .tv-container iframe{
      border-radius:14px;
    }
  }

/* ================= FEATURES SECTION ================= */

.fx-features-section{
    position:relative;
  
    width:100%;
  
    padding:85px 5%;
  
    overflow:hidden;
  
    background:
    linear-gradient(
      180deg,
      #eef6ff 0%,
      #f7fbff 100%
    );
  }
  
  /* ================= TOP ================= */
  
  .fx-features-top{
    max-width:680px;
  
    margin:0 auto 50px;
  
    text-align:center;
  }
  
  /* BADGE */
  
  .fx-features-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  
    padding:8px 16px;
  
    border-radius:999px;
  
    background:
    linear-gradient(
      135deg,
      rgba(72,184,233,0.12),
      rgba(52,120,255,0.10)
    );
  
    border:1px solid rgba(72,184,233,0.14);
  
    color:#3478ff;
  
    font-size:11px;
    font-weight:700;
  
    letter-spacing:1.3px;
    text-transform:uppercase;
  
    margin-bottom:18px;
  }
  
  /* TITLE */
  
  .fx-features-title{
    font-size:38px;
    line-height:1.15;
    font-weight:800;
  
    color:#071c3c;
  
    margin-bottom:16px;
  }
  
  /* DESCRIPTION */
  
  .fx-features-description{
    font-size:14px;
    line-height:1.8;
  
    color:#5f6470;
  }
  
  /* ================= GRID ================= */
  
  .fx-features-grid{
    max-width:1180px;
  
    margin:auto;
  
    display:grid;
    grid-template-columns:repeat(3,1fr);
  
    gap:20px;
  }
  
  /* ================= CARD ================= */
  
  .fx-feature-card{
    position:relative;
  
    padding:28px 24px;
  
    border-radius:22px;
  
    background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.95),
      rgba(255,255,255,0.84)
    );
  
    border:1px solid rgba(72,184,233,0.12);
  
    backdrop-filter:blur(12px);
  
    overflow:hidden;
  
    transition:0.35s ease;
  
    box-shadow:
    0 14px 35px rgba(15,40,90,0.04);
  }
  
  /* HOVER */
  
  .fx-feature-card:hover{
    transform:translateY(-6px);
  
    border-color:rgba(72,184,233,0.22);
  
    box-shadow:
    0 22px 50px rgba(52,120,255,0.08);
  }
  
  /* GLOW */
  
  .fx-feature-card::before{
    content:"";
  
    position:absolute;
  
    top:-70px;
    right:-70px;
  
    width:140px;
    height:140px;
  
    border-radius:50%;
  
    background:rgba(72,184,233,0.08);
  
    filter:blur(60px);
  }
  
  /* ================= ICON ================= */
  
  .fx-feature-icon{
    width:58px;
    height:58px;
  
    border-radius:18px;
  
    display:flex;
    align-items:center;
    justify-content:center;
  
    margin-bottom:20px;
  
    background:
    linear-gradient(
      135deg,
      #48b8e9,
      #3478ff
    );
  
    color:#fff;
  
    font-size:24px;
  
    box-shadow:
    0 14px 28px rgba(72,184,233,0.18);
  }
  
  /* ================= TITLE ================= */
  
  .fx-feature-card h3{
    font-size:20px;
    font-weight:700;
  
    color:#071c3c;
  
    margin-bottom:10px;
  }
  
  /* ================= TEXT ================= */
  
  .fx-feature-card p{
    font-size:14px;
    line-height:1.8;
  
    color:#5f6470;
  }
  
  /* ================= RESPONSIVE ================= */
  
  @media(max-width:1100px){
  
    .fx-features-grid{
      grid-template-columns:repeat(2,1fr);
    }
  
    .fx-features-title{
      font-size:32px;
    }
  }
  
  @media(max-width:768px){
  
    .fx-features-section{
      padding:70px 5%;
    }
  
    .fx-features-top{
      margin-bottom:40px;
    }
  
    .fx-features-grid{
      grid-template-columns:1fr;
  
      gap:18px;
    }
  
    .fx-features-title{
      font-size:28px;
    }
  
    .fx-features-description{
      font-size:13px;
    }
  
    .fx-feature-card{
      padding:24px 20px;
    }
  
    .fx-feature-card h3{
      font-size:18px;
    }
  
    .fx-feature-card p{
      font-size:13px;
    }
  }