/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f5f7fa; /* Lighter background */
    color: #333;
    overflow-x: hidden;
    cursor: default; /* Default cursor */
}

/* Scroll Progress */
.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4287f5, #7b2dff); /* Adjusted colors */
    width: 0%;
}

/* Three.js Canvas */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: rgba(255, 255, 255, 0.9); /* Lighter background */
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    background: linear-gradient(90deg, #4287f5, #7b2dff); /* Adjusted colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer; /* Add pointer cursor */
}

.nav-center {
    display: flex;
    gap: 32px;
    height: 3pc;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(238, 236, 236, 0.8); /* Lighter background */
    border-radius: 10px;
    padding: 10px 30px;
}

.nav-center a {
    color: #333; /* Darker text for better contrast */
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer; /* Add pointer cursor */
}

label{
    font-size: 8px;
    color: black;
}

.nav-center a:hover {
    color: #4287f5; /* Adjusted color */
}

.nav-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.sign-in-btn {
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer; /* Add pointer cursor */
    transition: all 0.3s ease;
    border: 1px solid rgba(66, 135, 245, 0.5); /* Adjusted color */
    color: #4287f5; /* Adjusted color */
    background: transparent;
    text-decoration: none;
}

.sign-in-btn:hover {
    background: rgba(66, 135, 245, 0.1); /* Adjusted color */
}

.try-free-btn {
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer; /* Add pointer cursor */
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #4287f5, #7b2dff); /* Adjusted colors */
    color: white;
    border: none;
    box-shadow: 0 2px 10px rgba(66, 135, 245, 0.2); /* Adjusted color */
    text-decoration: none;
}

.try-free-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(66, 135, 245, 0.3); /* Adjusted color */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background: rgba(255, 255, 255, 0.7); /* Lighter background with transparency */
}

.hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    color: #333; /* Darker text for better contrast */
    margin-bottom: 30px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.start-now-btn {
    background: #4287f5; /* Adjusted color */
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer; /* Add pointer cursor */
    transition: background-color 0.3s ease;
}

.start-now-btn:hover {
    background: #3a7bd5; /* Slightly darker on hover */
}

.learn-more-link {
    color: #4287f5; /* Adjusted color */
    text-decoration: none;
    font-weight: 500;
    cursor: pointer; /* Add pointer cursor */
}

/* Features */
.feature-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.8); /* Lighter background */
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer; /* Add pointer cursor */
    border: 1px solid rgba(66, 135, 245, 0.2); /* Subtle border */
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(66, 135, 245, 0.1);
    border-color: rgba(66, 135, 245, 0.4);
}

.feature-item span {
    color: #333; /* Darker text for better contrast */
    font-weight: 500;
    font-size: 13px;
    white-space: nowrap;
}

/* Markets Section */
.markets {
    padding: 100px 5%;
    background: rgba(255, 255, 255, 0.9); /* Lighter background */
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    background: linear-gradient(90deg, #4287f5, #7b2dff); /* Adjusted colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(50px);
}

.market-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.market-card {
    width: 300px;
    background: rgba(255, 255, 255, 0.9); /* Lighter background */
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(66, 135, 245, 0.1); /* Adjusted color */
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: default; /* Default cursor */
}

.market-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(66, 135, 245, 0.1); /* Adjusted color */
    border-color: rgba(66, 135, 245, 0.3); /* Adjusted color */
}

.market-icon {
    width: 60px;
    height: 60px;
    background: rgba(66, 135, 245, 0.1); /* Adjusted color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #4287f5; /* Adjusted color */
}

.market-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333; /* Darker text for better contrast */
}

.market-card p {
    color: #666; /* Medium gray for better readability */
    margin-bottom: 20px;
}

.market-link {
    color: #4287f5; /* Adjusted color */
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    cursor: pointer; /* Add pointer cursor */
}

.market-link:hover {
    gap: 10px;
}

/* Platform Section */
.platform {
    padding: 100px 5%;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8); /* Lighter background */
}

.platform-content {
    width: 50%;
    z-index: 10;
}

.platform h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #4287f5, #7b2dff); /* Adjusted colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateX(-50px);
}

.platform p {
    color: #666; /* Medium gray for better readability */
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-50px);
}

.platform-features {
    margin-top: 40px;
    opacity: 0;
    transform: translateX(-50px);
}

.platform .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    cursor: default; /* Default cursor */
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(66, 135, 245, 0.1); /* Adjusted color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4287f5; /* Adjusted color */
}

.platform-image {
    width: 50%;
    height: 500px;
    position: relative;
    z-index: 5;
}

/* Education Section */
.education {
    padding: 100px 5%;
    background: rgba(255, 255, 255, 0.9); /* Lighter background */
    text-align: center;
}

.education-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.education-card {
    width: 350px;
    background: rgba(255, 255, 255, 0.95); /* Lighter background */
    border-radius: 10px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(66, 135, 245, 0.1); /* Adjusted color */
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: default; /* Default cursor */
}

.education-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(66, 135, 245, 0.1); /* Adjusted color */
    border-color: rgba(66, 135, 245, 0.3); /* Adjusted color */
}

.education-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #4287f5; /* Adjusted color */
}

.education-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333; /* Darker text for better contrast */
}

.education-card p {
    color: #666; /* Medium gray for better readability */
    margin-bottom: 25px;
}

.btn-outline {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    background: transparent;
    border: 1px solid rgba(66, 135, 245, 0.5); /* Adjusted color */
    color: #4287f5; /* Adjusted color */
    cursor: pointer; /* Add pointer cursor */
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(66, 135, 245, 0.1); /* Adjusted color */
}

/* Footer */
footer {
    padding: 80px 5% 40px;
    background: #f0f4f8; /* Light gray background */
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #4287f5, #7b2dff); /* Adjusted colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    cursor: pointer; /* Add pointer cursor */
}

.footer-about p {
    color: #666; /* Medium gray for better readability */
    max-width: 300px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8); /* Lighter background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666; /* Medium gray for better readability */
    transition: all 0.3s ease;
    border: 1px solid rgba(66, 135, 245, 0.1); /* Subtle border */
    cursor: pointer; /* Add pointer cursor */
}

.social-link:hover {
    background: linear-gradient(90deg, #4287f5, #7b2dff); /* Adjusted colors */
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333; /* Darker text for better contrast */
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666; /* Medium gray for better readability */
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer; /* Add pointer cursor */
}

.footer-links a:hover {
    color: #4287f5; /* Adjusted color */
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #666; /* Medium gray for better readability */
}

/* 3D Canvas */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

/* Animations */
.animate {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translate(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content, .platform-content {
        width: 100%;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .platform {
        flex-direction: column;
    }
    
    .nav-center {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .market-card, .education-card {
        width: 100%;
    }
    
    .feature-row {
        flex-wrap: wrap;
    }
}