
   :root {
    /* Brand Colors */
    --color-primary: #26408B;
    --color-primary-hover: #1d4ed8;
    --font-primary: 'Inter', sans-serif;
  
    --color-text-primary: #26408B;
    --color-text-secondary: #000000;
   
  }
  
  body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    background-color: var(--color-white);
  }
  

  .main-heading{
    font-size: 40px;
    font-weight: 300;
    color: var(--color-text-secondary);
  }
  .main-heading span{
    font-weight: 600;
  }
  .sub-heading{
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-secondary);
  }

  .main-heading span{
    font-weight: 600;
    color: #26408B;
  }
  @media (max-width: 991px){
    .main-heading{
        font-size: 32px !important;
      }
      .sub-heading{
        font-weight: 300;
      }
      .execution-left{
        margin-bottom: 22px;
      }
  }

a{
  text-decoration: none;
}

.home-tabs{
  background-color: #26408B;
  display: flex;
    gap: 24px;
    padding: 10px;
    color: #fff;
    padding-left: 30px;
}
.home-tabs li{
  list-style-type: none;
  font-size: 12px;
  font-weight: 600;
}

/* header */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid  #E2E5EA;
  /* box-shadow: 0px 2px 8px 0px #0000001F; */
  position: sticky;
  top: 0;
  z-index: 1050;
}

.main-header .navbar-brand{
  border-right: 1px solid  #E2E5EA;
  padding-right: 32px;
  margin-right: 24px;
}

.main-header .nav-link {
  font-weight: 600;
  font-size: 14px;
  color: #000000;
}
.main-header .nav-link:hover {
  color: #1d4ed8;
}
.main-header .login-link {
  text-decoration: none;
  color: var(--color-text-secondary);
  font-weight: 600;
  font-size: 14px;
  padding: 0px 16px;
}
.main-header .login-link:hover {
  color: #1d4ed8;
}
.main-header .btn-primary {
  background: #26408B;
  border-color: transparent;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}
.main-header .btn-primary:hover {
  background: #1d4ed8;
}
.main-header .nav-link {
    position: relative;
}
/* .main-header .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #26408B;
  border-bottom: 2px solid #26408B;
} */
.main-header .nav-link.active {
    color: #26408B;
    font-weight: 600;
    border-bottom: 3px solid #26408B;
}
.logo-img {
  height: 60px;
  width: 103px;
}

/* ============================= */
/* NAVBAR DROPDOWN BASE */
/* ============================= */

.custom-navbar .dropdown-menu{
  border-radius:10px;
  border:none;
  padding:10px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition:all .3s ease;
}

/* Dropdown items */

.custom-navbar .dropdown-item{
  padding:10px 20px;
  font-size:14px;
  transition:all .2s ease;
}

.custom-navbar .dropdown-item:hover{
  background:#f5f6f9;
  padding-left:26px;
}

.custom-navbar .dropdown-icon{
  width:14px;
  margin-left:6px;
  transition:transform .3s ease;
}
.modal-header{
  border-bottom: none !important;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
}

.dropdown-toggle::after{
  display:none;
}
.navbar-expand-lg .navbar-nav .nav-link{
  padding: 18px 8px;
}

@media (min-width: 992px) and (max-width: 1099px) {
  .main-header .login-link{
    font-size: 12px;
  }
  .main-header .nav-link{
    font-size: 12px;
  }
  .main-header .btn-primary{
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* ============================= */
/* DESKTOP DROPDOWN (HOVER) */
/* ============================= */

@media (min-width:992px){

.custom-navbar .dropdown-menu{
  display:block;
}

.custom-navbar .dropdown:hover > .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  width:180px;
}

/* icon rotate */
.custom-navbar .dropdown:hover .dropdown-icon{
  transform:rotate(180deg);
}

}


/* ============================= */
/* MOBILE DROPDOWN (CLICK) */
/* ============================= */

@media (max-width:991px){

.custom-navbar .dropdown-menu{
  display:none;
  opacity:1;
  visibility:visible;
  transform:none;
  box-shadow:none;
}
.main-header .nav-link.active {
  display: inline-table;
  border-bottom: none;
}
.navbar-expand-lg .navbar-nav .nav-link{
  padding: 12px 0px;
}

.custom-navbar .dropdown.show > .dropdown-menu{
  display:block;
}

/* icon rotate on click */
.custom-navbar .dropdown.show .dropdown-icon{
  transform:rotate(180deg);
}

}


/* ============================= */
/* MOBILE NAVBAR FIXES */
/* ============================= */

@media (max-width:991px){

.main-header .navbar-brand{
  border:transparent;
}

.main-header .login-link{
  padding:0;
}

.main-header .navbar-toggler{
  border:transparent;
}

.main-header .navbar-toggler:focus{
  box-shadow:none;
}

}
  /* 1. banner */
  .multi-trading-banner {
    background: linear-gradient(3.85deg, #FFFFFF 2.84%, #F9FAFA 49.69%, #D8E9FF 96.55%);
    padding: 86px 0px 86px;
  }
  .multi-trading-banner .hero-badge {
        display: inline-flex;
    align-items: center;
    gap: 2px;
    background: #fff;
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 100px;
    box-shadow: 0px 2px 4px 0px #00000024;
    border: 0.5px solid #E2E5EA;
    margin-bottom: 20px;
  }
  .multi-trading-banner .banner-title {
    font-size: 56px;
    font-weight: 300;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
  }
  .multi-trading-banner .banner-title span {
    color: var(--color-text-primary);
    font-weight: 600;
  }
  .multi-trading-banner .banner-desciption {
    color: #000;
    font-size: 16px;
    font-weight: 300;
    max-width: 530px;
  }

  .multi-trading-banner .banner-desciption-2 {
    color: #82858B;
    font-weight: 300;
  }

 .multi-trading-banner .btn-primary{
    background-color: #26408B;
    border-color: transparent;
    padding: 11px 24px;
    font-size: 16px;
    font-weight: 500;
 }
 .multi-trading-banner .btn-primary:hover{
    background: #1d4ed8;
 }
 .multi-trading-banner .btn-outline-secondary{
    border: 1px solid  #E2E5EA;
    padding: 11px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-secondary);
 }
 .multi-trading-banner .btn-outline-secondary:hover{
   background-color: transparent;
 }
 .banner-pattern1{
    top: -50px;
    right: 20px;
 }
 .banner-pattern2{
    bottom: 50px;
    left: 215px;
 }
 .banner-pattern3{
    top: -24px;
    left: -20px;
 }
 @media (max-width: 1400px){
    .banner-pattern2 {
        left: 170px;
        bottom: 15px;
    }
 }
 @media (max-width: 1200px){
    .multi-trading-banner{
        padding: 60px 0px;
    }
    
 }
 @media (max-width: 991px){
    .multi-trading-banner{
        padding: 40px 0px;
    }
    .multi-trading-banner  .banner-title {
        font-size: 40px;
      }
      .multi-trading-banner .banner-desciption{
        max-width: 100%;
      }
  }
  @media (max-width: 576px){
    .banner-pattern2 {
        bottom: -40px;
        left: 115px;
    }
  }
   /* 2. banner bottom */
.banner-bottom{
padding: 24px 0px;
}
.banner-bottom-wrapper{
 background-image: url("../../images/retail/hero_strip_bg.png");
 padding: 40px 0px;
 border-radius: 32px;
 position: relative;
 background-repeat: no-repeat;
 background-size: cover;
}

@media (max-width: 991px) {
   .navbar-collapse {
      position: absolute;
      top: 58px;
      background: #fff;
      width: 100%;
      left: 0; 
      border-bottom: 1px solid #eee;
      padding-left: 14px;
  }

  .banner-bottom-wrapper{
    background-color: #26408B;
    padding: 40px 0px;
    border-radius: 32px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
   }
}

/* .banner-bottom-wrapper:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background: url('../../images/retail/bg-partten.png') no-repeat center center;
} */


 .banner-bottom .icon-content h5{
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    margin-bottom: 2px;
 }
 .banner-bottom .icon-content p{
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    text-align: start;
 }
 @media (max-width: 991px){
    .banner-bottom{
        padding: 0px;
    }
 }
 .custom-mr{
  padding-left: 20px;
 }

.trading-bonus-section .bonus-wrapper{
  background: linear-gradient(270deg, #F9FAFC 0%, #F5F8FF 100%);
  border-radius:20px;
  padding:50px;
}

.trading-bonus-section .bonus-title{
  font-size:40px;
  font-weight:300;
}

.trading-bonus-section .bonus-title span{
  color:var(--color-primary);
  font-weight:600;
}

.trading-bonus-section .steps li{
  list-style: none;
  font-size: 16px;
  display: flex;
  align-items:flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-weight: 500;
}

.trading-bonus-section .steps li::before{
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../../images/retail/icon-park-solid_check-one.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.trading-bonus-section .vip-btn{
  background:var(--color-primary);
  color:white;
  border-radius:8px;
  padding:12px 22px;
  font-size:14px;
  margin-top:15px;
  font-weight: 600;
}

.trading-bonus-section .vip-btn:hover{
  background:#1d4ed8;
}

.trading-bonus-section .bonus-card{
  background: linear-gradient(180deg, #EFF3FE 0%, #DBE4FD 100%);
  border-radius:20px;
  padding:35px;
  text-align:center;
}

.trading-bonus-section .bonus-card h2{
  font-size:64px;
  font-weight:700;
  color:#2b4ea2;
}

.trading-bonus-section .badge-vip{
  background: linear-gradient(90deg, #E7AD38 2.39%, #F9F295 45%, #E7AD38 93.5%);
  color:#824600;
  padding:8px 14px;
  border-radius:6px;
  font-size:14px;
  display:inline-block;
  margin:10px 0 14px;
  font-weight: 600;
}

.trading-bonus-section .bonus-desc{
  font-size:14px;
  color:#26408B;
  font-weight: 400;
}
.trading-bonus-section .bonus-desc a{
  color:#26408B;
  text-decoration: underline;
}

@media (max-width:768px){

.trading-bonus-section .bonus-wrapper{
padding:25px;
}

.trading-bonus-section .bonus-title{
font-size:32px;
}

.trading-bonus-section .bonus-card{
margin-top:30px;
padding: 12px;
}
.custom-mr{
  padding-left: 0px;
  margin-top: 30px;
 }
}

/* --------- */

.trading-platform-wrapper{
  background-color: #F3F5F7;
  padding: 68px 0px;
  position: relative;
}

.trading-platform-wrapper::after {
  position: absolute;
  content: '';
  right: 0;
  top: 110px;
  width: 200px;
  height: 200px;
  background-image: url("../../images/retail/bg-parten.png");
  z-index: 0;
}



.platform-wrapper .platform-card{
  background:#fff;
  border-radius:24px;
  padding:28px;
  position:relative;
  overflow:hidden;
  transition:.35s;
  height:550px;
  z-index: 1;
}

/* image container */
.platform-wrapper .card-image{
  width:100%;
  transition:.45s ease;
}

.platform-wrapper .card-image img{
  width:100%;
  border-radius:18px;
  display:block;
}

/* content */
.platform-wrapper .card-content{
  margin-top:80px;
  transition:.45s ease;
  transform:translateY(60px);
}

.platform-wrapper .card-content h3{
  font-size: 32px;
    font-weight: 500;
}

/* hover image shift */
.platform-wrapper .platform-card:hover .card-image{
  transform:scale(0.66) translate(0%, 0%);
  transform-origin:top left;
}

/* move content up */
.platform-wrapper .platform-card:hover .card-content{
  transform:translateY(0);
}

/* hidden content */
.platform-wrapper .extra-content{
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition:.35s ease;
}

/* show extra content */
.platform-wrapper .platform-card:hover .extra-content{
  max-height:300px;
  opacity:1;
  margin-top:15px;
}

/* list */
.platform-wrapper .steps{
  list-style:none;
  padding:0;
}

.platform-wrapper .steps li{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.platform-wrapper .steps li:before{
  content:"";
border-radius:50%;
width: 24px;
height: 24px;
display:inline-flex;
align-items:center;
justify-content:center;
background-image: url('../../images/retail/check-blue-icon.svg');
background-repeat: no-repeat;
}

/* button */
.platform-wrapper .btn-learn{
  display:inline-block;
  margin-top:15px;
  background:#2f4ea2;
  color:#fff;
  padding:12px 24px;
  border-radius:8px;
  text-decoration:none;
  width: 300px;
  text-align: center;
}
.platform-wrapper .desc{
  color: #82858B;
  font-weight: 300;
}

.platform-wrapper .btn-learn:hover{
  background-color: #1d4ed8;
}

.platform-wrapper .card-image{
  transition: transform .4s ease;
}
/* image default state */
.platform-wrapper .card-image{
  transform: scale(1) translate(0,0);
  transform-origin: top left;
  transition: transform .4s ease;
}


/* content default state */
.platform-wrapper .card-content{
  transform: translateY(0);
  transition: transform .4s ease;
}

/* content hover state */
.platform-wrapper .platform-card:hover .card-content{
  transform: translateY(-150px);
}

.market-wrapper {
  display: flex;
  gap: 30px;
}

.market-wrapper .market-card{
  display:flex;
  align-items:center;
  gap:20px;
  background:#f3f4f6;
  padding:24px;
  border-radius:16px;
  flex:1;
  min-width:280px;
  transition: all .3s ease;
}

.market-wrapper .market-card:hover{
  transform: translateY(-5px);

}

#no-result{
  text-align: center;
}

/* icon */
.market-wrapper .market-icon{
  display:flex;
  align-items:center;
  justify-content:center;
}

.market-wrapper .market-icon img{
  width:100%;
  height: 100%;
}
.move-the-words .center-image{
  margin: 72px 0px;
}
.move-the-words{
  margin: 68px 0px;
}

/* text */
.market-wrapper .market-content h3{
  margin:0;
  font-size:20px;
  font-weight: 600;
  color: #000;
}

.market-wrapper .market-content p{
  margin: 4px 0 0;
  color: #7a7f87;
  font-weight: 300;
  font-size: 16px;
}

.cta-section .cta-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:30px;
  margin-top:70px;
  flex-wrap:wrap;
}

.cta-section .btn-light{
  background:#fff;
  padding:16px 40px;
  border-radius:10px;
  text-decoration:none;
  color:#111;
  font-weight:600;
  border:1px solid #d8d8d8;
  transition:.3s ease;
}

.cta-section .btn-primary{
  background:#334a91;
  padding:16px 40px;
  border-radius:10px;
  text-decoration:none;
  color:#fff;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:10px;
  transition:.3s ease;
}

.cta-section .btn-primary:hover{
  background-color: #1d4ed8;
}

.cta-section .btn-light:hover{
  background:#1d4ed8;
  color: #fff;
}



/* responsive */
@media (max-width:576px){
  .cta-section .cta-buttons a{
    width:100%;
    text-align:center;
    justify-content:center;
  }
  .custom-mr {
    margin-top: 30px !important;
}
}

@media (max-width: 1199px) {

  .platform-wrapper .card-image{
    transform: none !important;
  }

  .platform-wrapper .card-content{
    transform: none !important;
    margin-top: 20px;
  }
  .trading-platform-wrapper{
    padding: 20px 0px;  
  }
  .copy-wrapper{
    padding: 20px 20px;
  }

  .platform-wrapper .extra-content{
    max-height: none;
    opacity: 1;
    margin-top: 15px;
  }
  .platform-wrapper .platform-card{
    height: auto;
    margin-bottom: 30px;
    padding: 12px;
  }
  .platform-wrapper .steps li{
    font-size: 14px;
  }
  .platform-wrapper .card-content h3{
    font-size: 20px;
  }
  .platform-wrapper .desc{
    font-size: 14px;
  }
  .trading-bonus-section .steps li{
    font-size: 14px;
  }
  .custom-mr{
    margin-top: 0;
  }
  

}

/* Tablet */
@media (max-width: 991px) {
  .market-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
  .copy-wrapper .copy-placeholder{
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .market-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  .copy-wrapper .copy-row{
    flex-direction:column !important;
    }
    .trading-platform-wrapper{
      padding: 20px 16px;  
    }
    .move-the-words{
      padding: 0px 16px;  
    }
    .copy-wrapper .copy-card h3{
      font-size: 16px !important;
    }
    .copy-wrapper .title-head{
      font-size: 16px !important;
    }
    .copy-wrapper .copy-card,
    .copy-wrapper .highlight{
    width:100%;
    max-width:100px !important;
    min-width: 100% !important;
    }
}

/* -------- */

.bg-copy-wrapper{
  background-color: #F3F5F7;
}

.copy-wrapper .width-mb {
  max-width: 614px;
  margin: 0 auto;
}

.copy-wrapper{
  padding:80px 20px 60px;
  max-width:1000px;
  margin:auto;
  }
  .copy-wrapper.copy-wrapper-about{
    max-width:1100px;
  }
  .copy-wrapper.copy-wrapper-about .copy-circle{
    width: 160px;
  }

  /* rows */
  .copy-wrapper .copy-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    
    margin-bottom: 30px;
  }
  
  /* cards */
  .copy-wrapper .copy-card{
  display:flex;
  gap:18px;
  align-items:center;
  background: linear-gradient(270deg, #F9FAFC 0%, #F5F8FF 100%);
  padding:26px 32px;
  border-radius:60px;
  min-width:330px;
  transition:.3s ease;
  }

  .copy-wrapper .copy-card h3{
    font-size: 18px;
    color: #26408B;
    font-weight: 600;
  }
  
  /* center highlight card */
  .copy-wrapper .highlight{
  display:flex;
  gap:18px;
  align-items:center;
  padding:26px 16px;
  border-radius:70px;
  background:linear-gradient(90deg,#4761AB,#3d57a0);
  color:white;
  min-width:300px;
  }
  
  /* icon */
  .copy-wrapper .icon{
  width:56px;
  height:56px;
  border-radius:50%;
  background:white;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  }
/* icon zoom */
.copy-card .icon img,
.highlight .icon img{
  transition: transform .3s ease;
}

/* text shift */
.copy-card > div:last-child,
.highlight > div:last-child{
  transition: transform .3s ease;
}

/* hover animation */
.copy-card:hover .icon img,
.highlight:hover .icon img{
  transform: scale(1.4);
}

.copy-card:hover > div:last-child,
.highlight:hover > div:last-child{
  transform: translateX(10px);
}

  /* center circle */
  .copy-wrapper .copy-circle{
  width:130px;
  height:120px;
  border-radius:48%;
  border:1px solid #b9c5f2;
  display:flex;
  align-items:center;
  justify-content:center;
  }
  
  /* placeholder */
  .copy-wrapper .copy-placeholder{
    width: 100%;
  height:129px;
  border:1px solid #c9d3ff;
  border-radius:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  }

  .copy-wrapper .copy-circle img{
    transition: transform 0.4s ease;
    transform: rotate(45deg);
  }

  .copy-wrapper .copy-placeholder img{
    width: 80px;
    padding: 10px;
    transition: transform 0.4s ease;
  }
  .copy-wrapper .copy-placeholder:hover img{
    transform: rotate(-45deg);
  }
  .copy-wrapper .copy-circle:hover img{
    transform: rotate(-45deg);
  }
  
  /* typography */
  .copy-wrapper .title-head{
  margin:4px 0;
  font-size:18px;
  font-weight:400;
  color:#26408B;
  }
  
  .copy-wrapper .highlight h3{
  color:white;
  font-weight: 500;
  }
  
  .copy-wrapper p{
  margin:0;
  color:#82858B;
  font-size:15px;
  margin: 0 auto;
  max-width: 100%;
  }
  
  .copy-wrapper .highlight p{
  color:#dfe6ff;
  }
  
  .copy-wrapper .step{
  font-size:14px;
  color:#7b7f8c;
  }
  
  .copy-wrapper .highlight .step{
  color:#dfe6ff;
  }
  
  /* responsive */
  
  @media (max-width:992px){
  
  .copy-wrapper .copy-row{
  flex-direction:row;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  }
  
  .copy-wrapper .copy-circle{
  display:none;
  }
  
  .copy-wrapper .copy-placeholder{
  display:none;
  }
  
  .copy-wrapper .copy-card,
  .copy-wrapper .highlight{
  width:100%;
  max-width:300px;
  }
  .width-mb{
    width: 100% !important;
  }
  
  }
/* --------price--- */
/* section */
.accounts-section{
  padding:80px 0;
  background-color: #F3F5F7;
}

/* heading */
.accounts-title{
  font-size:36px;
  font-weight:500;
}

.accounts-title span{
  color:#3b5cc9;
  font-weight:600;
}

.accounts-subtitle{
  color:#666;
  font-size:15px;
  margin-top:8px;
  margin-bottom:50px;
}

/* card */
.account-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  transition:all .3s ease;
  position: relative;
}

.card-header-area::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:100px;    
  height:100px;  
  background-image:url("../../images/retail/pricing_pattern.svg");
  background-repeat:no-repeat;
  background-size:contain;
  pointer-events:none;
}

.account-card:hover{
  transform:translateY(-5px);
}

/* header gradient */
.card-header-area{
  padding:28px;
  color:#fff;
  min-height:200px;
  text-align: left;
}



.card-dark{
  background: linear-gradient(112.3deg, #010101 42.98%, #26408B 86.37%);
}

.card-blue{
  background: linear-gradient(102.88deg, #6098FF 50%, #C0D6FF 100%);

}

/* small label */
.account-card .card-label{
  font-size: 20px;
  opacity: .9;
  margin-bottom: 12px;
  font-weight: 300;
}

.account-card .card-title{
  font-size:30px;
  font-weight:600;
  line-height: normal;
  max-width: 170px;
}

.account-card .card-title span{
  font-weight:400;
}

/* content area */
.card-body-area{
  background:#fff;
  padding:25px;
  border-radius:18px;
  margin-top:-20px;
}

/* feature list */

.feature-list{
  list-style:none;
  padding:0;
  margin:0 0 25px 0;
  min-height: 100px;
}

.feature-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  color:#444;
  margin-bottom:10px;
}



.feature-list li:before{
  content:"";
  font-size:12px;
  background-image: url('../../images/retail/check-blue-icon.svg');
  color: #3556c4;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

/* buttons */

.account-card .start-btn{
  background: #3b4f9c;
  color: #fff;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 16px;
  width: 100%;
  border: none;
  display: block;
  text-align: center;
}

.account-card .start-btn:hover{
  background:#1d4ed8;
}

.accounts-section .outline-btn{
  border:1px solid #26408B;
  color:#26408B;
  padding:12px 24px;
  border-radius:6px;
  font-size:14px;
  display:inline-block;
  margin-top:50px;
  font-weight: 500;
  text-decoration:none;
  transition: 0.2s;
}

.accounts-section .outline-btn:hover{
  background:#1d4ed8;
  border:1px solid #1d4ed8;
  color:#fff;
  transition: 0.2s;
}

/* bonus tag */

.account-card .bonus{
  display:inline-block;
  font-size:12px;
  background: linear-gradient(90deg, #E7AD38 2.39%, #F9F295 45%, #E7AD38 93.5%);
  border: 1px solid #DDB98B;
  color:#824600;
  padding:4px 8px;
  border-radius:4px;
  margin-top:10px;
  font-weight: 600;
  margin-top: 20px;
}

/* responsive */

@media (max-width:991px){
.accounts-title{
font-size:30px;
}
}


/* blog faq */

.blog-faq-wrapper{
  padding:60px 0;
  background:#fff;
  }
  
  /* title */
  .blog-faq-wrapper .top-reads-title{
  font-size:20px;
  font-weight:600;
  margin-bottom:25px;
  }
  
  /* blog button */
  .blog-faq-wrapper .blog-btn{
  border:1px solid #cbd5e1;
  border-radius:8px;
  padding:8px 18px;
  font-weight:500;
  background:white;
  color: #26408B;
  }
  
  /* blog items */
  .blog-faq-wrapper .blog-item{
  display:flex;
  gap:16px;
  margin-bottom:24px;
  }

  .blog-faq-wrapper .blog-item a{
    display:flex;
    gap:16px;
    margin-bottom:24px;
  }
  
  .blog-faq-wrapper .blog-img{
    width: 185px;
    height: 116px;
  border-radius:12px;
  object-fit:cover;
  }
  
  .blog-faq-wrapper .blog-tags span{
  font-size:12px;
  padding:3px 10px;
  border-radius:6px;
  margin-right:6px;
  }
  
  .blog-faq-wrapper .blog-title{
  font-size:16px;
  font-weight:600;
  margin:6px 0;
  color: #000;
  }
  
  .blog-faq-wrapper .blog-meta{
  font-size:13px;
  color:#67748A;
  }
  
  /* FAQ */
  .blog-faq-wrapper .faq-box{
  background:white;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 15px rgba(0,0,0,0.04);
  }
  
  .blog-faq-wrapper .faq-header{
  background:linear-gradient(90deg,#4f7de7,#86a9f6);
  padding:35px;
  text-align:center;
  }
  
  .blog-faq-wrapper .faq-circle{
    width: 90px;
    height: 90px;
  background:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  color:var(--color-primary);
  margin:auto;
  font-size:18px;
  border: 6px solid #c5d6ff;
  }
  
  /* accordion */
  .blog-faq-wrapper .accordion-button{
  font-weight:600;
  font-size:15px;
  background:#F3F5F7;
  box-shadow:none;
  }
  
  .blog-faq-wrapper .accordion-body{
    font-size: 14px;
    color: #82858B;
    padding: 0px 20px 15px;
  }
  
  .blog-faq-wrapper .accordion-item{
  border:none;
  border-bottom:1px solid #eee;
  background-color: #F3F5F7;
  }
  
  .blog-faq-wrapper .accordion-button:not(.collapsed){
  background:#F3F5F7;
  color:#000;
  box-shadow:none;
  }
  
  /* responsive */
  @media (max-width:991px){
  
  .blog-faq-wrapper .blog-img{
  width:100px;
  height:auto;
  }
  .blog-faq-wrapper .blog-tags p{
    margin-bottom: 0;
  }
  
  }


  .faq-contact-section {
    padding: 0px 0 40px;
  }

  .faq-contact-section .container{
    max-width: 832px;
    margin: 0 auto;
  }

  .faq-contact-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 32px;
  }
  
  .faq-contact-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .faq-contact-text p {
    color: #6b7280;
    margin: 0;
    max-width: 560px;
    font-weight: 300;
  }
  
  .btn-contact {
    background: #2f4ea2;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .btn-contact:hover {
    background: #243d82;
    color: #fff;
  }

  @media (max-width:767px){
    .faq-contact-btn{
      margin: 0 auto;
      width: 100%;
      text-align: center;
    }
    .btn-contact{
      width: 100%;
      display: inline-block;
    }
    .faq-contact-text p {
      max-width: 85% !important;
  }
  }

  @media (max-width:768px) {
    .faq-contact-box {
      text-align: left;
      gap: 20px;
      padding: 12px;
    }

    .faq-contact-btn{
      margin: 0 auto;
    }
  
    .faq-contact-text p {
      max-width: 100%;
    }

  }

  /* ---------start trading footer -------*/

  .cta-trading-wrapper{
    background:#26408B;
    padding:72px 0 0 0;
    }
    
    /* Title */
    
    .cta-trading-wrapper .cta-title{
    color:#fff;
    font-size:40px;
    font-weight:300;
    margin-bottom:10px;
    }
    
    .cta-trading-wrapper .cta-title span{
    font-weight:600;
    }
    
    /* Subtitle */
    
    .cta-trading-wrapper .cta-subtitle{
      color: #ffffff;
      font-size: 16px;
      max-width: 635px;
      margin: 0 auto;
      padding-bottom: 30px;
      font-weight: 300;
    }
    
    /* Button */
    
    .cta-trading-wrapper .cta-btn{
    display:inline-block;
    background:#fff;
    color:#1f3a8a;
    padding:13px 28px;
    border-radius:6px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:all .25s ease;
    width: 270px;
    }
  
    /* Risk bar */
    
    .cta-trading-wrapper .risk-bar{
    margin-top:70px;
    background:#041331;
    padding:18px 0;
    position: relative;
    }

  
    
    .cta-trading-wrapper .risk-bar p{
      color: #fff;
      font-size: 14px;
      margin: 0;
      line-height: 1.6;
      font-weight: 300;
    }
    
    .cta-trading-wrapper .risk-bar strong{
    color:#fff;
    }
    
    /* Responsive */
    
    @media (max-width:768px){
    
    .cta-trading-wrapper{
    padding:60px 0 0;
    }
    
    .cta-trading-wrapper .cta-title{
    font-size:30px;
    }
    
    .cta-trading-wrapper .cta-subtitle{
    font-size:14px;
    }
    .cta-trading-wrapper .risk-bar::after{
      display: none;
    }
    .footer-col{
      margin-bottom: 0 !important;
    }
    
    }


    /* common code for internal to banner start*/


  /* 1. banner */
  .custom-banner-wrapper{
    background:#ffffff;
    padding: 86px 0px 86px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
  }


  .custom-banner-wrapper::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 100%;
    background: linear-gradient(
      90deg,
      #FFFFFF 0%,
      #F9FAFA 50%,
      #EFF6FF 100%
    );
    left: -450px;
    top: -250px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.9;
    z-index: 0;
  }
  

  .custom-banner-wrapper .hero-badge {
    background: #fff;
    font-size:14px;
    color: var(--color-text-secondary);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 100px;
    box-shadow: 0px 2px 4px 0px #00000024;
    border: 0.5px solid #E2E5EA;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
  }
  .custom-banner-wrapper .hero-badge img{
    width: 22px;
  }


  .custom-banner-wrapper .banner-title {
    font-size: 56px;
    font-weight: 300;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    max-width: 828px;
    text-align: center;
    margin: 0 auto;
  }
  .custom-banner-wrapper .banner-title span {
   color: #26408B;
    font-weight: 600;
  }
  .custom-banner-wrapper .banner-desciption {
    color: #82858B;
    font-size: 16px;
    font-weight: 400;
    max-width: 530px;
    margin-top: 20px;
  }
  .custom-banner-wrapper .btn-primary{
    background-color: #26408B;
    border-color: transparent;
    padding: 11px 24px;
    font-size: 16px;
    font-weight: 600;
 }
 .custom-banner-wrapper .btn-primary:hover{
    background: #1d4ed8;
 }
 .custom-banner-wrapper .banner-pattern1{
    top: 70px;
    right: 120px;
    z-index: 9;
 }
 .custom-banner-wrapper .banner-pattern3{
    left: 30px;
    top: 200px;
    z-index: 9;
 }
 .custom-banner-wrapper .banner-bgleft {
    left: 0;
    top: 0;
    z-index: 0;
    z-index: 9;
  }
  .custom-banner-wrapper .banner-bg-right {
    right: 0;
    top: 0;
    z-index: 0;
  }
  .custom-banner-wrapper .banner-bgleft img,
  .custom-banner-wrapper .banner-bg-right img {
    max-width: 100%;
    height: auto;
  }
  .custom-banner-wrapper .container {
    position: relative;
    z-index: 2;
  }
  
  @media (max-width: 1200px){
    .custom-banner-wrapper{
        padding: 60px 0px;
    }
    .custom-banner-wrapper .banner-title{
        font-size: 44px;
    }
 }
 @media (max-width: 991px){
    .custom-banner-wrapper{
        padding: 40px 0px;
    }
    .custom-banner-wrapper  .banner-title {
        font-size: 32px !important;
      }
      .custom-banner-wrapper .banner-pattern1{
        right: 20px;
      }
      .custom-banner-wrapper .banner-title{
        font-size: 44px;
      }
      .award-wrapper{
        margin: 0px 4px;
      }
      .custom-banner-wrapper{
        margin-bottom: 0;
      }
  }
  @media (max-width: 576px){
    .custom-banner-wrapper .banner-pattern1{
        display: none;
      }
      .custom-banner-wrapper .banner-pattern3{
       display: none;
      }
      .platform-cta a {
        white-space: nowrap;
      }
    
      .platform-cta {
        flex-direction: column;
        margin: 0px 14px; 
      }
    
      .platform-cta a {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      /* .custom-banner-wrapper::before{
        position: absolute;
        content: '';
        right: 0;
        top: 0px;
        width: 170px;
        height: 170px;
        background-image: url("../../images/retail/pattern_blue.png");
        z-index: 2;
      } */
    
  }

  .custom-banner-wrapper::after{
   content: "";
    position: absolute;
    width: 100%;
    height: 400px;
    background: linear-gradient(3.85deg, #FFFFFF 2.84%, #F9FAFA 49.69%, #D8E9FF 96.55%);
    top:0;
  }

/* Small Mobile */
@media (max-width: 480px) {
    .explore-new-opportunities .job-categories {
        padding: 16px;
        gap: 16px;
    }
}


/* end banner */


/* about us page css */
.trade-slider-section{
    top: -50px;
}

.trade-card{
  padding:0 12px;
}

.trade-card img{
  width:100%;
  border-radius:20px;
  object-fit:cover;
}

/* Different heights like screenshot */

.trade-card:nth-child(1) img{ height:426px; }
.trade-card:nth-child(2) img{ height:280px; }
.trade-card:nth-child(3) img{ height:375px; }
.trade-card:nth-child(4) img{ height:426px; }
.trade-card:nth-child(5) img{ height:280px; }
.trade-card:nth-child(6) img{ height:375px; }

.fade-slider{
  position:relative;
  overflow:hidden;
}

.award-wrapper{
  position: relative;
}

.award-wrapper::after{
   position: absolute;
   content: '';
   left: -194px;
   top: -45px;
   width: 170px;
   height: 170px;
    background-image: url("../../images/retail/Pattern-about.svg");
    z-index: 0;
}

.trade-card{
  padding:0 12px;
}

/* image container */
.img-box{
  width:100%;
  border-radius:20px;
  overflow:hidden;

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

/* image styling */

.img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.trade-slider .slick-slide{
  display:flex;
  align-items:center;
}
.trade-card{
  padding: 0 10px;
}

.trade-slider .slick-list{
  margin: 0 -10px;
}

.image-card-wraper .slick-track{
  display: flex;
  align-items: center;
}

/* left fade */

.fade-slider::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:150px;
  height:100%;
  background:linear-gradient(to right, #ffffff 0%, transparent 100%);
  z-index:2;
}

/* right fade */

.fade-slider::after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  width:150px;
  height:100%;
  background:linear-gradient(to left, #ffffff 0%, transparent 100%);
  z-index:2;
}

.trade-card{
  padding:0 12px;
}

.trade-card img{
  width:100%;
  border-radius:20px;
  object-fit:cover;
}

/* slider movement */
@keyframes scrollSlider{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* responsive */

@media (max-width:992px){
  .image-card{
    width:200px;
    height:280px;
  }
  .foundation-wrapper{
    padding: 22px 0px 12px !important;
  }
  .execution-wrapper .execution-left h2{
    font-size: 32px !important;
    text-align: center !important;
  }

}

@media (max-width:576px){
  .image-card{
    width:160px;
    height:220px;
  }
  .fade-slider::after{
    display: none;
  }
  .fade-slider::before{
    display: none;
  }
}

.awards-section{
  background:#f5f5f5;
}

/* card */

.award-card{
  background: linear-gradient(270deg, #F9FAFC 0%, #F5F8FF 100%);
  border-radius:60px;
  padding:20px 30px;
  gap:20px;
  transition:0.3s;
}

/* icon */

.award-icon img{
  width:70px;
  height:70px;
  object-fit:contain;
}

/* text */

.award-text h5{
  font-size:20px;
  font-weight:600;
  color:#26408B;
  margin:0;
}

.award-text p{
  margin:0;
  font-size:20px;
  color:#26408B;
  font-weight:300;
}

.award-card:hover{
  transform:translateY(-4px);
}

.award-wrapper{
max-width: 1100px;
margin: 0 auto;
}

.execution-wrapper{
  background:#fff;
  padding:100px 0;
  }
  
  /* LEFT */
  
  .execution-wrapper .execution-left h2{
  font-size:40px;
  line-height: 54px;
  font-weight:300;
  }
  
  .execution-wrapper .execution-left span{
  color:#26408B;
  font-weight:600;
  }
  
  .execution-wrapper .subtitle{
  font-weight:400;
  margin:20px 0 10px;
  font-size: 16px !important;
    color: #000 !important;
    -webkit-text-fill-color: unset;
    max-width: 500px;
  }
  .wpcf7-not-valid-tip{
    font-size: 14px !important;
  }
  
  .execution-wrapper .desc{
  color:#82858B;
  max-width:570px;
  font-weight:400;
  font-size: 14px;
  }
  .execution-point p{
    font-size: 14px;
    max-width: 385px;
  }
  
  .execution-wrapper .execution-point{
  margin-top:25px;
  gap:10px;
  }
  
  .execution-wrapper .check-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  }
  
  
  /* RIGHT BOX */
  
  .execution-wrapper .execution-box{
  background: linear-gradient(135.01deg, #F9FAFB -2.76%, #F0F6FF 99.58%);
  padding:40px;
  border-radius:20px;
  max-width:520px;
  margin:auto;
  height: 370px;
  overflow: hidden;
  }
  
  .execution-wrapper .execution-box h4{
  font-weight:600;
  margin-bottom:30px;
  font-size: 20px;
  }
  
  
  /* CARD */
  
  .execution-wrapper .execution-card{
  background:#fff;
  padding:20px;
  border-radius:14px;
  display:flex;
  gap:22px;
  align-items:center;
  margin:10px 0;
  box-shadow:0 3px 10px rgba(0,0,0,0.05);
  border: 1px solid #E2E5EA;
  }
  
  .execution-wrapper .execution-card h6{
  margin:0;
  font-weight:600;
  }
  
  .execution-wrapper .execution-card p{
  margin:0;
  font-size:14px;
  color: #82858B;
  font-weight: 300;
  }
  
  .execution-wrapper .icon{
  width:45px;
  height:45px;
  background:#f3f5fa;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  }


  /* about us animation section */

  .foundation-wrapper{
    background:#F3F5F7;
    padding:80px 0;
    position:relative;
    overflow:hidden;
  }
  
  /* background text */
  
  /* cards */
  
  .foundation-wrapper .foundation-card{
    background:#fff;
    border-radius:16px;
    padding:30px;
    border:1px solid #E2E5EA;
    transition:all .3s ease;
    height:100%;
  }

  /* icon */
  
  .foundation-wrapper .icon-box{
    width:50px;
    height:50px;
    border-radius:12px;
    background:#f4f6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
  }
  
  .foundation-wrapper h5{
    font-size:18px;
    font-weight:500;
    margin-bottom:10px;
  }
  
  .foundation-wrapper p{
    font-size:14px;
    color:#6c757d;
  }

  .foundation-wrapper .container{
    max-width: 1000px;
    margin: 0 auto;
  }

  .foundation-wrapper .card-width{
    max-width: 600px;
    float: right;
    position: relative;
    background: #F3F5F7;
  }

  .foundation-wrapper .foundation-bg-left{
    position:absolute;
    left:195px;
    top:50%;
    transform:translateY(-40%);
    font-size:104px;
    font-weight:700;
    color:#fff;
    transition:all .6s ease;
    pointer-events:none;
    line-height: normal;
  }
  
  .foundation-wrapper:hover .foundation-bg-left{
    left:-70px;
  }

  .foundation-wrapper .foundation-bg-right{
    position:absolute;
    right:308px;
    top:50%;
    transform:translateY(-40%);
    font-size:104px;
    font-weight:700;
    color:#fff;
    transition:all .6s ease;
    pointer-events:none;
    line-height: normal;
  }
  
  .foundation-wrapper:hover .foundation-bg-right{
    right:0px;
  }
  
  /* move LEFT */
  
  .foundation-section.move-left:hover .foundation-bg-text{
    transform:translateY(-40%) translateX(-250px);
  }
  
  /* move RIGHT */
  
  .foundation-section.move-right:hover .foundation-bg-text{
    transform:translateY(-20%) translateX(250px);
  }
  
  .mobile-heading{
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    text-align: center;
  }
  .mobile-heading br{
    display: none;
  }
  /* responsive */
  
  @media(max-width:768px){
  
  .foundation-wrapper .foundation-bg-text{
    font-size:70px;
    left:-60px;
  }
  .execution-wrapper .execution-box{
    padding: 40px 10px;
  }
  .mobile-heading{
    font-weight: 700;
  }

  .execution-wrapper .execution-box{
    height: auto !important;
  }

  /* .foundation-wrapper p{
    padding: 2px 12px;
  } */
  .award-text p{
    font-size: 14px;
    font-size: 16px;
    font-weight: 400;
  }
  .foundation-wrapper .card-width{
    max-width: 100%;
  }
  .max-width-mb{
    max-width: 215px;
    margin: 0 auto;
  }
  .foundation-wrapper .sub-heading{
    margin: 0px 12px;
  }
  
  }

  .faq-section .container{
    max-width: 832px;
    margin: 0 auto;
  }

  .faq-section{
    background:#fff;
    padding: 80px 0 !important;
    position: relative;
    }
    .faq-section .sub-heading{
      color: #82858B !important;
    }

    .faq-section::after{
    position: absolute;
    content: '';
    left: 50px;
    bottom: 110px;
    width: 170px;
    height: 170px;
    background-image: url("../../images/retail/pattern_blue.png");
    z-index: 0;
    }

    .faq-section::before{
      position: absolute;
      content: '';
      right: 24px;
      top: 110px;
      width: 170px;
      height: 170px;
      background-image: url("../../images/retail/pattern_blue.png");
      z-index: 0;
      }

      @media(max-width:768px){
        .faq-section::before{
          display: none;
        }
        .faq-section::after{
          display: none;
        }
      }
    
    .custom-faq .accordion-item{
    border:none;
    margin-bottom:24px;
    border-radius:10px;
    overflow:hidden;
    }
    
    .custom-faq .accordion-button{
    background:#F3F5F7;
    font-weight:500;
    border-left:4px solid #1f3c88;
    box-shadow:none;
    }
    
    .custom-faq .accordion-button:not(.collapsed){
    background:#F3F5F7;
    color:#000;
    font-weight: 600;
    }
    
    .custom-faq .accordion-body{
      color: #6c757d;
      padding-top: 0;
      background: #F3F5F7;
      font-weight: 300;
      border-left: 4px solid #1f3c88;
      box-shadow: none;
    }
    .custom-faq .accordion-body li{
      margin-left: 20px;
    }
    
    .custom-faq .accordion-button:focus{
    box-shadow:none;
    }

/* ----contact us---- */
.support-section{
  padding:60px 0;
}

.support-section .container{
  max-width: 1020px;
  margin: 0 auto;
}

.support-card{
  background:#fff;
  border:1px solid #e6e6e6;
  border-radius:14px;
  padding:35px 30px;
  height:100%;
  transition:0.3s;
}

.support-card:hover{
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.support-img{
  background:#eef1f7;
  border-radius:12px;
  padding:30px;
  margin-bottom:25px;
}


.support-card h4{
  font-size:20px;
  font-weight:600;
  margin-bottom:10px;
}

.support-card p{
  color:#82858B;
  font-size:14px;
  margin-bottom:18px;
  font-weight:400;
}

.support-email{
  color:#000;
  font-weight:500;
  text-decoration:underline;
}

.support-btn{
  display:inline-block;
  background:#2f4ea2;
  color:#fff;
  padding:10px 24px;
  border-radius:8px;
  text-decoration:none;
  font-weight:400;
}

.support-btn:hover{
  background:#1d4ed8;
  color:#fff;
}

  /* footer */

  .footer {
    background: #050505;
    font-family: var(--font-primary);
    padding-bottom: 80px;
    position: relative;
  }

  .footer::after{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 0.4px;
    background: linear-gradient(90deg, #000000, #ffffff, #000000);
    z-index: 1;
  }

  .footer-menu {
    padding: 40px 0px;
  }
  .footer-wrapper {
    padding-top: 32px;
  }
  
  .footer-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  
  .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-list a{
    color: #EBF0F5;
  }
  
  .footer-list li {
    font-size: 14px;
    margin-bottom: 12px;
    color: #EBF0F5;
    cursor: pointer;
  }
  .hr-line{
    border-bottom: 0.5px solid var(--lines-dividers-color-primary, #3F444D);
  }
  
  .icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #121212;
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-col {
    margin-bottom: 32px;
  }
  
  .footer-col p{
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-primary);
  }
  
  .footer-title {
    font-size: 20px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: #ffffff;
  }
  .bottom-content {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: #B5C3D3;
    margin-bottom: 40px;
  }
  .desclamer-wrapper span{
    font-size: 12px;
    font-weight: 600;
    color: #B5C3D3;
    font-family: var(--font-primary);
  }
  .desclamer-wrapper p{
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: 400;
    color: #B5C3D3;
    font-family: var(--font-primary);
  }
  .version-wrapper h6{
    font-size: 14px;
    font-weight: 500;
    color: #B5C3D3;
  }
  .version-wrapper span{
    font-size: 12px;
    font-weight: 400;
    color: #B5C3D3;
  }
  .footer-social-icon {
    gap: 16px;
  }
  

  
  @media (max-width: 768px) {
  .footer-menu {
    padding: 0px;
  }
  .footer {
    padding-bottom: 40px;
  }
  .footer::after{
    width: 100%;
  }
  }
  
  @media (min-width: 767px) and (max-width: 992px){
  .footer-menu {
    padding: 0px;
  }
  .trust-box {
    width: 38% !important;
}
  }
  
  @media (max-width: 1100px) {
  .footer-social-icon {
    gap: 8px;
  }
  }
  
  /* Mobile accordion footer only */
  .footer-menu .accordion-item {
    background-color: #000;
    border: none;
    border-bottom: 1px solid #222;
  }
  
  .footer-menu .accordion-button {
    background-color: var(--color-text-secondary);
    color: #B5C3D3;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 12px 0;
    box-shadow: none;
    transition: background-color 0.3s ease-out, color 0.3s ease-out;
  }
  
  .footer-menu .accordion-button:not(.collapsed) {
    background-color: var(--color-text-secondary);
    color: #B5C3D3;
  }
  
  .footer-menu .accordion-button::after {
    filter: invert(1);
    transition: transform 0.3s ease-out;
  }
  
  .footer-menu .accordion-body {
    background-color: var(--color-text-secondary);
    color: #B5C3D3;
    padding: 10px 0;   
  }
  


  /* -------Campaign Css ------ */
 
    /* ================================
    BANNER SECTION
    ================================ */
    
    .deposit-bonus-wrapper .bonus-banner{
    background: linear-gradient(98.13deg, #26408B -7.53%, #000000 52.27%);
    color:#fff;
    padding:90px 0 0px;
    position:relative;
    overflow:hidden;
    min-height: 475px;
    }
    
    .deposit-bonus-wrapper .bonus-banner h1{
    font-size:56px;
    font-weight:600;
    line-height:1.25;
    max-width:100%;
    position: relative;
    z-index: 1;
    }
    .deposit-bonus-wrapper .bonus-banner h1 span{
      font-weight: 300;
    }
 
    .deposit-bonus-wrapper .bonus-banner::after{
      position: absolute;
      content: '';
      left: 0;
      top: 0;
      background-image: url('../../images/retail/banner-light.png');
      background-repeat: no-repeat;
      width: 340px;
      height: 340px;
      opacity: 0.6;
    }

    .deposit-bonus-wrapper .bonus-sub{
    margin-top:18px;
    opacity:.9;
    font-size:24px;
    font-weight: 300;
    }
    .deposit-bonus-wrapper .bonus-sub span{
      font-weight: 500;
    }
    
    .deposit-bonus-wrapper .bonus-date{
    font-size:14px;
    opacity:.8;
    margin-top:10px;
    color: #C8CCD2;
    display: flex;
    gap: 10px;
    align-items: center;
    }
    
    .deposit-bonus-wrapper .bonus-start-btn{
    margin-top:20px;
    background:#fff;
    border:none;
    padding:10px 22px;
    border-radius:6px;
    font-weight:500;
    display: inline-block;
    z-index: 9;
    position: relative;
    color: #000;
    transition: 0.4s;
    }
    .deposit-bonus-wrapper .bonus-start-btn:hover{
      background: #1d4ed8;
      color: #fff;
      transition: 0.4s;
    }
    
    .deposit-bonus-wrapper .bonus-hero-img{
    position:absolute;
    right: 0;
    bottom: 0;
    top: 0;
    }

       
    @media (min-width:1599px){
      .deposit-bonus-wrapper .bonus-hero-img{
        width: 100%;
        position: relative;
        }
        
        .deposit-bonus-wrapper .bonus-banner{
          padding: 0;
        }
        .deposit-bonus-wrapper .bonus-banner{
          background: linear-gradient(98.13deg, #26408B -0.53%, #000000 30.27%);
        }
    
    }
   

   
   /* Reset for screens below 1600px */
      @media (max-width: 1599px) {
        .bonus-row-custom .col-xxl-6 {
          width: 74%;
        }
      }

      /* Apply xxl layout only after 1600px */
      @media (min-width: 1600px) {
        .bonus-row-custom .col-xxl-6 {
          width: 50%;
        }
      }
      @media (max-width: 1399px){
        .deposit-bonus-wrapper .bonus-banner h1{
          font-size: 42px;
        }
      }

      @media (max-width: 1199px){
        .deposit-bonus-wrapper .bonus-banner{
          background: linear-gradient(293deg, #26408B -7.53%, #000000 52.27%);
        }
        .deposit-bonus-wrapper .bonus-sub, .deposit-bonus-wrapper .bonus-date{
          z-index: 1;
          position: relative;
        }
        
       
      }

  

      @media (max-width: 991px) {
        .bonus-row-custom .col-xxl-6 {
          width: 100%;
        }
      }

      
    
    /* ================================
    COUNTDOWN CARD
    ================================ */
    
    .deposit-bonus-wrapper .bonus-countdown-wrapper{
      margin-top: -244px;
      text-align: center;
      position: relative;
    }
    
    .deposit-bonus-wrapper .bonus-launch-text{
    font-size:16px;
    letter-spacing:2px;
    color: #dee0e3;
    margin-bottom:10px;
    }
    
    .deposit-bonus-wrapper .bonus-countdown{
    background:#2f4aa1;
    border-radius:14px;
    padding:30px 40px;
    max-width:600px;
    margin:auto;
    box-shadow:0 12px 35px rgba(0,0,0,0.15);
    }
    
    .deposit-bonus-wrapper .count-number{
      font-size: 36px;
      font-weight: 700;
      color: #fff;
      background: #1D3782;
      width: 80px;
      height: 80px;
      margin: 0 auto;
      border-radius: 8px;
      display: flex;
      align-items: center;     
      justify-content: center;  
    }
    .bonus-countdown .col {
      position: relative;
  }
  
  .bonus-countdown .col:not(:last-child)::after {
      content: ":";
      position: absolute;
      right: -2px;
      top: 35%;
      transform: translateY(-50%);
      font-size: 28px;
      font-weight: 600;
      color: #fff;
  }
    
    .deposit-bonus-wrapper .count-label{
      font-size: 20px;
      color: #d6dcff;
      margin-top: 5px;
      font-weight: 300;
      opacity: 0.6;
    }
    
    
    /* ================================
    PROGRESS SECTION
    ================================ */
    
    .deposit-bonus-wrapper .bonus-progress-section{
      background: linear-gradient(3.85deg, #FFFFFF 2.84%, #F9FAFA 49.69%, #D8E9FF 96.55%);
    padding:120px 0 80px;
    }
    
    
    /* ================================
    STEPS PROGRESS BAR
    ================================ */
    .deposit-bonus-wrapper .bonus-steps{
      margin-top:70px;
      }
      
      .deposit-bonus-wrapper .steps-wrapper{
      position:relative;
      display:flex;
      justify-content:space-between;
      max-width:1000px;
      margin:auto;
      }
      
      /* progress line */
      
      .deposit-bonus-wrapper .steps-wrapper::before{
      content:"";
      position:absolute;
      top:20px;
      left:16%;
      right:16%;
      height:1px;
      background:#26408B;
      z-index:0;
      }
      
      /* step */
      
      .deposit-bonus-wrapper .step-item{
      text-align:center;
      position:relative;
      z-index:2;
      flex:1;
      }
      
      /* circle */
      
      .deposit-bonus-wrapper .step-circle{
      width:40px;
      height:40px;
      background:#000;
      color:#fff;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      margin:auto;
      font-size:14px;
      font-weight:600;
      }
      
      /* text */
      
      .deposit-bonus-wrapper .step-item p{
      margin-top:14px;
      font-size:20px;
      color:#000;
      font-weight: 300;
      }
    
    /* ================================
    FEATURE CARDS
    ================================ */
    
    .deposit-bonus-wrapper .bonus-features{
    margin-top:40px;
    }
    
    .deposit-bonus-wrapper .feature-card{
    background:#fff;
    border-radius:16px;
    padding:28px 24px;
    text-align:center;
    border:1px solid #e4e7ec;
    transition:.25s ease;
    height:100%;
    }
    
    .deposit-bonus-wrapper .feature-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,0.06);
    }
    
    .deposit-bonus-wrapper .feature-card h5{
    font-size:20px;
    font-weight:600;
    margin-bottom:4px;
    }
    
    .deposit-bonus-wrapper .feature-card p{
      font-size: 20px;
      color: #000000;
      font-weight: 300;
    }
    
    .deposit-bonus-wrapper .feature-card img{
    margin-top:18px;
    }
    
    
    /* ================================
    CTA BUTTONS
    ================================ */
    
    .deposit-bonus-wrapper .bonus-cta{
    margin-top:40px;
    }
    
    .deposit-bonus-wrapper .btn-sign{
    border:1px solid #d5d7dc;
    background:#fff;
    padding:12px 26px;
    border-radius:8px;
    font-weight:500;
    margin-right:10px;
    color: #000;
    }
    .deposit-bonus-wrapper .btn-sign:hover{
      background-color: #eee;
    }
    
    .deposit-bonus-wrapper .btn-league{
    background:#2f4aa1;
    color:#fff;
    padding:12px 28px;
    border:none;
    border-radius:8px;
    font-weight:500;
    }
    
    

    
    /* ================================
    RESPONSIVE
    ================================ */

    
    @media (max-width:992px){
    
    .deposit-bonus-wrapper .bonus-banner h1{
    font-size:36px;
    }

    .deposit-bonus-wrapper .bonus-hero-img{
      display:block;
      }
      .deposit-bonus-wrapper .bonus-hero-img{
        position: relative;
        width: 100%;
      }
      .deposit-bonus-wrapper .bonus-banner{
        background: linear-gradient(178deg, #26408B -7.53%, #000000 52.27%);
      }
    
    }

    @media (max-width:768px){
    
    .deposit-bonus-wrapper .steps-wrapper{
    flex-direction:row;
    gap:30px;
    }

    .deposit-bonus-wrapper .step-item p{
      font-size: 14px;
    }
    .deposit-bonus-wrapper .step-circle{
      width: 32px;
      height: 32px;
    }
    .deposit-bonus-wrapper .steps-wrapper::before{
      top: 15px;
    }
    .deposit-bonus-wrapper .btn-sign{
      margin-right: 0;
      width: 250px;
      display: block;
      margin-bottom: 15px;
      margin: 0 auto;
    }
    .deposit-bonus-wrapper .btn-league{
      width: 250px;
      display: block;
      margin: 0 auto;
      margin-top: 20px;
    }
  
    .deposit-bonus-wrapper .bonus-progress-section{
      padding: 120px 0 50px;
    }
    
    .deposit-bonus-wrapper .progress-line{
    display:none;
    }
    .deposit-bonus-wrapper .count-label{
      font-size: 10px;
    }
    
    .deposit-bonus-wrapper .step-item{
    width:100%;
    }
    
    .deposit-bonus-wrapper .count-number{
    font-size:26px;
    font-weight: 400;
    width: 40px;
    height: 40px;
    }
    
    .deposit-bonus-wrapper .bonus-countdown{
    padding:25px;
    }

    .deposit-bonus-wrapper .feature-card img{
      width: 100px;
      margin-top: 0;
    }
    .deposit-bonus-wrapper .feature-card{
      padding: 15px 10px 10px;
    }
    .deposit-bonus-wrapper .feature-card p{
      font-size: 16px;
    }
    .deposit-bonus-wrapper .feature-card h5{
      font-size: 16px;
    }
    .deposit-bonus-wrapper .bonus-features{
      margin-top: 0px;
    }
    .deposit-bonus-wrapper .bonus-steps{
      margin-top: 50px;
    }
    
    }
    
    @media (max-width:576px){
    
    .deposit-bonus-wrapper .bonus-banner{
    padding:70px 0 0px;
    }
    
    .deposit-bonus-wrapper .bonus-banner h1{
    font-size:42px;
    }
    .deposit-bonus-wrapper .bonus-sub{
      font-size:20px;
    }
    .deposit-bonus-wrapper .bonus-countdown-wrapper{
      margin-top: -200px;
    }
    .deposit-bonus-wrapper .bonus-launch-text{
      font-size: 10px;
    }
    
    }


/* trading Leaderboard css */
.leaderboard-wrapper {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 50%, #F3F5F7 100%);

}

/* Tabs */
.leaderboard-wrapper .leaderboard-tabs {
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

.leaderboard-wrapper .nav-link {
  color: #AEB1B7;
  font-weight: 400;
  border: none;
  padding: 12px 97px;
  font-size: 24px;
}

.leaderboard-wrapper .nav-link.active {
  color: #000;
  border-bottom: 2px solid #26408B;
}

/* Reward */
.leaderboard-wrapper .reward-box {
  text-align: center;
  margin-bottom: 30px;
}
.leaderboard-wrapper .reward-box p span{
  font-weight:600 ;
}
.top-trader-weight{
  font-weight: 300;
    background: transparent !important;
    color: #fff !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin-left: 0 !important;
}

.leaderboard-wrapper .reward-box img{
  max-width: 122px;
}

.leaderboard-wrapper .reward-box p{
  font-weight: 400;
}
.leaderboard-wrapper .reward-box p span{
  font-weight: 600;
}

.leaderboard-wrapper .reward-amount {
  font-size: 40px;
  font-weight: 800;
  color: #26408B;
  display: flex;
  align-items: center;
}
.leaderboard-wrapper .reward-amount span{
  font-size: 27px;
  font-weight: 600;
  padding-right: 6px;
}

.leaderboard-wrapper .reward-text {
  color: #9aa0a6;
  font-size: 14px;
}

/* Card */
.leaderboard-wrapper .trader-card {
  max-width: 600px;
  margin: auto;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #E2E5EA;
}

.leaderboard-wrapper .trader-header {
  background: #26408B;
  color: #fff;
  padding: 16px;
  text-align: center;
  font-weight: 600;
}

.leaderboard-wrapper .trader-header span {
  background: linear-gradient(90deg, #E7AD38 2.39%, #F9F295 45%, #E7AD38 93.5%);
  color: #824600;
  font-size: 12px;
  padding:8px 16px;
  border-radius: 6px;
  margin-left: 6px;
  font-size: 16px;
}

.leaderboard-wrapper #silver .trader-header span {
  background: linear-gradient(90deg, #BCC9D9 2.39%, #E4F0FB 45%, #BCC9D9 93.5%);
  color: #5F666C;
}
.leaderboard-wrapper #bronze .trader-header  span{
  background: linear-gradient(90deg, #E5C5A1 2.39%, #F9F1E9 45%, #E5C5A1 93.5%);
  color:#7B6348;
}

/* Table */


.leaderboard-wrapper .trader-table td,
.leaderboard-wrapper .trader-table th {
  padding: 14px 12px;
  font-weight: 500;
  vertical-align: middle;
}

.leaderboard-wrapper .trader-table th {
  font-size: 12px;
  color: #82858B;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0px;
}

/* .leaderboard-wrapper .trader-table {
  table-layout: fixed;
  width: 100%;
} */

.leaderboard-wrapper .trader-table th:nth-child(1),
.leaderboard-wrapper .trader-table td:nth-child(1) {
  width: 160px;
  text-align: center;
}

.leaderboard-wrapper .trader-table th:nth-child(2),
.leaderboard-wrapper .trader-table td:nth-child(2) {
  width: auto;
  padding-left: 0;
}

.leaderboard-wrapper .trader-table th:nth-child(3),
.leaderboard-wrapper .trader-table td:nth-child(3) {
  width: auto;
  text-align: center !important;
}
.leaderboard-wrapper .trader-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Ensure text aligns exactly under header */
.leaderboard-wrapper .trader-table td:nth-child(2) {
  padding-left: 0;
}

.leaderboard-wrapper .trader-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.leaderboard-wrapper .trader-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.leaderboard-wrapper .leaderboard-footer {
  text-align: center;
  font-size: 13px;
  color: #9aa0a6;
  margin-top: 20px;
}

/* Scrollable Tabs */
.leaderboard-wrapper .leaderboard-tabs {
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  justify-content: space-around;
  flex-wrap: nowrap;             
  overflow-x: auto;              
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;        
}

/* Hide scrollbar (Chrome) */
.leaderboard-wrapper .leaderboard-tabs::-webkit-scrollbar {
  display: none;
}

/* Tab items spacing */
.leaderboard-wrapper .leaderboard-tabs .nav-item {
  flex: 0 0 auto;                 
}

/* Tab buttons */
.leaderboard-wrapper .leaderboard-tabs .nav-link {
  white-space: nowrap;
}

/* Enable smooth horizontal scroll */
.leaderboard-wrapper .custom-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar (optional clean UI) */
.leaderboard-wrapper .custom-table-scroll::-webkit-scrollbar {
  height: 6px;
}

.leaderboard-wrapper .custom-table-scroll::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

/* Prevent table from shrinking */
/* .leaderboard-wrapper .trader-table {
  min-width: 500px; 
} */

/* Responsive */
@media (max-width: 768px) {
  .leaderboard-wrapper .reward-amount {
      font-size: 26px;
  }

  .leaderboard-wrapper .trader-table th{
    padding: 16px 8px;
  }
  .leaderboard-wrapper .trader-info{
    text-align: left;
  }
  .leaderboard-wrapper .trader-info img{
    width: 32px;
    height: 32px;
  }
  .leaderboard-wrapper .nav-link{
    padding: 11px 18px;
    font-size: 16px;
  }
  /* .league-wrapper .row-top{
    width: 100% !important;
  } */
  .leaderboard-wrapper .trader-table td, .leaderboard-wrapper .trader-table th{
    text-align: center;
    width: auto !important;
  }
  .trader-table td{
    font-size: 14px;
  }
  .leaderboard-wrapper .reward-box p span{
    width: 100%;
    display: block;
  }
  .leaderboard-wrapper .trader-table td:nth-child(3) {
    padding: 20px;
  }
}
  /* end leader board css */


  /* ===== WRAPPER ===== */
.league-wrapper {
  background: url('../../images/retail/bg-league-highlights.jpg') no-repeat  bottom;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  bottom: 0;
  background-position: top;
}
.league-wrapper .container{
  max-width: 1022px;
  margin: 0 auto;
}

.league-wrapper::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 24px;
  width: 200px;
  height: 200px;
  background-image: url('../../images/outer-right.svg');
  z-index: 0;
  opacity: 0.5;
}


.league-wrapper .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.league-wrapper .section-title h2 {
  font-size: 36px;
  font-weight: 600;
}

.league-wrapper .section-title span {
  color: #2f4a92;
}

.league-wrapper .section-title p {
  color: #6c757d;
  margin-top: 10px;
}

/* ===== CARDS ===== */
.league-wrapper .highlight-card {
  background: linear-gradient(180deg, #26408B 0%, #041331 100%);

  color: #fff;
  border-radius: 16px;
  padding: 22px;
  height: 100%;
  transition: 0.3s ease;
}

.league-wrapper .highlight-card:hover {
  transform: translateY(-5px);
}

/* icon */
.league-wrapper .highlight-card img {
  width: 50px;
  margin-bottom: 15px;
}

/* heading */
.league-wrapper .highlight-card h5 {
  font-weight: 300;
  margin-bottom: 0px;
  font-size: 20px;
}

/* sub text */
.league-wrapper .highlight-card .sub-text {
  font-weight: 300;
  margin-bottom: 10px;
  font-size: 20px;
}

/* description */
.league-wrapper .highlight-card p {
  font-size: 15px;
 font-weight: 300;
  margin: 0;
}

/* special text (20%) */
.league-wrapper .highlight-card .highlight {
  font-size: 22px;
  font-weight: 700;
}






.mt-100 {
  margin-top: 100px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .league-wrapper .section-title h2 {
      font-size: 28px;
  }
}

@media (max-width: 768px) {
  .league-wrapper::before{
    display: none;
  }
  .league-wrapper {
      padding: 50px 0;
  }

  .league-wrapper::before {
      height: 50%;
      opacity: 0.2;
  }

  .league-wrapper .highlight-card {
      text-align: left;
  }
  .highlight-card .algin-left-mb{
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  .league-wrapper .highlight-card h5{
    font-weight: 500;
  }
}

.faq-section{
  background: linear-gradient(180deg, #F3F5F7 -17.91%, #FFFFFF 41.04%, #FFFFFF 100%);
}


/* ---------- */


  /* SECTION */
  .reward-wrapper {
    padding: 60px 20px;
  }
  
  /* TITLE */
  .section-title {
    text-align: center;
    margin-bottom: 50px;
  }
  .section-title h2 {
    font-weight: 600;
  }

  .section-title p {
    color: #000;
    font-size: 14px;
  }
  
  /* WRAPPER */
  .tier-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0px;
    flex-wrap: wrap;
  }
  
  /* COLUMN */
  .tier-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* CARD */
  .tier-card {
    width: 270px;
    border-radius: 16px;
    padding: 28px 20px 56px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 1;
  }
  
  /* TEXT */
  .tier-card h6 {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 16px;
  }
  .tier-wrapper .volume {
    font-size: 24px;
    font-weight: 500;
  }
  .tier-wrapper .label {
    font-size: 16px;
    color: #000;
    font-weight: 400;
  }
  .tier-wrapper hr {
    margin: 18px 0;
    color: #fff;
  }
  .tier-wrapper .reward {
    font-size: 40px;
    font-weight: 800;
  }
  
  /* SILVER */
  .silver {
    background: linear-gradient(90deg, #DDE3EA 2.39%, #FFFFFF 45%, #DDE3EA 93.5%);
    border: 1px solid #c3ccd6;
  }
  .silver h6,
  .silver .reward {
    color: #7f9bb3;
  }
  
  /* GOLD */
  .gold {
    background: linear-gradient(180deg, #f7d97f 0%, #e0a52b 100%);
    transform: translateY(-21px) scale(1.08); 
    z-index: 3;
    position: relative;
  }
  .gold::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(90deg, #E7AD38 2.39%, #F9F295 45%, #E7AD38 93.5%);
    border: 1px solid #DDB98B;
    z-index: -1;
  }
  .silver,
  .bronze {
    transform: scale(0.95);
  }
  
  
  .gold-base {
    margin-top: -20px; /* lift with card */
  }
  .tier-card {
    position: relative;
    overflow: hidden;
  }
  
  .tier-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
  }
  .gold h6,
  .gold .reward {
    color: #8c6a00;
  }
  
  /* BRONZE */
  .bronze {
    background: linear-gradient(90deg, #ECC49F 2.39%, #FFF8F0 45%, rgba(236, 196, 159, 0.8) 93.5%);
    border: 1px solid #C87223;
  }
  .bronze h6,
  .bronze .reward {
    color: #b86b2b;
  }
  
  /* BASE */
  .base {
    width: 350px;
    height: 120px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 0px;
    /* margin-left: -60px; */
    z-index: 0;
  }

  .first-card-reward{
    position: relative;
    left: 55px;
  }
  .last-card-reward{
    position: relative;
    right: 55px;
  }
  
  /* Replace with your images */
  .silver-base {
    background-image: url("../../images/retail/tiers.svg");
    top: -13px;
    position: relative;
  }
  
  .gold-base {
    background-image: url("../../images/retail/tiers_sliver.svg");
    margin-top: -30px;
    width: 374px;
    z-index: 2;
    position: relative;
    top: 15px;
  }
  
  .bronze-base {
    background-image: url("../../images/retail/tiers.svg");
    top: -13px;
    position: relative;
  }
  
  /* DETAILS */
  .tier-details {
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #E2E5EA;
    border-radius: 16px;
    padding: 24px 46px;
  }
  
  .tier-item {
    display: flex;
    gap: 20px;
    padding: 32px 0 32px;
    border-bottom: 1px solid #eee;
  }
  .tier-item:last-child {
    border-bottom: none;
  }

  .tier-item:nth-child(1) .tier-text p {
    max-width: 100%;
  }
  
  .tier-item:nth-child(2) .tier-text p {
    max-width: 500px;
  }
  
  .tier-item:nth-child(3) .tier-text p {
    max-width: 600px;
  }
  
  .badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
  }
  .badge-gold { background: linear-gradient(#f5d778, #e2a72e); }
  .badge-silver { background: linear-gradient(#e6ebf1, #cfd6dd); }
  .badge-bronze { background: linear-gradient(#f1d4b8, #e0b088); }
  
  .tier-text h5 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
  }
  .tier-text p {
    margin: 6px 0 0;
    font-size: 16px;
    color: #000;
    font-weight: 400;
  }

  .tier-text p:nth-of-type(2){
    max-width: 500px;
  }

  .tier-text p:nth-of-type(3) {
    max-width: 600px;
  }

  .tier-text p span{
    font-weight: 600;
  }

  /* FOOTNOTE */
  .reward-wrapper .note {
    text-align: center;
    font-size: 14px;
    color: #000;
    margin-top: 56px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 991px){
    .tier-wrapper {
      flex-direction: row !important;
      align-items: center;
    }
    .deposit-bonus-wrapper .bonus-countdown{
      max-width: 600px;
    }
  }

  
  /* MOBILE */
  @media (max-width: 768px) {

    .tier-text p span{
      font-weight: 400;
    }

    .deposit-bonus-wrapper .bonus-countdown{
      max-width: 400px;
    }
    .tier-wrapper {
      flex-direction: column;
      align-items: center;
    }
    .gold-base, .silver-base, .bronze-base{
      display: none;
    }
    .first-card-reward{
      left: 0px;
    }

      .tier-col {
        order: 2; /* default for all */
    }
    
    .tier-col.center {
        order: 1; /* this will come on top */
    }

    .last-card-reward{
      right: 0;
    }
    .silver, .bronze, .gold{
      transform: initial;
    }
    .tier-wrapper{
      gap: 26px;
    }
    .tier-card{
      box-shadow: none;
    }
    .tier-card{
      padding: 28px 20px 28px;
    }
    .tier-wrapper .reward{
      font-size: 36px;
    }
    .tier-wrapper .volume{
      font-size: 22px;
    }
    .tier-wrapper hr{
      margin: 6px 0;
    }
    .tier-card h6{
      font-size: 14px;
    }
    .tier-card{
      width: 280px;
    }
    .tier-details{
      padding: 24px 12px;
    }
    .tier-item img{
      width: 36px;
    }
    .tier-text h5{
      font-size: 20px;
    }
    .tier-text p{
      font-size: 14px;
    }
    .tier-item{
      padding: 18px 0 18px;
    }
    .reward-wrapper .note{
      margin-top: 30px;
    }
    .tier-details{
      margin-top: 40px;
    }
  }
 
  .foundation-animated .center-image img {
   max-width: 516px;
   position: relative;
   z-index: 1;
}
.foundation-animated .container{
  max-width: 1100px;
  margin: 0 auto;
}

.foundation-animated .center-image {
   position: relative;
   display: inline-block;
}

.foundation-animated .center-image::after {
   position: absolute;
   content: '';
   bottom: 0;
   left: 0;
   width: 100%;
   height: 200px;
   background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
   z-index: 2;
}

.foundation-animated .card-width {
   max-width: 600px;
   background: #F3F5F7;
   margin: 0 auto;
   text-align: center;
   margin: 60px 0px 60px auto;
}

.foundation-animated .card-width {
   float: none;
   position: relative;
   background: transparent;
}


.foundation-animated .foundation-bg-left {
   color: #F2F7FE;
}

.foundation-animated .foundation-bg-right {
   color: #F2F7FE;
}

.foundation-animated:hover .foundation-bg-left {
   left: -80px;
   font-size: 90px;
}

.foundation-animated:hover .foundation-bg-right {
   right: -160px;
   font-size: 90px;
}

.foundation-animated .foundation-bg-left {
   left: 0;
}

.foundation-animated .foundation-bg-right {
   right: 0;
   margin-top: 100px;
}


/* 1. banner */

/* banner strip start */

/* 1. banner */

/* banner strip start */

  .promo-banner {
    position: relative;
    background: linear-gradient(90deg, #0b1d4d, #000);
    overflow: hidden;
  }
  
  /* LIGHT EFFECTS */
  .promo-banner::before,
  .promo-banner::after {
    content: "";
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
  }
  
  .promo-banner::before {
    left: 0;
    background-image: url("../../images/retail/before-light.svg");
    opacity: 0.6;
  }
  
  .promo-banner::after {
    right: -22px;
    opacity: 0.6;
    background-image: url("../../images/retail/after-light.svg");
  }
  
  /* INNER LAYOUT */

  .banner-inner.container{
    max-width: 1500px;
    margin: 0 auto;
  }
  .banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 16px;
    padding: 0px 22px;
    justify-content: space-between;
  }
  
  /* LEFT */
  .banner-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-style: italic;
    flex-wrap: wrap;
  }
  .banner-left h2{
    font-size: 37px;
    margin-bottom: 0;
  }

  
  .banner-left .brand {
    -webkit-text-stroke: 1.2px #ffffff;
    font-family: system-ui;
    font-weight: 900;
    color: transparent;
    letter-spacing: 2px;
  }
  
  .banner-left .title {
    font-weight: 900;
    color: #fff;
  }
  
  /* CENTER */
  .banner-center img {
    width: 290px;
  }
  
  /* RIGHT */
  .banner-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .promo-banner .banner-center{
    display: flex;
    align-items: center;
  }

  
 .subtitle {
    font-size: 27px;
    background: linear-gradient(91.26deg, #d8f7ff -0.65%, #FFFFFF 26.91%, #FFFFFF 65.74%, #b0efff 100%);
    
    -webkit-background-clip: text;   /* 🔥 REQUIRED */
    -webkit-text-fill-color: transparent; /* 🔥 REQUIRED */

    background-clip: text; /* fallback */

    font-weight: 900;
    margin-right: 30px;
}
  .banner-right .btn img{
    filter: grayscale(1);
  }
  
  .banner-left .league-title {
    background: linear-gradient(91.26deg, #d8f7ff -0.65%, #FFFFFF 26.91%, #FFFFFF 65.74%, #b0efff 100%);
    border: 0.5px solid;
    border-image-source: linear-gradient(90deg, #2a9ae800 0%, #185682 100%);
    text-shadow: 0 0 0px rgb(255 255 255 / 60%), 0 0 16px rgb(80 170 255 / 15%), 0 0 24px rgb(50 140 255 / 64%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 900;
  }
  
  .banner-right .btn {
    background: #fff;
    color: #000;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
  }
  
  .banner-right .btn:hover {
    background: #ddd;
  }
  
  /* 📱 RESPONSIVE */
  @media (max-width: 1399px){
    .subtitle{
      font-size: 20px;
    }
  }

  @media (max-width: 1299px){
    .banner-inner.container{
      padding: 24px 16px;
    }
    .banner-left h2{
      font-size: 28px;
    }
    .banner-right .subtitle{
      font-size: 22px;
      margin-right: 0;
    }
    .banner-center img{
      width: 160px;
    }
    .subtitle{
      font-size: 16px;
    }
  }

  @media (max-width: 992px) {
   
    .promo-banner::before, .promo-banner::after{
      display: none
    }
    .promo-banner{
      background: linear-gradient(90deg, #000000, #000);
    }
    .banner-left h2{
      font-size: 22px;
    }
    .banner-right .subtitle{
      font-size: 16px;
      margin-right: 0;
    }
    .banner-inner.container{
      padding: 0px 16px;
      background: linear-gradient(98deg, #26408B 8.18%, #010101 36.82%);
    }
  
    .banner-right .btn{
      padding: 0;
      background: transparent;
    }
    .promo-banner .banner-center{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
    }
    
   
  }
  
  @media (max-width: 767px) {
    .banner-inner.container{
      padding: 0px 10px 10px;
      background: linear-gradient(98deg, #26408B 8.18%, #010101 36.82%);
    }
    .banner-center img{
      width: 130px;
    }
    .banner-left h2{
      font-size: 18px;
    }
    .banner-right .subtitle{
      font-size: 14px;
    }
    .banner-right .btn{
      padding: 0;
      background: transparent;
    }
   
    .league-title{
      font-size: 18px;
    }
     .subtitle {
      font-size: 14px;
      background: linear-gradient(91.26deg, #d8f7ff -0.65%, #FFFFFF 26.91%, #FFFFFF 65.74%, #b0efff 100%);
      -webkit-background-clip: text;   
      -webkit-text-fill-color: transparent; 
      background-clip: text; 
      font-weight: 900;
      text-align: center;
      margin-right: 0;
  }
  .banner-inner{
    gap: 20px;
  }

  }

  /* ------end----- */


  /* ------Partner-banner */

  .parterns-banner .banner-desciption{
    max-width: 870px;
  }
  .partners-wrap{
    background: #F3F5F7;
  }

  .partners-wrap .execution-box{
  background: transparent;
    }

    .copy-wrapper-partner .copy-wrapper{
      max-width: 1230px;
    }
    .copy-wrapper-partner  .copy-card{
    padding: 26px 26px;
    border: 1px solid var(--border-border-border, #E2E5EA);
    background: #fff;
    border-radius: 100px;
    position: relative;
    z-index: 1;
    }
    .copy-wrapper-partner .copy-card h3{
      color: #000;
    }
    .copy-wrapper-partner .second-row{
      max-width: 822px;
      margin: auto auto 32px auto;
    }
    .copy-wrapper-partner {
      position: relative;
    }
    .section-heading{
      margin-bottom: 80px;
    }
    
    .copy-wrapper-partner::after {
      content: 'IB BENEFITS';   
      position: absolute;
      top: -150px;
      left: 0;                  
      width: 100%;
      height: 100%;
      display: flex;           
      align-items: center;
      justify-content: center;
      font-size: 88px;
      color: #F2F7FE;
      font-weight: 600;
    }
    .bg-text-partner::after {
      content: 'IB BENEFITS' !important;   
      position: absolute;
      top: -175px !important;
      left: 0;                  
      width: 100%;
      height: 100%;
      display: flex;           
      align-items: center;
      justify-content: center;
      font-size: 88px;
      color: #F2F7FE;
      font-weight: 600;
    }


    .copy-wrapper-partner .copy-row.second-third{
      max-width: 500px;
      margin: auto auto 26px auto;
    }
    .copy-wrapper-partner .copy-row.second-third .copy-card{
      background: #26408B;
      min-height: 128px;
    }

    .copy-wrapper-partner .copy-row.second-third .copy-card h3{
      color: #fff;
    } 

    .copy-wrapper-partner .copy-row.second-third  .copy-card p{
      color: #FFF;
    }

    .custom-center{
      display: flex;
      align-items: center;
      justify-content: space-between; 
    }


    .copy-wrapper-partner .copy-row.second-third {
      position: relative;
    }
    
    .copy-wrapper-partner .copy-row.second-third::after {
      content: "★ Top Value";
      position: absolute;
      top: -12px;
      right: 20px;
      background: linear-gradient(90deg, #E7AD38 2.39%, #F9F295 45%, #E7AD38 93.5%);
      color: #824600;
      font-size: 14px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      white-space: nowrap;
      z-index: 9;
    }


    .partner-cta-section {
      padding: 80px 0;
      background: #f5f7fb;
    }
    
    /* TITLE */
    .partner-cta-section .partner-title {
      font-size: 36px;
      font-weight: 600;
      color: #1c1c1c;
    }
    
    .partner-cta-section .partner-title span {
      color: #3b5ccc;
    }
    
    /* CTA BOX */
    .partner-cta-section .partner-box {
      background: #fff;
      border-radius: 20px;
      padding: 40px 50px;
      max-width: 850px;
      margin: 0 auto;
      z-index: 1;
      position: relative;
    }

    .partner-cta-section .section-heading{
      position: relative;
    }

    .partner-cta-section .section-heading::after{
      content:"";
      position:absolute;
      top:0;
      left:50px;
      width:200px;    
      height:200px;  
      background-image:url("../../images/retail/plan-parten-bg.svg");
      background-repeat:no-repeat;
      background-size:contain;
      pointer-events:none;
      opacity: 0.8;
    }

    .partner-subtext{
      position: relative;
    }

    .partner-subtext::after{
      content: "";
      position: absolute;
      top: -150px;
      right: -100px;
      width: 200px;
      height: 200px;
      background-image: url("../../images/retail/plan-parten-bg.svg");
      background-repeat: no-repeat;
      background-size: contain;
      pointer-events: none;
      opacity: 0.8;
    }
    
    /* IMAGE */
    .partner-cta-section .partner-image img {
      max-width: 220px;
    }
    
    /* CONTENT */
    .partner-cta-section .partner-content {
      max-width: 480px;
    }
    
    .partner-cta-section .partner-content p {
      font-size: 16px;
      color: #555;
      margin-bottom: 20px;
      text-align: center;
    }
    
    /* BUTTON */
    .partner-cta-section .partner-btn {
      display: inline-block;
      background: #26408B;
      color: #fff;
      padding: 12px 26px;
      border-radius: 8px;
      font-weight: 500;
      text-decoration: none;
      transition: 0.3s;
    }
    
    .partner-cta-section .partner-btn:hover {
      background: #2f4ab5;
    }
    
    /* SUBTEXT */
    .partner-cta-section .partner-subtext {
      margin: 40px 0;
      font-size: 18px;
      color: #333;
    }
    
    /* CARDS */
    .partner-cta-section .partner-card {
      background: #fff;
      border-radius: 16px;
      padding: 16px;
      height: 100%;
      transition: 0.3s;
      box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    }
    
    .partner-cta-section .partner-card img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 15px;
    }
    
    .partner-cta-section .partner-card h6 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 18px;
    }
    
    .partner-cta-section .partner-card p {
      font-size: 14px;
      color: #666;
      margin-bottom: 0;
    }
    
    /* HOVER */
    .partner-cta-section .partner-card:hover {
      transform: translateY(-5px);
    }

    .sub-banner-title{
      font-size: 32px !important;
    }
    
    /* RESPONSIVE */
    @media (max-width: 991px) {
      .partner-cta-section .partner-box {
        text-align: center;
        padding: 30px;

      }
      .bg-text-partner::after{
        display: none;
      }
    
      .partner-cta-section .partner-content {
        max-width: 100%;
      }
      .copy-wrapper-partner::after{
        display: none;
      }
      .partner-cta-section .section-heading::after{
        display: none;
      }
      .partner-cta-section .partner-card{
        padding: 16px 16px 16px 16px !important;
      }
  
      .partner-cta-section .partner-card p{
        margin-top: 0 !important;
      }
      .sub-banner-title{
        font-size: 24px !important;
      }
      .partners-wrap{
        padding-top: 40px !important;
      }
      .partner-subtext::after{
       display: none;
      }
      .copy-wrapper .copy-card h3{
        font-size: 16px;
      }
      .copy-wrapper-partner .copy-card{
        padding: 26px 10px;
      }
    }
    
    @media (max-width: 576px) {
      .copy-wrapper-partner::after{
        font-size: 56px;
        align-items: normal;
        justify-content: center;
        top: 160px !important;
        display: block;
        text-align: center;
      }
      .parterns-banner .button-wrap{
        gap: 10px !important;
        display: flex !important;
        flex-wrap: wrap;
      }


      .partner-cta-section .partner-title {
        font-size: 26px;
      }
      .copy-wrapper-partner .copy-row.second-third::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
      }
      .copy-wrapper-partner .copy-row.second-third .copy-card img{
        display: none;
      }
      .copy-wrapper-partner .copy-row.second-third .copy-card{
        background: #26408B;
        padding: 21px 24px;
        text-align: center;
      }
      .copy-wrapper-partner .copy-row.second-third .copy-card h3{
        padding-top: 16px;
      }
      .copy-wrapper-partner .copy-card.rotate .icon{
        display: block;
      }
      .copy-wrapper-partner .copy-card.rotate .icon.bg-transparent{
        display: none;
      }

    }

    .partner-cta-section {
      padding: 80px 0 60px;
      background: #f5f7fb;
    }
    
    /* TITLE */
    .partner-cta-section .partner-title {
      font-size: 36px;
      font-weight: 600;
      color: #1c1c1c;
    }
    
    .partner-cta-section .partner-title span {
      color: #3b5ccc;
    }
    
    /* CTA BOX */
    .partner-cta-section .partner-box {
      background: #fff;
      border-radius: 20px;
      padding: 40px 50px;
      border: 1px solid #E2E5EA;
    }
    
    /* IMAGE */
    .partner-cta-section .partner-image img {
      max-width: 220px;
    }
    
    /* CONTENT */
    .partner-cta-section .partner-content {
      max-width: 480px;
    }
    
    .partner-cta-section .partner-content p {
      font-size: 16px;
      color: #555;
      margin-bottom: 20px;
    }
    
    /* BUTTON */
    .partner-cta-section .partner-btn {
      display: inline-block;
      background: #26408B;
      color: #fff;
      padding: 12px 26px;
      border-radius: 8px;
      font-weight: 500;
      text-decoration: none;
      transition: 0.3s;
    }
    
    .partner-cta-section .partner-btn:hover {
      background: #2f4ab5;
    }
    
    /* SUBTEXT */
    .partner-cta-section .partner-subtext {
      margin: 40px 0;
      font-size: 20px;
      color: #333;
      font-weight: 300;
    }
    
    .partner-cta-section .partner-subtext span {
     font-weight: 600;
    }
    /* CARDS */
    .partner-cta-section .partner-card {
      background: #fff;
      border-radius: 16px;
      padding: 16px 16px 20px 16px;
      height: 100%;
      transition: 0.3s;
      border: 1px solid #E2E5EA;
    }
    
    .partner-cta-section .partner-card img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 15px;
    }
    
    .partner-cta-section .partner-card h6 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    
    .partner-cta-section .partner-card p {
      font-size: 14px;
      color: #82858B;
      font-weight: 300;
      margin-top: 22px;
    }
    
    /* HOVER */
    .partner-cta-section .partner-card:hover {
      transform: translateY(-5px);
    }
    
    /* RESPONSIVE */
    @media (max-width: 991px) {
      .partner-cta-section .partner-box {
        text-align: center;
        padding: 30px;
      }
    
      .partner-cta-section .partner-content {
        max-width: 100%;
      }
    }
    
    @media (max-width: 576px) {
      .partner-cta-section .partner-title {
        font-size: 26px;
      }
    }

  /* Contact us Section */
  .contact-enquiry-wrapper {
    background: #fff;
    position: relative;
    margin-bottom: 70px;
  }

  .contact-enquiry-wrapper::before{
    content:"";
    position:absolute;
    top:100px;
    left:0px;
    width:200px;    
    height:200px;  
    background-image:url("../../images/retail/plan-parten-bg.svg");
    background-repeat:no-repeat;
    background-size:contain;
    pointer-events:none;
    opacity: 0.8;
  }
  .contact-enquiry-wrapper::after{
    content:"";
    position:absolute;
    bottom:100px;
    right:0px;
    width:200px;    
    height:200px;  
    background-image:url("../../images/retail/plan-parten-bg.svg");
    background-repeat:no-repeat;
    background-size:contain;
    pointer-events:none;
    opacity: 0.8;
  }
  
  /* Heading */
  .contact-enquiry-wrapper .enquiry-heading h2 {
    font-size: 36px;
    font-weight: 500;
    color: #111827;
  }
  
  .contact-enquiry-wrapper .enquiry-heading span {
    color: #2563eb;
    font-weight: 600;
  }
  
  .contact-enquiry-wrapper .enquiry-heading p {
    color: #6b7280;
    font-size: 14px;
    margin-top: 6px;
  }
  
  /* Card */
  .contact-enquiry-wrapper .enquiry-card {
    max-width: 608px;
    margin: 30px auto 0;
    padding: 28px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  
  /* Labels */
  .contact-enquiry-wrapper label {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 6px;
    display: block;
  }

  .copy-wrapper-partner .copy-wrapper p{
    color: #000;
  }
  
  /* Inputs */
  .contact-enquiry-wrapper .form-control,
  .contact-enquiry-wrapper textarea {
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    background: #fff;
  }
  
  .contact-enquiry-wrapper textarea {
    height: 100px;
    resize: none;
  }
  
  /* Focus */
  .contact-enquiry-wrapper .form-control:focus,
  .contact-enquiry-wrapper textarea:focus {
    border-color: none;
    background: #fff;
    outline: none;
  }
    .contact-enquiry-wrapper .form-control::placeholder,
    .contact-enquiry-wrapper textarea::placeholder {
      color: #AEB1B7;
      opacity: 1;
      font-weight: 300;
    }

    .contact-enquiry-wrapper select.form-control {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 14px;
      padding-right: 36px; /* space for arrow */
    }

    .contact-enquiry-wrapper .required {
      color: #DC2626;
      margin-left: 2px;
    }
    .contact-enquiry-wrapper .form-control::-webkit-input-placeholder,
    .contact-enquiry-wrapper textarea::-webkit-input-placeholder {
      color: #AEB1B7;
    }

    .contact-enquiry-wrapper .form-control:-ms-input-placeholder,
    .contact-enquiry-wrapper textarea:-ms-input-placeholder {
      color: #AEB1B7;
    }
  
  /* Note box */
  .contact-enquiry-wrapper .enquiry-note {
    background: #D4E2FD;
    border: 1px solid #74A0FA;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #000;
  }
  
  /* Button */
  .contact-enquiry-wrapper .btn-submit {
    width: 100%;
    height: 48px;
    background: #1e3a8a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 400;
    transition: 0.3s;
  }
  
  .contact-enquiry-wrapper .btn-submit:hover {
    background: #1d4ed8;
  }

  @media (max-width: 1199px){
    .copy-wrapper .copy-card h3{
      font-size: 14px;
    }
    .partner-cta-section .section-heading::after{display: none;}
  }

  @media (max-width: 991px) {
    .contact-enquiry-wrapper::before{
      display: none;
    }
    .contact-enquiry-wrapper::after{
      display: none;
    }
  }




  /* platform page css  */

  .parterns-banner.platforms-banner{
    padding: 86px 0px 0px;
  }

  .platform-section {
    padding: 60px 0;
  }
  .platform-section .container{
    max-width: 1050px;
  }
  .platform-section .platform-card {
    box-shadow: 0px 1px 3px 0px #0000001A !important;
    box-shadow: 0px 1px 2px -1px #0000001A;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: 0.3s;
  }

  .platform-section .platform-label {
    font-size: 16px;
    color: #000000;
    margin-bottom: 6px;
  }

  .platform-section .platform-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
  }

  .platform-section .platform-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
  }

  .platform-section .platform-image img {
    width: 100%;
    display: block;
  }

  .platform-section .platform-desc {
    margin-top: 30px;
    font-size: 16px;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .platform-section .best-for {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111827;
  }

  .platform-section .best-for-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
  }

  .platform-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }

  .platform-section .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    margin-bottom: 10px;
  }

  .platform-section .feature-list li::before {
    content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../../images/retail/icon-park-solid_check-one.svg");
  background-size: contain;
  background-repeat: no-repeat;
  }

  .platform-section .platform-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #26408B;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
  }

  .platform-section .platform-btn:hover {
    background: #1d4ed8;
    color: #fff;
  }


  @media (max-width: 768px) {
    .platform-section {
      padding: 40px 16px;
    }

    .platform-section .platform-title {
      font-size: 20px;
    }
  }

  /* ---------- */

  /* ===== PLATFORM OVERVIEW ===== */
.reward-wrapper .platform-overview {
  background: #ffffff;
  border-radius: 20px;
}

/* TITLE */
.reward-wrapper .overview-title {
  font-weight: 600;
}
.reward-wrapper .overview-title span {
  color: #2d5be3;
}

/* IMAGE */
.reward-wrapper .platform-img {
  max-width: 480px;
}

/* TEXT */
.reward-wrapper .overview-text {
  font-size: 16px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* FEATURE LIST */
.reward-wrapper .feature-list-item {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reward-wrapper .feature-list-item li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #000;
  line-height: 24px;
}

/* INNER CHECK */
.reward-wrapper .feature-list-item li::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  left: 0;
  flex-shrink: 0;
  background-image: url("../../images/retail/icon-park-solid_check-one.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.platform-overview .copy-wrapper .copy-circle{
  width: 160px;
  height: 130px;
}
.platform-overview .copy-wrapper{
  max-width: 1100px;
  padding-bottom: 0;
}
.platform-overview .copy-wrapper h2{
  font-size: 24px;
  font-weight: 400;
  color: #26408B;
  margin-top: 50px;
}

 .btn-primary{
  background-color: #26408B;
  border-color: transparent;
  padding: 11px 24px;
  font-size: 16px;
  font-weight: 500;
}
 .btn-primary:hover{
  background: #1d4ed8;
}
.metatrader-wrap .copy-wrapper .copy-card{
  padding: 26px 22px;
}

/* RESPONSIVE */

@media (max-width: 1199px){
  .reward-wrapper .platform-img{
    max-width: 380px;
  }
  .platform-overview .copy-wrapper .copy-circle{
    height: 100px;
  }
}

@media (max-width: 768px) {
  .reward-wrapper .platform-img {
    max-width: 400px;
    width: 100%;
  }

  .reward-wrapper .feature-list-item {
    margin-top: 20px;
  }
  .copy-wrapper .copy-card{
    padding: 16px 15px;
  }
  .platform-overview .copy-wrapper{
    padding: 30px 0px 0px;
  }
}
.metatrader-wrap .copy-circle{
  width: 200px !important;
  height: 120px !important;
}

/* 3. which tertminal */
.terminal-market {
  padding: 80px 0;
}
.terminal-market .market-wrapper {
  max-width: 913px;
}
.terminal-wrapper  .market-card-box{
  margin-bottom: auto !important;
}

.terminal-market .market-wrapper .market-card-box{
  margin-bottom: 60px;
}

.main-heading {
  font-size: 40px;
  font-weight: 300;
  color: #000000;
}
.main-heading span {
  color: #26408B;
  font-weight: 600;
}
.main-subheading {
  color: #000000;
  font-weight: 400;
  font-size: 16px;
}
.terminal-market .market-card-box p{
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-top: 24px;
}
@media(max-width:767px) {
  .terminal-market {
      padding: 40px 0;
  }
  .terminal-market .main-heading {
      font-size: 32px;
      padding-top: 30px;
  }
  .terminal-market .main-heading  span{
     display: block;
  }
 .terminal-market .market-card-box p{
      margin-top: 8px;
      font-size: 16px;
  }
  .terminal-market {
    padding: 0px 0;
  }
}
/* 4. Get started BitDelta Terminal */
.terminal-cards {
  padding: 76px 0;
  text-align: center;
  background-color: #F3F5F7;
}
.terminal-cards .main-subheading{
  max-width: 900px;
  margin: 0 auto;
}

.terminal-cards .card-custom {
  border-radius: 16px;
  padding: 24px 16px;
  border: 1px solid #E2E5EA;
  background: #ffffff;
  position: relative;
  height: 100%;
  max-width: 290px;
  min-height: 336px;
}
.terminal-cards .icon-box {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
}
.terminal-cards .card-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}
.terminal-cards .card-text {
  font-size: 14px;
  color: #82858B;
  font-weight: 400;
  min-height: 84px;
}
.terminal-cards .btn-primary-custom {
  background: #26408B;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  color: #ffffff;
}

.terminal-cards .btn-primary-custom:hover{
  background: #1d4ed8;
}

.terminal-cards .card-footer-custom .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  background-color: #1d4ed8;
  color: #ffffff;
}
.terminal-cards .btn-primary-custom:hover {
  background-color: #26408B;
  color: #ffffff;
}
.terminal-cards .btn-disabled {
  opacity: 0.6;
  cursor: default!important;
}
.terminal-cards .qr-box {
  padding: 7px;
  width: 40px;
  height: 40px;
  background: #F3F5F7;
  border: 1px solid #E2E5EA;
  border-radius: 8px;
}
.terminal-cards .coming-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #26408B;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 16px;
}
@media (max-width: 768px) {
  .terminal-cards .card-custom{
      max-width: 311px;
  }
  .terminal-cards{
      padding: 40px 0px;
  }
  .terminal-market .market-wrapper .market-card-box{
    margin-bottom: 10px;
  }
}

/* Related Blog Sections */
.blog-section {
  background: linear-gradient(3.85deg, #FFFFFF 2.84%, #F9FAFA 49.69%, #E6F1FF 96.55%);
  padding: 56px 0 104px;
}
.blog-section .section-title{
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  text-align: left;
  margin-bottom: 0px;
}
.blog-section .blog-cards{
  margin-top: 40px;
}
.blog-section .blog-card {
  padding: 12px;
  border-radius: 20px;
  border: 1px solid #E2E5EA;
  overflow: hidden;
  background: #ffffff;
  height: 100%;
}
.blog-section .blog-card img {
  width: 100%;
  height: 208px;
  border-radius: 16px;
 object-fit: fill;
}
.blog-section .blog-body {
  padding-top: 16px;
}
.blog-section .blog-meta-top{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.blog-section .badge-custom {
display: inline-block;
background: #F3F5F7;
border: 1px solid #E2E5EA;
font-size: 12px;
font-weight: 500;
color: #000000;
padding: 2px 10px;
border-radius: 8px;
}
.blog-section .badge-outline {
display: inline-block;
background: #D4E2FD;
border: 0.5px solid #74A0FA;
font-size: 12px;
font-weight: 500;
color: #082662;
padding: 2px 10px;
border-radius: 8px;
}
.blog-section .badge-green {
display: inline-block;
background: #D4EEDE;
border: 0.5px solid #75C994;
font-size: 12px;
font-weight: 500;
color: #09411E;
padding: 2px 10px;
border-radius: 8px;
}
.blog-section .badge-yellow {
display: inline-block;
background: #FFF5DF;
border: 0.5px solid #E0BA6A;
font-size: 12px;
font-weight: 500;
color: #513702;
padding: 2px 10px;
border-radius: 8px;
}
.blog-section .blog-body h6 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
}
.blog-section .blog-body p {
  font-size: 14px;
  font-weight: 400;
  color: #3A404A;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-section .blog-meta-bottom {
font-size: 14px;
font-weight: 400;
color: #67748A;
margin-top: 12px;
}
.blog-section .blog-meta-bottom .author {
color: #26408B;
font-size: 14px;
font-weight: 400;
margin-left: 5px;
}
.blog-section .col-lg-4:last-child {
    margin-bottom: 0 !important;
}
@media(min-width:1200px){
  .blog-section .blog-cards{
    --bs-gutter-x: 52px; 
  }
}



/* ============ commodities Css ============  */
.commodities-wrapper {
  padding: 80px 20px;
  color: #1a1a1a;
}
/* ===== Container ===== */
.commodities-wrapper .container {
  max-width: 1140px;
  margin: 0 auto;
}
/* ===== Heading ===== */
.commodities-wrapper .section-title {
  text-align: center;
  margin-bottom: 50px;
}
.commodities-wrapper .section-title h1 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 12px;
}
.commodities-wrapper .section-title h1 span {
  color: #2f4ea1;
  font-weight: 600;
}
.commodities-wrapper .section-title p {
  color: #6b7280;
  font-size: 16px;
}
/* ===== Grid ===== */
.commodities-wrapper .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
/* ===== Columns ===== */
.commodities-wrapper .col {
  flex: 1;
  min-width: 300px;
}
/* ===== Section Headings ===== */
.commodities-wrapper h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.commodities-wrapper .desc {
  color: #6b7280;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 0px 10px 0px 0px;
}
/* ===== Cards ===== */
.commodities-wrapper .card-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px;
}
.commodities-wrapper .card-box .divider:last-child {
  display: none;
}

/* ===== Card Title ===== */
.commodities-wrapper .card-title {
  color: #2f4ea1;
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 20px;
}
/* ===== List Items ===== */
.commodities-wrapper .item {
  margin-bottom: 18px;
  font-weight: 300;
}
.commodities-wrapper .item strong {
  font-weight: 600;
}
.commodities-wrapper .item p {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 16px;
}
/* ===== Divider ===== */
.commodities-wrapper .divider {
  height: 1px;
  background: #e5e7eb;
  margin: 14px 0;
}
/* ===== Button ===== */
.commodities-wrapper .cta {
  text-align: center;
  margin-top: 40px;
}
.commodities-wrapper .btn-custom {
  background: #2f4ea1;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.commodities-wrapper .btn-custom:hover {
  background: #253d82;
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
  .commodities-wrapper {
    padding: 50px 15px;
  }
  .commodities-wrapper .section-title h1 {
    font-size: 32px;
  }
}
.get-started-wrapper{
  background: #F3F5F7;
}
.get-started-wrapper .step-card{
  background-color: #fff;
  border: 1px solid #E2E5EA;
}
.get-started-wrapper .container{
  max-width: 1100px;
  margin: 0 auto;
}

.get-started-wrapper {
  position: relative;
}
/* SECTION */
.get-started-wrapper .get-started-section {
  position: relative;
}
/* TITLE */
.get-started-wrapper .started-title {
  font-weight: 600;
}
.get-started-wrapper .started-title span {
  color: #26408B;
}
.get-started-wrapper .started-subtitle {
  font-size: 14px;
  color: #777;
  margin-top: 8px;
}
/* STEP CARD */
.get-started-wrapper .step-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  height: 100%;
  border: 1px solid #e9ecef;
  transition: 0.3s ease;
}
.get-started-wrapper .step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}
/* STEP LABEL */
.get-started-wrapper .step-label {
  font-size: 12px;
  color: #AEB1B7;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

/* TEXT */
.get-started-wrapper .step-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}
.get-started-wrapper .step-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.get-started-wrapper .step-img{
  margin: 0 auto;
  text-align: center;
  margin-bottom: 10px;
  min-height: 200px;
}
.get-started-wrapper .step-img .first-img{
  max-width: 150px;
}
.get-started-wrapper .step-img img {
  width: 100%;
  max-width: 200px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .get-started-wrapper .step-img {
    width: 120px;
    height: 120px;
  }

  .get-started-wrapper .started-subtitle {
    padding: 0 10px;
  }
  .get-started-wrapper .step-img{
    min-height: auto;
  }
}
/* ===============================
   WHY TRADE WRAPPER
================================= */
.why-trade-wrapper {
  position: relative;
}
/* SECTION */
.why-trade-wrapper .why-trade-section {
  position: relative;
}
/* TITLE */
.why-trade-wrapper .why-title {
  font-weight: 600;
}
.why-trade-wrapper .why-title span {
  color: #26408B;
}
.why-trade-wrapper .why-subtitle {
  font-size: 14px;
  color: #777;
  max-width: 750px;
  margin: 10px auto 0;
  line-height: 1.6;
}
/* ===============================
   FEATURES BOX
================================= */
.why-trade-wrapper .features-box {
  background: #eef1f5;
  border-radius: 30px;
  padding: 40px;
  position: relative;
  z-index: 2;
}
.why-trade-wrapper::after{
    position: absolute;
    content: '';
    right: 0px;
    top: 110px;
    width: 170px;
    height: 190px;
    background-image: url("../../images/retail/Pattern_bg.png");
    z-index: 0;
    background-size: contain;
}
.bg-parten-wrap{
  position: relative;
  z-index: 9;
}
.bg-parten-wrap::after{
  position: absolute;
  content: '';
  right: -66px;
  top: -85px;
  width: 170px;
  height: 190px;
  background-image: url("../../images/retail/Pattern_bg.png");
  z-index: -1;
  background-size: contain;
}
.commodities-wrapper{
  position: relative;
}
.commodities-wrapper::after{
  position: absolute;
  content: '';
  right: 50px;
  top: 100px;
  width: 170px;
  height: 190px;
  background-image: url("../../images/retail/Pattern_bg.png");
  z-index: -1;
  background-size: contain;
}

/* CARD */
.why-trade-wrapper .feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  height: 100%;
  transition: 0.3s ease;
}
.why-trade-wrapper .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}
/* ICON */
.why-trade-wrapper .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #f2f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* TEXT */
.why-trade-wrapper .feature-card h5 {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 16px;
}
.why-trade-wrapper .feature-card p {
  font-size: 14px;
  color: #82858B;
  font-weight: 400;
  margin: 0;
}
/* ===============================
   CTA
================================= */
.why-trade-wrapper .cta-text {
  font-size: 16px;
  margin-bottom: 15px;
}
.why-trade-wrapper .cta-btn {
  display: inline-block;
  background: #26408B;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}
.why-trade-wrapper .cta-btn:hover {
  background: #1f46c7;
}
/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 1199px) {
  .why-trade-wrapper::after{
    display: none;
  }
  .bg-parten-wrap::after{
  display: none;
  }
  .commodities-wrapper::after{
    display: none;
  }
}
@media (max-width: 768px) {
  .why-trade-wrapper .features-box {
    padding: 20px;
  }
  .why-trade-wrapper .why-subtitle {
    padding: 0 10px;
  }

}
/* ===============================
   WHY TRADE WRAPPER
================================= */
.why-trade-wrapper {
  position: relative;
}
/* SECTION */
.why-trade-wrapper .why-trade-section {
  position: relative;
}
/* TITLE */
.why-trade-wrapper .why-title {
  font-weight: 600;
}
.why-trade-wrapper .why-title span {
  color: #26408B;
}
.why-trade-wrapper .why-subtitle {
  font-size: 14px;
  color: #777;
  max-width: 750px;
  margin: 10px auto 0;
  line-height: 1.6;
}
.why-trade-wrapper .features-box {
  background: #F3F5F7;
  border-radius: 40px;
  padding: 48px;
}
/* CARD */
.why-trade-wrapper .feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  transition: 0.3s ease;
}
.why-trade-wrapper .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}
/* ICON */
.why-trade-wrapper .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #f2f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
/* TEXT */
.why-trade-wrapper .feature-card h5 {
  font-weight: 600;
  margin-bottom: 6px;
}
.why-trade-wrapper .feature-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.why-trade-wrapper .cta-text {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 400;
}
.why-trade-wrapper .cta-btn {
  display: inline-block;
  background: #26408B;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}
.why-trade-wrapper .cta-btn:hover {
  background: #1f46c7;
}
@media (max-width: 768px) {
  .why-trade-wrapper .features-box {
    padding: 20px;
  }
  .why-trade-wrapper .why-subtitle {
    padding: 0 10px;
  }
}
/* 1. banner */
.market-banner-wrapper{
  background: linear-gradient(3.85deg, #FFFFFF 2.84%, #F9FAFA 49.69%, #D8E9FF 96.55%);
  padding: 56px 0px 104px;
}
.market-banner-wrapper .hero-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border: 0.5px solid #E2E5EA;
  font-size:14px;
  color: #000000;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 100px;
  box-shadow: 0px 2px 4px 0px #00000024;
  margin-bottom: 24px;
}
.market-banner-wrapper .banner-title {
  font-size: 56px;
  font-weight: 600;
  color: #26408B;
  margin-bottom: 24px;
}
.market-banner-wrapper .banner-desciption {
  color: #82858B;
  font-size: 16px;
  font-weight: 500;
  max-width: 530px;
}
.market-banner-wrapper .btn-primary{
  background-color: #26408B;
  border-color: transparent;
  padding: 11px 24px;
  font-size: 16px;
  font-weight: 600;
}
.market-banner-wrapper .btn-primary:hover{
  background: #1d4ed8;
}
.market-banner-wrapper .banner-pattern1{
  top: 58px;
  right: 120px;
}
.market-banner-wrapper .banner-market{
  top: 16px;
  right: 350px;
}
.market-banner-wrapper .banner-pattern3{
  top: 192px;
  left: 30px;
}
.market-banner-wrapper .banner-bgleft {
  left: 88px;
  top: 100px;
  z-index: 1;
}
.market-banner-wrapper .banner-bg-right {
  right: 120px;
  top: 58px;
  z-index: 1;
}
.market-banner-wrapper .deep-liquidity {
  left: 15%;
  top: 64%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #E2E5EA;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px -1px #0000001A;
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  width: 116px;
  z-index: 2;
}
.market-banner-wrapper .deep-liquidity img {
  width: 24px;
}
.market-banner-wrapper .banner-bgleft img,
.market-banner-wrapper .banner-bg-right img {
  max-width: 250px;
  height: auto;
}
.market-banner-wrapper .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 1399px) {
  .market-banner-wrapper .banner-bgleft{
      left: 40px;
  }
  .market-banner-wrapper .deep-liquidity{
      top: 72%;
      left: 10%;
  }
  .market-banner-wrapper .banner-bg-right{
      right: 40px;
  }
}
@media (max-width: 1200px){
  .market-banner-wrapper{
      padding: 60px 0px;
  }
  .market-banner-wrapper .banner-title{
      font-size: 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .market-banner-wrapper .deep-liquidity{
      top: 80%;
  }
}
@media (max-width: 991px) {
  .market-banner-wrapper .banner-bg-right img{
      width: 150px;
  }
  .market-banner-wrapper .banner-bgleft img{
      width: 160px;
  }
  .market-banner-wrapper{
      padding: 40px 0px;
  }
  .market-banner-wrapper  .banner-title {
      font-size: 32px;
    }
    .market-banner-wrapper .banner-pattern1{
      right: 20px;
    }
}
@media (max-width: 767px) {
  .market-banner-wrapper .banner-bg-right{
      top: 320px;
      right: 20px;
  }
  .market-banner-wrapper .banner-bgleft{
      left: 20px;
      top: 320px;
  }
  .market-banner-wrapper .deep-liquidity img{
      width: 20px;
  }
  .market-banner-wrapper .banner-market{
      right: 20px;
  }
  .market-banner-wrapper .deep-liquidity{
      top: 435px;
  }
}
@media (max-width: 576px){
  .market-banner-wrapper .banner-pattern1{
      display: none;
    }
    .market-banner-wrapper .banner-pattern3{
     display: none;
    }
}
/* 2. Strip Marquee */
.market-strip-wrapper {
  max-width: 982px;
  margin: 20px auto 0 ;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(90deg, #DAEAFF 0%, #FFFFFF 100%);
  padding: 16px 24px;
  position: relative;
}
.market-strip-wrapper .strip {
  display: flex;
  gap: 61px;
  width: max-content;
  /* animation: scrollstrip 20s linear infinite; */
}
.market-strip-wrapper .strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.market-strip-wrapper .strip-item span{
  color: #000000;
}
.market-strip-wrapper .strip-item .green {
  color: #16A34A;
}
.market-strip-wrapper .strip-item .red {
  color: #DC2626;
}
.market-strip-wrapper .strip-item .blue {
  color: #26408B;
}
.market-strip-wrapper .fade-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
  z-index: 2;
}
.market-strip-wrapper .fade-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
  z-index: 2;
}
@keyframes scrollstrip {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 767px){
  .market-strip-wrapper{
  margin-top: 180px;
  }
}
/* 3 Table Market */
.market-table{
  padding:80px 0px;
}
.market-table .table-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 982px;
  margin:0 auto;
  border: 1px solid #E2E5EA;
  box-shadow: 0px 1px 3px 0px #0000001A;  
  box-shadow: 0px 1px 2px -1px #0000001A;   
}
.market-table .table thead {
  background: #2f4a8a;
}
.market-table .table thead th {
  color: #ffffff;
  background-color: #26408B;
  font-weight: 600;
  font-size: 12px;
  border: none;
  padding: 12px 24px;
  vertical-align: middle;
  white-space: nowrap;
}
.market-table .table-card .description{
  color: #82858B;
  font-weight: 400;
  white-space: nowrap;
}
.market-table .table-card .symbol{
  color: #26408B;
  font-weight: 600;
}
.market-table .table-card .spread{
  background-color: #F3F5F7;
  color: #26408B;
  border-radius: 4px;
  min-width: 88px;
  padding: 3px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}
.market-table .table tbody td {
  border-top: 1px solid #e5e7eb;
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}
.market-table .table tbody tr:first-child td {
  border-top: none;
}
.market-table .symbol {
  color: #2f4a8a;
  font-weight: 600;
}
.market-table .table-note {
  font-size: 14px;
  font-weight: 400;
  color: #82858B;
}

.market-strip-wrapper .img-first {
  position: absolute; 
  margin-left: -15px; 
  z-index: 1;
}
@media (max-width: 991px){
  .market-table{
    padding: 40px 0px;
  }
}
.map-forex-bg-img{
  width: 500px;
  position: relative;
  right: -175px;
}
@media (max-width: 991px){
  .map-forex-bg-img{
    width: 100%;
    max-width: 100%;
    right: 0;
  }
}



/* ------------demo account----- */

.copy-wrapper-partner::after{
  top: -61px;
  content: 'LET’S START';
}


.trading-journey .copy-wrapper{
  padding: 0px 20px 60px;
}
.copy-wrapper-partner .copy-card{
  padding: 26px 24px;
  min-height: 153px;
  width: 100%;
}
.copy-wrapper-partner .copy-wrapper p{
color: #82858B;
}
.demo-account-wrapper{
  background-color: #F3F5F7;
  padding-top: 40px !important;
}
.demo-account-wrapper .trading-bonus-section .bonus-wrapper{
  background: transparent;
}

.demo-benefits-wrapper {
  position: relative;
}

.demo-account-wrapper .demo-benefits-section {
  max-width: 720px;
}

.demo-account-wrapper .demo-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.demo-account-wrapper .demo-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 405px;
}

.demo-account-wrapper .demo-item {
  display: flex;
  gap: 30px;
  align-items: baseline;
}


.demo-account-wrapper .check-icon::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  left: 0;
  flex-shrink: 0;
  background-image: url("../../images/retail/icon-park-solid_check-one.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* TEXT */
.demo-account-wrapper .demo-text h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.demo-account-wrapper .demo-text p {
  font-size: 16px;
  color: #777;
  margin: 0;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .demo-account-wrapper .demo-title {
    font-size: 22px;
  }

  .demo-account-wrapper .demo-benefits-section {
    padding: 0 15px;
  }
}

.demo-overview-wrapper {
  position: relative;
}

.demo-overview-wrapper .demo-overview-section {
  position: relative;
}

.demo-overview-wrapper .demo-overview-title {
  font-weight: 600;
}

.demo-overview-wrapper .demo-overview-title span {
  color: #2d5be3;
}

/* SUBTITLE */
.demo-overview-wrapper .demo-subtitle {
  font-size: 16px;
  color: #555;
  margin: 10px 0 20px;
}

/* DESCRIPTION */
.demo-overview-wrapper .demo-desc {
  font-size: 16px;
  color: #82858B;
  line-height: 1.7;
  margin-bottom: 15px;
  font-weight: 400;
}

.demo-overview-wrapper .demo-ui-img {
  max-width: 100%;
  border-radius: 20px;
}
.max-text-width{
  max-width: 585px;
}

@media (max-width: 992px) {
  .demo-overview-wrapper .demo-ui-img {
    margin-top: 20px;
  }
}

.demo-account{
  background-color:#F3F5F7;
}
.demo-account .features-box{
  padding: 0;
  margin: 0 auto;
  max-width: 1030px;
}
.demo-account .feature-card{
  min-height: 205px;
}

/* Trading Account types */
.trading-accounts{
  background-color: #F3F5F7;
  padding: 68px 0px;
}
.trading-accounts .account-card {
  background: #ffffff;
  border-radius: 16px;
}
.trading-accounts .card-header {
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
  color: #fff;
  border-radius: 16px 16px 0 0;
  min-height: 136px;
}
.trading-accounts .card-header .trading-type{
font-size: 16px;
font-weight: 600;
color: #ffffff;
}
.trading-accounts .card-header .dot{
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.trading-accounts .card-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../../images/retail/account-types-graph.svg') no-repeat top right;
  opacity: 0.5;
  z-index: 0;
}
.trading-accounts .card-header * {
  position: relative;
  z-index: 2;
}
.trading-accounts .gradient-dark {
  background: linear-gradient(112.3deg, #010101 42.98%, #26408B 86.37%);
}
.trading-accounts .gradient-blue {
  background: linear-gradient(102.88deg, #6098FF 50%, #C0D6FF 100%);
}
.trading-accounts .card-header .trading-name {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0px;
}
.trading-accounts .card-header .trading-name span {
font-weight: 600;
}
.trading-accounts .card-body {
  padding: 24px 16px;
  font-size: 14px;
}
.trading-accounts .value{
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0px;
}
.trading-accounts .explore{
  font-size: 14px;
}
.trading-accounts .label {
  color: #82858B;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.trading-accounts hr {
  margin: 12px 0;
  opacity: 0.1;
}
.trading-accounts .badge-bonus {
  display: inline-block;
  width: fit-content;
  background: linear-gradient(90deg, #E7AD38 2.39%, #F9F295 45%, #E7AD38 93.5%);
  border: 1px solid #DDB98B;
  color: #824600;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  margin-top: 12px;
}
.trading-accounts .demo-box {
  border: 1px solid #E2E5EA;
  border-radius: 16px;
  padding: 16px;
}
.trading-accounts .demo-box p {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}
.trading-accounts .demo-box p:last-child {
  margin-bottom: 0px;
}
.trading-accounts .demo-box p img {
  margin-right: 10px;
}
.trading-accounts .demo-acc-content{
  font-size: 14px;
  font-weight: 400;
  color: #82858B;
}
.trading-accounts .trading-button{
  margin-top: 40px;
  gap: 40px;
}
.trading-accounts .btn-outline-dark {
  border-radius: 8px;
  border: 1px solid #82858B;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  height: 48px;
}
.trading-accounts .btn-outline-dark:hover{
  background-color: transparent;
  color: #000000;
}
.trading-accounts .btn-primary{
  background-color: #26408B;
  border: transparent;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  height: 48px;
}
@media (min-width: 992px) {
  .trading-accounts .custom-row-gap {
    --bs-gutter-x: 32px;
  }
}
@media (max-width: 1199px) {
  .trading-accounts .custom-row-gap {
    --bs-gutter-y: 32px;
  }
}
@media (max-width: 767px) {
  .trading-accounts{
    padding: 40px 0px;
  }
  .trading-accounts .info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }
  .trading-accounts .info-row .value {
    text-align: right;
  }
  .trading-accounts .name-bonus{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .trading-accounts .label{
    font-size: 12px;
  }
  .trading-accounts .value{
    font-size: 14px;
  }
  .trading-accounts .card-body{
    padding: 16px;
  }
  .trading-accounts .demo-box{
    border: transparent;
    padding: 0px;
  }
  .trading-accounts .trading-button{
    margin-top: 32px;
    gap: 16px;
  }
}


/* copy-trading css */

.copy-trading-wrapper {
  position: relative;
  background-color: #F3F5F7;
}

/* SECTION */
.copy-trading-wrapper .copy-trading-section {
  position: relative;
}

/* TITLE */
.copy-trading-wrapper .copy-title {
  font-weight: 600;
  line-height: 1.3;
}

.copy-trading-wrapper .copy-title span {
  color: #2d5be3;
}

/* SUBTITLE */
.copy-trading-wrapper .copy-subtitle {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  max-width: 300px;
}

.copy-trading-wrapper .copy-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  border: 1px solid #E2E5EA;
  transition: 0.3s ease;
}
.copy-trading-wrapper .section-heading{
  max-width: 328px;
}

.copy-trading-wrapper .copy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}

/* ICON */
.copy-trading-wrapper .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #f2f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}


/* TEXT */
.copy-trading-wrapper .copy-card h5 {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 16px;
}

.copy-trading-wrapper .copy-card p {
  font-size: 14px;
  color: #777;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .copy-trading-wrapper .copy-title {
    text-align: center;
  }

  .copy-trading-wrapper .copy-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 1. learn copy trading */
.learn-copy-trading {
  background: #F3F5F7;
  padding: 80px 0;
}
.learn-copy-trading .copy-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  position: relative;
}
.learn-copy-trading .top-title {
  font-size: 40px;
  font-weight: 300;
  color: #000000;
}
.learn-copy-trading .main-title {
  font-size: 40px;
  font-weight: 600;
  color: #26408B;
}
.learn-copy-trading .sub-text {
  font-weight: 400;
  color: #000000;
  font-size: 16px;
}
.learn-copy-trading .imagewithtext{
padding: 40px 0px;
}
.learn-copy-trading .right-text {
  font-size: 16px;
  font-weight: 400;
  color: #82858B;
  max-width: 400px;
}
.learn-copy-trading .feature-box {
  background: linear-gradient(270deg, #F9FAFC 0%, #F5F8FF 100%);
  border-radius: 999px;
  padding: 40px;
  display: flex;
  gap: 24px;
  align-items: center;
  text-align: left;
  height: 100%;
}
.learn-copy-trading .feature-box h6 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}
.learn-copy-trading .feature-box p {
  font-size: 16px;
  color: #82858B;
  font-weight: 400;
  margin-bottom: 0px;
}
.learn-copy-trading::before{
  content: "";
  background: url(../../images/retail/learn-bglayer.svg) no-repeat bottom right;
  width: 197px;
  height: 193px;
  position: absolute;
  right: 5px;
  bottom: 0;
  z-index: 0;
}
@media (min-width: 992px) {
  .learn-copy-trading .custom-gap-40 {
    --bs-gutter-x: 40px;
  }
  .learn-copy-trading .imagewithtext{
    --bs-gutter-x: 64px;
  }
}
@media (max-width: 991px) {
  .learn-copy-trading{
    padding: 40px 0px;
  }
  .learn-copy-trading .copy-card{
    padding: 24px 16px;
  }
  .learn-copy-trading .top-title{
    font-size: 32px;
  }
  .learn-copy-trading .main-title{
    font-size: 32px;
  }
  .learn-copy-trading .feature-box{
    padding: 20px;
  }
  .learn-copy-trading .right-text{
    max-width: unset;
  }
}
/* 2. COPIER & Master Trader */
.copy-master-section {
  background: #FFFFFF;
  padding: 80px 0;
}
.copy-master-section .copy-box {
  background: linear-gradient(135.01deg, #F9FAFB -2.76%, #F0F6FF 99.58%);
  border-radius: 24px;
  padding: 56px 48px;
}
.copy-master-section .title {
  font-size: 40px;
  font-weight: 600;
  color: #26408B;
}
.copy-master-section .title span {
  font-weight: 300;
  color: #000000;
}
.copy-master-section .copy-subtitle {
  max-width: 575px;
  font-size: 16px;
  margin: 16px auto 0;
  color: #000000;
}
.copy-master-section .step {
  margin-bottom: 40px;
}
.copy-master-section .steps::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 30px;
  bottom: 40px;
  width: 2px;
  border-left: 1px dashed #26408B;
}
.copy-master-section .circle {
  width: 40px;
  height: 40px;
  background: #26408B;
  font-size: 16px;
}
.copy-master-section .step h6 {
  font-size: 16px;
  color: #000000;
}
.copy-master-section .step p {
  font-size: 14px;
  color: #82858B;
  max-width: 420px;
}
.copy-master-section .btn-primary {
  background: #26408B;
  border: none;
  font-size: 14px;
  padding: 8px 16px;
  min-width: 200px;
}

.btn.btn-primary.outline{
  background-color: #fff;
  border: 1px solid  #E2E5EA;
  color: #000;
}
.btn.btn-primary.outline:hover{
  background: linear-gradient(270deg, #F9FAFC 0%, #F5F8FF 100%);

}

.btn.btn-primary.outline img{
  filter: invert(1);
}
.custom-pd{
  padding: 11px 50px !important;
}

@media (max-width: 991px) {
  .copy-master-section{
    padding: 40px 0px;
  }
  .copy-master-section .copy-box{
    padding: 24px 16px;
  }
  .copy-master-section .title{
    font-size: 32px;
  }
  .custom-pd{
    margin-top: 0px;
  }
}
@media (max-width: 576px) {
  .copy-master-section .btn-primary {
    width: 100%;
  }
}
.cta-trading-wrapper.pd-custom{
  padding: 72px;
}
/* copy trading end */



/* blog css */

.blog-wrapper {
  background: #fff;
  font-family: 'Inter', sans-serif;
}

/* HEADER */
.blog-wrapper .blog-title {
  font-weight: 600;
}
.blog-wrapper .blog-title span {
  color: #2d5be3;
}
.blog-wrapper .blog-subtitle {
  font-size: 14px;
  color: #777;
}

/* SEARCH */
.blog-wrapper .blog-search input {
  background: #eef1f5;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
}

/* LABEL */
.blog-wrapper .section-label {
  font-size: 20px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 32px;
}

/* FEATURE */
.blog-wrapper .featured-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.blog-wrapper .featured-card img{
  width: 100%;
}

.blog-wrapper .featured-content {
  padding: 15px 0px;
}
.blog-wrapper .featured-content h6{
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
}
.main-post-descrition{
  font-size: 14px;
  color: #3A404A;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* TAG */
.blog-wrapper .tag {
  font-weight: 500;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  margin: 0px 4px;
}
.blog-wrapper .tag.small {
  font-size: 12px;
}
.top-read-item a{
  font-size: 14px;
  color: #26408B !important;
}
.top-read-item p{
  color: #67748A;
}
.bluebg{
background:rgb(116 160 250 / 53%);
color: #082662;
border: 0.5px #74A0FA;
}
.yellow{
  background:rgb(224 186 106 / 50%);
  color: #513702;
  border: 0.5px  #E0BA6A;
}
.greenbg{
  background:rgb(117 201 148 / 44%);;
  color: #09411E;
  border: 1px solid #75C994;
}

.graybg{
background: #E2E5EA;
border: 1px solid  #dadada;
color: #000;
}


/* TOP READ */

.blog-listing-wrapper{
  background: linear-gradient(3.85deg, #FFFFFF 2.84%, #F9FAFA 72.67%, #E6F1FF 96.55%);
  padding-top: 56px;
}

.blog-listing-wrapper .page-link{
  border: none;
  color: #82858B;
  padding: 10px 20px;
  margin: 0px 12px;
}
.blog-listing-wrapper .active>.page-link, .blog-listing-wrapper .page-link.active{
background-color: #DBEBFF;
color: #26408B;
border-radius: 6px;
}
.blog-listing-wrapper .disabled>.page-link, .blog-listing-wrapper .page-link.disabled{
  background-color: transparent;
  color: #cbc4c4;
}
.previous{
  transform: rotate(180deg);
}

.search-item{
  font-size: 14px;
}

.blog-wrapper .top-read-item {
  gap: 12px;
  margin-bottom: 24px;
}

.blog-wrapper .top-read-item h6{
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000;
}

.blog-wrapper .top-read-item img {
  width: 198px;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;

}

/* FILTERS */
.blog-wrapper .blog-filters {
  gap: 16px;
}
.blog-wrapper .blog-filters .nav-link {
  border: 1px solid #82858B;
  background: #fff;
  padding: 8px 20px;
  font-size: 14px;
  color: #82858B;
  font-weight: 500;
  border-radius: 6px;
}
.blog-wrapper .blog-filters .nav-link.active {
  background: #26408B;
  color: #fff;
  border: 1px solid #26408B;
}
.blog-wrapper .search-box {
  position: relative;
  width: 300px;
}

.blog-wrapper .search-box input {
  width: 100%;
  padding: 11px 15px 10px 38px; 
  border: none;
  background: #eef1f5;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid #E2E5EA;
}

.blog-wrapper .search-box input:focus {
  outline: none;
}

.blog-wrapper .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #888;
}

/* CARD */
.blog-wrapper .blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid #E2E5EA;
}
.blog-wrapper .blog-card img{
  width: 100%;
  border-radius: 16px;
}

.blog-wrapper .blog-card-body {
  padding: 15px;
}
.blog-wrapper .blog-card h6 {
  font-weight: 600;
}

.pagination-wrapper {
  padding: 20px 0;
}

/* INNER */
.pagination-wrapper .pagination-inner {
  padding-top: 63px;
  margin-bottom: 150px;
}

/* INFO TEXT */
.pagination-wrapper .pagination-info {
  font-size: 14px;
  color: #666;
}

/* CONTROLS */
.pagination-wrapper .pagination-controls {
  gap: 8px;
}

/* BUTTON */
.pagination-wrapper .page-btn {
  border: none;
  background: transparent;
  padding: 6px 10px;
  font-size: 14px;
  color: #555;
  border-radius: 8px;
  min-width: 38px;
  height: 38px;
  transition: 0.2s ease;
}

/* ACTIVE */
.pagination-wrapper .page-btn.active {
  background: #DBEBFF;
  color: #2d5be3;
  font-weight: 600;
}

/* ARROWS */
.pagination-wrapper .page-btn.arrow {
  font-size: 16px;
  color: #999;
}

/* HOVER */
.pagination-wrapper .page-btn:hover {
  background: #f2f5f9;
}

@media (max-width: 767px) {
  .blog-wrapper .top-read-item img{
    width: 100%;
  }
  .top-read-item p{
    margin-top: 16px;
  }
}

@media (max-width: 576px) {

  .pagination-wrapper .pagination-inner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .pagination-wrapper .pagination-controls {
    flex-wrap: wrap;
  }
 

}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-wrapper .blog-header {
    flex-direction: column;
    gap: 15px;
  }
}

/* -------------- */


/* ------------custom css blog--------- */

.blog-wrapper .sub-heading-label {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.blog-wrapper .breadcrumb-item+.breadcrumb-item::before{
  font-size: 14px;
} 
.blog-wrapper .descrip-blog-cont{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;

}
.blog-wrapper .description-blog-content{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;

}
.category-tabs .descrip-blog{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}
.category-tabs .description-blog{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: 60px;
}
.category-tabs a{
  text-decoration:none;
  color: #000000;
}
.category-tabs .card{
  min-height: 485px;
}

#categoryTabsContent .tab-pane {
  min-height: 400px; /* adjust based on your card height */
}

.main-top-img img{
  border-radius:16px;
}

.brand-name{
  font-size: 14px;
  color: #26408B !important;
}
.date-min{
  color: #67748A;
  font-size: 14px;
}
.blog-description{
  font-size: 14px;
  color: #3A404A;
  display: -webkit-box;
  -webkit-line-clamp: 2;      
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; 
}
.blog-list-title{
  display: -webkit-box;
  -webkit-line-clamp: 2;      
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; 
  color: #000;
}


.blog-detail {
  padding-top: 32px;
  padding-bottom: 100px;
}
.blog-detail .blog-title {
  font-size: 32px;
  color: #000000;
}
 .blog-detail .breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 400;
}
 .blog-detail .breadcrumb a {
  color: #96A2B4;
  text-decoration: none;
}
 .blog-detail .breadcrumb span {
  color: #000000;
}
.blog-detail .border-right-custom {
  position: relative;
}
.blog-detail .border-right-custom::after {
  content: "";
  position: absolute;
  top: -60px;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #E2E5EA;
  z-index: -1;
}
.blog-detail .meta {
  font-size: 14px;
  font-weight: 500;
  color: #3A404A;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-detail .tag-btn{
  gap: 12px;
}
.blog-detail .meta .author {
  color: #26408B;
  font-size: 14px;
  font-weight: 500;
}
.blog-detail .tag {
  padding: 2px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
}
.blog-detail .tag.green {
  background: #D4EEDE;
  border: 0.5px solid #75C994;
  color: #09411E;
}
.blog-detail .tag.blue {
  background: #D4E2FD;
  border: 0.5px solid #74A0FA;
  color: #082662;
}
.blog-detail .desc{
  font-size: 16px;
  font-weight: 400;
  color: #67748A;
}
.blog-detail .blog-img {
  border-radius: 16px;
  margin-bottom: 32px;
}
.blog-detail .join-card {
  background: linear-gradient(49.6deg, #C0D6FF -3.77%, #6098FF 94.07%);
  padding: 24px;
  border-radius: 16px;
  color: #fff;
}
.blog-detail .join-card h5{
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}
.blog-detail .join-card h5 span{
  font-weight: 600;
}
.blog-detail .join-card p{
  font-size: 15px;
}
.blog-detail .join-card .btn-primary{
  background-color: #26408B;
  border: transparent;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  height: 40px;
  line-height: 24px;
}
.blog-detail .join-card::before{
content: '';
position: absolute;
background: url('../../images/retail/pricing-pattern.svg')no-repeat top right;
width: 109px;
height: 100%;
right: 10px;
top: 8px;
opacity: 0.9;
z-index: 0;
}
.blog-detail .join-card::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: 0;
  width: 60%;
  height: 100%;
  background: url('../../images/retail/join-bg.svg') no-repeat bottom right/contain;
  opacity: 0.6;
  z-index: 0;
}
.blog-detail .announcements{
  margin-top: 70px;
}
.blog-detail .announcements .side-card{
  padding: 40px 16px;
}
.blog-detail .announcements .side-card:first-of-type{
  padding-top: 16px;
}
.blog-detail .announcements .side-card:last-of-type{
  padding-bottom: 16px;
  border-bottom: unset;
}
.blog-detail .announcements .side-card .tag-btn{
  margin-bottom: 12px;
}
.blog-detail .announcements .announcements-title{
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 4px;
}
.blog-detail .announcements .announcements-title a{
  color: #000;
}
.blog-detail .announcements .key-highlight{
font-size: 14px;
font-weight: 400;
color: #82858B;
margin-bottom: 0px;
}
.detail-sticky {
  position: sticky;
  top: 80px;
}
.blog-detail .toc {
  padding-right: 40px;
}
.blog-detail .toc h6 {
  font-size: 20px;
  color: #000000;
}

.blog-detail .toc ul {
  list-style: none;
  padding-left: 24px;
  margin: 0;
}

.blog-detail .toc li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 24px;
  color: #82858B;
  font-size: 16px;
  font-weight: 400;
}
.blog-detail .toc li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 20px;
  width: 2px;
  height: calc(100% + 20px);
  background: #B5C3D3;
}
.blog-detail .toc li:last-child::after {
  display: none;
}
.blog-detail .toc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  background: #B5C3D3;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 1;
}
.blog-detail .toc li a.active {
  color: #000000;
  font-weight: 600;
}

.blog-detail .toc li:has(a.active)::before  {
  background: #26408B;
} 
.blog-detail .share {
  margin-top: 30px;
}
.blog-detail .share-title{
  font-size: 20px;
  color: #000000;
}
.blog-detail .icons a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #26408B;
  border: 0.5px solid #3F444D;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
}
.blog-detail .article-accordion{
min-width: 250px;
}
.blog-detail .accordion-item{
  border-radius: 12px;
}
.blog-detail .accordion-button{
font-size: 16px;
font-weight: 600;
padding: 14px 12px;
color: #26408B;
border-radius: 12px;
background: transparent;
}
.blog-detail .accordion-body{
padding: 0px 12px 14px;
}
.blog-detail .accordion-body p{
font-size: 12px;
margin-bottom: 10px;
color: #82858B;
}
.blog-detail .accordion-button:not(.collapsed){
  box-shadow: unset;
  background-color: transparent;
}
.blog-detail .accordion-button:focus{
  box-shadow: none;
}
.blog-detail .accordion-button::after {
  width: 16px;   
  height: 16px;
  background-image: url('../../images/retail/down-chevron.svg')!important;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}
.blog-detail .content p {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}
.blog-detail .content h2,
.blog-detail .content h3,
.blog-detail .content h4,
.blog-detail .content h5 {
  font-size: 20px;
  margin-top: 40px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
}
.blog-detail blockquote {
  border-left: 4px solid #26408B;
  padding-left: 12px;
  color: #000000;
  margin: 24px 0;
  font-size: 14px;
  font-weight: 400;
}
.blog-detail ul{
  padding-left: 24px;
}
.blog-detail ul li {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}
.blog-detail .disclaimer{
  border: 0.5px solid #26408B;
  padding: 16px;
  border-radius: 8px;
  margin-top: 40px;
}
.blog-detail .disc-title{
  font-size: 16px;
  font-weight: 600;
  color: #26408B;
}
.blog-detail .disc-desc p{
  font-size: 14px;
  font-weight: 400;
  color: #82858B;
}
.blog-detail .sidebar h6 {
  font-weight: 600;
  margin-bottom: 16px;
}
.blog-detail .side-card {
  border-bottom: 1px solid #E2E5EA;
  padding: 12px 0;
}
.blog-detail .badge {
  font-size: 11px;
  background: #e5e7eb;
  margin-bottom: 6px;
  display: inline-block;
}
.blog-detail .detail-content{
  gap: 40px;
}
.blog-detail .detail-content .left-section{
  width: 266px;
}
.blog-detail .content img {
  width: 100%;
}
@media (max-width: 1200px) {
  .blog-detail .detail-content .left-section{
    width: 245px;
  }
  .blog-detail .article-accordion {
    min-width: 230px;
}
}
@media (min-width: 1200px) {
  .blog-detail .custom-gutter {
    --bs-gutter-x: 40px;
  }
}
@media (max-width: 991px) {
  .blog-detail{
    padding: 40px 0px;
  }
  .detail-sticky {
    position: static;
  }
  .blog-detail .blog-title {
    font-size: 24px;
  }
  .blog-detail .announcements{
    margin-top: 40px;
  }
}

.glossary-detail {
   padding-top: 40px;
}

.glossary-detail .breadcrumb {
   display: flex;
   align-items: center;
   gap: 4px;
   margin-bottom: 40px;
   font-size: 14px;
   font-weight: 400;
   color: #6b7280;
}

.glossary-detail .breadcrumb a {
   color: #82858B;
   text-decoration: none;
}

.glossary-detail .breadcrumb span {
   color: #000000;
}

.glossary-detail .page-title {
   font-size: 24px;
   font-weight: 600;
   color: #000000;
   margin-bottom: 24px;
}

.glossary-detail .share-icons {
   display: flex;
   gap: 16px;
   margin-bottom: 32px;
}

.glossary-detail .divider {
   height: 1px;
   background: #CDD2D7;
   margin: 32px 0;
}

.glossary-detail .content {
   max-width: 798px;
}

.glossary-detail .content p {
   font-size: 16px;
   font-weight: 400;
   color: #000000;
}

.glossary-detail .disclaimer {
   background: #ffffff;
   border: 0.5px solid #26408B;
   border-radius: 8px;
   padding: 16px;
   margin-top: 96px;
   margin-bottom: 80px;
   max-width: 798px;
}

.glossary-detail .disclaimer h6 {
   color: #26408B;
   font-weight: 600;
   font-size: 16px;
}

.glossary-detail .disclaimer p {
   color: #82858B;
   font-weight: 400;
   font-size: 14px;
}

.glossary-detail .related-terms {
   padding: 80px 0px;
}

.glossary-detail .section-title {
   font-size: 20px;
   font-weight: 600;
   color: #000000;
}

.glossary-detail .term-card {
   padding: 24px;
   border-radius: 8px;
}

.glossary-detail .term-card:hover {
   background-color: #f5f5f5;
}

.glossary-detail .term-card h6 {
   font-weight: 600;
   font-size: 16px;
   color: #000000;
}

.glossary-detail .term-card p {
   font-size: 16px;
   font-weight: 400;
   color: #82858B;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
   margin-bottom: 0px;
}

.copy-btn {
    position: relative;
    display: inline-block;
}

.copy-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 999;
    opacity: 0;
    animation: fadeInOut 2s ease forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, 5px); }
    20% { opacity: 1; transform: translate(-50%, 0); }
    80% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 5px); }
}

@media(max-width:991px) {
   .glossary-detail .related-terms {
      padding: 40px 0px;
   }

   .glossary-detail .term-card {
      padding-left: 0px;
      padding-top: 8px;
   }

   .glossary-detail .disclaimer {
      margin-top: 42px;
      margin-bottom: 24px;
   }
}

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  margin-top: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 999;
  max-height: 300px;
  overflow-y: auto;
  display: none;
}
.search-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
.search-item:hover {
  background: #f5f5f5;
}
 

 

