/* ===========================
   FUTURISTIC SECTIONS STYLING - UPDATED
=========================== */

/* General section styling */
.futuristic-section {
    padding: 80px 20px;
    margin: 50px 0;
    background: rgba(10, 15, 25, 0.9); /* darker semi-transparent background */
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 254, 0.3); /* neon border */
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.futuristic-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0,242,254,0.6);
}

.futuristic-section .section-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: #d0f8ff; /* brighter, readable text */
    line-height: 1.6;
}

/* ===========================
   SCHOOL REPORT CARDS
=========================== */
.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.report-card {
    background: rgba(20, 25, 35, 0.95); /* darker card */
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 242, 254, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.8);
}

.report-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00f2fe;
}

.report-card p {
    margin-bottom: 20px;
    color: #c0f0ff; /* readable text */
}

.download-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.download-btn:hover {
    box-shadow: 0 0 25px #00f2fe;
    transform: scale(1.05);
}

/* ===========================
   GALLERY SECTION
=========================== */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0,242,254,0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: rgba(15, 20, 30, 0.9); /* darker background for contrast */
    border: 1px solid rgba(0,242,254,0.4);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.gallery-item p {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #00f2fe;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(0,242,254,0.7);
    font-size: 1rem;
}

/* GALLERY CTA BUTTON */
.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.gallery-cta .explore-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.gallery-cta .explore-btn:hover {
    box-shadow: 0 0 25px #00f2fe;
    transform: scale(1.05);
}

/* ===========================
   SCROLL ANIMATION
=========================== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .report-grid, .gallery-preview-grid {
        grid-template-columns: 1fr;
    }
}

.school-logo {

}
