
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
:root {
    --primary: #193b68;
    --secondary: #ff6b35;
    --accent: #3caea3;
    --light: #f7f9fc;
    --dark: #2d3748;
    --light-gray: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --card-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

body {
    font-family: 'Poppins', 'Noto Sans', Arial, sans-serif;
    background-color: var(--light);
    color: var(--dark);
}

/* Header Styles */
.header-bg {
    background-image: url(../Images/bg.png);
     color: white;
    padding: 20px 0;
    box-shadow: var(--shadow);
}

.ashoka-emblem, .logo {
    width: 90px;
    height: auto;
}

/* Navigation Tabs */
.nav-tabs-custom {
    background-color: var(--white);
    border-bottom: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 12px 18px;
    border-bottom: 3px solid transparent;
}

.nav-link.active {
    background-color: rgba(25, 59, 104, 0.05);
    color: var(--primary);
    font-weight: 600;
    border-bottom: 3px solid var(--secondary);
}

/* Content Boxes */
.content-box {

border: none;
border-radius: 8px;
margin: 12px 0;
background-color: var(--white);
box-shadow: var(--card-shadow);
overflow: hidden;
max-width:  80%; 
font-size: 0.95rem;  
margin-left: 50px;

}


.content-header {
    background: linear-gradient(90deg, var(--primary) 0%, #215a9a 100%);
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.content-body {
    padding: 15px;
}

.menu-item {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item i {
    margin-right: 10px;
    color: var(--primary);
}

.notice-box {
background-color: #fff;
border-radius: 12px;
padding: 25px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
margin-bottom: 30px;
font-family: 'Segoe UI', sans-serif;
transition: all 0.3s ease;
max-height: 450px;
overflow-x: auto;
}

.notice-title {
font-weight: 700;
font-size: 1.4rem;
color: #2c3e50;
border-bottom: 2px solid #e0e0e0;
padding-bottom: 12px;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 10px;
}

.notice-list {
list-style: none;
padding: 0;
margin: 0;
}

.notice-item {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 0;
border-bottom: 1px dashed #ccc;
transition: background 0.2s ease;
}



.notice-item .icon {
color: #007b5e;
font-size: 1.2rem;
}

.notice-item a {
color: #006621;
text-decoration: none;
font-weight: 500;
flex-grow: 1;
}


.badge-new {
background-color: #ff4c4c;
color: white;
font-size: 0.75rem;
font-weight: 600;
padding: 4px 8px;
border-radius: 12px;
white-space: nowrap;
animation: pulse 1.2s infinite;
}

@keyframes pulse {
0% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.1); opacity: 0.7; }
100% { transform: scale(1); opacity: 1; }
}


/* Announcement Banner */
.announcement-banner {
    background-color: #fff9e6;
    border-left: 4px solid #ffab00;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 171, 0, 0.1);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.red-marker {
    color: #e53935;
    font-weight: 600;
}

/* Badge for New Items */
.badge-new {
    background-color: var(--secondary);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: 8px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #193b68 0%, #0e4c8a 100%);
    color: white;
    padding: 15px 0;
    margin-top: 30px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-item {
    margin: 0 15px;
    display: flex;
    align-items: center;
}

.footer-icon {
    margin-right: 8px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo, .ashoka-emblem {
        margin-bottom: 10px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-item {
        margin: 5px 0;
    }
}

@media (max-width: 768px) {
    .nav-link {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .nav-tabs-custom .nav {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}


