* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.step-card, .tier-card, .reason-card, .calculator-card, .join-form-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover, .tier-card:hover, .reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}


/* Affiliate Section */
.affiliate-section {
    padding: 90px 0;
    text-align: center;
    
}

.affiliate-container {
    max-width: 1600px;
    margin: 60px auto;
    padding: 190px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    animation: glow 3s ease-in-out infinite;
    min-height:100vh;

}


@keyframes glow {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 221, 235, 0.3); }
    50% { box-shadow: 0 0 50px rgba(0, 221, 235, 0.6); }
}

/* Affiliate Header */
.affiliate-header {
    margin-bottom: 80px;
}

.affiliate-header h1 {
    font-size: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 221, 235, 0.8);
    margin-bottom: 10px;
}

.affiliate-header h1 span {
    color:rgb(36, 176, 186);
    text-shadow: 0 0 15px rgba(0, 221, 235, 1);
}


.affiliate-header .tagline {
    text-transform: uppercase;
    color: #00ddeb;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 221, 235, 0.8);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-buttons a {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.hero-buttons .open-account {
    background: #00ddeb;
    border: 2px solid #00ddeb;
    color: #000000;
}

.hero-buttons .open-account:hover {
    background: #000000;
    color: #00ddeb;
    border: 2px solid #00ddeb;

}

.hero-buttons .demo-account {
    background: transparent;
    color: #00ddeb;
    border: 2px solid #00ddeb;
}

.hero-buttons .demo-account:hover {
    background: #00ddeb;
    color: #000000;
}

/* How to Get Started Section */
.how-to-start {
    margin-bottom: 60px;
}

.how-to-start h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.how-to-start p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step-card {
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    text-align: left;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 221, 235, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #00ddeb;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.step-card p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .affiliate-header h1 {
        font-size: 36px;
    }

    .affiliate-header .tagline {
        font-size: 12px;
    }

    .how-to-start h2 {
        font-size: 28px;
    }

    .steps {
        flex-direction: column;
        gap: 15px;
    }

    .step-card {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .affiliate-header h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons a {
        padding: 10px 25px;
        font-size: 14px;
    }

    .how-to-start h2 {
        font-size: 24px;
    }

    .how-to-start p {
        font-size: 16px;
    }
}







/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    text-align: center;
}

.why-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 90px 20px;
}

.why-choose-header {
    margin-bottom: 60px;
}

.why-choose-header h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
}

.why-choose-header p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
    text-align: center;

}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-card {
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;


    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 221, 235, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-card h3 {
    font-size: 20px;
    font-weight: 600;
    text-align: left;

    color: #00ddeb;
    margin-bottom: 10px;
}

.reason-card p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-choose-header h2 {
        font-size: 28px;
    }

    .why-choose-header p {
        font-size: 16px;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-header h2 {
        font-size: 24px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .reason-card {
        text-align: center;
    }
}











/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    text-align: center;
    margin: -290px 0 0 0;


}

.how-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 20px;

    border-radius: 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 221, 235, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works-header {
    margin-bottom: 60px;
}

.how-it-works-header h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.how-it-works-header p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
}

.commission-tiers {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.tier-card {
    background:transpraent ;
    border-radius: 10px;
    flex: 1;
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
    position: relative;
    border:1px solid #00ddeb;
}

.tier-card:hover {
    transform: translateY(-5px);
}

.tier-card.featured {
    background: #000000;
    border:1px solid #00ddeb;
    color: #fff;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.tier-card.featured .tier-header h3,
.tier-card.featured .tier-details p {
    color: #fff;
}

.tier-header {
    margin-bottom: 20px;
}

.tier-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.tier-details .commission-rate {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #00ddeb;
    margin-bottom: 15px;
}

.tier-card.featured .commission-rate {
    color: #00ddeb;
}

.tier-details p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .how-it-works-header h2 {
        font-size: 28px;
    }

    .how-it-works-header p {
        font-size: 16px;
    }

    .commission-tiers {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .how-it-works-header h2 {
        font-size: 24px;
    }

    .tier-details .commission-rate {
        font-size: 28px;
    }

    .tier-header h3 {
        font-size: 18px;
    }
}












/* Affiliate Calculator Section */
.affiliate-calculator-section {
    padding: 80px 0;
}

.cal-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 90px 20px;

    border-radius: 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 221, 235, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Side: Engaging Content */
.calculator-content {
    text-align: left;
}

.calculator-content h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.calculator-content p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.calculator-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.calculator-content ul li {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.calculator-content ul li:before {
    content: '\f058'; /* Font Awesome check-circle icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #00ddeb;
    position: absolute;
    left: 0;
    top: 2px;
}

.calculator-content ul li strong {
    color: #00ddeb;
    font-weight: 600;
}

/* Right Side: Calculator */
.calculator-card {
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;

    border-radius: 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 221, 235, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
}

.calculator-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

.calculator-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff !important ;
    margin-bottom: 10px;
}

.form-group label span {
    color: #00ddeb;
    font-weight: 600;
}

/* Slider Styles */
.form-group input[type="range"] {
    -webkit-appearance: none !important;
    width: 100%;
    height: 8px;
    background: #000000;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s ease;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #00ddeb;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.form-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #00ddeb;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.form-group input[type="range"]:hover {
    background: #000000;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.result-box {
    border-radius: 10px;
    padding: 20px;
    text-align: center;

    border-radius: 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 221, 235, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-box p {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
}

.result-box span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #00ddeb;
}

.calculator-card .open-account {
    display: inline-block;
    padding: 12px 30px;
    background: #00ddeb;
    color: #000000;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.calculator-card .open-account:hover {
    background: #000000;
    border:2px solid #00ddeb;
    color: #00ddeb;
}

/* Responsive Design */
@media (max-width: 992px) {
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .calculator-content {
        text-align: center;
    }

    .calculator-content h2 {
        font-size: 28px;
    }

    .calculator-content p {
        font-size: 16px;
    }

    .calculator-results {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .calculator-content h2 {
        font-size: 24px;
    }

    .calculator-card {
        padding: 30px;
    }

    .calculator-card h3 {
        font-size: 20px;
    }

    .result-box span {
        font-size: 20px;
    }

    .calculator-card .open-account {
        padding: 10px 25px;
        font-size: 14px;
    }
}











/* Join Now Section */
.join-now-section {
    padding: 80px 0;
    text-align: center;
}

.join-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.join-now-content {
    margin-bottom: 50px;
}

.join-now-content h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.join-now-content p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.join-form-card {
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;

    border-radius: 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 221, 235, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
}

.join-form-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

.join-form-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group label .required {
    color:rgba(255, 0, 0, 0.47);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid rgba(176, 224, 230, 0.53);
    border-radius: 5px;
    outline: none;
    background: #000000;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color:rgba(176, 224, 230, 0.66);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-size: 10px;
    color:#333;
    background: #000000;
}

/* Phone Input with Country Code */
.phone-group .phone-input {
    display: flex;
    gap: 6px;
}

.phone-group select#country-code {
    width: 180px;
    flex-shrink: 0;
}

.phone-group input#phone {
    flex: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    text-align: left;
}

.checkbox-group label {
    font-size: 14px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group .terms-link {
    color: #00ddeb;
    text-decoration: underline;
}

.checkbox-group .terms-link:hover {
    color:rgb(36, 164, 173);
}

.join-form-card .open-account {
    padding: 12px 30px;
    background: #00ddeb;
    color: #000000;
    border: none;    border: 2px solid #00ddeb;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-end;
}

.join-form-card .open-account:hover {
    background: #000000;
    border: 2px solid #00ddeb;
    color: #00ddeb;
}

/* Responsive Design */
@media (max-width: 992px) {
    .join-now-content h2 {
        font-size: 28px;
    }

    .join-now-content p {
        font-size: 16px;
    }

    .join-form-card {
        padding: 30px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .phone-group .phone-input {
        flex-direction: column;
        gap: 10px;
    }

    .phone-group select#country-code {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .join-now-content h2 {
        font-size: 24px;
    }

    .join-form-card h3 {
        font-size: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
    }

    .join-form-card .open-account {
        padding: 10px 25px;
        font-size: 14px;
    }
}


.grid-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 290px 290px;
    animation: gridMove 20s linear infinite;
    z-index: -100;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 90px 90px; }
}
