@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

@font-face {
    font-family: 'Arial Narrow';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/arial-webfont/ARIALN.woff') format('woff');
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}

:root {
    --background-color: #ffffff;
    --default-color: #461872;
    --default-light-color: #5F259E;
    --dark-color: #212121;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: "Plus Jakarta Sans", sans-serif;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: none;
}

a:hover {
    /* color: color-mix(in srgb, var(--default-color), transparent 25%); */
    text-decoration: none;
}

/* heading top */
.heading-top {
    padding: 0px 60px;
    background-color: #663497;
}

.heading-top ul {
    padding: 10px 0px;
    margin: 0px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.heading-top a {
    color: #fff;
    margin-left: 10px;
    display: flex;
    align-items: center;
    font-weight: 300;
    font-size: 14px;
}

.heading-top a img {
    margin-right: 5px;
    height: 24px;
}

.heading-top ul li {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: end;
    float: inline-end;
}

.heading-bottom {
    padding: 8px 60px;
    display: flex;
    justify-content: space-between;
}

.heading-top a img.head-call{
    height: 20px;
}

.footer-list .list{
    margin-bottom: 20px;
}

/* heading top end */
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: #fff;
    background-color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    width: 214px;
    /* height: 73.16px; */
    height: 45px;
    margin-right: 8px;
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.navmenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navmenu .login-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 9999;
    /* margin-left: 100px; */
}

/* Login Button */
.login-buttons .login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    background: transparent;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.login-buttons .login:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: scale(1.08);
    filter: brightness(1.3);
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2);
}

.navmenu:has(.login-buttons .login:hover) li a::before,
.navmenu:has(.login-buttons .ac-btn:hover) li a::before {
    width: 0 !important;
}


.login-buttons .login img {
    width: 22px;
    height: 20px;
}

.login-buttons .ac-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #ccc;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.login-buttons .ac-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0px 6px 25px rgba(95, 37, 158, 0.6);
    filter: brightness(1.2);
    border: none;
}


/* Main dropdown menu style */
.dropdown-menu {
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 20px;
    display: none;
    z-index: 1000;
    left: -100px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-columns {
    display: flex;
    gap: 0;
    /* no gap between columns */
}

/* Both columns same width */
.left-column, .right-column.submenu {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Item & submenu item same design */
.item, .submenu-item {
    display: flex;
    align-items: center;
    padding: 9px;
    cursor: pointer;
    gap: 10px;
}

.item:hover, .submenu-item:hover {
    border-left: 4px solid #5F259E;
    padding-left: 8px;
    background: #5f259e30;
}

.item img, .submenu-item img {
    width: 32px;
    height: 32px;
    /* filter: grayscale(1) brightness(1.2) contrast(0.7) sepia(0.1) saturate(0.2); */
    /* opacity: 0.6; */
}

.right-column.submenu .submenu-item img {
    filter: none;
}

.text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.text a {
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    padding: 0px !important;
}

span.arrow {
    margin-left: auto;
}

.text strong {
    font-weight: 600;
    font-size: 14px;
    color: #212121;
}

.text span {
    font-size: 12px;
    color: #A49FA6;
    text-wrap: auto;
}

.arrow img {
    width: 20px;
    height: 20px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

#market-submenu, #trade-submenu,
#fees-submenu, #deposit-submenu {
    display: none;
    flex-direction: column;
}

#market-submenu.active, #trade-submenu.active,
#fees-submenu.active, #deposit-submenu.active {
    display: flex;
}



/* Index Page Header on Scroll
  ------------------------------*/
.index-page.scrolled .header {
    --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-btn{
    display: flex;
    gap: 10px;
}

.footer-btn a.common-btn.demo-account{
    color: #000000;
    border: 1px solid #000000;
}

.footer-btn a.common-btn{
    line-height: 40px;
}

.footer .foot-card {
    display: flex !important;
    flex-direction: column !important;
}

.footer .card {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}



.news-letter {
    padding: 0 215px;
    margin-bottom: -155px;
    display: flex;
}

.news-letter .container {
    border: 1px solid #E4B9FF;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0px 4px 35px 0px #0000001A;
}

.news-letter .news-letter-details .heading h1 {
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    color: #000000;
}

.news-letter .news-letter-details .section-para span {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #212121;
}

.news-letter .news-letter-form .form {
    border-radius: 8px;
    padding: 9px 12px;
    background: #FBF5FF;
    display: flex;
    justify-content: space-between;
    border: 1px solid #5F259E;
}

.news-letter .news-letter-form .form input {
    background: none;
    border: none;
    width: 100%;
    outline: none;
}

.news-letter .news-letter-form .form input::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #212B36;
}

.news-letter .news-letter-form .form .subscribe-btn {
    border-radius: 10px;
    padding: 16px 24px;
    background: #5F259E;
    border: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    display: flex;
    gap: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.news-letter .news-letter-form .form .subscribe-btn:hover {
    background: #4a1e7d;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

a.common-btn.demo-account {
    color: #FEBC1F;
    border: 1px solid #FEBC1F;
    background: transparent;
}

footer {
    background: var(--default-color);
    padding-top: 150px;
}

.footer {
    margin: 20px 0px;
}

.footer .cards {
    padding: 40px 0 20px;
}

.footer .card {
    border: 1px solid #8547C2;
    background: #4C1976;
    border-radius: 15px;
    padding: 20px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.footer .card::after {
    content: "";
    position: absolute;
    left: -190px;
    bottom: -330px;
    width: 200px;
    height: 500px;
    background: rgba(0, 0, 0, 0.1);
    transform: rotateZ(-40deg) translateX(0px);
    transition: all 0.5s ease-in-out;
}

.footer .card:hover::after {
    transform: rotateZ(-35deg) translateX(690px);
    background: rgba(0, 0, 0, 0.15);
}

.footer .card:hover {
    background: #4C1976;
    box-shadow: 0px 15px 22px rgba(51, 51, 67, 0.3);
    position: relative;
    z-index: 1;
}

.footer .card .left-side {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.footer .card .left-side img {
    width: 35px;
    height: 32px;
}

.footer .card .left-side .card-subtitle {
    font-weight: 400;
    font-size: 14px;
    color: #E4B9FF;
}

.footer .card .arrow-img img {
    border-radius: 15px;
    padding: 8px;
    background: #5F259E;
    transition: transform 0.3s ease-in-out;
}

.footer .card .arrow-img img:hover {
    transform: scale(1.1);
    transform: rotate(45deg);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.footer .card .card-text {
    font-weight: 400;
    font-size: 17px;
    color: #FFFFFF;
    padding: 10px 0;
}

.footer .logo-details .logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .logo-details .logo img {
    width: 176px;
    height: 60px;
}

.footer .logo-details p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
    /* width: 47%; */
}

.contact-info h5{
    color: #fff;
}

.footer .social-media {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.footer .social-media span {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}

.footer .social-media .social-img {
    background: #5F259E;
    border-radius: 15px;
    padding: 14px;
}

footer .divider {
    border-top: 1px solid #E4B9FF
}

.footer-list {
        padding: 0px 0px 20px;
}

.footer-list .row {
    margin: 0;
    display: flex;
    /* justify-content: center; */
}

/* li.sub-footer{
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
} */

/* li.sub-footer:hover::after {
    width: 100%;
}

li.sub-footer::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #f0f0f0;
    transition: width 0.3s ease;
} */

.footer-list .heading h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    word-spacing: 5px;
}

.footer-list .heading h3 a{
    color: #fff;
}

.footer-list .list a {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer-list .list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #f0f0f0;
    transition: width 0.3s ease;
}

.footer-list .list a:hover {
    color: #f0f0f0;
}

.footer-list .list a:hover::after {
    width: 100%;
}

.footer-list .col-lg-2 {
    text-align: left;
    padding: 10px 15px;
}

.footer-list .list p {
    margin: 5px 0;
}

.footer-list .list p a span{
    margin-left: 12px;
}

.footer-list .list ul{
    margin-bottom: 0rem;
}

.submenu-footer-flex{
    display: flex;
    justify-content: space-between;
}

li.sub-footer{
    color: #fff;
    list-style: circle;
    /* margin-left: 1rem; */
    margin: 5px 0px 5px 10px;
    width: fit-content;
}

.contact-info h5 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    word-spacing: 5px;
}

.contact-info .heading{
    margin-bottom: 0px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.contact-info p{
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
}

.display-cta-image{
    display: block;
}

.pipze-cta-image.mobile-cta-image{
    display: none;
}

.footer-list .list p::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #fff;  /* Dot color */
  border-radius: 50%;       /* Makes it round */
  margin-right: 10px;       /* Space between dot and text */
  vertical-align: middle;   /* Aligns with text */
}

.copyright {
    font-weight: 400;
    font-size: 12px;
    line-height: 40px;
    text-align: right;
    color: #FFFFFF;
    padding: 15px 0;
}

.footer-links a{
    color: white;
    text-decoration: underline;
    font-size: 12px;
    padding: 0px;
}

.footer-links{
    gap: 20px;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 2 columns on small screens and up */
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    padding: 30px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

.main {
    margin-top: 100px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.custom-hero-section {
    width: 100%;
    min-height: 75vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.custom-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.custom-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Icon Boxes */


.icon-box {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    border-radius: 16px;
    background: #5F259E33;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.icon-box img {
    height: 80px;
    display: block;
}


@keyframes showHideIcon {
    0% { 
        opacity: 0; 
        transform: scale(0.8) translateY(20px); 
        visibility: hidden;
    }
    10% { 
        opacity: 1; 
        transform: scale(1) translateY(0px); 
        visibility: visible;
    }
    40% { 
        opacity: 1; 
        transform: scale(1) translateY(0px); 
        visibility: visible;
    }
    50% { 
        opacity: 0; 
        transform: scale(0.8) translateY(-20px); 
        visibility: visible;
    }
    100% { 
        opacity: 0; 
        transform: scale(0.8) translateY(-20px); 
        visibility: hidden;
    }
}

.icon1 { 
    top: 18%; 
    left: 52%; 
    transform: translate(-50%, -50%) scale(0.8);
    animation: showHideIcon 8s ease-in-out infinite;
    animation-delay: 0s;
}

.icon2 { 
    top: 12%; 
    right: 12%; 
    transform: translate(0, -50%) scale(0.8);
    animation: showHideIcon 8s ease-in-out infinite;
    animation-delay: 2s;
}

.icon3 { 
    bottom: 32%; 
    left: 48%; 
    transform: translate(-50%, 50%) scale(0.8);
    animation: showHideIcon 8s ease-in-out infinite;
    animation-delay: 4s;
}

.icon4 { 
    bottom: 20%; 
    right: 16%; 
    transform: translate(0, 50%) scale(0.8);
    animation: showHideIcon 8s ease-in-out infinite;
    animation-delay: 6s;
}



/* Content Container */
.custom-hero-section .container {
    position: relative;
    z-index: 3;
}

/* Left Side Content */
.hero-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 100px;
}

.section-title span {
    display: inline-block;
    border: 1px solid #8547C2;
    padding: 10px 20px;
    border-radius: 100px;
    background: #663497;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
}

.heading h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
    color: #fff;
}

.heading h1 span {
    color: #DBBAF3;
}

.section-para span {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    /* width: 80%;
    display: block; */
}

/* Additional floating effect while visible */
@keyframes floatEffect {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-8px); 
    }
}

.icon-box:hover {
    animation-play-state: paused;
}


/* Alternative faster animation (optional) */
.super-fast .icon1 { animation-duration: 2s; }
.super-fast .icon2 { animation-duration: 2s; animation-delay: 0.5s; }
.super-fast .icon3 { animation-duration: 2s; animation-delay: 1s; }
.super-fast .icon4 { animation-duration: 2s; animation-delay: 0.5s; }




.hero .section-title span {

    border: 1px solid #8547C2;
    padding: 10px 20px;
    border-radius: 100px;
    color: #fff;
}

.hero .heading h1,
.hero .heading span {
    font-weight: 700;
    font-size: 34px;
    line-height: 50px;
    color: #fff;
}

.hero .heading h1 span {
    color: #DBBAF3;
}

.hero .section-para,
.about .section-para {
    margin-top: -10px;
}

.hero .section-para span {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    display: block;
}

.hero a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 10px;
    background: #FEBC1F;
    color: #212121;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
}

section#liquidity{
    padding: 30px 0px 0px;
}

.stp-broker .title-section,
.liquidity .title-section {
    padding: 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-bottom: 17px;
}

.stp-broker .section-title span,
.liquidity .section-title span {
    border: 1px solid #8547C2;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    color: #212121;
    background: #FBF5FF;
}

.stp-broker .heading h1,
.liquidity .heading h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #212121;
}

.stp-broker .section-para span {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #212121;
    width: 62%;
    display: inline-flex;
}

.stp-broker .card-mar {
    margin-bottom: 1.5rem;
}

.stp-broker .card,
.why-pipze .card,
.account-features .card {
    border: 1px solid #8547C2 !important;
    background: #FBF5FF;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.stp-broker .card::after,
.why-pipze .card::after,
.account-features .card::after {
    content: "";
    position: absolute;
    left: -190px;
    bottom: -330px;
    width: 200px;
    height: 500px;
    background: rgba(0, 0, 0, 0.1);
    transform: rotateZ(-40deg) translateX(0px);
    transition: all 0.5s ease-in-out;
}


.stp-broker .card:hover::after,
.why-pipze .card:hover::after,
.account-features .card:hover::after {
    transform: rotateZ(-35deg) translateX(690px);
    background: rgba(0, 0, 0, 0.15);
}

.stp-broker .card:hover,
.why-pipze .card:hover,
.account-features .card:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 15px 22px rgba(51, 51, 67, 0.3);
    position: relative;
    z-index: 1;
}

.stp-broker .card .card-body {
    padding: 21px;
}

.stp-broker .card .icon img,
.why-pipze .card .icon img,
.account-features .card .icon img {
    border: 1px solid #8547C2 !important;
    background: #FBF5FF;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 10px;
    height: 100%;
    width: 68px;
}

.stp-broker .card .icon,
.why-pipze .card .icon,
.why-pipze .card .icon {
    padding-bottom: 15px;
}

.stp-broker .card .card-title {
    font-weight: 700;
    font-size: 20px;
    color: #212121;
}

.stp-broker .card .card-text,
.why-pipze .card .card-text,
.why-pipze .card .card-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #212121;
}


/* height fix  */
.stp-broker .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.stp-broker .card-mar {
    display: flex !important;
    flex-direction: column !important;
}

.stp-broker .card {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.why-pipze .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.why-pipze .swiper-slide {
    display: flex !important;
    flex-direction: row;
    height: auto;
}

.why-pipze .card {
    display: flex !important;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.why-pipze .card-body {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    flex-grow: 1;
}

.account-features .card {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.account-features .card-mar {
    display: flex !important;
    flex-direction: column !important;
}

.plans .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.plans .swiper-slide {
    display: flex !important;
    flex-direction: row;
    height: auto;
}

.plans .card {
    display: flex !important;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

/* height fix  */


/* live quote section css start */
.live-quote {
    position: relative;
    overflow: hidden;
    background: #461872;
    padding: 20px 0px;
}

.live-quote .container {
    padding: 30px 0;
}

.live-quote .live-quote-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.live-quote .live-quote-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.live-quote .title-section {
    padding: 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.live-quote .section-title span,
.platform .section-title span {
    border: 1px solid #8547C2;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    background: #663497;
}

.live-quote .heading h1,
.platform .heading h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #fff;
}

.live-quote .section-para span,
.platform .section-para span {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    width: 65%;
    display: inline-flex;
}

.live-quote-table {
    background: #f5f6fa;
    border-radius: 20px;
    margin: 0 15px;
}

.live-quote-table .nav-pills {
    background: #5f259e;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 15px;
    text-align: center;
}

.live-quote-table .livequotes .nav-pills a.active {
    color: #5f259e;
    background-color: transparent;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--default-color);
    background-color: #fff;
    border-radius: 100px 0 0 100px !important;
}

.live-quote-table .nav-pills a {
    padding: 20px 0;
    margin: 30px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.live-quote-table .nav-pills .nav-link {
    border-radius: .25rem;
}

.live-quote-table .nav-link:focus,
.live-quote-table .nav-link:hover {
    text-decoration: none;
}

.live-quote-table .tab-content {
    background: #f5f6fa;
    padding: 0 18px;
}

.live-quote-table .tab-content table thead {
    position: relative;
    z-index: 99;
}

.live-quote-table .tab-content table tbody #EURUSD {
    background-color: #fff;
    position: relative;
    z-index: 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.live-quote-table .row {
    display: flex;
    flex-wrap: wrap;
}

.live-quote-table .scroll-custom {
    height: 485px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #4B55C1 transparent;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-spacing: 0;
}

.live-quote-table .tab-content table thead tr td {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #daddfa;
    font-size: 14px;
    text-transform: uppercase;
    color: #5f259e;
    border: 0;
    padding: 15px;
}

.table td,
.table th {
    padding: 0.75rem 15px;
    vertical-align: top;
    font-size: 14px;
    text-align: start;
    border-top: 1px solid #dee2e6;
}


.nav-pills .nav-link.active .bottom-round-corner {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 30px;
    top: 100%;
    background: white;
    z-index: -1;
}

.nav-pills .nav-link.active .bottom-round-corner::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #5f259e;
    border-radius: 0 35px 0 0;
    position: absolute;
    inset: 0;
    transition: background 0.3s ease;
}

.nav-pills .nav-link.active .top-round-corner {
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 100px;
    height: 30px;
    background: white;
    z-index: -1;
}

.nav-pills .nav-link.active .top-round-corner::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #5f259e;
    border-radius: 0 0 35px 0;
    position: absolute;
    inset: 0;
    transition: background 0.3s ease;
}

/* live quote section css end  */


/* platform section css start  */
.platform .section-image {
    padding: 15px 0;
}

.platform .section-image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

a.common-btn,.deposit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 10px;
    background: #FEBC1F;
    color: #212121;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, background 0.3s;
    position: relative;
    z-index: 2;
}

a.common-btn img {
    transition: transform 0.3s ease-in-out;
    display: inline-block;
}

a.common-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

a.common-btn:hover img {
    transform: translateX(5px);
}

.trader .trader-img,
.enpowring .enpowring-img {
    width: 100%;
    height: 100%;
}

.trader .trader-img img,
.enpowring .enpowring-img img {
    width: 100%;
    height: 100%;
}

.trader,
.enpowring {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 20px 0px;
}

.trader .container,
.enpowring .container {
    padding: 20px;
}

.trader .trader-section,
.enpowring .enpowring-section {
    padding: 0px;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.trader .section-title span,
.enpowring .section-title span {
    border: 1px solid #8547C2;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    color: #212121;
    background: #FBF5FF;
}

.trader .heading h1,
.enpowring .heading h1,
.why-pipze .heading h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #212121;
}

.live-quote .section-para,
.trader .section-para,
.enpowring .section-para,
.plans .section-para {
    margin-top: -15px;
}

.trader .section-para span,
.enpowring .section-para span {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #212121;
    width: 93%;
    display: inline-flex;
}

.trader .trader-details .card,
.enpowring .enpowring-details .card {
    border: none;
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 10px;
}

.trader-details .card .icon img,
.enpowring-details .card .icon img {
    border: 1px solid #8547C2 !important;
    background: #FBF5FF;
    border-radius: 18px;
    padding: 20px;
    height: 70px;
    width: 70px;
}

.trader-details .card-title,
.enpowring-details .card-title {
    font-weight: 700;
    font-size: 20px;
    color: #212121;
}

.trader-details .card-text,
.enpowring-details .card-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    width: 95%;
    color: #212121;
}

/* platform section css end  */

/* Forex Trading with Copy Trading section css start*/
.platform {
    background: #461872;
}

.platform .title-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    /* padding: 0px 0px 20px; */
    gap: 15px;
}

.platform .section-para span {
    width: 100%;
}

.copy-trading-img {
    display: flex;
    gap: 10px;
}

.copy-trading-img img {
    width: 150px;
}

.reverse-on-mobile {
    display: flex;
    flex-wrap: wrap;
}

/* .platform.section .heading {
    margin-top: 1rem;
} */

/*  Forex Trading with Copy Trading section css end */
/*  award section css start */
.enpowring .section-para span {
    width: 96%;
}


.award {
    background-image: url('../images/award.webp');
}

.award,
.forex-acc {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.award-details .heading h1 {
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
    color: #fff;
    text-transform: uppercase;
}

.award-details .section-para span {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #fff;
}

.award svg .payment-logo-main rect {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    fill: transparent;
}

.award svg .payment-logo-main:hover rect {
    fill: rgb(95, 37, 158, 0.5);
}

.forex-acc {
    background-image: url('../images/forex-acc-bg.webp');
}

.forex-acc .forex-acc-details {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.forex-acc-details .heading h1 {
    font-weight: 600;
    font-size: 32px;
    line-height: 50px;
    color: #fff;
}

.forex-acc-details .section-para span {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    font-style: italic;
    color: #fff;
    display: inline-flex;
}

.forex-acc-details .forex-btn {
    padding-top: 20px;
}

.forex-acc-details .forex-btn a {
    padding: 8px 30px;
    background: #5F259E;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(95, 37, 158, 0.4);
}

.forex-acc-details .forex-btn a:hover {
    background: #7A34C6;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(95, 37, 158, 0.6);
}

/*  award section css end */


/*  plans section css start */

.plans {
    background-image: url('../images/plans-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 30px 0px 20px;
}

.plans .title-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    /* padding-top: 20px; */
    gap: 20px;
}

.plans .section-title span {
    border: 1px solid #8547C2;
    background: #FBF5FF;
    border-radius: 100px;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 16px;
    color: #5F259E;
}

.plans .heading h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    text-transform: capitalize;
    color: #212121;
}

.plans .section-para span {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #212121;
    display: inline-flex;
    width: 66%;
}

.plans .plans-details {
    text-align: center;
    /* padding: 35px 0; */
}

/* 
.plans .nav-tabs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    --bs-nav-tabs-border-width: none;
    border: 1px solid #8547C2;
    border-radius: 100px;
    padding: 10px 12px;
}

.plans .nav-tabs .nav-item .nav-link.active {
    background: #5F259E;
    color: #fff;
}

.plans .nav-tabs .nav-item .nav-link {
    border-radius: 100px;
    padding: 10px 40px;
    color: #212121;
    font-weight: 500;
    font-size: 18px;
} */

.plans .card {
    border: 1px solid #8547C2;
    border-radius: 20px;
    background: #fff;
    text-align: left;
    padding: 20px 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.plans .card::after {
    content: "";
    position: absolute;
    left: -300px;
    bottom: -360px;
    width: 200px;
    height: 800px;
    background: rgba(0, 0, 0, 0.1);
    transform: rotateZ(-40deg) translateX(0px);
    transition: all 0.5s ease-in-out;
}

.plans .card:hover::after {
    transform: rotateZ(-35deg) translateX(1200px);
    background: rgba(0, 0, 0, 0.15);
}

.plans .plans-data.card:hover {
    background: linear-gradient(203.46deg, rgba(133, 71, 194, 0.1) -0.04%, rgba(228, 185, 255, 0.1) 98.99%);
    box-shadow: 0px 15px 22px rgba(51, 51, 67, 0.3);
    position: relative;
    z-index: 1;
}

.plans-data.card h5 {
    font-weight: 700;
    font-size: 32px;
    color: #212121;
    display: flex;
    gap: 10px;
}

.plans-data.card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #212121;
}

.plans-data.card h1 {
    font-weight: 700;
    font-size: 44px;
    color: #5F259E;
}

.plans-data.card .card-divider {
    border-bottom: 1px solid #E4B9FF;
    padding: 5px;
}

.plans-data.card h1 span {
    font-weight: 500;
    font-size: 22px;
}

.plans-data.card .plans-list {
    padding-top: 15px;
}


.plans-data.card .plan-btn {
    display: block;
    border-radius: 10px;
    padding: 16px 0;
    background: #5F259E1A;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #5F259E;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.plans .plans-data.card:hover .plan-btn {
    transform: scale(1.05);
    background: #4a1e7d;
    color: #fff;
    box-shadow: 0px 5px 15px rgba(102, 52, 151, 0.5);
}

.plans-data.card .plan-btn img {
    width: 24px;
    height: 24px;
}

.plans-data.card :hover .plan-btn img {
    filter: brightness(100);
}

.plans-data.card h5 span {
    border-radius: 100px;
    padding: 3px 6px;
    background: #5F259E33;
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: #5F259E;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.plans-data.card h5 span img {
    width: 19px;
    height: 19px;
}

.plans-data.card p span {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #212121;
}

/*  plans section css end */

/* why-pipze section css start */
/* .swiper-slide.card-pad {
    width: 500px !important;
} */

.why-pipze.section .container {
    overflow: hidden;
}

.why-pipze .title-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 20px;
}

.why-pipze .card .card-title {
    font-weight: 700;
    font-size: 19px;
    color: #212121;
}

.why-pipze .swiper {
    overflow: visible;
}

.why-pipze .swiper-slide {
    padding-bottom: 20px;
}

#why-pipze .swiper-slide .card .icon img {
    /* max-width: 70px; */
    /* adjust to taste */
    margin: 0 auto;
}

/* why-pipze section css end */


/* liquid section css start */
.liquidity .liq-img {
    margin-bottom: 25px;
}

.liquidity-image {
    padding: 50px 80px;
    background: #FBF5FF;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 170px;
    transition: box-shadow 0.3s ease-in-out;
}

.liquidity-image img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.liquidity-image:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.liquidity-image:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* liquid section css start */

/* Brokers Introducing section css start */

.brokers-introducing {
    background: url('../images/brokers-introducing.png') no-repeat center center;
    background-size: cover;
    background-blend-mode: luminosity;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    padding: 30px 0px 60px;
}

/* .brokers-introducing.section {
    padding: 70px 0;
} */

.brokers-introducing.section .row {
    align-items: center;
}

.brokers-introducing .section-image img {
    width: 100%;
    /* height: 500px; */
    position: relative;
    z-index: 2;
}

.brokers-introducing .content {
    /* padding: 0px 90px; */
    color: #fff;
}



/* Brokers Introducing section css end */


/* Deposit Bonus section css start */



.deposit-bonus {
    background: url('../images/deposit-bonus.png') no-repeat center center;
    background-size: cover;
    background-blend-mode: luminosity;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}



.deposit-bonus.section {
    padding: 20px 0px 0px 0px;
}

.deposit-bonus.section .row {
    justify-content: center;
    margin: 70px 0px 230px;
}

.deposit-bonus .trader {
    border: 1px solid #8547C2;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    color: #212121;
    background: #FBF5FF;
    width: fit-content;
}

.deposit-bonus .trader-heading h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: black;
}

.deposit-bonus .trader-heading h1 span {
    color: #5F259E;
}

.deposit-bonus .trader-para span {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #212121;
}

.deposit-bonus .trader-term span {
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #A49FA6;
}

.deposit-bonus.section .content h1 {
    font-family: Plus Jakarta Sans;
    font-weight: 800;
    font-size: 140px;
    line-height: 100%;
    text-transform: capitalize;
    color: #5F259E;
}

.deposit-bonus.section .content h2 {
    font-family: Plus Jakarta Sans;
    font-weight: 800;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #5F259E;
}

/* Deposit Bonus section css end */

/* ================= End Main Page Css ================= */

/* ================= Start About Us Page Css ================= */


/*     <!-- old section css ------->   */

/* .about,
.deposit {
    background: radial-gradient(49.91% 49.91% at 50% 50.09%, #5F259E 0%, #461872 100%);
    width: 100%;
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about .about-bg img,
.deposit .deposit-bg img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: none;
    z-index: 1;
}

.deposit .deposit-bg img {
    object-fit: cover;
}

.about .container,
.deposit .container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.about .section-title span {
    border: 1px solid #8547C2;
    padding: 10px 20px;
    border-radius: 100px;
    background: #663497;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
}

.about .heading h1 {
    font-weight: 700;
    font-size: 34px;
    line-height: 50px;
    display: inline-flex;
    width: 50%;
    color: #fff;
}

.about .section-para p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    width: 55%;
    display: inline-flex;
} */

/*     <!-- old section css ------->   */


/* About page Trqandig section css Start */

.trending-about {
    position: relative;
    background-image: url('../images/aboutus/trending.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0;
    width: 100%;
    overflow: hidden;
}

.trending-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* darken overlay, adjust alpha */
    z-index: 1;
}

.trending-about .container {
    position: relative;
    z-index: 2;
    /* content stays above overlay */
}

.trending-about .heading h1 {
    font-weight: 700;
    font-size: 52px;
    line-height: 1.2;
    color: #FFFFFF;
}

.trending-about .section-para p {
    font-weight: 500;
    font-size: 22px;
    margin-top: 16px;
    color: #FFFFFF;
}

/* Cards grid */
.market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.market-card {
    background: #FFFFFF99;
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    height: 125px;
    width: 100%;
}

.market-card img {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
}

.market-card span {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #212121;
}

/* Hover effect */
.market-card:hover {
    transform: translateY(-3px);
    backdrop-filter: blur(10px);
}

/* About page Trqandig section css End */



/* About page Corporate section css Start */

.corporate .corporate-details {
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.corporate .corporate-img img {
    width: 100%;
    height: 100%;
}

.corporate .section-title span {
    border: 1px solid #8547C2;
    background: #FBF5FF;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    color: #212121;
}

.corporate .section-title span img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.corporate .heading h1 {
    font-weight: 700;
    font-size: 34px;
    color: #212121;
    padding: 25px 0 10px 0;
}

.corporate .section-para p {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #212121;
}

.corporate .corporate-details .card {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #D9D9D9;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 15px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.corporate .corporate-details .card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.corporate-details .card .sign img {
    width: 120px;
    height: 100%;
}

.corporate-details .card .card-title {
    font-family: Be Vietnam Pro;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    vertical-align: middle;
    color: #090F0D;
}

.corporate-details .card .card-text {
    font-family: Instrument Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    vertical-align: middle;
    color: #827E7D;
}

/* About page Corporate section css End */

/* Copy Trading section css Start */

.copy-trading {
    background:
        #461872 url('../images/aboutus/copy-trading.png') no-repeat center center;
    background-size: cover;
    background-blend-mode: luminosity;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.copy-trading .copy-trading-details {
    padding: 30px 0;
}

.copy-trading .section-title span {
    border: 1px solid #8547C2;
    background: #663497;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
}

.copy-trading .heading h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #ffffff;
    padding: 25px 0 10px 0;
}

.copy-trading .section-para p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
}

.copy-trading .section-para p span {
    font-weight: 700;
}

.copy-trading .section-content {
    display: flex;
    text-align: center;
    gap: 25px;
    padding: 10px 0;
}

.copy-trading .section-content img {
    width: 60px;
    height: 60px;
}

.copy-trading .section-content h2 {
    font-family: Be Vietnam Pro;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
    padding-top: 20px;
}

.copy-trading .section-content h2 span {
    font-weight: 200;
}

.copy-trading .section-content .divider {
    border-bottom: 0.91px solid #FFFFFF26;
    padding-bottom: 8px;
    width: 270px;
}

.copy-trading .section-content p {
    font-family: Instrument Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    vertical-align: middle;
    color: #A5B2AF;
    padding-top: 20px;
}

.copy-trading .section-details {
    display: flex;
    gap: 30px;
    padding-top: 10px;
}

.copy-trading .section-details span {
    border: 1px solid #E4B9FF;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
}

/* Copy Trading section css End */


.ready-to .ready-to-details {
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.ready-to .ready-to-img img {
    width: 100%;
    height: 100%;
}

.ready-to .ready-detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ready-to .section-title h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #212121;
}

.ready-to .section-para p {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #212121;
}

.ready-to .section-button {
    display: flex;
    align-items: center;
    gap: 30px;
}


.ready-to .section-button span {
    font-weight: 500;
    font-style: italic;
    font-size: 14px;
    line-height: 24px;
    color: #212121;
}

.ready-to .section-details {
    padding-top: 20px;
}

.ready-to .section-details h4 {
    font-weight: 600;
    font-size: 20px;
    color: #5F259E;
}

.who-can .row {
    background: #FBF5FF;
    display: flex;
    align-items: center;
    margin: 25px 0;
}


/* Who Can section css Start */

.who-can .who-img {
    padding: 0;
}

.who-can .who-can-img img {
    width: 100%;
    height: 100%;
    /* min-height: 400px; */
}

.who-can .who-can-details {
    padding-left: 3rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.who-can .section-title span {
    border: 1px solid #8547C2;
    background: #FBF5FF;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    color: #212121;
}

.who-can .heading h1 {
    font-weight: 700;
    font-size: 34px;
    line-height: 50px;
    color: #212121;
    padding-top: 23px;
}

.who-can .section-para p {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #212121;
}

.who-can .section-para p span {
    font-weight: 700;
    color: #5F259E;
}

/* Who Can section Css End */

/* Trader section slider start*/

.explore-pipze {
    text-align: center;
    padding: 20px 0px;
}

.explore-pipze .section-title span {
    border: 1px solid #8547C2;
    background: #FBF5FF;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    color: #212121;
}

.explore-pipze .heading h1 {
    font-weight: 700;
    font-size: 34px;
    line-height: 50px;
    color: #212121;
    /* padding-top: 23px; */
}

.explore-pipze .section-para p {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #212121;
}

.step-line-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.step-line {
    position: relative;
    height: 2px;
    width: 80%;
    background: #a881d4;
    /* soft purple line */
}

.step-circle {
    position: absolute;
    top: 50%;
    left: 0;
    /* adjust as needed for positioning */
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: #581c87;
    /* deep purple circle */
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    color: white;
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.3);
}

.step-circle i {
    font-size: 18px;
    z-index: 3;
}

.step-circle {
    transition: left 0.4s ease-in-out;
}

.pulse-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.2);
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.slider-contnent {
    text-align: start;
}

.explore-number {
    color: #E1DEE5;
    font-family: Plus Jakarta Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 52px;
    line-height: 100%;
    letter-spacing: 0%;
}

.slider-img img {
    height: 400px;
    width: 100%;
}

.explore-heading {
    color: #000000;
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
}

.slider-contnent .section-para {
    color: #212121;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
}

.slider-contnent .section-para {
    color: #212121;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
}

.step-content {
    display: flex;
    /* Keep flex for horizontal layout */
    scroll-behavior: smooth;
    transition: transform 0.8s ease;
    /* Keep for potential JS transform animations */
    overflow-x: scroll;
    /* Enable horizontal scrolling */
    overflow-y: hidden;
    /* Hide vertical scrollbar */
    /* height: 500px; */
    height: 100%;
    /* Remove fixed height for horizontal content */
    -webkit-overflow-scrolling: touch;

    /* Smooth scrolling on iOS */
    &::-webkit-scrollbar {
        display: none;
    }

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.step-section {
    flex: 0 0 100%;
    /* Each section takes full width of the flex container */
    width: 100%;
    /* Ensure it takes 100% width of the container */
    display: inline-block;
    /* Treat as inline-block for horizontal flow */
    vertical-align: top;
    /* Align to the top within the flex container */
    padding: 0 100px;
    box-sizing: border-box;
    /* Include padding in width calculation */
    opacity: 1;
    /* Always visible in horizontal mode, positioning handled by scroll */
    transform: none;
    /* Remove previous transform */
    transition: none;
    /* Remove previous transition for opacity/transform */
}

.steps-container {
    overflow: hidden;
    /* Hide scrollbars, managed by JS or specific styling */
    position: relative;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Remove these if you're doing direct scrollLeft manipulation
.step-content {
    position: relative;
    overflow: hidden;
}

.step-section {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-section.active {
    opacity: 1;
    transform: translateY(0);
}
*/

.scroll-progress {
    position: fixed;
    /* top: 0; */
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 123, 255, 0.2);
    z-index: 1000;
}

.scroll-progress-bar {
    height: 100%;
    background: #007bff;
    width: 0%;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .step-line-wrapper {
        left: 20px;
    }

    .step-indicator {
        right: 20px;
    }

    .step-section {
        padding: 0px;
    }

    .explore-heading h1 {
        font-size: 2rem;
    }
}

/* Trader section slider end */


/* Trade Tools Section Css Start */
.trade-tools {
    background: #461872 url('../images/aboutus/copy-trading.png') no-repeat center center;
    background-size: cover;
    background-blend-mode: luminosity;
    position: relative;
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
}


.trade-tools .section-title span {
    border: 1px solid #8547C2;
    background: #663497;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
}

.trade-tools .section-para p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
}

.trade-tools .heading h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #ffffff;
    padding: 25px 0 10px 0;
}

.tool-content {
    display: grid;
    grid-template-areas:
        "top-left center top-right"
        "bottom-left center bottom-right";
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 60px 50px;
    margin: 40px auto;
    align-items: center;
}

.top-left {
    grid-area: top-left;
    justify-self: start;
}

.top-right {
    grid-area: top-right;
    justify-self: end;
}

.bottom-left {
    grid-area: bottom-left;
    justify-self: start;
}

.bottom-right {
    grid-area: bottom-right;
    justify-self: end;
}

.center-tool {
    grid-area: center;
    justify-self: center;
}

.tool-box {
    display: flex;
    width: 100%;
    padding: 15px;
    gap: 10px;
}

.top-left, .bottom-left {
    flex-direction: row-reverse;
}

.tool-box .icon {
    position: relative;
    z-index: 1009;
    width: 70px;
    height: 80px;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(101, 42, 160, 0.7), rgba(102, 52, 151, 0.7)),
        url(../images/aboutus/trade-background.png) no-repeat center center;
    background-size: cover;
    background-blend-mode: luminosity;
}


.tool-box .icon i {
    color: #ffffff94;
    font-size: 36px;
    position: relative;
    z-index: 11;
}

.tool-box .platform {
    background: none;
}

.tool-box .platform h4 {
    margin: 0;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #FFFFFF;
}

.tool-box .platform p {
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #A59897;
}

.tool-box.bottom-left .platform, .tool-box.top-left .platform {
    text-align: end;
}

.center-tool {
    padding: 65px 110px;
    border-radius: 10px;
    border: 1px solid #FFFFFF1F;
}

.centre-icon img {
    height: 120px;
    width: 120px;
}

.tool-footer p {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 40px;
}

.tool-content {
    position: relative;
}

/* Common connector style */

.connector {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.connector-top-left {
    top: -6%;
    left: 29%;
    width: 235px;
    height: 58px;
    border-bottom: none;
    border-radius: 10px 10px 0px 10px;
}

.connector-top-right {
    top: -6%;
    right: 29%;
    width: 235px;
    height: 58px;
    border-bottom: none;
    border-radius: 10px 10px 10px 0px;
}

.connector-bottom-left {
    bottom: 1%;
    left: 29%;
    width: 235px;
    height: 65px;
    border-top: none;
    border-radius: 10px 0px 10px 10px;
}

.connector-bottom-right {
    bottom: 1%;
    right: 29%;
    width: 235px;
    height: 65px;
    border-top: none;
    border-radius: 0px 10px 10px 10px;
}


/* Responsive for mobile */
@media(max-width: 992px) {
    .tool-content {
        grid-template-areas:
            "center"
            "top-left"
            "top-right"
            "bottom-left"
            "bottom-right";
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tool-box, .center-tool {
        justify-self: center;
        flex-direction: row;
    }
}


/* Trade Tools Section Css End */

/* Video section css start */

.video .video-details {
    padding: 30px 0 10px 0;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 10px;
}

.video .section-title span {
    border: 1px solid #8547C2;
    background: #FBF5FF;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    color: #212121;
}

.video .heading h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #212121;
    padding-top: 10px;
}

.video .section-para p {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #212121;
}

.video .section-para p span {
    font-weight: 700;
    color: #5F259E;
}

.video-section {
    position: relative;
    width: 100%;
    height: 542px;
    overflow: hidden;
    border-radius: 20px;
    margin: 10px 0 20px 0;
}

.video-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 3;
    border-radius: 20px;
}

.video-section .video-img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.video-section .video-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-section .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
    cursor: pointer;
}

.video-section .play-btn img {
    width: 80px;
    height: 80px;
}

.video-section .about-video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video section css end */


/* Trending safe Section css Start */

.trading-safe {
    background-image: url('../images/security-bg.png');
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    /* padding: 0px; */
}

.trading-safe .trading-safe-details {
    align-items: center;
}

/* .trading-safe-details img{
    height: auto;
} */

.trading-safe .trading-safe-details .trade {
    padding-right: 20px;
}

.trading-safe-details .heading h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #FFFFFF;
}

.trading-safe-details .section-para p {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    width: 85%;
    margin-bottom: 0px;
}

.trading-safe-details .section-para p span {
    font-weight: 700;
    font-size: 16px;
    color: #E4B9FF;
}

.trading-safe-details .section-details h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
}

.trading-safe-details .section-details ul {
    padding: 10px 0;
    text-align: left;
}

.trading-safe-details .section-details ul li {
    font-weight: 500;
    font-size: 14px;
    line-height: 36px;
    color: #ffffff;
    list-style: none;
}

.trading-safe-details .section-details-2 h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    text-align: justify;
}

/* Trending safe section css end */

/* ================= End About Us Page Css ================= */

/* ================= Start Deposits Page Css ================= */

/* desposit and withdraw section start */
.deposit .heading h1 {
    font-weight: 700;
    font-size: 52px;
    line-height: 80px;
    color: #ffffff;
    text-align: left;
    width: 95%;
}

.deposit {
    background: #461872 url('../images/deposits/deposits-bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100%;
    padding: 300px 0;
    overflow: hidden;
}

/* desposit and withdraw section emd */

.content .content-details {
    padding: 4rem 0;
    display: flex;
}

.content .content-img img,
.withdrawing .withdrawing-img img,
.why-choose .why-choose-img img {
    width: 100%;
    height: 100%;
}

.content .section-details h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    color: #212121;
}

.deposit-funds {
    background-image: url('../images/deposit-withdraw/deposit-banner.png');
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.deposit-funds .deposit-funds-details {
    padding: 6rem 0;
}

.deposit-funds .heading h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 50px;
    color: #ffffff;
}

.deposit-funds .section-para p {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #ffffff;
}

.deposit-funds .section-para p span {
    font-weight: 500;
    font-size: 15px;
}

.deposit-funds .section-btn a,
.withdrawing-details .section-btn a {
    border-radius: 5px;
    padding: 16px 24px;
    background: #72B34D;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
}

.deposit-funds .section-btn a:hover,
.withdrawing-details .section-btn a:hover {
    background: #5A923D;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.withdrawing-content {
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.withdrawing-details {
    padding-left: 4rem;
}

.withdrawing-details .section-title span {
    border: 1px solid #8547C2;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    color: #212121;
    background: #FBF5FF;
}

.withdrawing-details .section-title span img {
    width: 24px;
    height: 24px;
}

.withdrawing-details .heading h1 {
    font-weight: 700;
    font-size: 34px;
    color: #212121;
    padding: 25px 0 20px 0;
}

.withdrawing .section-details p {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #212121;
    width: 80%;
}

.considerations {
    background-image: url('../images/deposits/considerations.png');
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.considerations .considerations-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.considerations-content .section-title span,
.why-choose .section-title span {
    border: 1px solid #8547C2;
    background: #FBF5FF;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 100px;
}

.considerations-content .heading h1,
.why-choose .heading h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #212121;
}

.considerations-details {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.considerations-details .card {
    border: 2px solid transparent;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.considerations-details .card:hover {
    border-color: var(--default-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.considerations-details .card .card-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    color: #000000;
}

.considerations-details .card .card-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #212121;
}

.considerations-details .card .card-text span {
    font-weight: 700;
    color: #5F259E;
}

.secure {
    position: relative;
    background:
        url('../images/deposits/secure.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.secure .secure-details {
    padding: 7rem 0;
}

.secure .section-title span {
    border: 1px solid #8547C2;
    background: #663497;
    padding: 10px 20px;
    border-radius: 100px;
    color: #ffffff;
    font-weight: 500;
    font-size: 18px;
}

.secure .heading h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #ffffff;
    padding: 25px 0 15px 0;
}

.secure .section-para p {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
}

.why-choose .why-choose-details {
    padding: 30px 0;
    display: flex;
    align-items: center;
}

.why-choose .why-choose-content {
    padding-left: 3rem;
}

.why-choose .heading h1 {
    padding-top: 30px;
    width: 80%;
}

.why-choose .section-details .card {
    display: flex;
    align-items: center;
    flex-direction: row;
    border: none;
    padding: 5px 0;
}

.why-choose .section-details .card .image {
    padding: 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.why-choose .section-details .card .image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.why-choose .section-details .card .image img {
    width: 38px;
    height: 38px;
}

.why-choose .section-details .card-body h6 {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #212121;
}

.why-choose .section-details .card-body h6 span {
    font-weight: 400;
}

/* ================= End Deposits Page Css ================= */


/* ================= Trading overview  Page Css ================= */

/* overview section hero css start */

.tren-account {
    max-width: 900px;
    margin: auto;
}

.trade-overview {
    position: relative;
    background:
        url('../images/trading-account/overview/banner.png');
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.trade-overview h1 {
    color: #FFFFFF;
    font-weight: 700;
    font-style: Bold;
    font-size: 52px;
    line-height: 80px;
    letter-spacing: 0%;
    margin-top: 250px;
}

.trade-overview p {
    color: #ffffff;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 100px;
}

/* overview section hero css end */

/* Trending Account Overview css start */


/* .trade-overview-content .img-fluid {
    height: 920px;
    width: 600px;
} */

.trade-overview-content .account-card {
    background: #faf6ff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: 15px 30px;
}

.trade-overview-content .account-number {
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #5F259E;
    margin-bottom: 25px;
}

.trade-overview-content .account-content {
    flex: 1;
}

.trade-overview-content .account-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom: 25px; */
}

.trade-overview-content .account-title {
    font-weight: 700;
    font-style: Bold;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #212121;
}

.trade-overview-content .account-badge {
    font-weight: 700;
    font-style: Bold;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    border-radius: 0px 10px 10px 10px;
    background: #5F259E;
    color: white;
    padding: 8px 14px;
}

.trade-overview-content .account-badge.stp {
    background: #7c3aed;
}

.trade-overview-content .account-subtitle {
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #212121;
    margin-bottom: 5px;
}

.trade-overview-content .account-text {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    /* line-height: 28px; */
    letter-spacing: 0%;
    color: #212121;
}

.trade-overview-content .account-arrow {
    background: rgba(95, 37, 158, 0.08);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f259e;
    font-size: 14px;
    flex-shrink: 0;
}

.account-data {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 10px;
}

.trade-overview-content .account-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.trade-overview-content .account-arrow {
    transition: background 0.3s ease, transform 0.3s ease;
}

.trade-overview-content .account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: #f3ebff;
}

.trade-overview-content .account-card:hover .account-arrow {
    background: rgba(95, 37, 158, 0.2);
    transform: scale(1.1);
}

.section-para-content span {
    color: #212121;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    width: 85%;
}

/* 
.section-para span {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #212121;
    width: 85%;
    display: flex;
    text-align: center;
    margin: auto;
} */

.now-common-btn {
    display: block;
    border-radius: 10px;
    padding: 16px 24px;
    background: white;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #5F259E;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid #5F259E;
}

.now-common-btn:hover {
    background: #5F259E;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.now-common-btn a{
    color: #5F259E;
}

.trade-common-btn {
    border-radius: 10px;
    padding: 16px 24px;
    background: #5F259E;
    border: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    display: flex;
    text-align: center;
    gap: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.button-features {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.trade-common-btn:hover {
    background: #4a1e7d;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.comparison-trading {
    background-image: url(../images/market/market-table-bg.png);
    background-size: cover;
}

/* Trending Account Overview css end */

/* ================= Trading overview Page Css end================= */


/* ================= Trading Pro Ecn Page Css Start================= */


/* fixed side bar on trading accoun page */

.fixed-tradingacc{
    display: flex;
    flex-direction: row;
}

.fixedside-trading{
    width: 20%;
}

.fixedcon-trading{
    width: 80%;
}

.sidebar-toggle-btn {
    position: fixed;
    top: 50%;
    left: 0;
    z-index: 1001;
    background-color: #5F259E;
    color: #fff;
    border: none;
    padding: 7px 12px 17px 40px;
    font-size: 20px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    cursor: pointer;
    display: none;
    font-size: 40px;
    z-index: 99;
}

.sidebar-toggle-btn span#toggleIcon {
    height: 30px;
    position: relative;
    display: flex;
    align-items: center;
}


.aside {
    background-color: #fff;
    padding: 40px 30px 40px 0px;
    position: sticky;
    top: 100px;
    transition: left 0.3s ease;
}

.accordion-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-toggle {
    cursor: pointer;
    background-color: #f5f1ff;
    padding: 10px 15px;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #DFDFDF;
    color: #000000;
    font-weight: 500;
    font-style: Medium;
    font-size: 16.73px;
    line-height: 27px;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.accordion-toggle:hover {
    background-color: #e3d9ff;
}

.submenu {
    display: none;
    padding-left: 15px;
    margin-top: 5px;
    list-style: none;
}

.accordion-item.active .submenu {
    display: block;
}

.submenu li {
    margin: 8px 0;
}

.submenu li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;

    display: inline-block;
    max-width: 180px; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.submenu li.active a,
.submenu li a:hover {
    color: #5F259E;
    font-weight: 600;
}

.accordion-item.active .accordion-toggle {
    border-bottom: 1px solid #5F259E;
    color: #5F259E;
}

.default-chevron {
    font-size: 14px;
    transition: transform 0.3s;
}

.accordion-item.active .default-chevron {
    transform: rotate(180deg);
}

.standard-list li {
    font-size: 16px;
    color: #212121;
    margin: 3px 0px 0px 10px;
}

.submenu li.active::before {
    content: "▪";
    color: #5F259E;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em; 
}

/* fixed side bar on trading accoun page */


.trade-overview.section-proecn {
    position: relative;
    background: url('../images/trading-account/proecn/banner.png');
    background-size: cover;
    z-index: 1;
}

.trade-overview.section-proecn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /* dark overlay instead of filter */
    z-index: 1;
}

.trade-overview.section-proecn .container {
    position: relative;
    z-index: 2;
}

.ecn-info-banner {
    background-color: #fef5ff;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 10px;
}

.ecn-info-banner .info-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.ecn-info-banner .info-box {
    flex: 1 1 200px;
}

.ecn-info-banner .info-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: #822ebf;
    margin-bottom: 8px;
}

.ecn-info-banner .info-box p {
    font-size: 16px;
    color: #555;
}

.ecn-description {
    padding: 60px 20px 30px;
    text-align: center;
}

.ecn-description h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    font-style: Bold;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #212121;
}

.ecn-description p {
    margin: 0 auto 20px auto;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    color: #212121;
    font-weight: 500;
    font-style: Medium;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
}

.ecn-info-banner .info-box:nth-child(2) {
    border-left: 1px solid #E4B9FF;
    border-right: 1px solid #E4B9FF;
}

.ecn-advantage .advantage-item {
    justify-content: space-between;
    padding-bottom: 1rem;
    padding-top: 1rem;
    align-items: center;
}

.ecn-advantage .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    font-style: Bold;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #212121;
}

.ecn-advantage .advantage-number {
    font-size: 48px;
    color: #E1DEE5;
    font-weight: 700;
    font-style: Bold;
    font-size: 52px;
    line-height: 100%;
    letter-spacing: 0%;
}

.advantage-content h3 {
    color: #000000;
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
}

.advantage-content p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #212121;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
}

.advantage-image img {
    height: 350px;
    width: 100%;
    border-radius: 60px;
    margin: auto;
}



.tab-ecn {
    background-image: url(../images/market/market-table-bg.png);
    background-size: cover;
}

.market-tabs-section {
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    border: 1px solid #8547C2;
    margin: 0 auto;
    border-radius: 100px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    background: white;
}

.tab-button {
    flex: 1;
    /* all buttons equal width */
    background: transparent;
    border: none;
    color: #212121;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    margin: 10px;
}

.tab-button.active {
    background: #5F259E;
    color: white;
    border-radius: 100px;
}

/* .tab-content {
    display: none;
} */

.tab-custom{
    display: none;
}

.tab-custom.active{
    display: block;
}

.tab-content.active {
    display: block;
}

.instrument-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 2px 10px rgba(132, 71, 194, 0.1);
    background: white;
    margin-top: 25px;
    table-layout: auto;
    border-right: 1px solid #DADADA;
    border-left: 1px solid #DADADA;
    border-bottom: 1px solid #DADADA;
}

.instrument-table tbody tr:last-child {
    border-bottom: 0;
}

.instrument-table tbody tr:last-child td {
    border-bottom: 0;
}


.instrument-table th {
    position: relative;
    text-align: center;
    /* center text if needed */
    font-size: 14px;
    padding: 16px;
}

.instrument-table th:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 40%;
    /* adjust shorter/taller as you like */
    width: 1px;
    background: rgba(255, 255, 255, 0.5);
    /* semi-transparent white */
}

.instrument-table th:not(:first-child)::before {
    left: 0;
}

.instrument-table th:nth-child(1),
.instrument-table td:nth-child(1) {
    width: 50%;
}

.instrument-table th:nth-child(2),
.instrument-table td:nth-child(2),
.instrument-table th:nth-child(3),
.instrument-table td:nth-child(3),
.instrument-table th:nth-child(4),
.instrument-table td:nth-child(4),
.instrument-table th:nth-child(5),
.instrument-table td:nth-child(5) {
    text-align: center;
}


.instrument-table thead {
    background: #5F259E;
    color: white;
    font-weight: 500;
    font-style: Medium;
    font-size: 16.88px;
    line-height: 18px;
    letter-spacing: 0%;
    text-transform: capitalize;
}

.instrument-table th {
    padding: 16px;
    text-align: left;
    font-size: 14px;
}

.instrument-table tbody tr td {
    padding: 16px;
    border-bottom: 1px solid #E2E2E2;
    color: #000000;
    font-weight: 500;
    font-style: Medium;
    font-size: 17.3px;
    line-height: 27px;
    letter-spacing: 0%;
}

.instrument-table tbody tr td span {
    color: #818181;
    font-weight: 400;
    font-size: 13.78px;
    line-height: 14px;
    letter-spacing: 0%;
}

.instrument-table tbody tr:nth-child(even) {
    background: #faf5ff;
}

.instrument-table td span {
    color: #888;
    font-size: 12px;
}

.trade-link {
    display: inline-block;
    font-weight: 700;
    font-style: Italic;
    font-size: 14.75px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: right;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    color: #5F259E;
}

.instrument-table th {
    border-right: none;
}

.common-content-default{
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.trade-now-account-btn a {
  position: relative;
  display: inline-block;
  padding: 20px 50px;
  font-size: 20px;
  color: #ffffff; /* initial text color */
  background-color: #461872;
  border-radius: 35px;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.2s ease-in-out;
  z-index: 1;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(12px);
}

.trade-now-account-btn a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 100%;
  background: white; /* hover gradient */
  transform: translateX(-50%);
  transition: width 0.2s ease-in-out;
  z-index: -1;
  border-radius: 35px;
}

.trade-now-account-btn a:hover::before {
  width: 100%;
}

.trade-now-account-btn a:hover {
  color: #461872; /* soft gold text on hover */
}

/* ================= Trading Pro Ecn Page Css end================= */



/* ================= Trading standard Page Css start================= */
.trade-overview.section-standard {
    position: relative;
    background: url('../images/trading-account/standard/banner.png');
    background-size: cover;
    z-index: 1;
}

.trade-overview.section-standard::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.trade-overview.section-standard .container {
    position: relative;
    z-index: 2;
}


/* ================= Trading Ecn Page Css end================= */


/* ================= Trading Ecn Page Css start================= */
.trade-overview.section-ecn {
    position: relative;
    background: url('../images/trading-account/ecn/banner.png') ;
    background-size: cover;
    z-index: 1;
}

.trade-overview.section-ecn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /* dark overlay instead of filter */
    z-index: 1;
}

.trade-overview.section-ecn .container {
    position: relative;
    z-index: 2;
}

/* ================= Trading Ecn Page Css end================= */

/* ================= Trading Ecn Page Css start================= */
.trade-overview.section-swap {
    position: relative;
    background: url('../images/trading-account/swapfree/banner.png');
    background-size: cover;
    z-index: 1;
}

.trade-overview.section-swap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /* dark overlay instead of filter */
    z-index: 1;
}

.trade-overview.section-swap .container {
    position: relative;
    z-index: 2;
}

/* ================= Trading Ecn Page Css end================= */


/* ================= Trading Cent  Page Css start================= */
.trade-overview.section-cent {
    position: relative;
    background: url('../images/trading-account/cent/banner.png');
    background-size: cover;
    z-index: 1;
}

.trade-overview.section-cent::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /* dark overlay instead of filter */
    z-index: 1;
}

.trade-overview.section-cent .container {
    position: relative;
    z-index: 2;
}

/* ================= Trading Cent Page Css end================= */

/* ================= Trading Demo  Page Css start================= */
.trade-overview.section-demo {
    position: relative;
    background: url('../images/trading-account/demo/banner.png');
    background-size: cover;
    z-index: 1;
}

.trade-overview.section-demo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /* dark overlay instead of filter */
    z-index: 1;
}

.trade-overview.section-demo .container {
    position: relative;
    z-index: 2;
}

/* ================= Trading Demo Page Css end================= */

/* About Trading Overview page */
.hero-section {
    position: relative;
    height: 428px;
    background-size: cover !important;
    display: flex;
    align-items: end;
    color: white;
    z-index: 1;
    padding-bottom: 80px;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-mobile {
    display: none;
}

.about-us-overview-main .content-img img {
    width: 100%;
    /* padding-right: 22px; */
    height: 100%;
    padding-bottom: 20px;
}

.about-us-overview-main .content-txt-parent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 22px;
}

.about-us-overview-main .content-txt-parent h2 {
    color: var(--dark-color);
}

.about-us-overview-main .content-txt p {
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: var(--dark-color);
}

.tagline-badge {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f3e8ff;
    color: var(--default-light-color);
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    border: 1px solid #8547C2;
    color: #5F259E;
}

.pricing-table.table-responsive {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.pricing-table .table thead th {
    background-color: var(--default-light-color);
    color: #fff;
    font-weight: 700;
    font-size: 21.29px;
    line-height: 160%;
    text-align: center;
    vertical-align: middle;

}

.pricing-table .table td, .table th {
    text-align: center;
    vertical-align: middle;
}

.pricing-table table tr>*:nth-child(1) {
    width: 300px !important;
}

.pricing-table table tr>*:nth-child(1), .pricing-table table tr>*:nth-child(2), .pricing-table table tr>*:nth-child(3), .pricing-table table tr>*:nth-child(4), .pricing-table table tr>*:nth-child(5), .pricing-table table tr>*:nth-child(6) {
    width: 204px;
    height: 111px;
    padding-top: 8.52px;
    padding-right: 20.44px;
    padding-bottom: 8.52px;
    padding-left: 20.44px;
    opacity: 1;
    border-right-width: 0.85px;
    border-bottom-width: 0.85px;
}



/* Why Choose Pipze? section */

.compare-section {
    background-color: #461872;
    padding: 60px 15px;
}

.compare-table {
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    margin: 30px auto 0;
    border-radius: 10px !important;
    width: 100%;
    max-width: 950px;
    overflow: auto;
}

.compare-table table {
    margin: 0;
}

.compare-table thead th {
    background-color: var(--default-light-color);
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
}


.compare-table tbody td {
    background-color: #ffffff;
    text-align: center;
}

.compare-table tbody tr:nth-child(even) td {
    background-color: #FDF9FF;
}

.compare-table thead th:first-child, .compare-table tbody td:first-child {
    text-align: left;
}

.compare-table th, .compare-table td {
    border-top: none !important;
    border-bottom: none !important;
    border-right: 1px solid #461872;
}

.compare-table th:last-child,
.compare-table td:last-child {
    border-right: none;
}

.compare-table table tr>*:nth-child(1), table tr>*:nth-child(2), , table tr>*:nth-child(4), table tr>*:nth-child(5) {
    width: 161px;
    height: 60px;
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-left: 30px;
    opacity: 1;
    border-top-left-radius: 10px;
}

.compare-table table tr>*:nth-child(3) {
    width: 265px !important;
}

.compare-table table tr>*:nth-child(4) {
    width: 181px !important;
}

.compare-table table tr>*:nth-child(5) {
    width: 174px !important;
}

/* About Trading Overview page End */


/* About Trading Overview page */
.about-us-overview-main .hero-section {
    background:
        url('../images/abouttrading/overview/banner.png');
}

/* Why Choose Pipze? section */

.compare-section {
    background-color: #461872;
    padding: 60px 15px;
}

.compare-table {
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    margin: 30px auto 0;
    border-radius: 10px !important;
    width: 100%;
    max-width: 950px;
    overflow: auto;
}

.compare-table table {
    margin: 0;
}

.compare-table thead th {
    background-color: var(--default-light-color);
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
}


.compare-table tbody td {
    background-color: #ffffff;
    text-align: center;
}

.compare-table tbody tr:nth-child(even) td {
    background-color: #FDF9FF;
}

.compare-table thead th:first-child, .compare-table tbody td:first-child {
    text-align: left;
}

.compare-table th, .compare-table td {
    border-top: none !important;
    border-bottom: none !important;
    border-right: 1px solid #461872;
}

.compare-table th:last-child,
.compare-table td:last-child {
    border-right: none;
}

.compare-table table tr>*:nth-child(1), table tr>*:nth-child(2), , table tr>*:nth-child(4), table tr>*:nth-child(5) {
    width: 161px;
    height: 60px;
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-left: 30px;
    opacity: 1;
    border-top-left-radius: 10px;
}

.compare-table table tr>*:nth-child(3) {
    width: 265px !important;
}

.compare-table table tr>*:nth-child(4) {
    width: 181px !important;
}

.compare-table table tr>*:nth-child(5) {
    width: 174px !important;
}

/* Faq section */
.faq-section {
    padding: 50px 0px 20px;
}

.faq-section h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    text-transform: capitalize;
    text-align: center;
    color: var(--dark-color);
}

.question {
    padding: 16px 0;
    position: relative;
    display: flex;
    align-items: baseline;
    cursor: pointer;
    border-top: 1px solid #CDD6DA40;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0px;
    vertical-align: middle;
    justify-content: space-between;
}

.question:nth-last-of-type(2) {
    border-bottom: 5px solid #CDD6DA40;
}

/* .question.active {
    border-bottom: 5px solid #CDD6DA40;
} */

.question::after {
    content: "\002B";
    font-size: 2.2rem;
    font-weight: 400;
    display: inline-block;
    transition: 0.2s;
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    padding: 16px 24px 0px;
    line-height: 1.5rem;
    font-family: Plus Jakarta Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0px;
    color: #3C3C43D9;
}

.faq-section .container {
    max-width: 1100px;
}

/* About Trading Overview page End */

/* About Trading Trading Instrument page */
.about-us-trading-instrument-main .hero-section {
    background:
        url('../images/abouttrading/tradinginstrument/banner.png');
    }

.tradeinstru-filter{
    display: flex;
    width: 100%;
    justify-content: flex-end;
    gap: 1rem;
}

.category-box-parant {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 15px;
    padding: 10px;
    margin: 0 auto;
    justify-content: center;
}

.category-box {
    background-color: #f8f1ff;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #000;
    width: 152.75px;
    height: 150px;
    opacity: 1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-box .icon-img {
    width: 30px;
    height: auto;
    transition: filter 0.3s ease;
}

.category-box .label {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
}

/* Active & Hover states */
.category-box.active,
.category-box:hover {
    background-color: #5f27cd;
    color: #fff;
}

.category-box.active .icon-img,
.category-box:hover .icon-img {
    filter: brightness(0) invert(1);
}

/* Triangle on active and hover */
.category-box.active::after,
.category-box:hover::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #5f27cd;
}

.instrument-table-section .custom-table th {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    background-color: var(--default-light-color);
    color: #fff;
}

.instrument-table-section .table-responsive {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.instrument-table-section .custom-table th,
.instrument-table-section .custom-table td {
    vertical-align: middle;
    text-align: center;
    font-size: 14px;
    border: none !important;
}

.instrument-table-section .custom-table tbody tr:nth-child(odd) {
    background-color: #faf5ff;
}

.instrument-table-section .custom-table tbody tr:nth-child(even) {
    background-color: #fff;
}

.instrument-table-section .custom-table td {
    padding: 12px 8px;
}

.instrument-table-section .custom-table tbody tr:nth-child(even) td {
    background-color: #FDF9FF;
}


.instrument-table-title-section h2 {
    font-weight: 700;
    font-size: 34px;
    line-height: 100%;
    color: var(--dark-color);
}

.instrument-table-title-section p {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--dark-color);
}

.searchBtn {
    border-radius: 10px;
    padding: 16px 44px;
    background-color: var(--default-light-color);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

#searchInput:focus {
    background-color: transparent;
    box-shadow: none;
}

#rowsPerPage {
    border: none !important;
}

.about-us-trading-instrument-main .forex-acc {
    margin: 70px 0;
}

.about-us-trading-instrument-main-details .hero-section {
    background:
        url('../images/abouttrading/detail/banner.png');
}

/* ================= Marketing Page Css start================= */
/* Market index page css start */
.marketing-parent-main .hero-section {
    background:
        url('../images/market/banner.png');
}

.marketing-parent-main .content-img img {
    width: 100%;
    /* padding-right: 22px; */
    height: 100%;
    padding-bottom: 20px;
}

.marketing-parent-main .content-txt-parent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 22px;
}

.marketing-parent-main .content-txt-parent h2 {
    color: var(--dark-color);
}

.marketing-parent-main .content-txt p {
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: var(--dark-color);
}

.pricing-table-container {
    background-image: url('../images/market/market-table-bg.png');
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
}

.pricing-table-container .head-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    text-transform: capitalize;
    color: var(--dark-color);
    margin: 16px 0;
    text-align: center;
}

.pricing-table-container .head-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: var(--dark-color);
    width: 100%;
    max-width: 65%;
    margin: 0 auto 30px;
}

.hero-composite {
    position: relative;
    margin: 0 auto;
    padding: 150px 0 0 0;
    overflow: hidden;
}

.hero-composite .background-image {
    width: 100%;
    height: auto;
    display: block;
    height: 100%;
    max-height: 550px;
    object-fit: cover;
}

.hero-composite .person-image {
    position: absolute;
    left: 80px;
    bottom: 0;
    width: 100%;
    /* adjust size as needed */
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.hero-composite .hero-btn-wrapper {
    position: absolute;
    right: 300px;
    bottom: 30px;
    z-index: 3;
}

/* Market index page css end */


/* Market forex page css start */
section.specific-section,
section.trading-platform-section{
    padding: 0px 0px 20px;
}
section.trading-platform-section{
    padding: 20px 0px;
}
.marketing-parent-forex .hero-section {
    background:
        url('../images/market/forex/banner.png');
}

.image-market img {
    /* width: 100%; */
    border-radius: 20px;
    margin: 30px 0px 0px;
    /* height: 600px; */
}

.image-market{
    display: flex;
    justify-content: center;
}

.trading-platform-card {
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.trading-platform-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.trading-platform-header img {
    width: 48px;
    height: 48px;
    margin-right: 12px;
}

.trading-platform-header h4 {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 19px;
    line-height: 30px;
    letter-spacing: 0%;
    margin: 0;
    color: #000000;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    width: 45%;
}

.platform-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-weight: 400;
    font-style: Regular;
    font-size: 15.5px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #000000;
}

.platform-features li::before {
    content: "✔";
    color: #8547C2;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.platform-buttons {
    display: flex;
    gap: 10px;
}

.platform-buttons img {
    height: 40px;
}

.platform-image img {
    height: 350px;
    width: 100%;
}

.forex-awards-section {
    background-color: #461872;
    /* Purple background */
    /* padding: 50px 0; */
    color: #fff;
}

section.working-step-forex{
    padding: 20px 0px;
}

.forex-awards-section .award-heading h1 {
    font-weight: 700;
    font-style: Bold;
    font-size: 34px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #FFFFFF;
}

.award-item {
    margin-bottom: 30px;
}

.award-item img {
    width: 100%;
    margin-bottom: 10px;
}

.award-item h5 {
    margin-bottom: 10px;
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
}

.award-item p {
    margin: 0;
    font-weight: 400;
    font-style: Bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
}

.working-steps-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    padding: 18px 0px;
    background: #fff;
    border-bottom: 1px solid #DADADA;
}

.step-number-market {
    flex: 0 0 auto;
    margin-right: 12px;
    color: #DFDFDF;
    font-weight: 700;
    font-size: 32px;
    line-height: 24px;
}

.step-item p {
    margin: 0;
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.step-image-forex {
    height: 350px;
    /* width: 100%; */
    border-radius: 30px;
}

.markettwo-card-section {
    background-image: url(../images/plans-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.swiper.markettwo-swiper {
    margin-top: 30px;
}

.big-card {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 750px;
    /* fixed width ensures swiper loops properly */
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}
/* Swiper Container - Equal Height Setup */
.marketone-swiper {
    height: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.marketone-swiper .swiper-wrapper {
    align-items: stretch; /* This makes all slides equal height */
}

/* Big Card - Fixed Height */
.swiper-slide.big-card {
    display: flex;
    gap: 20px; 
    flex-direction: row;
    width: auto !important;
    height: auto; /* Let it grow naturally first */
    min-height: 300px; /* Set a minimum height */
    
    /* Force all big-cards to have same height */
    align-items: stretch;
}

.big-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Small Card - Equal Height within Big Card */
.small-card {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.3s ease;
    width: 350px !important;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    
    /* Key changes for equal height */
    min-height: 260px; 
    height: 100%; /* Takes full height of parent big-card */
    box-sizing: border-box;
}

.small-card:hover {
    transform: translateY(-3px);
}

.small-card .icon {
    background: #5F259E;
    padding: 10px 12px;
    border-radius: 100px;
    flex-shrink: 0;
}

.small-card .icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.small-card .content {
    flex: 1; /* Takes remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.small-card .content h5 {
    color: #000000;
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0%;
    margin-bottom: 12px;
}

.small-card .content p {
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    color: #212121;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    margin: 0;
    flex: 1; /* Takes remaining vertical space */
}

/* Market forex page css end */

/* Market Indices page css start */

.marketing-parent-indices .hero-section {
    background:
        url('../images/market/indices/banner.png');
}

.indices-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #e0e0e0;
    /* subtle border */
    max-width: 900px;
    margin: 0 auto;
    /* border: 1px solid rgba(207, 207, 207, 0.945); */
}

.indices-cards .indices-content {
    max-width: 900px;
}

.index-card {
    flex: 1;
    /* equal width */
    background: #fcf6ff;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #fff;
    /* white separator */
}

.index-card:last-child {
    border-right: none;
}

.index-title {
    background: #5F259E;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 0;
    text-align: center;
}

.index-content {
    padding: 20px 15px;
    font-size: 14px;
    color: #333;
    flex: 1;
    /* so cards stay equal height */
    display: flex;
    align-items: center;
    text-align: center;
}


.indices-cards {
    border-radius: 15px;
    overflow: hidden;
    background: #fcf6ff; /* same as child */
}


/* Market Indices page css end */

/* Commodities page css start */

.marketing-parent-commodities .hero-section {
    background:
        url('../images/market/commodities/banner.png');
}

/* Commodities page css end */

/* shared page css start */
.marketing-parent-shared .hero-section {
    background: url('../images/market/share/banner.png');
}

.marketing-parent-shared .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /* dark overlay instead of filter */
    z-index: 1;
}

.marketing-parent-shared .hero-section .container {
    position: relative;
    z-index: 2;
}

/* shared page css end */
/* ================= Marketing Page Css End================= */


/* ================= Trading Fees Page Css Start================= */ 

/* spread page css start */

.tradingfees-parent-spread .hero-section {
    background:
        url('../images/tradingfees/spread/banner.png');
}

.tradingfees-parent-spread .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3); /* dark overlay instead of filter */
    z-index: 1;
}

.tradingfees-parent-spread .hero-section .container {
    position: relative;
    z-index: 2;
}

img.spread-calculate-img {
    height: 450px;
    width: 100%;
}

.tagline-badge-new {
    display: inline-block;
    padding: 10px 20px;
    background-color: none;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    border: 1px solid #8547C2;
    color: #5F259E;
}

.pipze-spread-section {
    background-image: url(../images/market/market-table-bg.png);
    padding: 20px 0;
}

.pipze-spread-box{
    background: white;
    margin-top: 30px;
    border-radius: 20px;
    padding: 20px;
}

.pipze-spread-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    border-bottom: 1px solid #828ca063;
}

.pipze-spread-tab {
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1.25px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #828CA0;
    border: none;
}

.pipze-spread-tab.active {
    color: #5F259E;
    border-bottom: 2px solid #5F259E;
}

.pipze-spread-new-badge {
    background: #5F259E;
    color: #fff;
    font-size: 10px;
    padding: 4px 8px;
    margin-left: 4px;
    border-radius: 100px;
}

.pipze-spread-filters {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    justify-content: space-between;
}

.pipze-spread-filter {
    padding: 8px 24px;
    border: none;
    border-radius: 20px;
    background: #f1f1f5;
    cursor: pointer;
    font-family: Arial;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    vertical-align: middle;
    color: #0B0B16;
    margin-bottom: 5px;
}

.pipze-spread-filter.active {
    background: #5F259E;
    color: #fff;
}

.pipze-spread-table-container {
    overflow-x: auto;
    border-radius: 10px;
}

.pipze-spread-table thead {
    font-family: Arial;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    vertical-align: middle;
    color: #828CA0;
}

/* .pipze-spread-table tr{
    border-bottom: 0.5px solid #2d323642;
} */
.pipze-spread-table {
  width: 100%;
  table-layout: fixed; /* <-- force equal column width */
  border-collapse: collapse;
  min-width: 800px; /* adjust as needed */
}

.pipze-spread-table th,
.pipze-spread-table td {
  text-align: left;
  padding: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* if text is too long */
}


.pipze-spread-table tbody tr:nth-child(odd) {
    background: rgba(95,37,158,0.02);
}

.pipze-spread {
    font-weight: 500;
}

.pipze-positive {
    color: #009900;
}

.pipze-negative {
    color: #cc0000;
}

.fas.fa-info-circle {
    color: #999;
}

.pipze-spread.pipze-symbol{
    color: #0B0B16;
    font-family: Arial;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    vertical-align: middle;
}

.pipze-spread.pipze-time{
    color: #000000;
    font-family: Arial;
    font-weight: 400;
    font-style: Narrow;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    text-align: right;
    vertical-align: middle;
}

.pipze-spread-note {
    background-color: #f9f8fd;     
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px auto;                  /* center + spacing */
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #333;
}

.pipze-spread-note ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 100px;
}

.pipze-spread-note li {
    margin-bottom: 6px;
}

/* sprred page css end */


/* commission page css start */

.tradingfees-parent-commission .hero-section {
    background:
        url('../images/tradingfees/commission/banner.png');
}

.tradingfees-parent-commission .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3); /* dark overlay instead of filter */
    z-index: 1;
}

.tradingfees-parent-commission .hero-section .container {
    position: relative;
    z-index: 2;
}

.pipze-section-heading {
    font-size: 16px;
    margin-bottom: 8px;
    color: #000;
}

.pipze-section-description {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.pipze-table-wrapper {
    overflow-x: auto;
}

.pipze-commission-table {
    width: 100%;
}

.pipze-commission-table thead {
    background: #5F259E;
    color: #fff;
}

.pipze-commission-table th, 
.pipze-commission-table td {
    text-align: left;
    padding: 35px 20px;
}

.pipze-commission-table tbody tr:nth-child(odd) {
    background: rgba(95, 37, 158, 0.05);
}

.pipze-commission-table small {
    color: #000;
    font-size: 12px;
}

.pipze-commission-table thead tr th:first-child {
    border-top-left-radius: 20px;
}

.pipze-commission-table thead tr th:last-child {
    border-top-right-radius: 20px;
}

.pipze-commission-table thead tr th{
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
}

.pipze-commission-table td{
    color: #212121;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
}


/* commission page css end */
/* swaprate page css start */

.tradingfees-parent-swaprate .hero-section {
    background:
        url('../images/tradingfees/swaprate/banner.png');
}

.tradingfees-parent-swaprate .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 1;
}

.tradingfees-parent-swaprate .hero-section .container {
    position: relative;
    z-index: 2;
}

.swap-rate-list {
    list-style-type: disc;
    display: inline-block;     
    text-align: left;         
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 20px;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #212121;
}

.swap-rate-list li {
    margin-bottom: 4px;
}

.important-section {
    padding: 40px 0;
    background: #fafafa;
    border-radius: 12px;
}

.important-notes-content {
    align-items: center;
}

.important-text h2 {
    font-weight: 700;
    margin-bottom: 15px;
    font-weight: 700;
    font-style: Bold;
    font-size: 34px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #212121;
}

.important-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.important-text li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #212121;
}

.highlight {
    color: #5F259E;  
    font-weight: 500;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0%;
}

.important-image img {
    width: 100%;
    height: 500px;
}

.swaprate-section {
    position: relative;
    background: url(../images/tradingfees/swaprate-account.jpg);
    color: white;
    z-index: 1;
    align-items: center;
    display: flex;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 130px 0px;
}

.swaprate-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(33, 7, 69, 0.7);  /* deep purple overlay */
    z-index: 1;
}

.swaprate-section .container {
    position: relative;
    z-index: 2;
}

.swap-check-section {
    display: flex;
    align-items: center;
}

.swap-check-content ol, ul{
    padding-left: 1.3rem;
}

.footer-content{
 padding: 20px 0px;
    line-height: 2;
    text-align: justify;
    font-size: 12px;

}
/* swaprate page css end */


/* calculator page css start */
.tradingfees-parent-calculator .hero-section {
    background:
        url('../images/tradingfees/calculator/banner.png');
}


.tradingfees-parent-calculator .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 1;
}

.tradingfees-parent-calculator .hero-section .container {
    position: relative;
    z-index: 2;
}

.pipze-cta-section {
    background: #5F259E; 
    color: #fff;
    padding: 0px;
}

.pipze-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.pipze-cta-text {
    padding: 30px 0px 0px 0px;
}

.pipze-cta-text h2 {
    margin-bottom: 15px;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    line-height: 50px;
    letter-spacing: 0%;
    color: #FFFFFF;
}

/* .pipze-cta-image img {
    max-height: 300px;
    height: auto;
} */

.pipze-cta-image{
    display: flex;
    align-items: end;
    gap: 30px;
}

.calculator-steps-section {
    background: #fff;
    padding: 40px 0;
}

.calculator-steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.calculator-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
}

.calculator-step-circle {
    width: 80px;
    height: 80px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
    position: relative;
    background: linear-gradient(180deg, #742BFA 0%, #9A47E9 100%);
    font-weight: 600;
    font-style: SemiBold;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;

}

.calculator-step h5 {
    color: #5F259E;
    font-weight: 600;
    margin-bottom: 5px;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.calculator-step p {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #423D3D;
}

.calculator-step:nth-child(2)::before {
    content: "";
    position: absolute;
    top: -9px;
    right: 21%;
    width: -webkit-fill-available;
    height: 30px;
    background: url(../images/tradingfees/arrow-curve1.png) no-repeat center;
    background-size: contain;
    z-index: 1;
    left: -90%;
}

.calculator-step:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 69px;
    width: -webkit-fill-available;
    height: 30px;
    background: url(../images/tradingfees/arrow-curve2.png) no-repeat center;
    background-size: contain;
    z-index: 1;
    right: -43%;
    left: 69%;
}

/* calculator tab section css */



.calc-tab-list li {
    position: relative;
    margin-bottom: 10px;
    list-style: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.calc-tab-list li.active {
    background-color: #f4e9ff;
}

.calc-tab-list li.active::before {
    content: "•"; 
    position: absolute;
    left: 10px;
    top: 44%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #5F259E;
}
ul.calc-tab-list{
    padding-left: 0rem !important;
}

/* Tab button style */
.calc-tab-btn {
    background: transparent;
    border: none;
    text-align: left;
    width: 100%;
    padding: 10px 15px 10px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #423D3D;
    cursor: pointer;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
}

/* Active tab button */
.calc-tab-btn.active {
    font-weight: 600;
    color: #5F259E;
    background: transparent; /* button itself doesn't need background; li handles it */
}

/* Hover effect */
.calc-tab-btn:hover {
    background-color: #f1e3ff;
    color: #5F259E;
}

.calc-result-box {
    background-color: #f8f0ff;
    border: 1px solid #8547C2;
    padding: 30px 20px;
    border-radius: 10px;
}

.calc-result-box h5{
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #000000;
}

.calc-result-item{
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #212121;
    border-bottom: 1px solid #E4B9FF;
    padding: 16px 0px;
}

.forex-note{
    display: flex;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #000000;
    flex-direction: column;
}

.calc-tab-pane {
    display: none;
}

.calc-tab-pane.active.show {
    display: block;
}


.custom-select-wrapper {
  position: relative;
}


.custom-select {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('../images/icons/arrow-down.png');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    transition: border-color 0.2s ease-in-out;
    border: 1px solid #919EAB52;
    padding: 16px 14px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #919EAB;
}

.custom-select:focus {
    border-color: none;
    outline: none;
}

.calculate-common-btn:hover {
    background: #4a1e7d;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.calculate-common-btn {
    border-radius: 10px;
    padding: 16px 24px;
    background: #5F259E;
    border: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    display: flex;
    text-align: center;
    gap: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
    justify-content: center;
}

input.form-control.custom-input{
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    -webkit-appearance: none;
    transition: border-color 0.2s ease-in-out;
    border: 1px solid #919EAB52;
    padding: 16px 14px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #919EAB;
}

.form-control:focus{
    box-shadow: none;
}

h2.calc-result{
    color: #212121;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 0%;
    margin: auto 0px;
}

section.instrument-table-section{
    padding: 0px;
}

.instrument-table.instrument-table-changes th {
    padding: 16px;
    text-align: center;
    font-size: 14px;
}

.instrument-table.instrument-table-changes th:nth-child(1), .instrument-table.instrument-table-changes td:nth-child(1) {
    width: auto;
}

.instrument-table.instrument-table-changes tbody tr td{
    text-align: center;
}

.instrument-table.instrument-table-changes th{
    font-weight: 300;
}

.instrument-table.instrument-table-changes tbody tr td {
    font-size: 14.3px;
}

h5.curruncy-heading{
    color: #000000;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 26.91px;
    line-height: 33.6px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.currency-terms .heading{
    display: flex;
    color: #000000;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18.59px;
    line-height: 24.4px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.currency-terms .heading img{
    height: 20px;
    width: 20px;
}

.currency-terms span {
    background: #5F259E1A;
    font-weight: 500;
    font-style: Medium;
    font-size: 14.75px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #5F259E;
}

.result-table-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}

.result-header {
    background-color: var(--default-light-color); 
    font-weight: bold;
    padding: 20px;
    font-size: 13px;
    font-weight: 100;
    font-size: 22px;
    line-height: 20px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--background-color);
}

.notional-size h2{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #212121;
}

.national-volume p{
    color: #212121;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px
}

.national-volume h2{
    color: #212121;
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
}



/* calculator tab section end */

/* calculator page css end */


/* ================= Trading Fees Page Css End================= */ 


/* =================Market Analysis Css Start======================= */

/* overview page css */
.analysis-parent-overview .hero-section {
    background:
                url(../images/market-analysis/overview/Hero.png);
}

.explore-tool {
    background-image: url('../images/market/market-table-bg.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding: 30px 0;
}

.daily-articles-section {
    background-color: #fff;
}

.daily-articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.daily-articles-header .section-title {
    color: #212121;
    margin: 0;
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
}

.view-more-link {
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration-style: solid;
    position: relative;
    transition: color 0.3s ease;
    color: #5F259E;
    border-bottom: 1px solid #5d34b0;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
}

.view-more-link:hover {
    color: #5d34b0;
}

.article-card {
    padding: 35px 40px;
    background-color: #fafafa;
    transition: 0.3s ease;
    border: 1px solid #E2E2E2;
    border-radius: 16px;
}

.article-title {
    color: #212121;
    font-weight: 600;
    font-size: 21px;
    line-height: 28px;
    letter-spacing: 0%;
    margin-bottom: 1rem;
}

.article-card .img-fluid.rounded{
    height: -webkit-fill-available;
}

.article-summary {
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #525252;
}

.article-meta{
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #525252;
    margin-bottom: 1rem;
}

.article-meta span{
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-meta span img{
    height: 20px;
    width: 20px;
}

.article-card,
.mini-article {
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 15px 22px rgba(51, 51, 67, 0.3);
    position: relative;
    z-index: 1;
    transform: translateY(-4px);
    border-radius: 8px;
}

.mini-article:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    transform: translateY(-3px);
    border-radius: 10px;
}

.side-article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-article-list .mini-article {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
    padding: 16px;
    background: #fff;
    border: 1px solid #E2E2E2;
    border-radius: 8px;
    height: 150px;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

.side-article-list .mini-article:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.side-article-list .mini-article img.mini-thumb {
    width: 150px;
    height: 100%; 
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.side-article-list .mini-article > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mini-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #212121;
    margin-bottom: 6px;
}

span.mini-date {
    font-weight: 500;
    font-size: 16px;
    color: #525252;
}

.glossary-tags .tag {
    color: #5F259E;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s ease;
    background: #5F259E1A;
    font-weight: 500;
}

.glossary-tags .tag:hover {
    background-color: #e0d6ff;
}

/* Card container box */
.finance-card-box {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
}

/* Hover effect */
.finance-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

/* Image thumbnail */
.finance-thumb {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    overflow: hidden;
    height: 180px;
    object-fit: cover;
}

/* Ensures image fills container */
.finance-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card content body */
.finance-body{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    gap: 13px;
}

/* Title */
.finance-title {
    color: #212121;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    margin-bottom: 0px;
}

/* Meta info section */
.finance-meta {
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #A49FA6;
    display: flex;
    align-items: center;
}

.finance-meta .arrow-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.finance-meta .arrow-icon {
    transition: transform 0.2s ease;
}

.finance-meta .arrow-icon:hover {
    transform: scale(1.1);
}


.tool-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px 20px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
}


.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    font-size: 24px;
    color: #8547C2;
    margin-bottom: 15px;
}

.tool-card h5{
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #000000;
}

.tool-card p{
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #212121;
}

.bg-teal {
    background-color: #008080;
}
.text-teal {
    color: #008080;
}
.sentiment-card {
    border: 1px solid #ddd;
    background: #58aab62b;
    transition: box-shadow 0.3s ease;
    color: #000000;
}
.sentiment-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}


/* overview page end */

/* Detail  Overview Page Start */
.heading-analysis{
    color: #212121;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 0%;
}

.detail-analysis img{
    width: 100%;
    height: 100%;
}

.detail-analysis-content{
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0%;
    color: #212121;
}

.content-weekly-chart img{
    height: 500px;
    width: 85%;
    margin-top: 40px;
}
/* Detail Overview Page End */

/* Economic Calender Page Start */
.analysis-parent-calendar .hero-section {
    background: 
    url(../images/market-analysis/calender/Hero.png) ;
}

.economic-calendar-info {
    background-color: #fff;
}

.economic-calendar-image {
    min-height: 250px;
    background-color: #ddd; /* Replace with actual image if needed */
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.economic-calendar-image img{
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
}


.economic-calendar-text .section-title {
    margin-bottom: 1rem;
    color: #212121;
    font-weight: 700;
    font-style: Bold;
    font-size: 34px;
    line-height: 100%;
    letter-spacing: 0%;
}

.economic-calendar-text .section-description {
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #212121;
}

/* Economic Calender Page End */

/* News analysis page start */
.analysis-parent-newsanalysis .hero-section {
    background: 
    url(../images/market-analysis/news-analysis/Hero.png) no-repeat center center;
}

.news-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid transparent;
    display: flex;
}

.news-card:hover {
    box-shadow: 0 20px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #e0e0e0;
}

.news-image{
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-title {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0%;
    color: #212121;
}

.news-description {
    font-family: Plus Jakarta Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0%;
    color: #525252;
}

/* News analysis page End */

/* signal page start */
.analysis-parent-signal .hero-section {
    background: 
    url(../images/market-analysis/trading/banner.png);
}

.analysis-parent-signal-calculator .hero-section {
    background: 
    url(../images/market-analysis/calculator/banner.png);
}

.market-signal-section {
    padding: 60px 20px;
    background: url(../images/market-analysis/signal-formbg.jpg);
    position: relative;
    background-size: cover !important;
    display: flex;
    z-index: 1;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

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

.signal-text{
    width: 350px;
}

.signal-text h2{
    color: #FFFFFF;
    font-weight: 600;
    font-size: 52px;
    line-height: 72px;
    letter-spacing: 0%;
}

.signal-form-card {
    width: 500px;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    height: 500px;
    box-shadow: 20px 10px 35px 0px #00000017;
}

.signal-form-card form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Form elements */
.signal-form .form-group {
  position: relative;
  margin-bottom: 24px;
}

.signal-form input,
.signal-form select {
  width: 100%;
  padding: 16px 12px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  background: transparent;
  transition: border-color 0.3s;
}

.signal-form input:focus,
.signal-form select:focus {
  border-color: #7b4be0;
}

/* Floating Labels */
.signal-form label {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 16px;
  color: #999;
  background: white;
  padding: 0 4px;
  transition: 0.2s ease all;
  pointer-events: none;
}

.signal-form input:focus + label,
.signal-form input:not(:placeholder-shown) + label,
.signal-form select:focus + label,
.signal-form select:valid + label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  color: #7b4be0;
}

.tacbox {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
}

.tacbox p{
    color: #212B36;
    font-size: 14px;
}

.tacbox p a{
    color: #212B36;
    text-decoration: underline;
}


.tacbox input#checkbox{
    width: auto;
}


/* signal page end */

/* Profit calculator page css start */

.content-profit-calculator.section {
    padding: 10px 0;
}

.pipze-tab-pane {
    display: none;
}

.pipze-tab-pane.active {
    display: block;
}

.profit-calculator {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #212121;
    margin-bottom: 10px;
}

.profit-calculator h3 {
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #212121;
    margin-bottom: 20px;
}

.profit-calculator ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.profit-calculator ul li{
    margin-bottom: 10px;
}

.pipze-float-group {
    position: relative;
}

.pipze-float-label {
    position: absolute;
    top: -7px;
    left: 14px;
    background: white;
    padding: 0 4px;
    font-size: 12px;
    color: #9DA8B6;
    z-index: 2;
    font-weight: 500;
}

.pipze-float-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #D8DDE6;
    border-radius: 8px;
    padding: 15px 5px;
    background: white;
}

.pipze-float-input {
    border: none;
    background: none;
    flex: 1;
    text-align: center;
    font-size: 17px;
    color: #000;
    outline: none;
    padding: 0;
    font-weight: 500;
    -moz-appearance: textfield;
}

.pipze-float-input::-webkit-outer-spin-button,
.pipze-float-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pipze-float-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.pipze-result-title {
    margin-bottom: 14px;
    color: #212121;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
}

.pipze-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.pipze-result-label {
    color: #A49FA6;
    font-family: Plus Jakarta Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0%;
}

.pipze-result-value {
    font-weight: 500;
    font-size: 15px;
}

.pipze-result-value.green {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #147875;
}

.pipze-result-label.strong,
.pipze-result-value.strong {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #212121;
}

.pipze-result-label.muted,
.pipze-result-value.muted {
    color: #B1B1B3;
}

hr.pipze-result-divider {
    border: 1px solid #E2E2E2
}




/* Profit calculator page css end */

/* =================Market Analysis Css End======================= */

/* =================Promotion Css Start============================ */
/* index page css start */

.promotion-main .hero-section {
    background:
        url('../images/market-analysis/overview-bg.jpg') no-repeat center center;
}
/* index page css end*/

/* Deposit bonus page css start */
.promotion-depositbonus .hero-section{
    background: url('../images/Promotions/bonus-bg.png');
    align-items: center;
    height: 550px;
    padding-top: 0px;
}

.promotion-depositbonus .hero-section h1{
    color: #000000;
}

.promotion-depositbonus .hero-section p{
    color: #000000;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
}

.promotion-depositbonus .hero-section h1 span{
    color: #5F259E;
}

a.cta-deposit{
    color: #5F259E;
    border: 1px solid #5F259E;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    padding: 16px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
}


    /* that step to section css */
    
    /* Progress wrapper */
    /* .open-step-section {
    padding: 100px 0;
    position: relative;
    }

    .scroll-progress-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 1;
    }

    .scroll-progress-line {
    position: absolute;
    top: 0;
    left: 18px;
    width: 4px;
    height: 100%;
    background: #eee;
    }

    .scroll-progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    background: #6b2ebf;
    height: 0%;
    transition: height 0.3s ease;
    }

    .progress-step {
    position: absolute;
    left: -10px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #6b2ebf;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-weight: bold;
    color: #6b2ebf;
    }

    #step-dot-1 { top: 0; }
    #step-dot-2 { top: 33%; }
    #step-dot-3 { top: 66%; }
    #step-dot-4 { bottom: 0; }
    */

    /* Step Content */
    .step-section {
        display: flex;
        align-items: flex-start;
        gap: 40px;
        /* padding: 120px 40px; */
        position: relative;
    }

    .step-number {
        font-size: 220px;
        color: #e5e5e5;
        font-weight: bold;
        width: 200px;
        text-align: center;
    }

    /* .step-content {
        max-width: 800px;
    } */


    .step-heading{
        color: #262934;
        font-weight: 700;
        font-style: Bold;
        font-size: 42px;
        line-height: 56px;
        text-align: center;
    }

    .step-subheading{
        color: #6C6C6F;
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        max-width: 700px;
        margin: auto;
    }

    .platform-selection {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .step-number {
        width: 312px;
        height: 284px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e5e5e5;
        font-weight: 600;
        font-size: 284.24px;
        line-height: 100%;
        vertical-align: middle;
    }

    .platform-card {
        background: #fdf8ff;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        text-align: center;

        h3 {
            font-weight: 700;
            font-style: Bold;
            font-size: 32px;
            line-height: 30px;
            letter-spacing: 0%;
            text-align: center;
            vertical-align: middle;
            text-transform: capitalize;
            color: #2F2F35;
            margin: 12px 0;
        }

        p {
            font-weight: 400;
            font-size: 16px;
            line-height: 28px;
            text-align: center;
            color: #A49FA6;
        }

        .icon-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        img {
            width: 42px;
            height: 42px;
        }
    }

    .step-number.text-purple{
        color: #5F259E;
    }

    .payment-methods {
        display: flex;
        flex-wrap: wrap;
        gap: 16px 20px;
        max-width: 620px;
        justify-content: center;
    }

    .payment-box {
        width: 140px;
        height: 70px;
        background: #fff;
        border-radius: 5px;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
        transition: transform 0.2s ease;
        border: 1px solid #E2E2E2;
    }

    .payment-box img {
        max-height: 28px;
        max-width: 100%;
        object-fit: contain;
    }

    .payment-box:hover {
        transform: scale(1.04);
    }

    .third-step-content{
        background-color: #5F259E;
        padding: 50px 0px;
    }

    .platform-selection .bonus-card{
        width: 600px;
    }
    

    /* that step to section css */

    
.bonus-comparison-section {
    background-image: url(../images/market/market-table-bg.png);
    background-size: cover;
}

.bonus-comparison-section .content{
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 7px;
}

.bonus-comparison-section .section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.bonus-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 30px 0px;
    transition: box-shadow 0.3s;
    height: 100%;
}

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

.bonus-title {
    font-weight: 700;
    font-style: Bold;
    font-size: 34px;
    line-height: 100%;
    letter-spacing: 1%;
    text-transform: capitalize;
    color: #212121;
}

.bonus-title.text-purple,
.bonus-list-table .profit .value.text-purple,
.bonus-list-table .value span.text-purple{
    color: #5F259E;
}

.bonus-subtitle {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #212121;
}

.bonus-subtitle a {
    text-decoration: underline;
    font-weight: 500;
    color: #5F259E;
}

.bonus-image {
    margin-bottom: 25px;
    text-align: center;
}

.bonus-image img {
    max-width: 100%;
    height: auto;
}

.bonus-list-table {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eee;
    font-size: 16px;
    font-weight: 400;
}

.bonus-list-table li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: #222;
    border-bottom: 1px solid #E2E2E2;
}

.bonus-list-table .label {
    color: #2F2F35;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
}

.bonus-list-table .value {
    font-weight: 500;
}

.bonus-list-table .profit .value {
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    color: #2F2F35;
}

.promotion-rules p{
    color: #212121;
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    margin-bottom: 5px;
}
/* Deposit bonus page css start */


/* Give aways page css start */

.promotion-giveaway .hero-section {
    background:
        url('../images/Promotions/giveaway-bg.png') no-repeat center center;
    height: 1046px;
    align-items: start;
    text-align: center;
}

.promotion-giveaway .hero-section .heading h1 {
    color: #FFFFFF;
    font-family: Google Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 52px;
    line-height: 72px;
    letter-spacing: 0%;
    padding-top: 40px;
}

.promotion-giveaway .hero-section .heading h1 span{
    color: #FEBC1F;
}


.cta-section {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 20px;
}

a.cta-button {
    background: #FEBC1F;
    padding: 16px 24px;
    color: #212121;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    transition: all 0.3s ease;
}

a.cta-button:hover {
    background: #f4aa00; /* darker shade for hover */
    color: #ffffff;
}

a.cta-phone {
    color: #FEBC1F;
    border: 1px solid #FEBC1F;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    padding: 16px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

a.cta-phone:hover {
    background: #FEBC1F;
    color: #ffffff;
}

a.cta-phone:hover i {
    color: #ffffff;
}

a.cta-phone i {
    font-size: 20px;
    transition: color 0.3s ease;
}

.prize-lots-info {
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    background: url(../images/Promotions/content-bg.png) no-repeat center center;
    background-size: cover; 
}

.prize-lots-info h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.prize-lots-info p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #212121;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
}

.lot-equation {
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    gap: 20px;
    margin: 25px 0;
}

.lot-equation .traded-lot,
.lot-equation .prize-lot {
    color: #212121;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.lot-equation .traded-lot strong,
.lot-equation .prize-lot strong{
    font-size: 42px;
}

.lot-equation .equals {
    margin: 0 10px;
    color: #333;
}

.video-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.video-thumbnail {
    position: relative;
    max-width: 800px;
    width: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 450px;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
    filter: brightness(0.7);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px; 
    color: #fff; 
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.giveaway-hero {
    background: url('../images/Promotions/content.jpg') no-repeat center center;
    position: relative;
    height: 528px;
    background-size: cover !important;
    display: flex;
    color: white;
    z-index: 11111;
    background-position: center !important;
    align-items: center;
    background-repeat: no-repeat !important;
}

.giveaway-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #5F259E99; 
    z-index: 1;
}

.giveaway-hero .hero-content {
    position: relative;
    color: #fff; /* White text */
    text-align: center;
    z-index: 2;
}

.giveaway-hero .hero-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.giveaway-rule p{
    color: #212121;
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    margin-bottom: 0px;
}

/* Give aways page css start */

/* =================Promotion Css End============================ */

/* Detail page */
.price-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: var(--dark-color);
}

.price-info-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.price-chart-container {
    background-image: url('../images/abouttrading/tradinginstrument/BG.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
}

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

.price-details span {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #A49FA6;
}

.price-details .highlight-perc {
    color: #fff;
    background-color: #147875;
    padding: 6px 10px;
    border-radius: 8px;
}

.price-details h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #000;
}

.symbol-price {
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    color: var(--dark-color);
}

.buy-sell-price-container {
    padding: 56px 0;
    margin: 0;
}

.trade-now {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    padding: 16px 0;
    background-color: var(--default-light-color);
    color: #fff;
    border-radius: 10px;
    border: none;
}

.info-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #A49FA6;
    margin-top: 28px;
}

.detail-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
}

.tab-header {
    display: flex;
}



.tab-button.active {
    border-bottom-color: var(--default-light-color);
}

/* .tab-content {
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    margin-top: 30px;
} */

.data-grid {
    display: flex;
    grid-template-columns: repeat(fit, minmax(100px, 1fr));
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.data-item {
    text-align: center;
    width: fit-content;
}

.data-label {
    color: #A49FA6;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}

.data-value {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    text-align: center;

}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.investing-widget {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: none;
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px 8px 0 0;
}

.tradingview-widget-container {
    height: 600px;
    width: 100%;
}

.calendar-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar {
    width: 250px;
    background: #fff;
    padding: 20px;
    border-right: 1px solid #ddd;
}

.sidebar input, .sidebar select {
    width: 100%;
    margin-top: 10px;
    padding: 5px;
    font-size: 16px;
}

.main-content {
    flex: 1;
    padding: 20px;
    background: #fefefe;
}

.event-card {
    background: #fff;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.event-card h4 {
    margin: 0;
    font-size: 18px;
}

.event-card p {
    margin: 5px 0;
    font-size: 14px;
}

.flag {
    width: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.dealing-tab {
    background: transparent;
    border: none;
    color: #212121;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    margin: 10px;
}

.dealing-tab.active {
    border-bottom: 1px solid var(--default-light-color);
}

/* Deposit & Withdrawal Page Design */
.overview-and-withdraw-main .hero-section {
    background:
        url('../images/deposit-withdraw/banner.png');
    background-position: inherit !important;
}

.payment-section-parent {
    text-align: center;
    background: url('../images/deposit-withdraw/payment-back.png');
    background-size: cover;
    background-position: top;
    padding: 0;
}

.payment-option-main .payment-section-parent {
    background: none;
}

.open-account-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: var(--dark-color);
}

.open-account-content {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: var(--dark-color);
}

.payment-section-parent .title-section {
    padding: 60px 0 30px;
}

.payment-tabs {
    overflow: hidden;
    background: #FBF5FF;
    padding: 34px;
    border-radius: 20px;
}

.payment-tabs-parent {
    border-radius: 20px;
    border: none;
}

.overview-and-withdraw-main .tab-nav, .payment-option-main .tab-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.overview-and-withdraw-main .tab-nav li,
.payment-option-main .tab-nav li {
    flex: 1;
    padding: 35px 20px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    background-color: var(--default-light-color);
    transition: background 0.3s;
}

.overview-and-withdraw-main .tab-nav li.active,
.payment-option-main .tab-nav li.active {
    background-color: #8547C2;
}

.overview-and-withdraw-main .tab-content,
.payment-option-main .tab-content {
    padding: 20px;
    border-radius: 0;
    margin: 0;
    background: none;
    overflow: auto;
}

.overview-and-withdraw-main .payment-table,
.payment-option-main .payment-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.overview-and-withdraw-main .payment-table thead th,
.payment-option-main .payment-table thead th {
    font-family: 'Arial Narrow', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 19.2px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000;
}

.overview-and-withdraw-main .payment-table tbody td,
.payment-option-main .payment-table tbody td {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--dark-color);
}


.overview-and-withdraw-main .payment-table th,
.overview-and-withdraw-main .payment-table td,
.payment-option-main .payment-table th,
.payment-option-main .payment-table td {
    padding: 15px;
    text-align: left;
    vertical-align: middle;
}

.overview-and-withdraw-main .payment-table tbody tr:nth-child(odd),
.payment-option-main .payment-table tbody tr:nth-child(odd) {
    background: #FFFFFF;
}

.overview-and-withdraw-main .pm-icon,
.payment-option-main .pm-icon {
    width: 85px;
    vertical-align: middle;
    margin-right: 8px;
}

.overview-and-withdraw-main .btn-action,
.payment-option-main .btn-action {
    padding: 8px 14px;
    background: #fff;
    color: var(--default-light-color);
    border: 2px solid var(--default-light-color);
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    width: max-content;
    text-align: center;

}

.overview-and-withdraw-main .btn-action:hover,
.payment-option-main .btn-action:hover {
    background: var(--default-light-color);
    color: #fff;
}

.overview-and-withdraw-main .btn-action.purple,
.payment-option-main .btn-action.purple {
    background: var(--default-light-color);
    color: #fff;
}

.corporate-journey {
    border: 1px solid #8547C2;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    color: var(--dark-color);
    background: #FBF5FF;
    width: max-content;
}

.corporate-journey p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.common-title-overview-and-withdraw-main {
    font-weight: 700;
    font-size: 34px;
    color: var(--dark-color);
    padding-top: 16px;
}

.common-paragrah-overview-and-withdraw-main {
    font-weight: 500;
    font-size: 16px;
    color: var(--dark-color);
    margin: 0;
}

.common-paragrah-light-overview-and-withdraw-main {
    font-weight: 300;
    font-size: 14px;
    margin: 0;
    color: #A49FA6;
}

.common-hr-overview-and-withdraw-main {
    border-color: #DFDFDF !important;
}

.common-btn-overview-and-withdraw-main {
    padding: 16px 44px;
    border-radius: 10px;
    background-color: var(--default-light-color);
    margin:16px 0px;
    width: max-content;
}

.common-btn-overview-and-withdraw-main a {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    color: #fff;
}

.how-to-withdraw-main {
    padding: 60px;
}

.common-content-parent-overview-and-withdraw-main {
    padding-right: 90px;
}

/* .what-are-pipze-trading-hour-main {
    padding: 60px;
} */

.testimonial-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-header .btn-outline {
    border: 1px solid var(--default-light-color);
    padding: 10px 20px;
    border-radius: 100px;
    background: #FBF5FF;
    color: var(--default-light-color);
    font-weight: 500;
    font-size: 16px;
}

.testimonial-header h2 {
    font-size: 28px;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    text-transform: capitalize;
    color: var(--dark-color);
    margin: 16px 0 30px;
}

.testimonial-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scrollLeft 20s linear infinite;
}

.testimonial-wrapper:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 460px;
    height: 282px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 20px 120px -20px #8547C21A;
    padding: 32px 38px;
    gap: 10px;

}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-card .text {
    color: #444;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    padding: 16px 0;
}

.testimonial-card .author {
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #313131;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Payment Option Page Design */
.payment-option-main .hero-section {
    background:
        radial-gradient(49.91% 49.91% at 50% 50.09%, rgba(95, 37, 158, 0.2) 0%, rgba(70, 24, 114, 0.2) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../images/payment-option/hero-banner.jpg') no-repeat center center;
}

.hero-section.default-payment-withdrawl-pages {
    align-items: end;
}

.hero-section.default-payment-withdrawl-pages h1 {
    margin-bottom: 30px;
}


.info-cards-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 40px 20px;
    /* background-color: #111; */
    /* fallback in case image fails */
    flex-wrap: wrap;
}

.info-card {
    flex: 1 1 280px;
    max-width: 435px;
    padding: 24px;
    border-radius: 20px;
    background-image: url('../images/payment-option/info-ackground.png');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-subtitle {
    color: rgba(255, 255, 255, 1);
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    opacity: 50%;

}

.card-title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;

}

.card-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.card-btn.filled {
    background-color: #ffc107;
    /* yellow */

}

.card-btn.outline {
    border: 1px solid #ffc107;
    color: #ffc107;
}

.card-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    background-color: #ffc107;
    color: var(--dark-color);
}


.conversion-section {
    padding: 60px;
    background-color: #fff;
    flex-wrap: wrap;
}

.conversion-left {
    max-width: 500px;
    flex: 1;
    text-align: center;
}

.conversion-left h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark-color);
    text-align: center;
}

.custom-input {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding-right: 45px;
    box-shadow: none !important;

    font-family: 'Arial Narrow';
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;

}

.custom-input:focus {
    border-color: #999;
    outline: none;
    box-shadow: none;
}

.unit-label {
    position: absolute;
    right: 10px;
    bottom: 8px;
    color: var(--dark-color);
    pointer-events: none;

    font-family: 'Arial Narrow';
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
    text-transform: uppercase;
    opacity: 30%;

}

.conversion-info {
    font-family: 'Arial Narrow';
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
    text-align: center;
    margin-top: 20px;
    color: var(--dark-color);
}

.deposit-btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-color);
    padding: 16px 44px;
    border-radius: 10px;
    background-color: #FEBC1F;
    border: none;
}

.banner-info-main {
    background:
        linear-gradient(#5F259EB2, #5F259EB2),
        url('../images/payment-option/info-banner-back.jpg') no-repeat center center;
    background-size: cover;
    background-blend-mode: multiply;
    padding: 149px 60px;
}

.banner-info-main h1 {
    font-weight: 700;
    font-size: 34px;
    line-height: 100%;
    color: #fff;
}

.banner-info-main p {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin-top: 20px;
}

.payment-option-main .faq-section {
    padding: 60px 0;
}

/* Funds Security page Design */
.funds-security-main .hero-section {
    background:
        radial-gradient(49.91% 49.91% at 50% 50.09%, rgba(95, 37, 158, 0.2) 0%, rgba(70, 24, 114, 0.2) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../images/deposit-withdraw/funds-security/funds-security-hero.png') no-repeat center center;
}

.fund-security-title-main {
    padding: 45px 0 60px;
    text-align: center;
}

.fund-security-title-main h1 {
    font-weight: 700;
    font-size: 34px;
    line-height: 100%;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.fund-security-title-main p {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}
.funds-security-common-section{
    padding: 60px 0;
}
.funds-security-common-section .row {
    align-items: center;
}

.funds-security-common-section h1 {
    font-weight: 700;
    font-size: 34px;
    line-height: 100%;
    color: var(--dark-color);
}

.funds-security-common-section p {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--dark-color);
    margin: 20px 0;
    max-width: 550px;
}

.funds-security-common-section .btn {
    background-color: #FEBC1F;
    padding: 16px 24px;
    border-radius: 10px;
}

.funds-security-common-section a {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-color);
}

.ssl-protected-main, .secure-visa-autentication-main{
    background-color: #FBF5FF;
}



/* =================Partner Program Css Start============================ */

/* checklist page css */
.partner-program-index-checklist .hero-section{
    background: 
    url(../images/partner-program/checklist/Ibchecklist.png) no-repeat center center;
}

.checklist-tabs-section {
    padding: 60px 0 0 0;
    background-color: #f9f9f9;
}

.checklist-tabs-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.checklist-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0px 0px 10px 0px #DFDFDFBF;
    border-radius: 30px;
    padding: 10px;
}

.checklist-tab-btn {
    color: #5F259E;
    font-family: Poppins;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    background-color: #f0f0f0;
    border: none;
    padding: 16px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checklist-tab-btn.active {
    background-color: #5F259E;
    color: #fff;
}

.checklist-tab-content {
    display: none;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.checklist-tab-content.active {
    display: block;
}

/* tab-1 */
.logo-section {
    max-width: 900px;
    margin: 0 auto;
}

.style-guide-subtitle {
    color: #000000;
    font-family: Poppins;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.style-guide-text {
    color: #787878;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

.logo-check-wrap {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.logo-side {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.logo-side.right {
    justify-content: flex-start;
}

.logo-check-block {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 7px 0px #00000040;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-check-block img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-divider {
    width: 2px;
    height: 300px;
    border-left: 2px dotted #d4d4d4;
}

.logo-download-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.logo-btn {
    background: #5F259E;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    box-shadow: 0 4px 8px rgba(106, 27, 154, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-family: Poppins;
    font-size: 16px;
    transition: background 0.2s ease;
}

.logo-btn i {
    font-size: 16px;
}

.brandname-section {
    max-width: 900px;
    margin: 60px auto 0;
    padding-bottom: 40px;
}

.brandname-table {
    display: flex;
    flex-direction: column;
}

.brandname-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 2px dotted #d4d4d4;
}

.brandname-row.header {
    border-bottom: none;
    padding: 30px 0 20px;
}

.brandname-cell {
    flex: 1;
    padding: 0 15px;
    font-family: Poppins;
    font-size: 16px;
    color: #000;
    line-height: 1.6;
}

.brandname-cell.icon {
    display: flex;
    align-items: center;
}

.brandname-cell img {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 7px 0px #00000040;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.brandname-divider {
    width: 2px;
    border-left: 2px dashed #C4C4C4;
}

.commission-info {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fafafa;
    border-radius: 8px;
    max-width: 900px;
    margin: auto;
}

.section-title {
    color: #000000;
    font-family: Poppins;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #444;
    margin-top: 15px;
}

.section-text {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #787878;
}

.criteria-list {
    margin-top: 10px;
    padding-left: 20px;
    font-size: 14px;
    color: #333;
}

.criteria-list li {
    margin-bottom: 8px;
}

.promotion-cooperation {
    color: #333;
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

.promotion-cooperation .section-header .section-title {
    color: #787878;
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 30px;
}

.promo-block {
    margin-bottom: 25px;
}

.promo-title {
    margin-bottom: 10px;
    color: #787878;
    font-family: Poppins;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
}

.promo-text {
    line-height: 1.6;
    color: #787878;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

/* checklist page css */

/* Help centre page */
.partner-program-help-centre-main .hero-section{
    background: 
    url(../images/partner-program/helpcentre/bg.png);
}

.wrap-content {
    margin: 0 auto;
    text-align: center;
}


.wrap-content h1 {
    font-weight: 700;
    font-style: Bold;
    font-size: 52px;
    line-height: 80px;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 550px;
    padding: 10px;
}

.search-box input {
    width: 100%;
    padding: 16px 14px 16px 40px;
    padding-right: 50px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #919EAB52;
}

.search-box img {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: #999;
}

.main-help-section {
    padding: 60px 0;
    background-color: #f0f0f0;
}

.help-area-wrap {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.side-menu {
    flex-shrink: 0;
    width: 280px;
    background-color: #fff;
    text-align: left;
}

.side-menu-title {
    padding: 12px 20px 20px 0px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #000000;
    font-family: Plus Jakarta Sans;
    font-weight: 700;
    font-size: 24px;
    line-height: 27px;
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu-item {
    padding:12px 20px 20px 0px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid #DFDFDF;
    color: #000000;
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 16.73px;
    line-height: 27px;
    letter-spacing: 0%;
}

.side-menu-item:last-of-type {
    border-bottom: none;
}


.side-menu-item.is-active {
    color: #5F259E;
    border-bottom: 1px solid #5F259E;
}


.article-section {
    display: none;
    margin-bottom: 40px;
}

.article-section.is-active {
    display: block;
}

.content-display-area {
    text-align: justify;
}

.article-section {
    display: none; /* Hidden by default */
    margin-bottom: 40px; /* Space between sections if multiple are visible */
}

.article-section.is-active {
    display: block; /* Shown when active */
}

.article-section h4 {
    margin-bottom: 5px;
    color: #212121;
    font-weight: 700;
    font-size: 24px;
    line-height: 27px;
}

.article-section h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.article-section ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin: 0;
}

.article-section ul li {
    position: relative;
    padding-left: 20px;
    color: #212121;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
}

.article-section ul li::before {
    content: '•'; /* Custom bullet point */
    color: #5F259E; /* Purple bullet */
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.article-section ul li:last-child {
    border-bottom: none;
}

/* Styling for sections with icon headings (Account Security, Support) */
.section-heading-icon {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 15px;
}

.purple-dot {
    display: inline-block;
    width: 20px; /* Larger size for the icon/dot to accommodate checkmark */
    height: 20px; /* Larger size for the icon/dot */
    background-color: #5F259E; /* Purple background */
    border-radius: 50%; /* Circular shape */
    margin-right: 10px;
    flex-shrink: 0;
    position: relative;
}

/* Checkmark inside the purple dot as seen in screenshot */
.purple-dot::after {
    content: '✔'; /* Checkmark character */
    color: #fff; /* White checkmark */
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1; /* Adjust line-height to center properly */
}


.section-heading-icon h3 {
    margin: 0;
    color: #212121;
    font-family: Plus Jakarta Sans;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
}

/* help centre page */


/* contact  us page */
.partner-program-contactus-main .hero-section{
    background:
    url(../images/partner-program/contactus/bg.png);
    height: 800px;
}

.contact-form-section {
    padding: 60px 20px;
    background: url('../images/partner-program/contactus/form.jpg') center center / cover no-repeat;
}

.contact-form-section .content h2{
    color: #FFFFFF;
    font-weight: 700;
    font-style: Bold;
    font-size: 42px;
    line-height: 63px;
    letter-spacing: 0%;
    vertical-align: bottom;
}

.contact-form-section .content p{
    color: #FFFFFF;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0%;
    vertical-align: bottom;
}

/* contact  us page */

/* =================Partner Program Css End============================ */


/* App Guide Section */
.app-guide-section {
    padding: 0px 0px 30px 0px;
}


.guide-heading {
    color: #212121;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    text-align: center;
}

.store-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.store-btn {
    display: block;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.store-buttons img {
    height: 56px;
    width: auto;
    display: block;
}

/* Guide Content */
.guide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Side - Phone Mockup */
.guide-left {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.guide-number {
    color: #E1DEE5;
    font-family: Plus Jakarta Sans;
    font-weight: 700;
    font-size: 179.31px;
    line-height: 100%;
}

.app-phone {
    position: relative;
    z-index: 2;
}

.app-phone img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.app-phone:hover img {
    transform: translateY(-5px) scale(1.02);
}

/* Right Side - Content */
.guide-right {
    flex: 1;
    padding-left: 40px;
}

.signup-content h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: #212121;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.signup-content .purple {
    color: #5F259E;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    display: inline-block;
}

.signup-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 30px;
    max-width: 380px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 6px !important;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background-color: #5F259E !important;
    transform: scale(1.3);
}




/* android page user guide section css */