﻿html, body {
    font: 400 14px/1.55 Lato, Helvetica, Arial, sans-serif;
}


.high-contrast {
    background: black !important;
    color: yellow !important;
}

    .high-contrast a {
        color: cyan !important;
    }

/* Top Affiliation Bar */
.top-bar {
    width: 100%;
    background: #ffcc00;
    color: #000;
    text-align: center;
    font-weight: 600;
    padding: 6px;
    font-size: 14px;
}

/* Header */
.college-header {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #002147, #004080);
    color: #fff;
    padding: 15px 0;
    overflow: hidden;
    border-bottom: 4px solid #ffcc00;
}

/* Shine Effect */
.shine {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    animation: shineMove 4s infinite;
}

@keyframes shineMove {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/* Layout */
.header-container {
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo */
.logo-section img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: #fff;
    padding: 3px;
    border-radius: 50%;
}

/* Info */
.college-info {
    margin-left: 20px;
}

    /* Text Styling */
    .college-info h1 {
        font-size: 28px;
        margin: 0;
        font-weight: bold;
        text-transform: uppercase;
    }

    .college-info h2 {
        font-size: 18px;
        margin: 5px 0;
    }

.hindi-name {
    font-size: 16px;
    margin: 5px 0;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* Codes */
.college-codes {
    margin-top: 8px;
}

    .college-codes span {
        background: #ffcc00;
        color: #000;
        padding: 4px 10px;
        margin-right: 10px;
        border-radius: 4px;
        font-size: 14px;
    }

/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .logo-section img {
        width: 70px;
        height: 70px;
    }

    .college-info {
        margin-left: 0;
        margin-top: 10px;
    }

        .college-info h1 {
            font-size: 20px;
        }

        .college-info h2 {
            font-size: 14px;
        }

    .hindi-name {
        font-size: 13px;
    }

    .college-codes span {
        display: inline-block;
        margin: 5px 3px;
        font-size: 12px;
    }
}

/* start Principal */

/* SECTION */
.principal-ultra {
    position: relative;
    padding: 25px 5%;
    background: radial-gradient(circle at top, #0a1f44, #000);
    overflow: hidden;
}

/* PARTICLES ✨ */
.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(#ffffff22 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveParticles 30s linear infinite;
}

@keyframes moveParticles {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-200px);
    }
}

/* CONTAINER */
.ultra-container {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    gap: 17px;
}

/* IMAGE */
.ultra-img img {
    width: 340px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    transition: 0.5s;
}

    /* IMAGE HOVER */
    .ultra-img img:hover {
        transform: scale(1.05) rotate(1deg);
    }

/* CONTENT */
.ultra-content {
    max-width: 100%;
    color: #fff;
    position: relative;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* GOLD ANIMATED LINE */
.gold-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg,#ffcc00,#ffd700,#ffcc00);
    margin: 10px 0 20px;
    animation: shineLine 2s infinite linear;
}

@keyframes shineLine {
    0% {
        background-position: -100px;
    }

    100% {
        background-position: 200px;
    }
}

/* TITLE */
.title {
    font-size: 36px;
    color: #ffcc00;
    letter-spacing: 1px;
}

/* TEXT */
.desc {
    line-height: 1.9;
    color: #ddd;
    margin-bottom: 10px;
}

/* SIGNATURE */
.signature h4 {
    margin-top: 20px;
    color: #ffcc00;
}

.signature span {
    color: #aaa;
}

/* ENTRY ANIMATION */
.ultra-img {
    animation: fadeUp 1.5s ease;
}

.ultra-content {
    animation: fadeUp 2s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width:768px) {
    .ultra-container {
        flex-direction: column;
        text-align: center;
    }

    .ultra-img img {
        width: 260px;
    }
}


/* end Principal  */


/* start Statics */
.college-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 9px 20px;
    /* background removed */
}


.stat-box {
    width: 206px;
    text-align: center;
    padding: 9px;
    border-radius: 18px;
    /* FIXED BACKGROUND */

    background: linear-gradient(135deg, #0a1f44, #7a6c6c);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    transition: .4s;
}


    .stat-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0,0,0,.6);
        background: linear-gradient(135deg, #0a1f44, #7a6c6c);
    }


    .stat-box i {
        font-size: 35px;
        color: #ffcc00;
        margin-bottom: 10px;
    }


    .stat-box h2 {
        font-size: 42px;
        color: #ffcc00;
        margin: 10px 0;
    }


    .stat-box p {
        font-size: 18px;
    }
/* end Statics  */


/* start Notification */
/* SECTION BACKGROUND */

.info-ultra {
    padding: 0px 5%;
    background: radial-gradient(circle at top, #989ca3, #000);
}


/* GRID LAYOUT */

.info-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* GLASS CARD */

.info-box {
    position: relative;
    padding: 25px;
    color: #fff;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.4s;
    overflow: hidden;
}


    /* GOLD BORDER HOVER EFFECT */

    .info-box::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 1px;
        background: linear-gradient(120deg,#ffcc00,transparent,#ffcc00);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: 0.4s;
    }

    .info-box:hover::before {
        opacity: 1;
    }


    /* CARD HOVER LIFT */

    .info-box:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    }


    /* CARD TITLE */

    .info-box h3 {
        margin-bottom: 15px;
        color: #ffcc00;
        font-size: 20px;
    }


    /* LIST RESET */

    .info-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }


        /* LIST ITEMS */

        .info-box ul li {
            margin-bottom: 10px;
            color: #ddd;
            font-size: 14px;
            transition: 0.3s;
        }


            /* LIST HOVER EFFECT */

            .info-box ul li:hover {
                color: #fff;
                transform: translateX(5px);
            }


    /* LINKS STYLE */

    .info-box a {
        color: #ffcc00;
        text-decoration: none;
    }


/* RESPONSIVE */

@media (max-width: 992px) {

    .info-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .info-container {
        grid-template-columns: 1fr;
    }
}

.notice-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.notice-card {
    width: 360px;
    border-radius: 22px;
    padding: 25px;
    position: relative;
    background: linear-gradient( 135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02) );
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 8px 30px rgba(0,0,0,0.3);
    color: white;
    overflow: hidden;
}

    .notice-card::before {
        content: "";
        position: absolute;
        top: -40%;
        left: -20%;
        width: 250px;
        height: 250px;
        background: radial-gradient( circle, rgba(255,255,255,0.25), transparent 70% );
        pointer-events: none;
    }

    .notice-card:hover {
        transform: translateY(-8px);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 20px 60px rgba(0,0,0,0.5);
        transition: 0.4s ease;
    }

.notice-title {
    color: #ffd60a;
    border: none;
    background: transparent;
}

.notice-title {
    text-align: left;
    padding: 12px;
    border-radius: 12px;
    border: 2px dashed;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Noto Sans Devanagari', sans-serif;
    position: relative; /* IMPORTANT */
}


/* Bell icon animation */
.notice-title-notice::after {
    content: "🔔";
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    transform-origin: top center; /* IMPORTANT */
    animation: bellRing 1.2s infinite;
}


/* Bell shaking animation */

@keyframes bellRing {

    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(18deg);
    }

    40% {
        transform: rotate(-15deg);
    }

    60% {
        transform: rotate(12deg);
    }

    80% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.green-title {
    border-color: #045983;
    color: #076a9b;
    background: #eaffea;
}

.orange-title {
    border-color: #ff6a3d;
    color: #7c2d12;
    background: #fff0ea;
}

.yellow-title {
    border-color: #f59e0b;
    color: #92400e;
    background: #fff8e6;
}

.notice-item {
    margin-bottom: 22px;
    font-size: 17px;
    color: #14532d;
    line-height: 1.6;
    font-family: 'Noto Sans Devanagari',sans-serif;
}

.notice-date {
    font-size: 14px;
    display: block;
    color: #444;
    margin-bottom: 6px;
}

.award-list {
    list-style: none;
    padding-left: 0;
}

    .award-list li {
        padding: 6px 0;
        font-size: 18px;
        color: #dc2626;
        font-family: 'Noto Sans Devanagari',sans-serif;
    }

        .award-list li:before {
            content: "- ";
        }

#noticeBox {
    height: 480px;
    overflow: hidden; /* scrollbar remove */

    position: relative;
}

    #noticeBox a {
        text-decoration: none;
    }

#UniversitynoticeBox {
    height: 480px;
    overflow: hidden;
    position: relative;
}

    #UniversitynoticeBox a {
        text-decoration: none;
    }


.notice-footer-btn {
    display: block;
    width: 94%;
    text-align: center;
    padding: 12px;
    background: linear-gradient(45deg, #4db1e2, #3e0808);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: .3s;
    box-shadow: 0px 6px 12px rgba(0,0,0,.15);
}

    .notice-footer-btn:hover {
        background: linear-gradient(45deg,#15803d,#16a34a);
        transform: translateY(-2px);
    }

.notice-item {
    margin-bottom: 18px;
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    background: #b9e5fb;
}


    /* left highlight bar animation */

    .notice-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: #22c55e;
        transform: scaleY(0);
        transition: transform .3s ease;
    }


    /* hover effect */

    .notice-item:hover {
        background: #ecfdf5;
        transform: translateX(6px);
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }


        /* left bar visible on hover */

        .notice-item:hover::before {
            transform: scaleY(1);
        }


        /* icon animation */

        .notice-item:hover i {
            transform: scale(1.2);
            color: #16a34a;
        }

#noticeBox a:hover {
    text-decoration: none;
}
/* end Notification  */

/* start Gallery */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* end Gallery  */

/* start Principal */


/* end Principal  */

/* start Principal */


/* end Principal  */

/* start Principal */


/* end Principal  */

/* start Principal */


/* end Principal  */

/* start Principal */


/* end Principal  */

/* start Principal */


/* end Principal  */

/* start Principal */


/* end Principal  */

/* start Principal */


/* end Principal  */
