:root{--red:#d62828;--yellow:#fcbf49;--black:#111111;}
body{font-family:Arial,sans-serif}
.navbar-brand{font-weight:700;color:var(--red)!important}
.hero{min-height:90vh;display:flex;align-items:center;background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1400&q=80');background-size:cover}
.form-card{background:#fff;padding:40px;border-radius:20px;box-shadow:0 10px 30px rgba(0,0,0,.1)}
.card{transition:.3s}.card:hover{transform:translateY(-8px)}


.scholarship-section{
    background:#f8f9fa;
}

.scholarship-card{
    background:#F7F4CC;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-top:5px solid #d62828;
}

.scholarship-card .form-control,
.scholarship-card .form-select{
    height:55px;
}

.scholarship-card .btn-danger{
    background:#d62828;
    border:none;
}

.scholarship-card .btn-danger:hover{
    background:#b71c1c;
}

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
    animation:pulse 2s infinite;
}

.whatsapp-btn:hover{
    color:#fff;
    transform:scale(1.1);
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:768px){
    .whatsapp-btn{
        width:55px;
        height:55px;
        font-size:28px;
        right:15px;
        bottom:15px;
    }
}
.footer{
    background:#111111;
    color:#ffffff;
}

.footer-title{
    color:#fcbf49;
    margin-bottom:20px;
    font-weight:700;
}

.footer p{
    color:#d6d6d6;
    line-height:1.8;
}

.footer strong{
    color:#ffffff;
}

.footer hr{
    border-color:rgba(255,255,255,0.1);
}

.social-icons a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#d62828;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#fcbf49;
    color:#111;
}

@media(max-width:768px){
    .footer{
        text-align:center;
    }
}
