:root {
    --primary-color: #000103;
    --secondary-color: #2b2b2b;
    --accent-color: #ffc107;
    --dark-color: #1a237e;
    --light-color: #f5f5f5;
    --chart-green: #4caf50;
    --chart-red: #f44336;
    --neon-blue: #00f2ff;
    --neon-green: #00ff8f;
    --neon-red: #ff0055;
    --dark-bg: #0a0e17;
    --card-bg: #111827;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--dark-bg);
    color: white;
    overflow-x: hidden;
}

.futuristic-font {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.font-urdu {
    font-family: 'Noto Nastaliq Urdu', serif;
    line-height: 1.8;
    direction: rtl;
    text-align: right;
    font-weight: 500;
}

.hero-section {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0) 0%, rgba(0, 121, 107, 0) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.hero-image {
    object-fit: cover;
    width: 100%;
    height: auto;
    opacity: 0.3;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.section-separator {
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
    margin: 3rem auto;
    width: 80%;
    border-radius: 3px;
    box-shadow: 0 0 10px var(--neon-blue);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
    margin: 2rem 0;
    background-color: #000;
    border: 1px solid rgba(0, 242, 255, 0.3);
}

.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 242, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.video-container .play-button:hover {
    background-color: rgba(0, 242, 255, 0.4);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.7);
}

.video-container .play-button i {
    color: white;
    font-size: 2rem;
}

.profit-screenshot {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 242, 255, 0.3);
}

.profit-screenshot::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.profit-screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
}

.testimonial-video {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 242, 255, 0.3);
}

.testimonial-video:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
}

.testimonial-video .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    z-index: 10;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.7);
}

.testimonial-video:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    text-shadow: 0 0 20px rgba(0, 242, 255, 1);
}

.cta-section {
    background-color: var(--card-bg);
    padding: 3rem 0;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://img.freepik.com/free-vector/forex-trading-stock-market-background_1017-31713.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
    border: none;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.7);
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
}

.faq-item {
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
    background-color: var(--card-bg);
    border: 1px solid rgba(0, 242, 255, 0.3);
}

.faq-header {
    background-color: rgba(0, 242, 255, 0.1);
    padding: 1rem;
    cursor: pointer;
    border: none;
    color: white;
}

.faq-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.faq-body {
    padding: 1.5rem;
    background-color: var(--card-bg);
    color: #ddd;
}

.highlight {
    color: var(--neon-green);
    font-weight: 700;
}

.urgent-text {
    color: var(--neon-red);
    font-weight: 700;
}

.floating-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(0, 242, 255, 0.5);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(0, 242, 255, 1);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(0, 242, 255, 0.5);
    }
}

.countdown-timer {
    background-color: var(--card-bg);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
    border: 1px solid rgba(255, 0, 85, 0.3);
}

.countdown-timer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    opacity: 0.2;
}

.countdown-timer .timer-item {
    display: inline-block;
    margin: 0 0.5rem;
    text-align: center;
    background-color: rgba(255, 0, 85, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.3);
}

.countdown-timer .timer-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    font-family: 'Orbitron', sans-serif;
}

.countdown-timer .timer-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.forex-icon {
    display: inline-block;
    margin-right: 0.5rem;
    color: var(--neon-blue);
}

.forex-bg {
    background-color: var(--dark-bg);
    position: relative;
}

.forex-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 242, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 143, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.chart-icon {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
    color: var(--neon-blue);
}

.chart-icon-1 {
    top: 10%;
    left: 5%;
    font-size: 4rem;
    transform: rotate(-15deg);
}

.chart-icon-2 {
    bottom: 10%;
    right: 5%;
    font-size: 3rem;
    transform: rotate(15deg);
}

.profit-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--neon-green), #00b377);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 255, 143, 0.5);
}

.trade-box {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    border: 1px solid rgba(0, 242, 255, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.trade-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
}

.trade-box h5 {
    font-weight: 600;
    color: white;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.trade-box p {
    color: #ddd;
    font-size: 0.9rem;
}

.trade-box.loss {
    border: 1px solid rgba(255, 0, 85, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.2);
}

.trade-box.loss:hover {
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.4);
}

.trade-box.profit {
    border: 1px solid rgba(0, 255, 143, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 143, 0.2);
}

.trade-box.profit:hover {
    box-shadow: 0 0 30px rgba(0, 255, 143, 0.4);
}

.chart-container {
    height: 200px;
    width: 100%;
    margin-top: 1rem;
}

.glowing-text-white {
    animation: glow-white 1.5s infinite alternate;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

@keyframes glow-white {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.2);
    }

    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

.glowing-text {
    animation: glow 1.5s infinite alternate;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(0, 242, 255, 0.3), 0 0 15px rgba(0, 242, 255, 0.2);
    }

    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(0, 242, 255, 0.5), 0 0 30px rgba(0, 242, 255, 0.4), 0 0 40px rgba(0, 242, 255, 0.3);
    }
}

.badge {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
    margin: 0.25rem;
}

.badge.bg-success {
    background: linear-gradient(135deg, var(--neon-green), #00b377) !important;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--neon-blue), #0077ff) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #ffcc00, #ff9900) !important;
}

.badge.bg-danger {
    background: linear-gradient(135deg, var(--neon-red), #cc0044) !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #00e5ff, #00b8d4) !important;
}

.badge.bg-secondary {
    background: linear-gradient(135deg, #9e9e9e, #616161) !important;
}

.currency-ticker {
    background-color: var(--card-bg);
    padding: 1rem;
    border-radius: 10px;
    margin: 2rem 0;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 242, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.ticker-container {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    margin-right: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background-color: rgba(0, 242, 255, 0.1);
}

.ticker-item.up {
    color: var(--neon-green);
}

.ticker-item.down {
    color: var(--neon-red);
}

.ticker-pair {
    font-weight: 600;
    margin-right: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.ticker-value {
    font-size: 0.9rem;
}

.features-section {
    padding: 1rem 0;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 242, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.feature-text {
    color: #ddd;
}

.testimonial-section {
    padding: 1rem 0;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 242, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.4);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #ddd;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    line-height: 1;
    color: var(--neon-blue);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #aaa;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 242, 255, 0.1);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 242, 255, 0.5);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.tradingview-widget-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    border: 1px solid rgba(0, 242, 255, 0.3);
}

@media (max-width: 768px) {
    .hero-image-container {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .hero-image {
        height: 100%;
        object-position: top;
    }

    .main-heading {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }


}

@keyframes gradient-bounce {
    0% {
        transform: translateY(0);
        color: #ff0000;
    }

    50% {
        transform: translateY(-10px);
        color: #ff7f00;
    }

    100% {
        transform: translateY(0);
        color: #ff0000;
    }
}