/* =========================
   Faculty Banner
========================= */

.faculty-banner{
    height:250px;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url("../images/campus/slide1.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;
}

.faculty-banner h1{
    font-size:3rem;
    margin-bottom:10px;
}

.faculty-banner p{
    font-size:1.2rem;
}

/* =========================
   Coming Soon Section
========================= */

.coming-soon{
    padding:100px 10%;
    background:#f8f9fa;
}

.coming-card{
    max-width:750px;
    margin:auto;

    background:white;

    padding:60px 40px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.coming-card h2{
    color:#0d47a1;
    font-size:2rem;
    margin-bottom:20px;
}

.coming-card p{
    color:#555;
    line-height:1.8;
    font-size:1.05rem;
}