* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #00150F;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

/* Button Styles */
.btn-primary {
    background-color: #f7d50c;
    color: #000000;
    border: none;
    border-radius: 4px;
    padding: 8px 20px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.hero-content h1 span{
    color: #EACC00;
font-family: Poppins;
/* font-size: 60px; */
font-style: normal;
font-weight: 700;
line-height: 74px;
text-transform: capitalize;
}

.btn-primary:hover {
    background-color: #ffdf33;
}

/* Navbar */
.navbar {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
}

.navbar.navbar-scrolled {
    background-color: rgba(0, 20, 16, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    padding: 25px 0px;
}

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

.logo img {
    max-height: 50px;
}

/* Hero Section */
.hero-section {
    padding: 40px 0;
    background-image: url(/assets/images/laptop.png);
    background-repeat: no-repeat;
    background-size: 1470px;
    position: relative;
}

/* .hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(247, 213, 12, 0.1);
    z-index: 1;
} */

.hero-section::before {
    top: 10%;
    left: 5%;
}

.hero-section::after {
    bottom: 20%;
    right: 10%;
}

.hero-content {
    position: relative;
    z-index: 10;
    top: 85px;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 501px;
    font-family: "Poppins", sans-serif;
}   

.join-btn a {
    font-family: "Poppins", sans-serif;
    padding: 10px 19px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-content p span {
    color: #f7d50c;
}

.highlight {
    color: #f7d50c;
}

.hero-btn {
    margin-bottom: 20px;
}

.hero-btn a {
    background-color: #f7d50c;
    /* color: #000000; */
    /* border: none; */
    /* border-radius: 4px; */
    padding: 14px 25px;
    font-weight: 600;
    font-weight: bold;
    font-size: 17px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    display: inline-block;
}

.social-follow {
    align-items: center;
    gap: 15px;
    margin-top: 21px;
}

.social-follow p {
    color: #FFF;
    font-family: Poppins;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 74px;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a img {
    width: 30px;
    height: 30px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: #f7d50c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    text-align: center;
    position: relative;
    z-index: 5;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Trading Platform Placeholder */
.trading-platform-placeholder {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    border: 1px dashed rgba(247, 213, 12, 0.3);
    transition: all 0.5s ease;
}

.trading-platform-placeholder:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(247, 213, 12, 0.5);
    transform: scale(1.02);
}

.trading-platform-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f7d50c;
}

/* Risk Management Section */
.risk-management {
    padding: 150px 0;
    position: relative;
    padding-top: 200px;
}

.screenshots {
    text-align: center;
}

.screenshots, .pricing-image, .profits-image {
    position: relative;
    z-index: 5;
    /* animation: float 5s ease-in-out infinite; */
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

.section-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.section-content.animated {
    opacity: 1;
    transform: translateY(0);
}

.section-content h2 {
    color: #FFF;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 21px;
    line-height: 44px; /* 133.333% */
    text-transform: capitalize;
}

.section-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.section-content p {
    color: #FFF;
    font-family: Poppins;
    font-size: 15px;
    margin-bottom: 21px;
    font-style: normal;
    font-weight: 400;
    max-width: 490px;
    line-height: 27px; /* 155.556% */
    text-transform: capitalize;
}

.section-btn {
    margin-top: 20px;
}

/* Pricing Section */
.pricing-section {
    /* padding: 6px 0; */
    position: relative;
}

.pricing-image {
    text-align: center;
    position: relative;
    right: -176px;
    max-width: 603px;
}
.pricing-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profits Section */
.profits-section {
    padding: 80px 0;
    position: relative;
}

.profits-image {
    text-align: center;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    text-align: center;
}

.why-choose h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.subtitle {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.features-row {
    margin-bottom: 40px;
}

.feature-box {
    border-radius: 16px;
    border: 2px solid #091E19;
    background: linear-gradient(151deg, rgba(237, 242, 248, 0.02) 0%, rgba(237, 242, 248, 0.08) 100%);
    transform: translateY(30px);
    padding: 54px 26px;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: max-content;
    justify-content: flex-start;
    height: 100%;
}

.feature-box.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-box:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Animation Delays */
.feature-box:nth-child(1) {
    transition-delay: 0.2s;
}

.feature-box:nth-child(2) {
    transition-delay: 0.4s;
}

.feature-box:nth-child(3) {
    transition-delay: 0.6s;
}

.icon {
    display: flex;
    width: 98px;
    height: 98px;
    padding: 25px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 99px;
background: #1B2D29;
box-shadow: 0px 8px 24px 0px rgba(12, 52, 91, 0.04);
}

.feature-box h3 {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 125% */
    margin-top: 27px;
    margin-bottom: 0;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.60) !important;
    text-align: center;
    font-family: Poppins;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 26px !important; /* 162.5% */
    margin-top: 7px !important;
}

/* Support Section */
.support-section {
    padding: 60px 0;
    padding-top: 0px;
}

.support-section h2 {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px; /* 116.667% */
    text-transform: capitalize;
}

.support-btn {
    margin-top: 21px;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .screenshots, .pricing-image, .profits-image {
        margin-bottom: 40px;
    }
    
    .row {
        /* flex-direction: column-reverse; */
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .section-content h2 {
        font-size: 1.8rem;
    }
    
    .section-content h3 {
        font-size: 1.5rem;
    }
    
    .feature-box {
        margin-bottom: 20px;
    }
    
    .features-row {
        margin-bottom: 0;
    }
}

.chart-icon {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-right: 10px;
    display: inline-block;
}

.social-icons a{
    display: flex;
    width: 40px;
    height: 40px;
    /* padding: 11px 12.117px 11px 12.133px; */
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.social-icons a img{
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
}

.section-content p span{
    color: #EACC00;
}

.section-btn a{
padding: 14px 25px;
color: #0C263A;
text-align: center;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 16px; /* 100% */
border-radius: 8px;
text-transform: capitalize;
}

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

.trade-phone{
    width: 100%;
}

.profits-image {
    max-width: 410px;
}
.profits-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coins-top {
    max-width: 70px;
    top: 85px;
    width: 100%;
    height: 70px;
    position: absolute;
    right: 450px;
}

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


.coins-bottom{
    max-width: 70px;
    width: 100%;
    position: absolute;
    height: 70px;
    right: 400px;
}

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

.custom{
    position: relative;
}

.custom-container h2{

    color: #FFF;
text-align: center;
font-family: Poppins;
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: 56px; /* 116.667% */
text-transform: capitalize;
}

.custom-container p{
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    max-width: 298px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    text-transform: capitalize;
    max-width: 621px;
}

.broker-info {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(151deg, rgba(237, 242, 248, 0.05) 0%, rgba(237, 242, 248, 0.12) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.broker-info h3 {
    color: #EACC00;
    font-family: Poppins;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.broker-info p {
    margin-bottom: 12px !important;
    font-size: 14px !important;
}

.exness-text {
    font-weight: 600 !important;
    color: #f7d50c !important;
    margin-top: 20px !important;
    margin-bottom: 10px !important;
}

.contact-button {
    margin-top: 15px;
    margin-bottom: 10px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background-color: #25D366;
    color: #ffffff !important;
    border-radius: 8px;
    text-decoration: none;
    font-family: Poppins;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-icon {
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.whatsapp-link {
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #EACC00;
    text-decoration: underline;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.exness-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    background-color: #3D95CE;
    color: #ffffff !important;
    border-radius: 8px;
    text-decoration: none;
    font-family: Poppins;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.exness-button:hover {
    background-color: #2980B9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-button {
    margin-top: 0;
    margin-bottom: 0;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background-color: #25D366;
    color: #ffffff !important;
    border-radius: 8px;
    text-decoration: none;
    font-family: Poppins;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.hero-coin {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 20px;
    left: -60px;
}
.hero-coin img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}