.ai-gallery-section{
padding:60px 0;
}

/* MAP */

#schoolMap{
height:420px;
width:100%;
border-radius:12px;
margin-bottom:60px;
}

/* GALLERY GRID */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

/* 3D CARD */

.gallery-card{
perspective:1000px;
height:300px;
}

.card-inner{
position:relative;
width:100%;
height:100%;
transition:transform 0.7s;
transform-style:preserve-3d;
}

.gallery-card:hover .card-inner{
transform:rotateY(180deg);
}

.card-front,
.card-back{
position:absolute;
width:100%;
height:100%;
backface-visibility:hidden;
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

.card-front img{
width:100%;
height:100%;
object-fit:contain;
background:#f5f5f5;
}

.card-back{
background:#6d73e0;
color:white;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
transform:rotateY(180deg);
}

/* SLIDESHOW */

.slide{
display:none;
}

.slideshow img{
width:100%;
max-height:420px;
object-fit:contain;
border-radius:12px;
margin-bottom:40px;
background:#f5f5f5;
}