*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

body{
    background:rgb(152, 183, 233);
}

.top-header{
    width:100%;
    height:90px;
    background:rgb(152, 183, 233);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 30px;
    position:relative;
    z-index:10;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-area img{
    width:70px;
    height:70px;
    object-fit:cover;
}

.logo-area h1{
    color:#1d33b3;
    font-size:30px;
    font-weight:800;

}

.logo-area p{
    color:#1d33b3;
    font-size:22px;
    font-weight:600;
}

.profile-area{
    position:relative;
}

.profile-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#f0f3fa;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.profile-icon i{
    font-size:26px;
    color:#2f4eb4;
}

.profile-menu{
    position:absolute;
    right:0;
    top:60px;
    width:250px;
    background:white;
    border-radius:10px;
    padding:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    display:none;
}

.profile-menu p{
    margin-bottom:15px;
    font-size:14px;
}

.profile-menu a{
    text-decoration:none;
    color:#222;
    display:flex;
    align-items:center;
    gap:8px;
}

.show-menu{
    display:block;
}

.hero-section{
    width:100%;
    height:230px;
    background:url('bg.png');
    background-size:cover;
    background-position:center;
}

.homepage-container{
    width:95%;
    margin:auto;
    margin-top:2px;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
}

.programs-section,
.apply-section,
.announcement-section{
    background:white;
    border-radius:15px;
    padding:25px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}


.section-title{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.section-title i{
    font-size:45px;
    color:#2f67d8;
}

.section-title h2{
    font-size:28px;
    letter-spacing:1px;
}

.section-title span{
    font-size:18px;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.program-card{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);

    display:flex;
    flex-direction:column;
    gap:15px;

    transition:.3s;
}

.program-card:hover{
    transform:translateY(-5px);
}

.program-card i{
    font-size:45px;
    color:#2563eb;
}

.program-card p{
    font-size:15px;
    color:#333;
    line-height:1.5;
    flex:1;
}

.view-page-btn{
    display:inline-block;
    text-align:center;

    background:#6588d4;
    color:#fff;

    padding:10px 15px;
    border-radius:8px;

    text-decoration:none;
    font-size:14px;
    font-weight:600;

    transition:.3s;
}

.view-page-btn:hover{
    background:#1d4ed8;
}


.program-card{
    border:1px solid #e3e7f2;
    border-radius:12px;
    padding:18px;
    display:flex;
    gap:12px;
    align-items:flex-start;
    transition:0.3s;
    cursor:pointer;
}

.program-card:hover{
    transform:translateY(-4px);
    border-color:#2f67d8;
}

.program-card i{
    font-size:24px;
    color:#2f67d8;
}

.program-card p{
    font-size:14px;
    line-height:1.4;
}

.apply-section i {
    font-size:24px;
    color:#2f67d8;
}

.apply-section h1 {
    font-size:18px;
}

.apply-section h2{
    font-size:30px;
    
}

.apply-section p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:35px;
}

.apply-btn{
    width:100%;
    height:55px;
    background:#1452d8;
    color:white;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    font-weight:700;
    letter-spacing:1px;
    transition:0.3s;
}

.apply-btn:hover{
    background:#0e42b5;
}

.announcement-section{
    width:95%;
    margin:25px auto;
}

.announcement-title{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.announcement-title i{
    font-size:35px;
    color:#2f67d8;
}

.announcement-title h2{
    font-size:28px;
}

.announcement-section ul{
    margin-left:20px;
    line-height:2.2;
    margin-bottom:20px;
}

.announcement-section a{
    text-decoration:none;
    color:#1452d8;
    font-weight:600;
}

@media(max-width:1000px){

    .homepage-container{
        grid-template-columns:1fr;
    }

    .program-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){

    .program-grid{
        grid-template-columns:1fr;
    }

    .logo-area h1{
        font-size:18px;
    }

    .logo-area p{
        font-size:14px;
    }

    .section-title h2,
    .announcement-title h2,
    .apply-section h2{
        font-size:22px;
    }
}

/* GUIDELINES */
.guidelines-container{
    margin-top:30px;
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.guidelines-slider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    position:relative;
}

.guideline-image{
    width:100%;
    max-width:320px;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    border:1px solid #ddd;
}

/* SLIDE BUTTONS */
.slide-btn{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#e5e5e5;
    color:#fff;
    cursor:pointer;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.slide-btn:hover{
    background:#c8d4f6;
}

/* VIEW BUTTON */
.view-guidelines-btn{
    width:100%;
    margin-top:15px;
    height:45px;
    border:none;
    border-radius:10px;
    background:#2f67d8;
    color:#fff;
    font-weight:600;
    cursor:pointer;
}

.view-guidelines-btn:hover{
    background:#3d5987;
}

/* MODAL */
.guidelines-modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(64, 92, 204, 0.8);
}

.modal-image{
    display:block;
    max-width:90%;
    max-height:90%;
    margin:50px auto;
    border-radius:12px;
}

.close-modal{
    position:absolute;
    top:20px;
    right:40px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}



.dashboard-notif{
    margin:20px auto;
    width:90%;
    max-width:1100px;
    background: rgba(37, 99, 235, 0.95);
    color:white;
    padding:15px 20px;
    border-radius:12px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.notif-text{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:500;
}

.dashboard-btn{
    background:white;
    color:#2563eb;
    padding:10px 16px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.dashboard-btn:hover{
    background:#e5e7eb;
}



.hero-section{
    position:relative;
}

/* dashboard button container inside banner */
.dashboard-notif{
    position:absolute;
    bottom:305px;      /* 👈 sticks at bottom of banner */
    left:50%;
    transform:translateX(-50%);

    z-index:2;        /* 👈 stays above image */
}