@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter', sans-serif;
}

body{
    min-height:100vh;
    background:url("../img/banner11.jpg") center/cover no-repeat;
    position:relative;
}

/* Overlay */
body::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgb(0 0 0 / 64%), rgb(0 0 0 / 63%));
    z-index:0;
}

.container{
    position:relative;
    z-index:1;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:20px;
    color:#fff;
    text-align:center;
}

/* Logo */
.logo{
    width:120px;
    margin-bottom:15px;
    animation:fadeDown .8s ease;
}

/* Headings */
h1{
    font-size:clamp(22px, 4vw, 30px);
    font-weight:700;
    letter-spacing:1px;
    animation:fadeDown 1s ease;
    text-
}

.subtitle{
    margin-top:6px;
    font-size:clamp(14px, 2.5vw, 18px);
    animation:fadeDown 1.1s ease;
}

.year{
    margin-top:6px;
    font-size:clamp(14px, 2.5vw, 18px);
    animation:fadeDown 1.2s ease;
}

/* Cards Wrapper */
.card-wrapper{
    display:flex;
    gap:30px;
    margin-top:55px;
    flex-wrap:wrap;
    justify-content:center;
    width:100%;
    animation:fadeUp 1.3s ease;
}

/* Link Wrapper */
.card-link{
    text-decoration:none;
    width:100%;
    max-width:340px;
}

/* Card */
.card{
    position:relative;
    background:#fff;
    height:120px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
    transition:.4s cubic-bezier(.4,0,.2,1);
    overflow:hidden;
}

/* Glow */
.card::before{
    content:"";
    position:absolute;
    inset:-2px;
    background:linear-gradient(120deg, #1e88e5, #42a5f5, #1e88e5);
    opacity:0;
    transition:.4s;
}

/* Hover Effects */
.card-link:hover .card{
    transform:translateY(-10px) scale(1.02);
}

.card-link:hover .card::before{
    opacity:1;
}

.card::after{
    content:"";
    position:absolute;
    inset:2px;
    background:#fff;
    border-radius:16px;
    z-index:1;
}

/* Content Above Glow */
.card > *{
    position:relative;
    z-index:2;
}

/* Icon */
.icon{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#0d2c73;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
}

.card-link:hover .icon{
    transform:rotate(360deg) scale(1.1);
    background:#1e88e5;
}

.icon svg{
    width:26px;
    fill:#fff;
}

/* Text */
.card h2{
    color:#0d2c73;
    font-size:clamp(18px, 3vw, 22px);
    font-weight:700;
    transition:.4s;
}

.card-link:hover h2{
    letter-spacing:1px;
}

/* Footer */
.note{
    margin-top:40px;
    font-size:clamp(13px, 2.5vw, 14px);
    color:#eaeaea;
    animation:fadeUp 1.4s ease;
}

.note span{ color:#fff; font-weight:600; font-size: 16px; }

.warning{
    margin-top:10px;
    color:red;
    font-size:clamp(12px, 2.5vw, 13px);
    max-width:1000px;
    line-height:1.5;
    padding:0 10px;
    animation:fadeUp 1.5s ease;
    font-size: 16px;
}

/* Animations */
@keyframes fadeDown{
    from{opacity:0; transform:translateY(-20px);}
    to{opacity:1; transform:none;}
}

@keyframes fadeUp{
    from{opacity:0; transform:translateY(20px);}
    to{opacity:1; transform:none;}
}

/* Mobile */
@media(max-width:480px){
    .card{
        height:110px;
    }
}

/* Footer */
.footer{
    position:relative;
    z-index:2;
    text-align:center;
    padding:15px 10px;
    font-size:13px;
    color:#e0e0e0;
    background:rgba(0,0,0,0.35);
    backdrop-filter:blur(4px);
}

 .top-bar{
    display: flex;
        justify-content: center;
        gap: 10px;
        padding: 10px;
        /* background: #111; */
        position: absolute;
        top: 0;
        right: 0;
    }

/* Common Button Style */
.admin-btn{
    text-decoration:none;
    text-decoration: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight:600;
    border-radius:50px;
    color:#fff;
    display:flex;
    align-items:center;
    gap:8px;
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
}

/* UG Button */
.ug-btn{
    background:linear-gradient(135deg,#ff512f,#dd2476);
    box-shadow:0 5px 15px rgba(255,81,47,0.5);
}

/* PG Button */
.pg-btn{
    background:linear-gradient(135deg,#1d2671,#c33764);
    box-shadow:0 5px 15px rgba(195,55,100,0.5);
}

/* Hover Effects */
.admin-btn:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 8px 25px rgba(0,0,0,0.6);
}

/* Shiny Animation */
.admin-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:50%;
    height:100%;
    background:rgba(255,255,255,0.3);
    transform:skewX(-20deg);
}

.admin-btn:hover::before{
    left:120%;
    transition:0.6s;
}
@media screen and (max-width:991px){
    .logo_area_top{
        padding-top:50px;
    }
}