﻿/*-----------------------
    Sidebar Styles
-------------------------*/
.notice-board {
    margin-top: 2rem;
}

    .notice-board .section-title {
        font-size: 1.25rem;
        font-weight: 600;
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.5rem;
    }

    .notice-board .title-border {
        height: 2px;
        background: linear-gradient(90deg, #2563eb 0%, rgba(37, 99, 235, 0.1) 100%);
        border-radius: 2px;
        position: relative;
    }

    .notice-board .animate-dot {
        position: absolute;
        width: 4px;
        height: 4px;
        background: #2563eb;
        border-radius: 50%;
        top: -1px;
        animation: dotMove 2s linear infinite;
    }

.notice-container {
    margin-top: 1rem;
    height: 200px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.notice-scroll {
    animation: noticeScroll 20s linear infinite;
    padding: 1rem;
}

    .notice-scroll:hover {
        animation-play-state: paused;
    }

.notice-item {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

    .notice-item:hover {
        background: rgba(37, 99, 235, 0.05);
        transform: translateX(5px);
    }

.notice-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.notice-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.notice-meta {
    font-size: 0.875rem;
    color: #64748b;
}

    .notice-meta i {
        margin-right: 0.5rem;
    }

/*-----------------------
    News Events Styles
-------------------------*/
.news-events .section-header {
    margin-bottom: 1.5rem;
    position: relative;
}

.news-events .section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.news-events .title-border {
    height: 2px;
    background: linear-gradient(90deg, #2563eb 0%, rgba(37, 99, 235, 0.1) 100%);
    border-radius: 2px;
    margin-top: 0;
}

.news-ticker-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.news-ticker {
    position: relative;
    animation: tickerScroll 20s linear infinite;
    padding: 1rem;
}

    .news-ticker:hover {
        animation-play-state: paused;
    }

.ticker-item {
    padding: 0.75rem;
    transition: all 0.3s ease;
}

    .ticker-item:hover {
        background: rgba(37, 99, 235, 0.05);
        transform: translateX(5px);
    }

.ticker-link {
    text-decoration: none;
    color: inherit;
}

.ticker-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ticker-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

    .ticker-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.ticker-info {
    flex-grow: 1;
}

.ticker-date {
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.date-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

.ticker-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.view-all-container {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.view-all-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

    .view-all-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 8px -1px rgba(37, 99, 235, 0.3);
        color: white;
        background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    }

    .view-all-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 4px -1px rgba(37, 99, 235, 0.2);
    }

    .view-all-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: 0.5s;
    }

    .view-all-btn:hover::before {
        left: 100%;
    }

@keyframes dotMove {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

@keyframes noticeScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes tickerScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.messages-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.02) 100%);
    position: relative;
    overflow: hidden;
    margin-top: -2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.messages-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    background-attachment: fixed;
}

/* Message Card Styles */
.message-card {
    margin-bottom: 2.5rem;
    position: relative;
    transition: all 0.3s ease-in-out;
}

    .message-card:hover {
        transform: translateY(-5px);
    }

.card-inner {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(37, 99, 235, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .card-inner:hover {
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
        border-color: rgba(37, 99, 235, 0.2);
    }

/* Message Image Styles */
.message-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.image-wrapper {
    position: relative;
    padding: 1rem;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

    .image-container img {
        width: 100%;
        height: auto;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        filter: brightness(1.02) contrast(1.02);
    }

    .image-container:hover img {
        transform: scale(1.05);
    }

/* Message Content Styles */
.message-content {
    padding-left: 1rem;
}

.message-header {
    margin-bottom: 1.5rem;
}

.message-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.message-role {
    display: inline-block;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 100px;
}

.message-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 1rem;
}

    .message-contact i {
        color: #2563eb;
        font-size: 1.1rem;
    }

.message-body {
    color: #475569;
    line-height: 1.9;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Sidebar Styles */
.sidebar-area {
    position: sticky;
    top: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(37, 99, 235, 0.08);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.sidebar-area .title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cate-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cate-box li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
    transition: all 0.3s ease;
}

.cate-box li:last-child {
    border-bottom: none;
}

.cate-box li:hover {
    transform: translateX(5px);
}

.cate-box a {
    color: #475569;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cate-box span {
    color: #64748b;
    font-size: 0.875rem;
}

.post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

.post-item:last-child {
    border-bottom: none;
}

.post-img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-img:hover img {
    transform: scale(1.1);
}

.post-desc {
    flex-grow: 1;
}

.post-desc h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.post-desc a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-desc a:hover {
    color: #2563eb;
}

.duration {
    color: #64748b;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .event-title {
        font-size: 1.75rem;
    }
    
    .event-meta {
        gap: 1rem;
    }
    
    .sidebar-area {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .rs-event-details {
        padding: 60px 0;
    }
    
    .event-details-content {
        padding: 1.5rem;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
    
    .event-desc {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .event-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .event-details-content {
        padding: 1rem;
    }
}

/*-----------------------
    Message Section Styles
-------------------------*/
.rs-team-single {
    padding: 1px 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.sec-spacer {
    position: relative;
}

.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%232563eb" opacity="0.1"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

/* Title Styles */
.section-title {
    margin-bottom: 50px;
}

.title-badge {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    color: #2563eb;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.gradient-text {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.title-shape {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}

.title-shape:before,
.title-shape:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 4px;
    background: #2563eb;
    border-radius: 2px;
}

.title-shape:before {
    left: -20px;
}

.title-shape:after {
    right: -20px;
}

/* Message Card Styles */
.message-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    border-color: #2563eb;
}

.message-inner {
    position: relative;
    z-index: 1;
}

/* Photo Styles */
.photo-wrapper {
    position: relative;
    padding: 15px;
}

.photo-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    transform: perspective(1000px) rotateY(0deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.message-card:hover .photo-container {
    transform: perspective(1000px) rotateY(5deg);
}

.photo-container img {
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.message-card:hover .photo-container img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    opacity: 0.1;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: -30px;
    animation: float 4s ease-in-out infinite;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: -20px;
    animation: float 4s ease-in-out infinite 1s;
}

.shape-3 {
    width: 30px;
    height: 30px;
    bottom: 20%;
    left: 50%;
    animation: float 4s ease-in-out infinite 2s;
}

/* Message Content Styles */
.message-content {
    padding-left: 30px;
}

.message-header {
    margin-bottom: 20px;
}

.message-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.designation-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message-role {
    font-size: 18px;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.message-role i {
    color: #2563eb;
    font-size: 1.2rem;
}

.message-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 50px;
    color: #2563eb;
    font-size: 14px;
    transition: all 0.3s ease;
}

.message-contact:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.message-body {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    padding: 20px 0 0 30px;
    border-left: 3px solid rgba(37, 99, 235, 0.2);
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -15px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .rs-team-single {
        padding: 80px 0;
    }

    .gradient-text {
        font-size: 2rem;
    }

    .message-card {
        padding: 30px;
    }

    .message-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .sidebar-area {
        margin-top: 40px;
        position: static;
    }
}

@media (max-width: 767px) {
    .rs-team-single {
        padding: 60px 0;
    }

    .gradient-text {
        font-size: 1.8rem;
    }

    .title-badge {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }

    .message-card {
        padding: 20px;
    }

    .message-title {
        font-size: 24px;
    }

    .message-role {
        font-size: 16px;
    }

    .message-body {
        font-size: 15px;
        padding-left: 20px;
    }

    .photo-wrapper {
        padding: 10px;
    }

    .experience-badge {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }

    .shape-1 { width: 40px; height: 40px; }
    .shape-2 { width: 30px; height: 30px; }
    .shape-3 { width: 20px; height: 20px; }
}

/* Section Title Styles */
.section-title {
    position: relative;
    margin: 1rem 0rem 3rem 0;
    text-align: center;
}

.title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-badge {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    color: #2563eb;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.title-wrapper:hover .title-badge {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(30, 64, 175, 0.15) 100%);
}

.gradient-text {
    font-size: 3rem;
    font-weight: 800;
   background: linear-gradient(134deg, #1a4091 0%, #a700c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.title-wrapper:hover .gradient-text {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*-----------------------
    Event Details Styles
-------------------------*/
.event-detail-card {
    padding: 40px;
}

.event-header {
    margin-bottom: 30px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

.meta-item i {
    color: #2563eb;
    font-size: 1.2rem;
}

.event-image-wrapper {
    margin: 30px 0;
}

/* Sidebar Widget Styles */
.sidebar-widget {
    background: #fff;
    border-radius: 20px;
    padding: .6rem;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.widget-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
    position: relative;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.widget-content {
    position: relative;
}

/* Recent Posts Styles */
.recent-post,
.achievement-post {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.recent-post:last-child,
.achievement-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post:hover,
.achievement-post:hover {
    transform: translateX(10px);
}

.post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post:hover .post-thumb img,
.achievement-post:hover .post-thumb img {
    transform: scale(1.1);
}

.post-info {
    flex-grow: 1;
}

.post-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.post-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #2563eb;
}

.post-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.875rem;
}

.post-date i {
    color: #2563eb;
}

/* Notification List Styles */
.notification-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification-item {
    margin-bottom: 15px;
}

.notification-item:last-child {
    margin-bottom: 0;
}

.notification-link {
    display: block;
    padding: 15px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.notification-link:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(10px);
}

.notification-text {
    display: block;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 5px;
    font-size:.8rem;
}

.notification-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.875rem;
}

.notification-date i {
    color: #2563eb;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .event-meta {
        flex-direction: column;
        gap: 15px;
    }

    .event-detail-card {
        padding: 25px;
    }

    .sidebar-widget {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .event-header {
        margin-bottom: 20px;
    }

    .event-meta {
        padding: 15px;
    }

    .meta-item {
        font-size: 0.9rem;
    }

    .post-thumb {
        width: 60px;
        height: 60px;
    }

    .post-title {
        font-size: 0.9rem;
    }
}

/* Enhanced Event Details Styles */
.event-category {
    margin-bottom: 1rem;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 100px;
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-badge i {
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

/* Image Overlay Effect */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay.active {
    opacity: 1;
}

.overlay-content {
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.image-overlay.active .overlay-content {
    transform: scale(1);
}

.overlay-content i {
    color: #fff;
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Share Buttons */
.event-share {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-label {
    color: #64748b;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-button.facebook {
    background: #1877f2;
}

.share-button.twitter {
    background: #1da1f2;
}

.share-button.linkedin {
    background: #0a66c2;
}

.share-button.whatsapp {
    background: #25d366;
}

.share-button.hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Quick Info Widget */
.quick-info .widget-content {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-radius: 15px;
    padding: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}



.info-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-content {
    flex-grow: 1;
}

.info-content label {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.info-content span {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Enhanced Notification List */
.notification-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.notification-link:hover .notification-icon {
    background: #2563eb;
    color: #fff;
    transform: rotate(15deg);
}

.notification-content {
    flex-grow: 1;
}

/* Enhanced Post Thumbnails */
.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.post-thumb:hover .thumb-overlay {
    opacity: 1;
}

/* Achievement Posts */
.achievement-widget .post-thumb {
    position: relative;
    overflow: hidden;
}

.achievement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(30, 64, 175, 0.2) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-post:hover .achievement-overlay {
    opacity: 1;
}

.achievement-icon {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
}

.achievement-post:hover .achievement-icon {
    transform: translateY(0);
    opacity: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Notification File Styles */
.notification-file-wrapper {
    margin: 2rem 0;
}

.file-container {
    background: rgba(37, 99, 235, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.file-container:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-5px);
}

.file-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
}

.file-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.file-icon i {
    font-size: 2rem;
    color: #dc2626;
    transition: all 0.3s ease;
}

.file-container:hover .file-icon i {
    transform: scale(1.1);
}

.file-info {
    display: flex;
    flex-direction: column;
}

.file-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.file-action {
    font-size: 0.9rem;
    color: #2563eb;
}

/* Search Box Styles */
.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-box .input-group {
    background: #fff;
    border-radius: 100px;
    padding: 0.5rem;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.search-box .input-group:focus-within {
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.search-box .form-control {
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background: transparent;
    color: #1e293b;
}

.search-box .form-control::placeholder {
    color: #94a3b8;
}

.search-box .form-control:focus {
    box-shadow: none;
}

.search-box .btn {
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}

.search-box .btn:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.search-box .btn i {
    font-size: 1rem;
}

.search-status {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 0.9rem;
    z-index: 10;
}

.search-status .spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* No Results State */
.no-results {
    text-align: center;
    padding: 3rem 0;
}

.no-results i {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.no-results h4 {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: #94a3b8;
    font-size: 0.9rem;
}
