:root {
    --primary-color: #6C63FF;
    --secondary-color: #4CAF50;
    --accent-color: #FF6B6B;
    --background-color: #0F0F1F;
    --text-color: #FFFFFF;
    --text-color-muted: #B3B3B3;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Cursor */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
}

/* Header and Navigation */
header {
    background-color: rgba(15, 15, 31, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu {
    display: flex;
    list-style-type: none;
}

.menu li {
    margin-left: 1.5rem;
}

.menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu a:hover::after {
    transform: scaleX(1);
}

.menu .cta-button {
    background-color: var(--accent-color);
    color: var(--background-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.menu .cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.animated-heading span {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
}

.animated-heading span:nth-child(1) {
    color: var(--primary-color);
    transition-delay: 0.2s;
}

.animated-heading span:nth-child(2) {
    color: var(--secondary-color);
    transition-delay: 0.4s;
}

.animated-heading span:nth-child(3) {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition-delay: 0.6s;
}

.animated-heading.is-visible span {
    opacity: 1;
    transform: translateY(0);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--background-color);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Services Section */
#services {
    padding: 5rem 1rem;
    background-color: rgba(15, 15, 31, 0.5);
    margin-top: -90px;
}

#services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--primary-color);
}

.service-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    max-width: 350px;
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.3);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-color-muted);
}

.learn-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.learn-more:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* About Us Section */
#about-us {
    padding: 5rem 1rem;
    background-color: rgba(22, 33, 62, 0.5);
}

#about-us h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

#about-us p {
    max-width: 800px;
    margin: 0 auto 1rem;
    text-align: center;
    color: var(--text-color-muted);
}

/* Testimonials Section */
#testimonials {
    padding: 5rem 1rem;
    background-color: rgba(15, 15, 31, 0.5);
}

#testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.testimonial-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.3);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color-muted);
}

.testimonial cite {
    font-weight: bold;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: rgba(15, 15, 31, 0.8);
    color: var(--text-color);
    padding: 3rem 1rem 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section {
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style-type: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-color-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color-muted);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInFromBottom {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animate-on-scroll {
    text-align: center;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(15, 15, 31, 0.95);
        backdrop-filter: blur(10px);
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 0;
        text-align: center;
    }

    .menu a {
        display: block;
        padding: 1rem;
    }

    .menu .cta-button {
        margin: 1rem auto;
        display: inline-block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Profit Potential Section Styles */
.profit-section {
    background-color: rgba(15, 15, 31, 0.7);
    padding: 5rem 1rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1200px;
}

.profit-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.profit-card {
    background: linear-gradient(145deg, rgba(108, 99, 255, 0.2), rgba(76, 175, 80, 0.2));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.profit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5);
}

.profit-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.profit-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.profit-range {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.profit-bar {
    background-color: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.profit-progress {
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.profit-card p {
    color: var(--text-color-muted);
}

.disclaimer {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-color-muted);
}

/* Process Section Styles */
.process-section {
    padding: 5rem 1rem;
    background-color: rgba(22, 33, 62, 0.5);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.process-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.process-icon {
    background-color: var(--accent-color);
    color: var(--background-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    z-index: 1;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-color-muted);
}

.process-step:nth-child(odd) .process-icon {
    margin-left: 2rem;
}

.process-step:nth-child(even) .process-icon {
    margin-right: 2rem;
}

/* How It Works Section Styles */
.how-it-works-section {
    padding: 5rem 1rem;
    text-align: center;
    background-color: rgba(15, 15, 31, 0.7);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: linear-gradient(145deg, rgba(108, 99, 255, 0.2), rgba(76, 175, 80, 0.2));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-color-muted);
}

@media screen and (max-width: 768px) {
    .profit-container, .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .profit-card, .step-card {
        width: 100%;
        max-width: 100%;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        flex-direction: row !important;
    }

    .process-icon {
        margin-right: 1rem !important;
        margin-left: 0 !important;
    }

    .process-step:nth-child(odd) .process-icon,
    .process-step:nth-child(even) .process-icon {
        margin-left: 0;
        margin-right: 1rem;
    }
}