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

.account-hero-section{
    position:relative;
  
    width:100%;
    overflow:hidden;
  
    padding:70px 5% 70px;
  
    background:#ffffff;
  }
  
  /* GRID EFFECT */
  
  .account-hero-section::before{
    content:"";
  
    position:absolute;
    inset:0;
  
    background-image:
    linear-gradient(rgba(72,184,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72,184,233,0.04) 1px, transparent 1px);
  
    background-size:70px 70px;
  
    opacity:0.45;
  }
  
  /* BLUR EFFECTS */
  
  .account-hero-blur{
    position:absolute;
  
    border-radius:50%;
  
    filter:blur(90px);
  
    z-index:1;
  }
  
  /* ================= CONTAINER ================= */
  
  .account-hero-container{
    position:relative;
    z-index:5;
  
    max-width:1250px;
    margin:auto;
  
    display:grid;
    grid-template-columns:1fr 1fr;
  
    align-items:center;
  
    gap:55px;
  }
  
  /* ================= CONTENT ================= */
  
  .account-hero-content h1{
    font-size:52px;
    line-height:1.08;
    font-weight:800;
  
    color:#07152f;
  
    margin-bottom:18px;
  
    letter-spacing:-1.5px;
  }

  .ac-breadcrumb{
    display:flex;
    align-items:center;
    gap:6px;
    padding:8px 16px;
  
    margin-bottom:15px;
  
    color:#5f6470;
  
    font-size:15px;
    font-weight:600;
  }
  
  .account-hero-content h1 span{
    color:#0a84ff;
  }
  
  .account-hero-content p{
    max-width:540px;
  
    font-size:14px;
    line-height:1.8;
  
    color:#617089;
  
    margin-bottom:30px;
  }
  
  /* ================= BADGE ================= */
  
  .account-hero-badge{
    display:inline-flex;
    align-items:center;
    gap:7px;
  
    padding:8px 16px;
  
    border-radius:100px;
  
    background:#edf8ff;
  
    border:1px solid #cfeeff;
  
    color:#0a84ff;
  
    font-size:11px;
    font-weight:700;
    letter-spacing:1.1px;
  
    margin-bottom:22px;
  }
  
  .account-hero-badge i{
    font-size:14px;
  }
  
  /* ================= BUTTONS ================= */
  
  .account-hero-buttons{
    display:flex;
    align-items:center;
    gap:14px;
  
    margin-bottom:34px;
  }
  
  /* PRIMARY BUTTON */
  
  .account-primary-btn{
    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:14px;
    font-weight:700;
  
    overflow:hidden;
  
    box-shadow:
    0 14px 34px rgba(72,184,233,0.20);
  
    transition:0.35s ease;
  }
  
  /* SHINE EFFECT */
  
  .account-primary-btn::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;
  }
  
  .account-primary-btn:hover::before{
    left:130%;
  }
  
  .account-primary-btn:hover{
    transform:translateY(-3px);
  
    box-shadow:
    0 18px 40px rgba(72,184,233,0.26);
  }
  
  .account-primary-btn i{
    font-size:18px;
  
    transition:0.3s ease;
  }
  
  .account-primary-btn:hover i{
    transform:translateX(4px);
  }
  
  /* SECONDARY BUTTON */
  
  .account-secondary-btn{
    height:52px;
  
    padding:0 24px;
  
    border-radius:14px;
  
    display:inline-flex;
    align-items:center;
    justify-content:center;
  
    background:#edf8ff;
  
    border:1px solid #cfeeff;
  
    color:#07152f;
    text-decoration:none;
  
    font-size:14px;
    font-weight:700;
  
    transition:0.35s ease;
  }
  
  .account-secondary-btn:hover{
    background:#ffffff;
  
    transform:translateY(-3px);
  
    border-color:#8fd8ff;
  
    box-shadow:
    0 14px 32px rgba(72,184,233,0.10);
  }
  
  /* ================= STATS ================= */
  
  .account-hero-stats{
    display:flex;
    gap:14px;
  
    flex-wrap:wrap;
  }
  
  .account-stat-box{
    min-width:125px;
  
    padding:16px 18px;
  
    border-radius:18px;
  
    background:#edf8ff;
  
    border:1px solid #cfeeff;
  
    transition:0.35s ease;
  
    box-shadow:
    0 8px 20px rgba(72,184,233,0.08);
  }
  
  .account-stat-box:hover{
    transform:translateY(-4px);
  
    background:#ffffff;
  
    border-color:#8fd8ff;
  
    box-shadow:
    0 14px 30px rgba(72,184,233,0.14);
  }
  
  .account-stat-box h4{
    font-size:20px;
    font-weight:700;
  
    color:#07152f;
  
    margin-bottom:6px;
  }
  
  .account-stat-box span{
    font-size:12px;
    color:#617089;
  }
  
  /* ================= IMAGE ================= */
  
  .account-hero-image{
    position:relative;
  
    display:flex;
    align-items:center;
    justify-content:center;
  }
  
  .account-hero-image img{
    width:100%;
    max-width:450px;
  
    position:relative;
    z-index:3;
  }
  
  /* ================= FLOATING CARDS ================= */
  
  .account-floating-card{
    position:absolute;
  
    padding:12px 15px;
  
    border-radius:14px;
  
    background:#edf8ff;
  
    border:1px solid #cfeeff;
  
    display:flex;
    align-items:center;
    gap:8px;
  
    font-size:12px;
    font-weight:700;
  
    color:#07152f;
  
    z-index:5;
  
    box-shadow:
    0 10px 28px rgba(72,184,233,0.10);
  
    animation:floatCard 4s ease-in-out infinite;
  
    transition:0.35s ease;
  }
  
  .account-floating-card:hover{
    background:#ffffff;
  
    transform:translateY(-4px);
  
    border-color:#8fd8ff;
  }
  
  .account-floating-card i{
    color:#0a84ff;
  
    font-size:16px;
  }
  
  .card-1{
    top:55px;
    left:10px;
  }
  
  .card-2{
    top:190px;
    right:0;
  }
  
  .card-3{
    bottom:45px;
    left:35px;
  }
  
  /* FLOAT */
  
  @keyframes floatCard{
    0%{
      transform:translateY(0);
    }
  
    50%{
      transform:translateY(-8px);
    }
  
    100%{
      transform:translateY(0);
    }
  }
  
  /* ================= RESPONSIVE ================= */
  
  @media(max-width:1100px){
  
    .account-hero-container{
      grid-template-columns:1fr;
  
      text-align:center;
    }
  
    .account-hero-content p{
      margin:auto auto 30px;
    }
  
    .account-hero-buttons,
    .account-hero-stats{
      justify-content:center;
    }
  
  }
  
  @media(max-width:768px){
  
    .account-hero-section{
      padding:80px 20px 65px;
    }
  
    .account-hero-content h1{
      font-size:38px;
      line-height:1.12;
    }
  
    .account-hero-content p{
      font-size:13px;
    }
  
    .account-hero-buttons{
      flex-direction:column;
    }
  
    .account-primary-btn,
    .account-secondary-btn{
      width:100%;
    }
  
    .account-hero-stats{
      gap:12px;
    }
  
    .account-stat-box{
      width:100%;
    }
  
    .account-floating-card{
      display:none;
    }
  
  }

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

.dw-features-section{
    position:relative;
  
    width:100%;
    overflow:hidden;
  
    padding:100px 5%;
  
    background:#eaf6ff;
  }
  
  /* GRID EFFECT */
  
  .dw-features-section::before{
    content:"";
  
    position:absolute;
    inset:0;
  
    background-image:
    linear-gradient(rgba(10,132,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,132,255,0.03) 1px, transparent 1px);
  
    background-size:70px 70px;
  
    opacity:0.5;
  }
  
  /* SOFT BLUR */
  
  .dw-features-section::after{
    content:"";
  
    position:absolute;
  
    width:340px;
    height:340px;
  
    border-radius:50%;
  
    background:rgba(10,132,255,0.10);
  
    filter:blur(100px);
  
    top:-120px;
    right:-80px;
  }
  
  /* ================= HEADING ================= */
  
  .dw-features-heading{
    position:relative;
    z-index:5;
  
    max-width:720px;
  
    margin:auto;
    margin-bottom:60px;
  
    text-align:center;
  }
  
  .dw-features-heading span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  
    padding:9px 18px;
  
    border-radius:100px;
  
    background:#d8efff;
  
    border:1px solid #c8e7ff;
  
    color:#0a84ff;
  
    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;
  
    margin-bottom:20px;
  }
  
  .dw-features-heading h2{
    font-size:42px;
    line-height:1.08;
    font-weight:800;
  
    letter-spacing:-1.5px;
  
    color:#07152f;
  
    margin-bottom:16px;
  }
  
  .dw-features-heading p{
    font-size:14px;
    line-height:1.9;
  
    color:#617089;
  }
  
  /* ================= GRID ================= */
  
  .dw-features-grid{
    position:relative;
    z-index:5;
  
    max-width:1320px;
  
    margin:auto;
  
    display:grid;
    grid-template-columns:repeat(4,1fr);
  
    gap:24px;
  }
  
  /* ================= CARD ================= */
  
  .dw-feature-card{
    position:relative;
  
    padding:32px 28px;
  
    border-radius:28px;
  
    background:rgba(255,255,255,0.96);
  
    border:1px solid rgba(10,132,255,0.10);
  
    overflow:hidden;
  
    transition:0.4s ease;
  
    box-shadow:
    0 10px 30px rgba(0,0,0,0.04);
  
    backdrop-filter:blur(10px);
  }
  
  /* TOP LIGHT */
  
  .dw-feature-card::before{
    content:"";
  
    position:absolute;
  
    top:0;
    left:0;
  
    width:100%;
    height:1px;
  
    background:linear-gradient(
      to right,
      transparent,
      rgba(10,132,255,0.45),
      transparent
    );
  }
  
  /* HOVER GLOW */
  
  .dw-feature-card::after{
    content:"";
  
    position:absolute;
  
    width:180px;
    height:180px;
  
    border-radius:50%;
  
    background:rgba(10,132,255,0.10);
  
    filter:blur(60px);
  
    top:-50px;
    right:-50px;
  
    opacity:0;
  
    transition:0.4s ease;
  }
  
  .dw-feature-card:hover{
    transform:translateY(-10px);
  
    border-color:#7fc7ff;
  
    box-shadow:
    0 22px 50px rgba(10,132,255,0.12);
  }
  
  .dw-feature-card:hover::after{
    opacity:1;
  }
  
  /* ================= ICON ================= */
  
  .dw-feature-icon{
    position:relative;
  
    width:68px;
    height:68px;
  
    border-radius:22px;
  
    display:flex;
    align-items:center;
    justify-content:center;
  
    margin-bottom:24px;
  
    background:
    linear-gradient(
      135deg,
      #e7f5ff,
      #d8efff
    );
  
    border:1px solid rgba(10,132,255,0.08);
  
    transition:0.35s ease;
  
    box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7);
  }
  
  .dw-feature-card:hover .dw-feature-icon{
    transform:scale(1.08) rotate(-4deg);
  
    box-shadow:
    0 14px 28px rgba(10,132,255,0.14);
  }
  
  .dw-feature-icon::before{
    content:"";
  
    position:absolute;
    inset:0;
  
    border-radius:inherit;
  
    background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.55),
      transparent
    );
  }
  
  .dw-feature-icon i{
    position:relative;
    z-index:2;
  
    font-size:30px;
  
    color:#0a84ff;
  }
  
  /* ================= CONTENT ================= */
  
  .dw-feature-card h3{
    font-size:21px;
    line-height:1.35;
    font-weight:800;
  
    color:#07152f;
  
    margin-bottom:14px;
  
    transition:0.3s ease;
  }
  
  .dw-feature-card:hover h3{
    color:#0a84ff;
  }
  
  .dw-feature-card p{
    font-size:13px;
    line-height:1.9;
  
    color:#617089;
  }
  
  /* ================= RESPONSIVE ================= */
  
  @media(max-width:1200px){
  
    .dw-features-grid{
      grid-template-columns:repeat(2,1fr);
    }
  
  }
  
  @media(max-width:768px){
  
    .dw-features-section{
      padding:75px 20px;
    }
  
    .dw-features-heading{
      margin-bottom:42px;
    }
  
    .dw-features-heading h2{
      font-size:30px;
      line-height:1.15;
    }
  
    .dw-features-heading p{
      font-size:13px;
    }
  
    .dw-features-grid{
      grid-template-columns:1fr;
  
      gap:20px;
    }
  
    .dw-feature-card{
      padding:28px 22px;
  
      border-radius:24px;
    }
  
    .dw-feature-icon{
      width:60px;
      height:60px;
  
      border-radius:18px;
    }
  
    .dw-feature-icon i{
      font-size:26px;
    }
  
    .dw-feature-card h3{
      font-size:18px;
    }
  
    .dw-feature-card p{
      font-size:12.5px;
      line-height:1.8;
    }
  
  }

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

.mt5-features-section{
  position:relative;
  width:100%;
  overflow:hidden;

  padding:85px 5%;

  background:#eef6ff;
}

/* BLUR SHAPES */

.mt5-feature-blur{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  z-index:0;
}

.blur-left{
  width:320px;
  height:320px;

  background:rgba(33,150,243,0.15);

  top:-100px;
  left:-100px;
}

.blur-right{
  width:280px;
  height:280px;

  background:rgba(0,119,255,0.12);

  bottom:-100px;
  right:-100px;
}

/* CONTAINER */

.mt5-features-container{
  position:relative;
  z-index:2;

  max-width:1250px;
  margin:auto;
}

/* HEADER */

.mt5-features-heading{
  width:100%;
  max-width:650px;

  margin:0 auto 55px;

  text-align:center;
}

.mt5-feature-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:8px 16px;

  border-radius:100px;

  background:rgba(10,122,255,0.10);

  color:#0a7aff;

  font-size:12px;
  font-weight:600;
  letter-spacing:0.4px;

  margin-bottom:18px;
}

.mt5-features-heading h2{
  font-size:42px;
  line-height:1.2;
  font-weight:800;

  color:#082046;

  margin-bottom:16px;
}

.mt5-features-heading h2 span{
  color:#0a7aff;
}

.mt5-features-heading p{
  font-size:15px;
  line-height:1.7;

  color:#5c6b85;
}

/* GRID */

.mt5-features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

/* CARD */

.mt5-feature-card{
  position:relative;

  background:#ffffff;

  border-radius:24px;

  padding:30px 26px;

  border:1px solid rgba(10,122,255,0.08);

  transition:0.35s ease;

  overflow:hidden;

  box-shadow:
  0 8px 25px rgba(16,24,40,0.05);
}

.mt5-feature-card::before{
  content:"";

  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:4px;

  background:linear-gradient(90deg,#0a7aff,#245cff);

  transform:scaleX(0);

  transform-origin:left;

  transition:0.35s ease;
}

.mt5-feature-card:hover{
  transform:translateY(-8px);

  box-shadow:
  0 18px 35px rgba(10,122,255,0.10);
}

.mt5-feature-card:hover::before{
  transform:scaleX(1);
}

/* ICON */

.mt5-feature-icon{
  width:62px;
  height:62px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:18px;

  margin-bottom:22px;

  background:
  linear-gradient(135deg,#0a7aff,#245cff);

  color:#ffffff;

  font-size:26px;

  box-shadow:
  0 10px 20px rgba(10,122,255,0.20);
}

/* TEXT */

.mt5-feature-card h3{
  font-size:20px;
  font-weight:700;

  color:#082046;

  margin-bottom:12px;
}

.mt5-feature-card p{
  font-size:14px;
  line-height:1.7;

  color:#60708b;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .mt5-features-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .mt5-features-heading h2{
    font-size:36px;
  }
}

@media(max-width:768px){

  .mt5-features-section{
    padding:70px 5%;
  }

  .mt5-features-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .mt5-features-heading{
    margin-bottom:40px;
  }

  .mt5-features-heading h2{
    font-size:30px;
  }

  .mt5-features-heading p{
    font-size:14px;
  }

  .mt5-feature-card{
    padding:26px 22px;
    border-radius:22px;
  }

  .mt5-feature-icon{
    width:56px;
    height:56px;
    font-size:24px;
  }

  .mt5-feature-card h3{
    font-size:18px;
  }

  .mt5-feature-card p{
    font-size:13.5px;
  }
}

/* ================= MT5 SHOWCASE SECTION ================= */

.mt5-showcase-section{
  width:100%;
  padding:85px 5%;

  background:#ffffff;

  overflow:hidden;
}

.mt5-showcase-container{
  max-width:1250px;
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
}

/* LEFT */

.mt5-showcase-content{
  width:100%;
}

/* TAG */

.mt5-showcase-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:9px 16px;

  border-radius:100px;

  background:rgba(10,122,255,0.08);

  border:1px solid rgba(10,122,255,0.10);

  color:#0a7aff;

  font-size:11px;
  font-weight:700;
  letter-spacing:0.8px;

  text-transform:uppercase;

  margin-bottom:20px;
}

.mt5-showcase-tag i{
  font-size:14px;
}

/* TITLE */

.mt5-showcase-content h2{
  font-size:52px;
  line-height:1.08;
  font-weight:800;

  color:#082046;

  margin-bottom:18px;
}

.mt5-showcase-content h2 span{
  color:#0a7aff;
}

.mt5-showcase-desc{
  max-width:520px;

  font-size:14px;
  line-height:1.8;

  color:#73809c;

  margin-bottom:34px;
}

/* FEATURES */

.mt5-showcase-features{
  display:flex;
  flex-direction:column;
  gap:20px;

  margin-bottom:38px;
}

.mt5-showcase-feature{
  display:flex;
  align-items:flex-start;
  gap:15px;
}

/* ICON */

.mt5-feature-icon-box{
  min-width:45px;
  width:45px;
  height:45px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:16px;

  background:#f3f8ff;

  border:1px solid rgba(10,122,255,0.08);

  color:#0a7aff;

  font-size:22px;

  transition:0.35s ease;
}

.mt5-showcase-feature:hover .mt5-feature-icon-box{
  background:#0a7aff;

  color:#ffffff;

  box-shadow:
  0 12px 25px rgba(10,122,255,0.18);
}

/* TEXT */

.mt5-feature-text h4{
  font-size:17px;
  font-weight:700;

  color:#082046;

  margin-bottom:6px;
}

.mt5-feature-text p{
  font-size:13px;
  line-height:1.7;

  color:#7a879f;
}

/* BUTTONS */

.mt5-download-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.mt5-download-btn{
  position:relative;

  display:flex;
  align-items:center;
  gap:12px;

  min-width:175px;

  padding:14px 18px;

  border-radius:18px;

  background:#f3f8ff;

  border:1px solid #e5edf7;

  text-decoration:none;

  overflow:hidden;

  transition:0.35s ease;
}

.mt5-download-btn::before{
  content:"";

  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:100%;

  background:linear-gradient(135deg,#0a7aff,#245cff);

  opacity:0;

  transition:0.35s ease;

  z-index:0;
}

.mt5-download-btn:hover{
  transform:translateY(-6px);

  border-color:transparent;

  box-shadow:
  0 18px 35px rgba(10,122,255,0.18);
}

.mt5-download-btn:hover::before{
  opacity:1;
}

.mt5-download-btn i,
.mt5-download-btn div{
  position:relative;
  z-index:2;
}

.mt5-download-btn i{
  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:14px;

  background:#dfecff;

  color:#0a7aff;

  font-size:21px;

  transition:0.35s ease;
}

.mt5-download-btn:hover i{
  background:rgba(255,255,255,0.15);

  color:#ffffff;
}

.mt5-download-btn span{
  display:block;

  font-size:11px;
  font-weight:500;

  color:#8b96ab;

  margin-bottom:2px;

  transition:0.35s ease;
}

.mt5-download-btn strong{
  font-size:16px;
  font-weight:700;

  color:#082046;

  transition:0.35s ease;
}

.mt5-download-btn:hover span,
.mt5-download-btn:hover strong{
  color:#ffffff;
}

/* IMAGE */

.mt5-showcase-image{
  width:100%;

  display:flex;
  justify-content:center;
}

.mt5-showcase-image img{
  width:100%;
  max-width:620px;

  object-fit:contain;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .mt5-showcase-container{
    grid-template-columns:1fr;
    gap:55px;
  }

  .mt5-showcase-content{
    text-align:center;
  }

  .mt5-showcase-desc{
    margin-left:auto;
    margin-right:auto;
  }

  .mt5-showcase-feature{
    justify-content:center;
    text-align:left;
  }

  .mt5-download-buttons{
    justify-content:center;
  }

  .mt5-showcase-content h2{
    font-size:46px;
  }
}

@media(max-width:768px){

  .mt5-showcase-section{
    padding:70px 5%;
  }

  .mt5-showcase-content h2{
    font-size:38px;
  }

  .mt5-showcase-desc{
    font-size:13px;
    line-height:1.8;
  }

  .mt5-showcase-feature{
    gap:12px;
  }

  .mt5-feature-icon-box{
    min-width:46px;
    width:46px;
    height:46px;

    font-size:18px;

    border-radius:14px;
  }

  .mt5-feature-text h4{
    font-size:15px;
  }

  .mt5-feature-text p{
    font-size:12.5px;
  }

  .mt5-download-btn{
    width:100%;
    justify-content:flex-start;
  }

  .mt5-download-btn strong{
    font-size:15px;
  }
}