/* ========== STUDENT LIFE HERO SECTION ========== */
.container-slh {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.studentlife-hero-slh {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 30%, #6d28d9 70%, #be185d 100%);
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animated Gradient Overlay */
.studentlife-hero-slh::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
    animation: pulseGlowSlh 4s ease-in-out infinite;
}

@keyframes pulseGlowSlh {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Hero Content */
.studentlife-hero-content-slh {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 0;
}

/* Breadcrumb */
.studentlife-hero-breadcrumb-slh {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.studentlife-hero-breadcrumb-slh a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.studentlife-hero-breadcrumb-slh a:hover {
    color: #f472b6;
}

.studentlife-hero-breadcrumb-slh i {
    color: #f472b6;
    font-size: 0.7rem;
}

.studentlife-hero-breadcrumb-slh span {
    color: #f472b6;
}

/* Badge */
.studentlife-hero-badge-slh {
    display: inline-block;
    background: rgba(236, 72, 153, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #f472b6;
    margin-bottom: 24px;
    border: 1px solid rgba(236, 72, 153, 0.4);
    animation: fadeInUpSlh 0.6s ease;
}

/* Title */
.studentlife-hero-title-slh {
    font-size: 3.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUpSlh 0.6s ease 0.1s backwards;
}

.studentlife-hero-highlight-slh {
    background: linear-gradient(135deg, #f472b6, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

/* Subtitle */
.studentlife-hero-subtitle-slh {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUpSlh 0.6s ease 0.2s backwards;
}

/* Stats */
.studentlife-hero-stats-slh {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 80px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 40px;
    animation: fadeInUpSlh 0.6s ease 0.3s backwards;
}

.studentlife-stat-item-slh {
    text-align: center;
}

.studentlife-stat-number-slh {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f472b6, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

.studentlife-stat-label-slh {
    font-size: 0.8rem;
    color: #cbd5e1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.studentlife-stat-divider-slh {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* CTA Buttons */
.studentlife-hero-buttons-slh {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUpSlh 0.6s ease 0.4s backwards;
}

.studentlife-btn-primary-slh,
.studentlife-btn-outline-slh {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.studentlife-btn-primary-slh {
    background: linear-gradient(135deg, #f472b6, #be185d);
    color: white;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.studentlife-btn-primary-slh:hover {
    transform: translateY(-3px);
    gap: 16px;
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.5);
}

.studentlife-btn-outline-slh {
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: white;
}

.studentlife-btn-outline-slh:hover {
    border-color: #f472b6;
    background: rgba(244, 114, 182, 0.1);
    transform: translateY(-3px);
}

/* Floating Elements */
.studentlife-hero-floating-slh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.studentlife-float-item-slh {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatSlh 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.studentlife-float-item-slh i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.float-1-slh {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.float-2-slh {
    top: 25%;
    right: 8%;
    animation-delay: 1s;
    width: 50px;
    height: 50px;
}

.float-3-slh {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
    width: 70px;
    height: 70px;
}

.float-4-slh {
    bottom: 30%;
    right: 15%;
    animation-delay: 0.5s;
    width: 45px;
    height: 45px;
}

.float-5-slh {
    top: 40%;
    left: 15%;
    animation-delay: 1.5s;
    width: 55px;
    height: 55px;
}

.float-6-slh {
    bottom: 15%;
    right: 20%;
    animation-delay: 2.5s;
    width: 65px;
    height: 65px;
}

@keyframes floatSlh {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Wave Backgrounds */
.studentlife-hero-waves-slh {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
}

.wave-1-slh {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    animation: waveMoveSlh 20s linear infinite;
}

.wave-2-slh {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    animation: waveMoveSlh 15s linear infinite reverse;
    opacity: 0.5;
}

@keyframes waveMoveSlh {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100px);
    }
}

/* Wave Divider Bottom */
.studentlife-hero-divider-slh {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

/* Animations */
@keyframes fadeInUpSlh {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .studentlife-hero-title-slh {
        font-size: 3rem;
    }
    
    .studentlife-hero-stats-slh {
        gap: 25px;
        padding: 20px 30px;
    }
    
    .float-1-slh, .float-2-slh, .float-3-slh, 
    .float-4-slh, .float-5-slh, .float-6-slh {
        display: none;
    }
}

@media (max-width: 768px) {
    .studentlife-hero-slh {
        min-height: 550px;
    }
    
    .studentlife-hero-content-slh {
        padding: 60px 0;
    }
    
    .studentlife-hero-title-slh {
        font-size: 2.2rem;
    }
    
    .studentlife-hero-subtitle-slh {
        font-size: 1rem;
    }
    
    .studentlife-hero-stats-slh {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
        border-radius: 30px;
    }
    
    .studentlife-stat-divider-slh {
        width: 60px;
        height: 1px;
    }
    
    .studentlife-hero-buttons-slh {
        flex-direction: column;
        gap: 15px;
    }
    
    .studentlife-btn-primary-slh,
    .studentlife-btn-outline-slh {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .studentlife-hero-title-slh {
        font-size: 1.8rem;
    }
    
    .studentlife-hero-badge-slh {
        font-size: 0.75rem;
        padding: 6px 18px;
    }
    
    .studentlife-hero-breadcrumb-slh {
        font-size: 0.75rem;
    }
    
    .studentlife-stat-number-slh {
        font-size: 1.6rem;
    }
    
    .studentlife-stat-label-slh {
        font-size: 0.7rem;
    }
}
















/* ========== STUDENT LIFE GALLERY SECTION ========== */
.container-slg {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.gallery-section-slg {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

/* Section Header */
.gallery-header-slg {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-badge-slg {
    display: inline-block;
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #be185d;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.gallery-title-slg {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.gallery-highlight-slg {
    color: #ec4899;
    position: relative;
    display: inline-block;
}

.gallery-highlight-slg::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #f472b6);
    border-radius: 3px;
}

.gallery-subtitle-slg {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Filters */
.gallery-filters-slg {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn-slg {
    padding: 8px 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.gallery-filter-btn-slg:hover {
    border-color: #ec4899;
    color: #ec4899;
    transform: translateY(-2px);
}

.gallery-filter-btn-slg.active {
    background: linear-gradient(135deg, #ec4899, #be185d);
    border-color: #ec4899;
    color: white;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

/* Gallery Grid */
.gallery-grid-slg {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Gallery Item */
.gallery-item-slg {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    animation: fadeInUpSlg 0.5s ease forwards;
}

@keyframes fadeInUpSlg {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-image-wrapper-slg {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 5 / 4;
}

.gallery-image-wrapper-slg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-slg:hover .gallery-image-wrapper-slg img {
    transform: scale(1.08);
}

/* Gallery Overlay */
.gallery-overlay-slg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.9), rgba(190, 24, 93, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item-slg:hover .gallery-overlay-slg {
    opacity: 1;
}

.gallery-overlay-content-slg {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    color: white;
}

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

.gallery-overlay-content-slg i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.gallery-overlay-content-slg h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-overlay-content-slg p {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Modal/Lightbox */
.gallery-modal-slg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    cursor: pointer;
    animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-modal-content-slg {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-modal-close-slg {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10001;
}

.gallery-modal-close-slg:hover {
    color: #ec4899;
}

.gallery-modal-image-slg {
    width: 100%;
    border-radius: 16px;
}

.gallery-modal-caption-slg {
    text-align: center;
    color: white;
    padding: 15px;
    font-size: 1rem;
}

.gallery-modal-nav-slg {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.gallery-modal-prev-slg,
.gallery-modal-next-slg {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: white;
    font-size: 1.2rem;
}

.gallery-modal-prev-slg:hover,
.gallery-modal-next-slg:hover {
    background: #ec4899;
    transform: scale(1.1);
}

/* View More Button */
.gallery-footer-slg {
    text-align: center;
    margin-top: 20px;
}

.gallery-viewmore-slg {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
}

.gallery-viewmore-slg:hover {
    transform: translateY(-3px);
    gap: 16px;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

/* Filter Animation */
.gallery-item-slg {
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-title-slg {
        font-size: 2rem;
    }
    
    .gallery-grid-slg {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-section-slg {
        padding: 60px 0;
    }
    
    .gallery-title-slg {
        font-size: 1.8rem;
    }
    
    .gallery-subtitle-slg {
        font-size: 1rem;
    }
    
    .gallery-filters-slg {
        gap: 8px;
    }
    
    .gallery-filter-btn-slg {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    
    .gallery-grid-slg {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-modal-prev-slg,
    .gallery-modal-next-slg {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-title-slg {
        font-size: 1.5rem;
    }
    
    .gallery-overlay-content-slg h4 {
        font-size: 1rem;
    }
    
    .gallery-overlay-content-slg p {
        font-size: 0.7rem;
    }
    
    .gallery-viewmore-slg {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}