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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    background: #140819;
    color: #ffffff;
    overflow-x: hidden;
}

/* Fade In Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 15px;
    padding: 8px 20px !important;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #8b5cf6 !important;
}

.navbar-toggler {
    border: 2px solid #8b5cf6;
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(139, 92, 246, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-top: none;
    margin-top: 20px;
    padding: 20px;
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px !important;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

.cta-button {
    padding: 12px 28px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}


.hero-video-bg::after {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: linear-gradient(
        to bottom,
        #0a0a1a 0%,
        rgba(10, 10, 26, 0.85) 20%,
        rgba(10, 10, 26, 0.55) 40%,
        rgba(10, 10, 26, 0.85) 80%,
        #0a0a1a 100%
    );
    pointer-events: none;
    z-index: 1;
}


.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0.7);
    opacity: 0.3;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at 30% 50%,
            rgba(139, 92, 246, 0.2) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 50%,
            rgba(124, 58, 237, 0.15) 0%,
            transparent 50%
        );
    z-index: 1;
}

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

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-tagline {
    font-size: 18px;
    color: #8b5cf6;
    font-weight: 600;
    margin-top: 30px;
}

.btn-primary-custom {
    padding: 16px 40px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
    color: white;
}

.btn-secondary-custom {
    padding: 16px 40px;
    background: transparent;
    border: 2px solid #8b5cf6;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary-custom:hover {
    background: rgba(139, 92, 246, 0.1);
    color: white;
}

.blockchain-cube {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    perspective: 1000px;
    margin: 0 auto;
}

.cube-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(20deg) rotateY(45deg);
    width: 300px;
    height: 300px;
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.3) 0%,
        rgba(124, 58, 237, 0.3) 100%
    );
    border: 2px solid #8b5cf6;
    border-radius: 20px;
    box-shadow: 0 0 80px rgba(139, 92, 246, 0.5),
        inset 0 0 60px rgba(139, 92, 246, 0.2);
    animation: float 6s ease-in-out infinite;
}

.cube-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 15px;
    filter: blur(40px);
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translate(-50%, -50%) rotateX(20deg) rotateY(45deg)
            translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) rotateX(20deg) rotateY(45deg)
            translateY(-20px);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Investment Section */
.investment-section,
.market-analysis-section {
    padding: 100px 0;
    background: #0a0a1a;
}

.investment-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title.text-start {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Trading Plans Section */
.trading-plans {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.05) 0%,
        transparent 100%
    );
}

.plan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    border-color: #8b5cf6;
}

.plan-featured {
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.15) 0%,
        rgba(124, 58, 237, 0.1) 100%
    );
    border-color: #8b5cf6;
}

.plan-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.plan-badge-featured {
    background: #8b5cf6;
    color: white;
}

.plan-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-duration {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features i {
    color: #8b5cf6;
    font-size: 18px;
}

.btn-plan {
    width: 100%;
    padding: 14px 30px;
    background: transparent;
    border: 2px solid #8b5cf6;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-plan:hover {
    background: #8b5cf6;
}

.btn-plan-featured {
    background: #8b5cf6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: rgba(139, 92, 246, 0.02);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #8b5cf6;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 18px;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.1) 0%,
        rgba(124, 58, 237, 0.05) 100%
    );
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.2) 0%,
        rgba(124, 58, 237, 0.1) 100%
    );
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #8b5cf6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: rgba(255, 255, 255, 0.5);
    margin-top: 40px;
}

/* About & FAQ Pages */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.1) 0%,
        transparent 100%
    );
}

.page-header-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.content-section {
    padding: 80px 0;
}

.content-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.content-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.content-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* FAQ Accordion */
.faq-accordion {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.1);
}

.faq-answer {
    padding: 0 24px 24px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title,
    .page-header-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .blockchain-cube {
        height: 300px;
        margin-top: 40px;
    }

    .cube-main {
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-title {
        font-size: 32px;
    }

    .plan-price {
        font-size: 36px;
    }
}
/* contact us page styles */
.contact-form-section {
    padding: 80px 0;
}

.contact-info-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.contact-info-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.form-container {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: white;
    padding: 12px 16px;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #8b5cf6;
    box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.25);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-select option {
    background: #1a1a2e;
    color: white;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
}
/* terms */
.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #8b5cf6;
}

.terms-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
}

.terms-section p,
.terms-section li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-section ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.terms-section li {
    margin-bottom: 10px;
}

.last-updated {
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid #8b5cf6;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.last-updated p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.important-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.important-note h4 {
    color: #ffc107;
    margin-top: 0;
}
