
/* Campus Infrastructure Specific Styles */

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('/Images/school_building.jpg') center/cover no-repeat;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(54,70,73,0.2), rgba(112,143,150,0.2));
}

.facility-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(54,70,73,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.highlight-box {
    transition: all 0.3s ease;
}

.highlight-box:hover {
    background: rgba(255,255,255,0.2) !important;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero-section {
        min-height: 50vh;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

