.slidevideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Header Styles */
.dashboard-header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-title {
font-size: 1.8rem;
font-weight: 700;
color: #2c3e50;
margin: 0;
}

.header-actions .btn {
border-radius: 12px;
padding: 10px 20px;
font-weight: 500;
transition: all 0.3s ease;
}

.header-actions .btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Stats Cards */
.stat-card {
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
padding: 30px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
font-family:'Nunito Sans', sans-serif;
}

.stat-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background:#07583c;
}

.stat-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: white;
position: relative;
overflow: hidden;
}

.stat-icon::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: inherit;
filter: blur(10px);
opacity: 0.3;
}

.stat-icon i {
position: relative;
z-index: 1;
}

.stat-icon.students {
background:#07583c;
}

.stat-icon.alumni {
background:#07583c;
}

.stat-icon.faculty {
background:#07583c;
}

.stat-icon.years {
background: #07583c;
}

.stat-content h3 {
font-size: 16px;
font-weight: 400;
color: #2c3e50;
margin-bottom: 5px;
}

.stat-content p {
font-size: 16px;
color: #32434c;
font-weight: 400;
margin: 0;
}

/* Dashboard Cards */
.dashboard-card {
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
overflow: hidden;
transition: all 0.3s ease;
}

.dashboard-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dashboard-card .card-header {
background:#07583c;
padding: 20px 30px;
border: none;
}

.dashboard-card .card-header h2 {
color: white;
font-size: 16px;
font-weight: 600;
margin: 0;

}

.dashboard-card .card-body {
padding: 0;
height: 400px;
overflow: hidden;
}

/* Scroll Container */
.scroll-container {
height: 100%;
overflow-y: auto;
padding: 20px 30px;
scroll-behavior: smooth;
}

.scroll-container::-webkit-scrollbar {
width: 6px;
}

.scroll-container::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb {
background: #07583c;
border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
background: #07583c;
}

/* Notification Items */
.notification-item {
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
border-radius: 15px;
padding: 20px;
margin-bottom: 15px;
border-left: 4px solid #07583c;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.notification-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
z-index: -1;
}

.notification-item:hover {
transform: translateX(10px);
box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
border-left-color: #764ba2;
}

.notification-date {
display: flex;
align-items: center;
font-size: 0.85rem;
color: #07583c;
font-weight: 600;
margin-bottom: 10px;
}

.notification-date i {
margin-right: 8px;
}

.notification-content h4 {
font-size: 1.1rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 8px;
line-height: 1.4;
}

.notification-content p {
font-size: 0.9rem;
color: #7f8c8d;
margin: 0;
line-height: 1.5;
}

/* Announcement Items */
.announcement-item {
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
border-radius: 15px;
padding: 20px;
margin-bottom: 15px;
border-left: 4px solid #07583c;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.announcement-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(245, 87, 108, 0.05), rgba(240, 147, 251, 0.05));
z-index: -1;
}

.announcement-item:hover {
transform: translateX(10px);
box-shadow: 0 5px 20px rgba(245, 87, 108, 0.2);
border-left-color: #f093fb;
}

.announcement-item.featured {
border-left-color: #ffd700;
background: linear-gradient(135deg, #fffbf0, #fff8e1);
}

.announcement-item.featured::before {
background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 193, 7, 0.05));
}

.announcement-badge {
display: inline-flex;
align-items: center;
background: linear-gradient(135deg, #ffd700, #ffb300);
color: white;
font-size: 0.75rem;
font-weight: 600;
padding: 4px 12px;
border-radius: 20px;
margin-bottom: 10px;
}

.announcement-badge i {
margin-right: 5px;
font-size: 0.7rem;
}

.announcement-date {
display: flex;
align-items: center;
font-size: 0.85rem;
color: #07583c;
font-weight: 600;
margin-bottom: 10px;
}

.announcement-date i {
margin-right: 8px;
}

.announcement-content h4 {
font-size: 1.1rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 8px;
line-height: 1.4;
}

.announcement-content p {
font-size: 0.9rem;
color: #7f8c8d;
margin: 0;
line-height: 1.5;
}

/* Social Links */
.social-links {
position: fixed;
right: 30px;
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
gap: 15px;
z-index: 1000;
}

.social-link {
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: white;
font-size: 1.2rem;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
transform: scale(1.1);
color: white;
}

.social-link.facebook {
background: linear-gradient(135deg, #3b5998, #8b9dc3);
}

.social-link.youtube {
background: linear-gradient(135deg, #ff0000, #ff6b6b);
}

.social-link.instagram {
background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

/* Contact Buttons */
.contact-buttons {
position: fixed;
bottom: 30px;
right: 30px;
display: flex;
flex-direction: column;
gap: 15px;
z-index: 1000;
}

.contact-btn {
width: 60px;
height: 60px;
border-radius: 50%;
border: none;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: white;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
cursor: pointer;
}

.contact-btn:hover {
transform: scale(1.1);
}

.call-btn {
background: linear-gradient(135deg, #667eea, #764ba2);
}

.whatsapp-btn {
background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Auto Scroll Animation */
@keyframes scroll-up {
0% {
    transform: translateY(0);
}
100% {
    transform: translateY(-100%);
}
}

.auto-scroll {
animation: scroll-up 20s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
.dashboard-title {
    font-size: 1.4rem;
}

.stat-card {
    padding: 20px;
}

.stat-icon {
    width: 30px;
    height: 30px;
   
}

.stat-content h3 {
    font-size: 14px;
}

.dashboard-card .card-body {
    height: 300px;
}

.social-links {
    display: none;
}

.contact-buttons {
    flex-direction: row;
    bottom: 20px;
    right: 20px;
}

.contact-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.message-card .card-body {
    padding: 20px !important;
}

.profile-section {
    /* flex-direction: column; */
    text-align: center;
    padding-bottom: 0px !important;
}

.profile-image {
    margin-right: 0;
    margin-bottom: 20px;
}

.profile-img1 {
    width: 100px;
    height: 100px;
}

.contact-info {
    /* flex-direction: column; */
    gap: 10px;
    padding-top: 0px;
}

}

@media (max-width: 576px) {
.dashboard-card .card-header {
    padding: 15px 20px;
}

.dashboard-card .card-header h2 {
    font-size: 14px;
}

.scroll-container {
    padding: 15px 20px;
}

.notification-item,
.announcement-item {
    padding: 15px;
}
.message-card .card-header {
    padding: 15px 20px;
}
.message-card .card-header h2 {
    font-size: 14px;
}
.profile-img1 {
    width: 80px;
    height: 80px;
}

.profile-info h3 {
    font-size: 18px;
}

.message-content h4 {
    font-size: 16px;
}
.message-content p {
    font-size: 14px !important;
}
.contact-new{
    margin-bottom: 5px !important;
}



}

/* Loading Animation */
@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.dashboard-card {
animation: fadeInUp 0.6s ease-out;
}

.stat-card {
animation: fadeInUp 0.6s ease-out;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Message Cards */
.message-card {
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
overflow: hidden;
transition: all 0.3s ease;
margin-bottom: 30px;
}
.message-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.message-card .card-header {
background:#07583c;
padding: 20px 30px;
border: none;
}
.message-card .card-header.director-header {
background: #07583c;
}
.message-card .card-header h2 {
color: white;
font-size: 16px;
font-weight: 600;
margin: 0;

}
.message-card .card-body {
padding: 30px;
}

/* Profile Section */
.profile-section {
display: flex;
align-items: center;
margin-bottom: 30px;
padding-bottom: 25px;
border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.director-card .profile-section {
border-bottom-color: rgba(245, 87, 108, 0.1);
}

.profile-image {
margin-right: 25px;
}

.profile-img1 {
width: 120px ;
height: 120px;
border-radius: 5%;
object-fit: cover;
border: 4px solid #07583c;
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
transition: all 0.3s ease;
}

.director-card .profile-img1 {
border-color:#07583c;
box-shadow: 0 8px 25px rgba(245, 87, 108, 0.3);
}

.profile-img1:hover {
transform: scale(1.05);
}

.profile-info h3 {
font-size: 14px;
font-weight: 600;
color: #2c3e50;
margin-bottom: 8px;
}

.profile-info .title {
font-size: 14px;
color:#07583c;
font-weight: 600;
margin-bottom: 5px;
}

.director-card .profile-info .title {
color: #f5576c;
}

.profile-info .credentials {
font-size: 14px;
color: #7f8c8d;
font-style: italic;
margin: 0;
}

/* Message Content */
.message-content .message-date {
display: flex;
align-items: center;
font-size: 0.9rem;
color: #667eea;
font-weight: 600;
margin-bottom: 20px;
}

.director-card .message-date {
color: #f5576c;
}

.message-date i {
margin-right: 8px;
}

.message-content h4 {
font-size: 14px;
color: #2c3e50;
margin-bottom: 20px;
line-height: 1.4;
}

.message-content p {
font-size: 15px;
color: #32434c;
margin-bottom: 15px;

text-align: justify;
}

/* Contact Info */
.contact-info {
margin-top: 25px;
padding-top: 20px;
border-top: 2px solid rgba(102, 126, 234, 0.1);
display: flex;
flex-wrap: wrap;
gap: 20px;
}

.director-card .contact-info {
border-top-color: rgba(245, 87, 108, 0.1);
}

.contact-item {
display: flex;
align-items: center;
font-size: 0.9rem;
color: #2c3e50;
}

.contact-item i {
margin-right: 10px;
color:#07583c ;
width: 16px;
}

.director-card .contact-item i {
color: #f5576c;
}
@media screen and (max-width: 576px) {
    
    .marquee-inner {
        padding: 0vh 0 !important;
    
    }
    .mainhead{
        font-size: 14px !important;
    }
    .image_text{
        font-size: 13px !important;
    }
    .testicard .testuser h5{
        font-size: 12px !important;
    }
    
}
.mainhead{
    font-size: 18px;
}