/* ==================== SCHOLARSHIP PAGE STYLES ==================== */
.scholarship-section {
    padding: 8rem 2rem 6rem;
    background: white;
}

.scholarship-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.scholarship-intro p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.9;
}

.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-mixed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.step-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    margin-top: 1rem;
    opacity: 0.3;
}

.step-item:last-child .step-line {
    display: none;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.scholarship-cta {
    margin-top: 5rem;
    padding: 4rem;
    background: var(--gradient-mixed);
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.scholarship-cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.scholarship-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}
/* ==================== UNIVERSITIES GALLERY ==================== */
.universities-gallery {
    margin: 5rem 0;
    padding: 3rem;
    background: var(--light);
    border-radius: 20px;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(0,0,0,0.9) 0%, 
        rgba(0,0,0,0.7) 50%,
        transparent 100%);
    color: white;
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 250px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .step-item {
        gap: 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .scholarship-cta {
        padding: 2rem;
    }

    .scholarship-cta-content h3 {
        font-size: 2rem;
    }
}