/* ===================================
   PAGE
=================================== */

.alumni-page{
    padding:40px 0 60px;
    background:#f8fafc;
}

/* ===================================
   HERO
=================================== */

.alumni-hero{

    background:linear-gradient(
        135deg,
        var(--primary),
        #1e40af
    );

    border-radius:24px;

    padding:50px;

    color:#fff;

    margin-bottom:40px;

    overflow:hidden;

    position:relative;

}

.alumni-hero::before{

    content:'';

    position:absolute;

    right:-80px;
    top:-80px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.hero-content{

    max-width:700px;

    position:relative;

    z-index:2;

}

.hero-label{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 16px;

    border-radius:999px;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.hero-content h1{

    font-size:42px;

    font-weight:700;

    color:#fff;

    margin-bottom:14px;

}

.hero-content p{

    margin:0;

    font-size:16px;

    line-height:1.8;

    color:rgba(255,255,255,.92);

}

/* ===================================
   FILTER
=================================== */

.filter-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    margin-bottom:35px;

}

.filter-card .card-body{

    padding:30px;

}

.form-group{

    margin-bottom:18px;

}

.form-group label{

    font-weight:600;

    color:#374151;

    margin-bottom:8px;

}

.form-control{

    border-radius:10px;

    border:1px solid #dbe3ec;

    min-height:46px;

}

.form-control:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 .18rem rgba(37,99,235,.12);

}

/* ===================================
   BUTTON
=================================== */

.btn-submit{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    width:100%;

    border:none;

    border-radius:10px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    padding:12px 20px;

    transition:.3s;

}

.btn-submit:hover{

    background:#1e40af;

    color:#fff;

    transform:translateY(-2px);

}

/* ===================================
   RESULT CARD
=================================== */

.result-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.result-card:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.result-image{

    width:100%;

    max-height:750px;

    object-fit:contain;

    background:#f8fafc;

}

/* ===================================
   PDF
=================================== */

.pdf-card{

    padding:80px 30px;

    text-align:center;

}

.pdf-card i{

    font-size:90px;

    color:#dc3545;

    margin-bottom:20px;

}

.pdf-card h3{

    font-size:24px;

    font-weight:700;

    margin-bottom:20px;

}

/* ===================================
   DESCRIPTION
=================================== */

.result-content{

    padding:30px;

}

.result-content h4{

    font-size:20px;

    font-weight:700;

    margin-bottom:15px;

}

.result-content p{

    margin:0;

    line-height:1.9;

    color:#555;

}

/* ===================================
   EMPTY
=================================== */

.empty-card{

    background:#fff;

    border-radius:18px;

    padding:70px 25px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.empty-card i{

    font-size:70px;

    color:#c3cad3;

    margin-bottom:20px;

}

.empty-card h3{

    font-weight:700;

    margin-bottom:10px;

}

.empty-card p{

    color:#6b7280;

}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:768px){

    .alumni-page{

        padding:25px 0 50px;

    }

    .alumni-hero{

        padding:30px;

    }

    .hero-content h1{

        font-size:28px;

    }

    .filter-card .card-body{

        padding:20px;

    }

    .result-content{

        padding:22px;

    }

}