/*==================================
ADMISSION POPUP
==================================*/

.popup-overlay{
    position:fixed;
    top:25px;
    right:25px;
    z-index:9999;
    animation:popupShow .5s ease;
}

.popup-box{
    width:360px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
    transition:.3s;
}

/*==================================
HEADER
==================================*/

.popup-header{
    background:linear-gradient(135deg,#0A3D91,#2563EB);
    color:#fff;
    padding:15px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.popup-header h3{
    font-size:18px;
    font-weight:600;
}

.popup-actions{
    display:flex;
    gap:8px;
}

.popup-actions button{
    width:32px;
    height:32px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    color:#fff;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
}

.popup-actions button:hover{
    background:rgba(255,255,255,.35);
}

/*==================================
CONTENT
==================================*/

.popup-content{
    padding:30px;
    text-align:center;
}

.popup-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:18px;
    border-radius:50%;
    background:#EEF5FF;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#2563EB;
    font-size:35px;
}

.popup-content h2{
    margin-bottom:10px;
    color:#0A3D91;
}

.popup-content p{
    color:#666;
    margin-bottom:15px;
    line-height:1.6;
}

.popup-content ul{
    list-style:none;
    margin:20px 0;
    padding:0;
}

.popup-content li{
    padding:6px 0;
    font-weight:500;
}

.popup-btn{
    display:inline-block;
    margin-top:10px;
    padding:12px 30px;
    background:#2563EB;
    color:#fff;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.popup-btn:hover{
    background:#0A3D91;
    transform:translateY(-2px);
}

/*==================================
FLOATING BUTTON
==================================*/

.popup-open-btn{
    position:fixed;
    bottom:20px;
    right:20px;

    display:none;
    align-items:center;
    justify-content:center;
    gap:8px;

    background:#2563EB;
    color:#fff;

    border:none;
    outline:none;

    padding:12px 18px;

    border-radius:50px;

    font-size:15px;
    font-weight:600;

    cursor:pointer;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;
}

.popup-open-btn:hover{
    background:#0A3D91;
    transform:translateY(-3px);
}

.popup-open-btn i{
    font-size:18px;
}

/*==================================
ANIMATION
==================================*/

@keyframes popupShow{

    from{
        opacity:0;
        transform:translateY(-20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*==================================
TABLET
==================================*/

@media(max-width:768px){

    .popup-overlay{
        top:15px;
        left:15px;
        right:15px;
    }

    .popup-box{
        width:100%;
    }

    .popup-content{
        padding:25px;
    }

    .popup-icon{
        width:70px;
        height:70px;
        font-size:30px;
    }

    .popup-open-btn{
        bottom:15px;
        right:15px;

        padding:10px 16px;

        font-size:13px;

        border-radius:30px;
    }

    .popup-open-btn i{
        font-size:16px;
    }
}

/*==================================
SMALL MOBILE
==================================*/

@media(max-width:480px){

    .popup-overlay{
        top:10px;
        left:10px;
        right:10px;
    }

    .popup-box{
        width:100%;
        border-radius:15px;
    }

    .popup-content{
        padding:20px;
    }

    .popup-header h3{
        font-size:16px;
    }

    .popup-content h2{
        font-size:22px;
    }

    .popup-content p{
        font-size:14px;
    }

    .popup-btn{
        width:100%;
        padding:12px;
    }

    /* Small Floating Button */

    .popup-open-btn{

        bottom:12px;
        right:12px;

        padding:8px 12px;

        font-size:12px;

        border-radius:25px;

        gap:6px;
    }

    .popup-open-btn i{
        font-size:14px;
    }
}

html{
    scroll-behavior:smooth;
}