


/*==============================================================================
    University Notifications & College Notifications  in index page 
================================================================================*/

.nb-header {
    background: #800020; /* Maroon Color */
    color: #fff;
    padding: 12px 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Alignment Fix */
    display: flex;
    justify-content: space-between; /* Isse title left aur Read More right ho jayega */
    align-items: center;
}

.header-readmore {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.2); /* Light glass effect */
    padding: 4px 10px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: capitalize; /* Sirf "Read More" dikhega */
}

    .header-readmore:hover {
        background: #fff;
        color: #800020;
    }

.nb-main {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.nb-header {
    background: #800020; /* Maroon Color */
    color: #fff;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nb-scroll {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.nb-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    margin: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .nb-item:hover {
        background: #fff5f7;
        border-color: #800020;
        transform: scale(1.02);
    }

.nb-date {
    min-width: 60px;
    height: 60px;
    background: #ad0521;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
}

    .nb-date small {
        font-size: 10px;
        opacity: 0.9;
    }

.nb-text {
    font-weight: 600;
    font-size: 14px;
    color: #444;
}

/* Mobile View adjustments */
@media (max-width: 768px) {
    .nb-scroll {
        height: 250px;
    }

    .nb-text {
        font-size: 13px;
    }
}


/*==============================================================================
    Statisct start in index page 
================================================================================*/





/* outer section */
.glass-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    padding: 40px;
    margin: 30px 0 10px 0;
    background: linear-gradient(135deg, #8d1717, #382727);
}

/* glass card */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.35s ease;
}

    .glass-card:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,0.12);
    }

    /* text */
    .glass-card h2 {
        font-size: 34px;
        margin: 15px 0 5px;
        font-weight: 700;
        color: #fff;
    }

    .glass-card p {
        font-size: 14px;
        opacity: 0.85;
        color: #fff;
    }

/* icons */
.icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 22px;
    color: #fff;
}

.blue {
    background: #1e88e5;
}

.green {
    background: #43a047;
}

.orange {
    background: #fb8c00;
}

.purple {
    background: #8e24aa;
}

/* mobile responsive */
@media(max-width:576px) {
    .glass-wrapper {
        padding: 20px;
        gap: 18px;
    }

    .glass-card h2 {
        font-size: 28px;
    }
}



/*==============================================================================
   College Events Start In index page
================================================================================*/


/* Section */
.event-section {
    padding: 20px 10px;
    text-align: center;
}

/* Heading */
.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #7b112c; /* maroon */
    margin-bottom: 8px;
    position: relative;
    text-align: center;
}

    /* underline */
    .section-title::after {
        content: "";
        width: 70px;
        height: 4px;
        background: #7b112c;
        display: block;
        margin: 10px auto 0;
        border-radius: 10px;
    }

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 10px;
}

/* Cards container */
.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Card */
.card {
    width: 320px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border-top: 5px solid #7b112c; /* maroon highlight */
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(123, 17, 44, 0.35);
    }

.events-Titel {
    font-size: 15px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4em;
    min-height: 2.8em;
}
/* Image */
.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Content */
.card-content {
    padding: 20px;
}

    .card-content h3 {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: #340a04; /* maroon */
        line-height: 1.4;
        letter-spacing: 0.3px;
    }

/* Date badge style */
.date {
    margin-top: 12px;
    display: inline-block;
    background: #7b112c;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 768px) {

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .card-container {
        gap: 15px;
    }

    .card {
        width: 100%;
        max-width: 360px;
        margin: auto;
    }

        .card img {
            height: 180px;
        }

    .events-Titel {
        font-size: 14px;
        min-height: 2.6em;
    }

    .date {
        font-size: 12px;
        padding: 5px 12px;
    }
}



/*==============================================================================
  Principal & Director  Start In ------ page
================================================================================*/


:root {
    --maroon: #800000;
}

.principal-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #fff;
}

.principal-details {
    padding: 15px;
    background-color: #f8f9fa;
    border-top: 3px solid var(--maroon);
    text-align: center;
}

    .principal-details h5 {
        color: #333;
        font-weight: 700;
        margin: 0;
        font-size: 1.1rem;
    }

    .principal-details p {
        color: var(--maroon);
        margin: 0;
        font-size: 0.9rem;
        font-weight: 600;
    }

.desk-title {
    color: var(--maroon);
    font-weight: 800;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

    .desk-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 4px;
        background-color: var(--maroon);
    }

.btn-maroon {
    background-color: var(--maroon);
    color: white !important;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

    .btn-maroon:hover {
        background-color: #5d0000;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

.message-box {
    font-size: 1.05rem;
    color: #382727;
    line-height: 1.8;
    text-align: justify;
}




/*==============================================================================
  Start In ----- page
================================================================================*/








/*==============================================================================
   Start In ------ page
================================================================================*/










/*==============================================================================
   Start In ------ page
================================================================================*/
