/* Staged Learning Section Styles */
.staged-learning {
    text-align: center;
    padding: 2rem;
    background: rgba(5, 5, 32, 0.3);
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(110, 0, 255, 0.2);
}

.staged-learning h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-shadow: var(--glow-primary);
}

.stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stage {
    background: rgba(5, 5, 32, 0.5);
    border: 1px solid rgba(110, 0, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(110, 0, 255, 0.1),
        rgba(0, 184, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.stage:hover {
    transform: translateY(-5px);
    border-color: rgba(110, 0, 255, 0.4);
    box-shadow: 0 10px 20px rgba(110, 0, 255, 0.2);
}

.stage:hover::before {
    opacity: 1;
}

.stage-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-weight: bold;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(110, 0, 255, 0.5);
}

.stage h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: var(--glow-primary);
}

.stage p {
    color: var(--medium-text);
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Explore Button Styles */
.explore-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(110, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.explore-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.explore-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 0, 255, 0.4);
}

.explore-button:hover::before {
    opacity: 1;
}

.explore-button i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.explore-button:hover i {
    transform: translateX(5px);
}

.explore-button span {
    position: relative;
    z-index: 1;
} 