a.ac-btn.login{
    border: 0px;
}

a.ac-btn.login:hover{
    border: 0px
}

.login-buttons .login img {
    width: 24px;
    height: 24px;
}

.login-buttons .ac-btn:hover{
    background: none;
    color: #fff;
    transform: none;
    box-shadow: none;
    filter: none;
    border: 2px solid #ccc;
}


.heading-bottom-scrolled {
    background-color: #4b0082;   /* change color as needed */
    transition: background-color 0.3s ease;
}

@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;
}

.whatsapp-float {
    position: fixed;
    bottom: 140px;
    right: 21px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    padding: 4px 12px;
    font-size: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}
/* 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;
}

.custom-social-icon{
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: center;
    gap: 10px;

}

/* heading top end */
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: #fff;
    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: end;
    align-items: center;
    width: 100%;
}

.navmenu .login-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 9999;
    /* margin-left: 100px; */
}

.header-top-new p{
    color: #FFFFFF;
    font-weight: 400;
    font-style: Medium;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -1%;
    margin-bottom: 0px;
}

.header-top-new a{
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #461872;
    background: #FFFFFF;
    padding: 8px 16px;
    border-radius: 5px;
}

.header-top-new {
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding: 10px 0px;
}

/* 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;
}


/*--------------------------------------------------------------
# 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: 38px;
    height: 38px;
}


.footer .card .left-side .card-subtitle {
    color: #E4B9FF;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    margin: 10px 0px;
}


.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 {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 18px;
}

.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 .social-media .social-img .custom-social-img{
    height: 24px;
    width: 24px;
    max-width: none;
}

footer .divider {
    border-top: 1px solid #E4B9FF
}

/* .footer-list {
    padding: 0px 0px 20px;
} */

.footer-list .row {
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* 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: 14px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    word-spacing: 5px;
}

.footer-list .heading h3 a{
    color: #fff;
}

.footer-list .list a {
    font-weight: 400;
    font-size: 14px;
    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: 50px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.custom-hero-section {
    width: 100%;
    min-height: 75vh;
    position: relative;
    display: flex;
    /* align-items: center; */
    padding: 100px 0px;
    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;
}

.new-con-hero p{
    color: #FFFFFF;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0%;
    margin: 0px;
}

.whatsapp-btn{
    color: #ffffff;
    background: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 10px;
    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.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-index-btn{
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.whatsapp-btn img{
    height: 27px;
}

/* ==== Stats Section ==== */
.hero-stats-section {
    margin-top: 100px;
}


.hero-stats-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #FFFFFF33;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px;
}

.hero-stat-item {
    flex: 1;
    text-align: center;
}

.hero-stat-item h3 {
    margin: 0 0 5px;
    color: #FFFFFF;
    font-weight: 700;
    font-style: Bold;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.hero-stat-item p {
    margin: 0;
    color: #FFFFFF;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
}

.hero-divider-first,.hero-divider-second,.hero-divider-third {
    width: 1px;
    height: 82px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}

.hero-divider-responsive {
    display: none;
}

/* Content Container */
.custom-hero-section .container {
    position: relative;
    z-index: 3;
}

/* Left Side Content */
.hero-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.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; */
}

.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;
}

/* 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;
}

.faq-item {
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.hidden {
    display: none;
}

.question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.answercont.active {
    max-height: 500px;
}


.view-more-btn {
    display: block;
}

.view-more-btn.hidden {
    display: none;
}

/* About Trading Overview page End */


    
.bonus-comparison-section {
    background-image: url(../images/market/market-table-bg.webp); background-image: -webkit-image-set(url(../images/market/market-table-bg.webp) 1x, url(../images/market/market-table-bg.png) 1x);
    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.webp'); background: -webkit-image-set(url('../images/Promotions/giveaway-bg.webp') 1x, url('../images/Promotions/giveaway-bg.webp') 1x);; background: -webkit-image-set(url('../images/Promotions/giveaway-bg.webp') 1x, url('../images/Promotions/giveaway-bg.png') 1x); no-repeat center center;
    width: 100%;                /* Full width of screen */
    min-height: 1024px;           /* Responsive height (adjusts with screen) */
    background-size: cover;       /* Ensures image covers entire area */
    display: flex;              /* For aligning inner content */
    align-items: flex-start;    /* Aligns content at top */
    justify-content: center;    /* Centers horizontally */
    text-align: start;
    padding-top: 40px;          /* Pushes text down from top */
}

/* Heading styles */
.promotion-giveaway .hero-section .heading h1 {
    color: #FFFFFF;
    font-family: "Google Sans", sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 72px;
    letter-spacing: 0;
    margin: 0;
}

.promotion-giveaway .hero-section .heading h1 span {
    color: #FEBC1F;
}

.promotion-giveaway .hero-section p{

}

.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;
    padding-bottom: 60px;
    background: url(../images/Promotions/content-bg.webp); background-image: -webkit-image-set(url(../images/Promotions/content-bg.webp) 1x, url(../images/Promotions/content-bg.png) 1x) 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-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    font-size: 50px; 
    color: #fff; 
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.play-button-custom p {
    color: #ffffff;
    /* line-height: 0px; */
    margin-bottom: 00px;
    font-size: 27px;
}

.giveaway-hero {
    background: url('../images/Promotions/content.webp'); background: -webkit-image-set(url('../images/Promotions/content.webp') 1x, url('../images/Promotions/content.webp') 1x);; background: -webkit-image-set(url('../images/Promotions/content.webp') 1x, url('../images/Promotions/content.jpg') 1x); 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.webp'); background-image: -webkit-image-set(url('../images/abouttrading/tradinginstrument/BG.webp') 1x, url('../images/abouttrading/tradinginstrument/BG.webp') 1x);; background-image: -webkit-image-set(url('../images/abouttrading/tradinginstrument/BG.webp') 1x, url('../images/abouttrading/tradinginstrument/BG.png') 1x);;
    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.webp'); background: -webkit-image-set(url('../images/deposit-withdraw/banner.webp') 1x, url('../images/deposit-withdraw/banner.webp') 1x);; background: -webkit-image-set(url('../images/deposit-withdraw/banner.webp') 1x, url('../images/deposit-withdraw/banner.png') 1x);;
    background-position: inherit !important;
}

.payment-section-parent {
    text-align: center;
    background: url('../images/deposit-withdraw/payment-back.webp'); background: -webkit-image-set(url('../images/deposit-withdraw/payment-back.webp') 1x, url('../images/deposit-withdraw/payment-back.png') 1x);;
    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.webp'); background-image: -webkit-image-set(url('../images/payment-option/info-ackground.webp') 1x, url('../images/payment-option/info-ackground.png') 1x);;
    /* 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.webp); background-image: -webkit-image-set(url(../images/partner-program/checklist/Ibchecklist.webp) 1x, url(../images/partner-program/checklist/Ibchecklist.png) 1x) 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.webp); background-image: -webkit-image-set(url(../images/partner-program/helpcentre/bg.webp) 1x, url(../images/partner-program/helpcentre/bg.png) 1x);
}

.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 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.webp'); background: -webkit-image-set(url('../images/partner-program/contactus/bg.webp') 1x, url('../images/partner-program/contactus/bg.png') 1x);;
    height: 800px;
}

.contact-form-section {
    padding: 60px 20px;
    background: url('../images/partner-program/contactus/form.webp'); background: -webkit-image-set(url('../images/partner-program/contactus/form.webp') 1x, url('../images/partner-program/contactus/form.jpg') 1x); center center / cover no-repeat;
}

.contact-form-section .content h2{
    color: #212121;
    font-weight: 700;
    font-style: Bold;
    font-size: 42px;
    line-height: 46px;
    letter-spacing: 0%;
    vertical-align: bottom;
}

.contact-form-section .content p{
    color: #212121;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0%;
    vertical-align: bottom;
}

.need-assistance h2{
    font-weight: 700;
    font-style: Bold;
    font-size: 34px;
    line-height: 100%;
    text-align: center;
    color: #212121;
}

.need-assistance p {
    max-width: 900px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #212121;
    margin: auto;
    text-align: center;
}

.need-assistance .content {
    margin: 30px 0px;
    align-items: center;
}

.need-assistance .content img{
    height: 400px;
    border-radius: 12px;
    width: 100%;
}

.need-assistance .content h3{
    color: #212121;
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    line-height: 24px;
    text-align: start;
}

.need-assistance .content h3 span{
    font-weight: 400;
    font-size: 16px;
}

.need-assistance .content .location{
    display: flex;
    gap: 20px;
    margin: 5px 0px;
    align-items: center;
}

.need-assistance .content .location img{
    height: 20.5px;
    width: 17.74px;
}

.need-assistance .content .location p{
    color: #212121;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-align: start;
    margin: inherit;
}

/* 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 */


/* Refer friend page css  */

.refer-friend-section h2{
    color: #212121;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
    text-transform: capitalize;
}

.refer-friend-section p{
    color: #212121;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 16px;
}

.promotional-eligibility h1{
    color: #212121;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    line-height: 50px;
    letter-spacing: 0%;
}

.promotional-eligibility p{
    color: #212121;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 24px;
}

.pre-requi-section a{
    width: fit-content;
    margin: 10px auto 0px;
}

.elevant-earn-section{
    position: relative;
    background: url('../images/Promotions/refer-friend/elevant-earn-bg.png'); background: -webkit-image-set(url('../images/trading-account/overview/banner.webp') 1x, url('../images/trading-account/overview/banner.png') 1x);;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.elevant-earn-section h2{
    color: #FFFFFF;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    line-height: 50px;
}

.elevant-earn-section p{
    color: #FFFFFF;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 24px;
}

/* Refer friend page css  */


/* help center page css  */
.hero-partner-program.help-background{
    background-image: url(../images/help-center/Hero.png);
    padding: 150px 0px 100px;
    height: auto;
    background-size: cover;
    background-position: center;
}

.help-title {
    margin-bottom: 30px;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 62px;
    line-height: 100%;
    text-align: center;
}

.search-box {
    position: relative;
    display: inline-block;
    width: 50%;
    margin-bottom: 30px;
}

.search-box input[type="text"] {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
}

.search-box .custom-serch {
    position: absolute;
    top: 64%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}

.top-keywords-title {
    margin-bottom: 10px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
}

.top-keywords span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    margin: 5px;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    border-radius: 10px;
}

.top-keywords{
    max-width: 600px;
    margin: auto;
}


.category-grid {
    gap: 30px;
    justify-items: center;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.category-item {
    background-color: #f6f9fe;
    padding: 30px 20px;
    border-radius: 10px;
    transition: 0.3s ease;
    width: 200px;
}

.category-item img {
    height: 70px;
    width: 70px;
    margin-bottom: 15px;
}

.category-item p {
    margin: 0;
    color: #212121;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
}

.category-item:hover {
    background-color: #5f259e30;
    cursor: pointer;
}

/* help center page css  */


/* reward page css  */
.reward-trade-section h2 {
    color: #212121;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 40px;
}

.reward-trade-section img{
    width: 100%;
    max-width: 600px;
    height: auto;
}

.reward-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reward-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reward-list img {
    height: 25px;
    width: 25px;
    margin-right: 10px;
}

.reward-list h4 {
    margin: 0 0 5px;
    color: #000000;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

.reward-list p {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #212121;
}

section.reward-reedem-section h2 {
    color: #212121;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
    text-transform: capitalize;
}

section.reward-reedem-section p{
    color: #212121;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

.reward-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.reward-content .card-reward {
    width: 350px;
    text-align: center;
}

.reward-content .card-reward p{
    color: #000000;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

.calculator-step.custom:nth-child(3)::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 68%;
    width: 75%;
    height: 30px;
    background: url(../images/tradingfees/arrow-curve1.webp);
    background: -webkit-image-set(url(../images/tradingfees/arrow-curve1.webp) 1x, url(../images/tradingfees/arrow-curve1.png) 1x) no-repeat center;
    background-size: contain;
    z-index: 1;
}

/* reward page css  */


/* why pipze page css  */
.hero-partner-program.why-background{
    background-image: url(../images/why-pipze/Hero.png);
    padding: 150px 0px 100px;
    height: auto;
    background-size: cover;
    background-position: center;
}

.corporate-governace .box-corporate{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    gap: 25px;
}

.corporate-governace .box-corporate .box-item{
    width: 400px;
    padding: 25px;
}

.corporate-governace .box-corporate .box-item img{
    height: 100px;
    width: 100px;
    margin-bottom: 10px;
}


.corporate-governace .box-corporate .box-item h2{
    color: #000000;
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 10px;

}

.corporate-governace .box-corporate .box-item p{
    color: #212121;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
}

.whypipze-form-section {
    padding: 60px 20px;
    background: url('../images/why-pipze/Frame.webp'); background: -webkit-image-set(url('../images/why-pipze/Frame.webp') 1x, url('../images/why-pipze/Frame.png') 1x);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.whypipze-form-section .content h2 {
    color: white;
    font-weight: 700;
    font-style: Bold;
    font-size: 42px;
    line-height: 54px;
    letter-spacing: 0%;
    vertical-align: bottom;
}

.pipze-tabs {
    padding: 2rem;
}

.pipze-tabs__header {
    text-align: center;
    margin-bottom: 2rem;
}

.pipze-tabs__title {
    color: #212121;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
}

.pipze-tabs__subtitle {
    color: #212121;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    max-width: 980px;
    margin: 0px auto 10px;
}

.pipze-tabs__nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pipze-tabs__nav-item {
    padding: 1rem 0rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    color: #212121CC;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    width: 265px;
    text-align: center;
}

.pipze-tabs__nav-item:hover,
.pipze-tabs__nav-item--active {
    color: #212121;
    border-bottom: 2px solid #5F259E;
    font-weight: 600;
}

.pipze-tab-content {
    display: none;
}

.pipze-tab-content--active {
    display: block;
}

.pipze-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
    gap: 20px;
}

.pipze-product-card {
    background: #fff;
    padding: 30px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.pipze-product-card:hover {
    transform: translateY(-4px);
}

.pipze-product-card__icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pipze-product-card__icon img{
    height: 50px;
    width: 50px;
}

.pipze-product-card__icon .right_icon img{
    height: 20px;
    width: 20px;
}

.pipze-product-card__title {
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
}

.pipze-product-card__description {
    color: #212121;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}


.pipze-platforms__slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
}

.pipze-platforms__items {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.pipze-platforms__item {
    min-height: 150px;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0px 0px 16px 0px #FFFFFF80 inset;
    background: #5F259E;
    padding: 16px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.pipze-platforms__item.pipze-platforms__item_diffrent{
    box-shadow: 0px 0px 16px 0px #5F259E80 inset;
    background: #FBF5FF;
    color: #212121;   
}

.pipze-platforms__item p{
    color: #FFFFFF;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 0px;
}

.pipze-platforms__item p span{
    font-weight: 500;
    font-size: 18px;
}

.pipze-platforms__item.pipze-platforms__item_diffrent p{
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: #212121;
    margin-bottom: 0px;
}

.pipze-platforms__item.pipze-platforms__item_diffrent p span{
    font-weight: 500;
    font-size: 18px;
}

.pipze-platforms__arrow {
    background-color: #f1edf8;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s;
    padding: 10px 20px;
    font-size: 15px;
}

.pipze-platforms__arrow:hover {
    background-color: #e0d8f8;
}

.pipze-platforms__details {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 30px;
    align-items: center;
}

.pipze-platforms__label {
    color: #5F259E;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 0px;
}

.pipze-platforms__title {
    color: #212121;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
    text-transform: capitalize;
    margin: 10px 20px;
}

.pipze-platforms__desc {
    color: #212121;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 5px;
}


.pipze-accounts {
    margin-top: 2rem;
}

.pipze-account-card {
    background-color: #f8f8fd;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.pipze-account-card:hover {
  transform: translateY(-4px);
}

.pipze-account-card__badge {
    background-color: #5F259E;
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
}

.pipze-account-card__btn {
    position: absolute;
    right: 1.2rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.pipze-account-card__title {
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
}

.pipze-account-card__desc {
    color: #212121;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}

.pipze_how_join_step h2{
    text-align: center;
    color: #212121;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
}

/* why pipze page css  */



/* New Landing Page Design  Css Start*/

/* ============================
   Why Pipze Section
============================= */
.why-pipze-section {
    padding: 60px 0 80px;
}

.why-pipze-title {
    color: #262934;
    font-weight: 700;
    font-size: 42px;
    line-height: 56px;
    text-align: center;
    margin-bottom: 50px;
}

.why-pipze-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-pipze-card {
    background: #F7FAFF;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    transition: 0.3s ease;
}

.why-pipze-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #673AB7;
}

.why-pipze-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.why-pipze-card-title {
    color: #2F2F35;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.why-pipze-card-desc {
    color: #212121;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

/* ============================
   Pipze Awards Section (UNIQUE)
=============================== */
.pipze-award-section {
    background: #461872;
    padding: 40px 0px;
    text-align: center;
}

.pipze-award-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 34px;
    line-height: 100%;
    text-transform: capitalize;
    margin-bottom: 50px;
}

.pipze-award-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-content: space-between;
}

.pipze-award-card {
    text-align: center;
    color: #ffffff;
}

.pipze-award-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 10px;
    position: relative;
}

.pipze-award-wreath {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pipze-award-main {
    color: #FFFFFF;
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    line-height: 100%;
    text-align: center;
    text-transform: capitalize;
}

.pipze-award-sub {
    color: #FFFFFF;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    text-transform: capitalize;
}

/* ================================
   Safe Deposits Section (UNIQUE)
================================ */
.pipze-safe-section {
    padding: 60px 0 80px;
    text-align: center;
}

.pipze-safe-subtitle {
    color: #212121;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 40px;
}

.pipze-safe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 39px;
    margin-bottom: 30px;
}

.pipze-safe-card {
    border: 2px solid #F7FAFF;
    padding: 35px 30px;
    border-radius: 10px;
    text-align: center;
}

.pipze-safe-card img {
    height: 50px;
    width: max-content;
    margin-bottom: 20px;
}

.pipze-safe-card-title {
    margin-bottom: 10px;
    color: #2F2F35;
    font-weight: 600;
    font-size: 22px;
    line-height: 36px;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
}

.pipze-safe-card-desc {
    color: #212121;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

.pipze-safe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #673AB7;
}

/* ==========================
   PIPZE ACCTYPE SECTION
========================== */
/* SECTION */
.pipze-acctype-section {
    background-image: url(../images/acctype-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 60px 0px;
    text-align: center;
}

.pipze-acctype-title {
    margin-bottom: 30px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 34px;
    line-height: 100%;
    text-transform: capitalize;
}

.pipze-acctype-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.pipze-acctype-card {
    background: #F7FAFF;
    border-radius: 10px;
    padding: 35px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pipze-acctype-card img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin: 0 auto 20px auto;
    display: block;
}

.pipze-acctype-card-title {
    color: #2F2F35;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 10px;
}

.pipze-acctype-card-desc {
    color: #212121;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 18px;
    flex-grow: 1; 
}

.pipze-acctype-link {
    color: #5F259E;
    text-decoration: underline;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

/* BUTTON FIX */
.pipze-acctype-btn {
    background: #ffbe2e;
    padding: 12px 24px;
    color: #212121;
    font-weight: 700;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.pipze-acctype-btn img{
    height: 20px;
    width: 20px;
    margin-bottom: 0px;
}

.pipze-acctype-btn:hover {
    background: #e5a920;
}

/* ============================
   PIPZE PLATFORM SECTION (UNIQUE)
   ============================ */

.pipze-platform-section {
    background-image: url('../images/plans-bg.webp'); background-image: -webkit-image-set(url('../images/plans-bg.webp') 1x, url('../images/plans-bg.png') 1x);;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 150px 0px;
}

.pipze-platform-title {
    color: #262934;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 42px;
    line-height: 56px;
    vertical-align: middle;
}

.pipze-platform-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.pipze-platform-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pipze-platform-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.pipze-platform-dot {
    width: 10px;
    height: 10px;
    background: #6e4ff6;
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 8px;
}

.pipze-platform-heading {
    margin-bottom: 6px;
    color: #5F259E;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
}

.pipze-platform-desc {
    color: #212121;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0px;
}

/* ============================
   WHY TRADERS CHOOSE PIPZE (UNIQUE)
   ============================ */

.pipze-why2-section {
    padding: 0px 0 60px;
    background: #fff;
}

.pipze-why2-title {
    text-align: center;
    color: #262934;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 42px;
    line-height: 56px;
    vertical-align: middle;
}

.pipze-why2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pipze-why2-card {
    background: #F7FAFF;
    padding: 35px 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease-in-out;
    border: 2px solid #F7FAFF;
}

.pipze-why2-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: #673AB7;
}

.pipze-why2-icon {
    width: 50px;
    height: auto;
    margin-bottom: 20px;
}

.pipze-why2-card-title {
    color: #2F2F35;
    font-weight: 600;
    font-size: 22px;
    line-height: 36px;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.pipze-why2-card-desc {
    color: #212121;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

/* ================================
   START TRADING SECTION (UNIQUE)
   ================================ */

.pipze-starttrade-section {
    background: #461872;
    padding: 60px 0;
    color: #fff;
}

.pipze-starttrade-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 36px;
    line-height: 56px;
    vertical-align: middle;
    text-align: center;
    margin-bottom: 30px;
}

.pipze-starttrade-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pipze-starttrade-card {
    padding: 40px 70px;
    border-radius: 16px;
    text-align: center;
    background: #FFFFFF0D;
    transition: 0.3s;
    border: 1px solid #FFFFFF33;
    backdrop-filter: blur(32px);
}

.pipze-starttrade-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.35);
}

.pipze-starttrade-step {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    color: #FEBC1F;
    font-weight: 500;
    font-size: 20px;
    background: #FFFFFF1A;
}

.pipze-starttrade-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 0px;
}

/* ================================
   FUND YOUR ACCOUNT IN 3 EASY STEPS SECTION
   ================================ */

.pipze-fundsteps-section {
    padding: 60px 0;
}

.pipze-fundsteps-title {
    text-align: center;
    margin-bottom: 40px;
    color: #262934;
    font-weight: 700;
    font-size: 32px;
    line-height: 56px;
    vertical-align: middle;
}

.pipze-fundsteps-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.pipze-fundsteps-item {
    flex: 1;
    text-align: center;
}

.pipze-fundsteps-circle {
    width: 55px;
    height: 55px;
    background: #3b0a72; 
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fbc531; 
    font-size: 16px;
}

.pipze-fundsteps-text {
    color: #2F2F35;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 0px;
}

.pipze-fundsteps-divider {
    width: 1px;
    height: 120px;
    background: linear-gradient(180deg, rgba(70, 24, 114, 0) 10%, #461872 50%, rgba(70, 24, 114, 0) 90%);
}


/* custom padding for new header */
.custom-padding{
    margin-top: 110px;
}


/* New Landing Page Design Css End */


/* New Landing Page Design Css End */

.question::after{
            display: none;
        }

        .question{
            font-weight: 600;
        }

        .answer{
            padding: 0px 0px 10px;
            color: #212121;
        }
/* Footer specific contact-info styling to avoid conflicts */
    footer{
        padding-top: 80px;
    }

    footer .contact-info {
        color: white;
    }
  
    footer .contact-info h5,
    footer .contact-info h3,
    footer .contact-info p,
    footer .contact-info i {
        color: white !important;
    }
    
    footer .contact-info .heading {
        margin-bottom: 15px;
    }
    
    footer .contact-info .heading i {
        margin-right: 10px;
        font-size: 16px;
    }
    
    footer .contact-info .heading h3 {
        display: inline-block;
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }
    
    footer .contact-info p {
        margin-bottom: 10px;
        line-height: 1.5;
    }
    
    .legal-documents-section {
        padding: 30px 0;
        text-align: center;
    }
    
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        align-items: center;
        padding: 10px 0;
    }

    .legal-links a {
        color: #ffffff;
        text-decoration: none;
        padding: 6px 12px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        transition: all 0.3s ease;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }
  
    .legal-links a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
    }
    
    .tradingview-attribution {
        padding: 15px 0 5px 0;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .tradingview-attribution span {
        color: rgba(255, 255, 255, 0.7);
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0.5px;
    }
    
    .tradingview-attribution a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .tradingview-attribution a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    
    .copyright {
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 20px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .copyright span {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0.5px;
    }
    
    .copyright #year {
        font-weight: 600;
        color: #ffffff;
    }
        transform: translateY(-2px);
    }
  
    @media (max-width: 768px) {
        .legal-links {
            gap: 8px;
            justify-content: center;
            padding: 10px 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            max-width: 100%;
        }
        
        .legal-links a {
            padding: 8px 12px;
            font-size: 12px;
            flex: 0 0 calc(33.333% - 6px);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    }

    @media (max-width: 480px) {
        .legal-links {
            gap: 6px;
            padding: 10px 15px;
            display: flex;
            flex-wrap: wrap;
        }
        
        .legal-links a {
            padding: 6px 8px;
            font-size: 11px;
            flex: 0 0 calc(33.333% - 4px);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    }