/* Student Life & Growth Page - Modern & Colorful Design */
/* Primary Color: #26c976 (Green) */
/* Secondary Color: #FFD700 (Yellow) */

.student-life-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.student-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Common Section Styles */
.student-section {
    margin-bottom: 80px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.header-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #26c976, #1fb566);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    box-shadow: 0 15px 40px rgba(38, 201, 118, 0.3);
    transition: all 0.4s ease;
}

.header-icon.yellow {
    background: linear-gradient(135deg, #FFD700, #FFC700);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.header-icon:hover {
    transform: scale(1.1) rotate(10deg);
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #333333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 400;
}

/* ==================== Student Support Systems ==================== */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.support-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #26c976, #1fb566);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.support-card:hover::before {
    transform: scaleX(1);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(38, 201, 118, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #26c976;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(38, 201, 118, 0.3);
}

.support-card:hover .card-icon {
    transform: rotateY(360deg) scale(1.1);
    background: white;
    color: #26c976;
}

.support-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.support-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* ==================== Scholarship & Financial Assistance ==================== */
.scholarship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.scholarship-item {
    background: white;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.scholarship-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FFC700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.scholarship-item:hover::after {
    transform: scaleX(1);
}

.scholarship-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.scholarship-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
    min-width: 70px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.scholarship-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
}

.scholarship-content p {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* ==================== Student Achievements ==================== */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: linear-gradient(135deg, #26c976, #1fb566);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(38, 201, 118, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(38, 201, 118, 0.4);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #26c976;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.achievement-card:hover .achievement-icon {
    transform: rotateY(360deg) scale(1.15);
    background: #FFD700;
    color: white;
}

.achievement-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.achievement-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ==================== Alumni Network ==================== */
.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.alumni-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.alumni-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700, #FFC700);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.alumni-card:hover::before {
    opacity: 0.1;
}

.alumni-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.alumni-badge {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FFD700, #FFC700);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.alumni-card:hover .alumni-badge {
    transform: rotate(10deg) scale(1.1);
    background: #26c976;
}

.alumni-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.alumni-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Decorative Background Elements */
.student-life-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(38, 201, 118, 0.05), rgba(31, 181, 102, 0.05));
    border-radius: 50%;
    top: 10%;
    right: -150px;
    z-index: 0;
}

.student-life-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 199, 0, 0.05));
    border-radius: 50%;
    bottom: 15%;
    left: -100px;
    z-index: 0;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {

    .support-grid,
    .achievements-grid,
    .alumni-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scholarship-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .student-life-section {
        padding: 60px 0;
    }

    .student-section {
        margin-bottom: 60px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .header-icon {
        width: 80px;
        height: 80px;
        font-size: 38px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .support-grid,
    .achievements-grid,
    .alumni-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .support-card,
    .achievement-card,
    .alumni-card {
        padding: 35px 25px;
    }

    .card-icon,
    .achievement-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .alumni-badge {
        width: 75px;
        height: 75px;
        font-size: 34px;
    }

    .support-card h3,
    .achievement-card h3 {
        font-size: 1.2rem;
    }

    .scholarship-item {
        padding: 30px 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .scholarship-number {
        font-size: 2.5rem;
        min-width: auto;
    }

    .scholarship-content h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .student-container {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .support-card,
    .achievement-card,
    .alumni-card {
        padding: 30px 20px;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
}