section {
    width: 100%;
    height: 100vh; /* Full screen for each section */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; /* Ensure content stacks over Vanta */
    text-align: center;
    padding: 20px;
}


#about {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.content {
    z-index: 1; /* Ensure text stays above the image */
    color: #E0E0E0;
    max-width: 700px;
    margin-bottom: 30px;
}

.content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.5rem;
    line-height: 1.6;
}

.transparent-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the image */
    width: 80%;
    max-width: 100%;
    opacity: 0.3; /* Add transparency */
    z-index: 0; /* Keep the image below the text */
    pointer-events: none; /* Make the image non-interactive */
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .content h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .content p {
        font-size: 1.2rem;
    }

    .transparent-image {
        width: 90%;
        opacity: 0.2; /* Slightly reduce opacity on smaller screens */
    }
}

@media (max-width: 480px) {
    .content h2 {
        font-size: 2rem;
    }

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

    .transparent-image {
        width: 100%;
        opacity: 0.2;
    }
}



.contact {
    height: calc(100vh - 90px);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

h2 {
    font-size: 3rem;
    color: #E0E0E0;
    margin-bottom: 20px;
    text-align: center;
}

#contact-form {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #31C6D4;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #E0E0E0;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

textarea {
    min-height: 150px; /* Nice height for entering a message */
}

button {
    align-self: center;
    padding: 15px 30px;
    border: none;
    background-color: #31C6D4;
    color: #1A1A1A;
    font-size: 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    background-color: #A3E0FF;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


#ecosystem {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.content p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 50px; /* Consistent margin with technology section */
    color: #A3A3A3;
}

.timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;

}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    text-align: center;
}

.circle {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    border: 2px solid #31C6D4;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

h3 {
    color: #E0E0E0;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.timeline-item p {
    color: #A3A3A3;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .content h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .content p {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .timeline {
        flex-direction: column;
        gap: 20px;
    }

    .circle {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .timeline-item p {
        width: 90%;
        font-size: 0.9rem;
    }
}


#join-our-team {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    //padding: 40px 20px;
}

.image-section {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #E0E0E0;
}

.overlay-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.overlay-text p {
    font-size: 1.5rem;
    line-height: 1.6;
    width: 95vw;
    color: #A3A3A3;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px;
}

.job-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #31C6D4;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.job-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #E0E0E0;
}

.job-card p {
    font-size: 1rem;
    color: #A3A3A3;
    line-height: 1.5;
}

.call-to-action {
    text-align: center;
    margin-top: 20px;
}

.call-to-action p {
    font-size: 1.2rem;
    color: #E0E0E0;
}

.call-to-action a {
    color: #31C6D4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.call-to-action a:hover {
    color: #A3E0FF;
}



/* Responsive Adjustments */
@media (max-width: 1100px) {
    .overlay-text h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .overlay-text p {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .cards-container {
        width: 100%;
        padding: 0;
        gap: 20px;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .job-card {
        width: 100%;

        margin: 0; /* Centering each card horizontally */
    }

    .call-to-action p {
        font-size: 1rem;
    }
}


#home {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary-text-color); /* Updated */
    padding: 40px 20px;
    gap: 25px;
    box-sizing: border-box;
}

#home h1 {
    font-size: 4rem;
    margin: 10px 0;
    line-height: 1.2;
}

#home p {
    font-size: 1.5rem;
    margin: 15px 0;
    max-width: 700px;
    line-height: 1.6;
    color: var(--secondary-text-color); /* Optional: use for differentiation */
}

.cta-button {
    padding: 15px 30px;
    background-color: var(--primary-accent-color); /* Updated */
    color: var(--background-color); /* Updated */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: var(--secondary-accent-hover-color); /* Updated */
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    #home h1 {
        font-size: 2.5rem;
        margin: 10px 0;
    }

    #home p {
        font-size: 1.2rem;
        max-width: 90%;
        line-height: 1.5;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #home h1 {
        font-size: 2rem;
    }

    #home p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}




#technology {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.content {
    z-index: 1; /* Ensure text stays above the background */
    color: #E0E0E0;
    max-width: 800px;
    margin-bottom: 50px;
}

.content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.5rem;
    line-height: 1.6;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.feature-block {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #31C6D4;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-block:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #31C6D4;
}

.feature-block h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #E0E0E0;
}

.feature-block p {
    font-size: 1rem;
    color: #A3A3A3;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    #technology {
        height: 110vh;
    }

    .content {
        margin-bottom: 0; /* Removes the gap between text and feature cards */
    }
    .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #31C6D4;
    }
    .content h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .content p {
        font-size: 1.2rem;
        line-height: 1.5;
        //margin-bottom: 10px;
    }

    .features {
        width: 100%;
        padding: 0;
        gap: 20px;
        flex-direction: column;
        align-items: center;
        //margin-top: 20px;
    }

    .feature-block {
        width: 100%;
        //height: 150px;
        //font-size: 1.2rem;
    }
}


#tokenomics {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: relative;
    flex-wrap: wrap; /* Allows flexibility for smaller screens */
}

.left-image-text {
    position: relative;
    margin-top: 100px;
    margin-left: 15vw;
    width: 50%;
    height: 100%;
}

.left-image-text img {
    width: 100%;
    height: 100%;
    opacity: 0.6; /* Transparency for the image */
    border-radius: 10px;
    object-fit: cover;
}

.image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #E0E0E0;
    text-align: center;
}

.image-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;

}

.image-text p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #A3A3A3;
}

.right-cards {
    display: flex;
    margin-top: 100px;
    margin-right: 25vw;
    flex-direction: column;
    justify-content: space-between;
    height: 50%;
    gap: 20px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #31C6D4;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.stat-card h3 {
    font-size: 2rem;
    color: #E0E0E0;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.2rem;
    color: #A3A3A3;
}

/* Responsive Adjustments */
@media (max-width: 960px) {
    .left-image-text,
    .right-cards {
        width: 100%;
        margin: 0;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .left-image-text img {
        width: 100%;
        height: auto;
        opacity: 0.5;
    }

    .image-text h2 {
        font-size: 2.5rem;
    }

    .image-text p {
        font-size: 1.2rem;
    }

    .stat-card {
        flex: 1;
        padding: 15px;
    }

    /* Optional adjustments for stat-card heading and text */
    .stat-card h3 {
        font-size: 1.5rem;
    }

    .stat-card p {
        font-size: 1rem;
    }
}


