    /* News & Events Page Styles */
    .news-events-wrapper {
        padding: 60px 0;
    }

    .events-style1__content {
        position: relative;
    }

    .events-style1__content-lists {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .events-style1__content-list-item {
        margin-bottom: 25px;
        transition: all 0.3s ease;
    }

    .single-events-box {
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
        padding: 15px;
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .single-events-box:hover {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        transform: translateY(-3px);
        border-color: #1a2a6c;
    }

    .single-events-box__text {
        display: flex;
        gap: 20px;
        width: 100%;
        align-items: flex-start;
    }

    .date-box {
        flex-shrink: 0;
        position: relative;
    }

    .date-box .img-box {
        width: 120px;
        height: 120px;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

    .date-box .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .single-events-box:hover .img-box img {
        transform: scale(1.05);
    }

    .date-box .date-overlay {
        position: absolute;
        bottom: 8px;
        left: 8px;
        background: rgba(26, 42, 108, 0.9);
        color: #fff;
        padding: 4px 12px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
    }

    .title-box {
        flex: 1;
        padding-top: 5px;
    }

    .title-box h6 {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.6;
        margin-bottom: 10px;
        color: #1a2a6c;
    }

    .title-box h6 a {
        color: #1a2a6c;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .title-box h6 a:hover {
        color: #b21f1f;
    }

    .meta-box {
        margin-top: 8px;
    }

    .meta-info {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .meta-info li {
        font-size: 13px;
        color: #6c757d;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .meta-info li .icon-time,
    .meta-info li .icon-pin {
        font-size: 14px;
        color: #b21f1f;
    }

    .meta-info li .icon-pin {
        color: #1a2a6c;
    }

    /* Gallery Session Dropdown */
    .gallery-session {
        margin-bottom: 30px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .gallery-session-label {
        font-weight: 600;
        color: #1a2a6c;
        font-size: 14px;
        margin: 0;
    }

    .gallery-session-dropdown {
        padding: 10px 35px 10px 18px;
        border: 2px solid #e0e0e0;
        border-radius: 30px;
        background: #fff;
        font-size: 14px;
        font-weight: 500;
        color: #333;
        cursor: pointer;
        transition: all 0.3s ease;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a2a6c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        min-width: 180px;
    }

    .gallery-session-dropdown:focus {
        outline: none;
        border-color: #1a2a6c;
        box-shadow: 0 0 0 3px rgba(26, 42, 108, 0.1);
    }

    .gallery-session-dropdown:hover {
        border-color: #1a2a6c;
    }

    /* News & Events Stats */
    .news-stats {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        margin-bottom: 30px;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 12px;
    }

    .news-stats-item {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .news-stats-item .stat-icon {
        width: 45px;
        height: 45px;
        background: #1a2a6c;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
    }

    .news-stats-item .stat-content {
        display: flex;
        flex-direction: column;
    }

    .news-stats-item .stat-number {
        font-size: 22px;
        font-weight: 700;
        color: #1a2a6c;
        line-height: 1;
    }

    .news-stats-item .stat-label {
        font-size: 13px;
        color: #6c757d;
    }

    /* Pagination Styles */
    .news-pagination {
        margin-top: 40px;
        display: flex;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .news-pagination .page-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        color: #1a2a6c;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        background: #fff;
    }

    .news-pagination .page-link:hover {
        background: #1a2a6c;
        color: #fff;
        border-color: #1a2a6c;
    }

    .news-pagination .page-link.active {
        background: #1a2a6c;
        color: #fff;
        border-color: #1a2a6c;
    }

    .news-pagination .page-link.prev-next {
        width: auto;
        padding: 0 20px;
    }

    /* Empty State */
    .news-empty {
        text-align: center;
        padding: 60px 20px;
        background: #f8f9fa;
        border-radius: 12px;
    }

    .news-empty i {
        font-size: 50px;
        color: #dee2e6;
        margin-bottom: 20px;
    }

    .news-empty h4 {
        color: #1a2a6c;
        margin-bottom: 10px;
    }

    .news-empty p {
        color: #6c757d;
    }

    .loading-spinner {
        text-align: center;
        padding: 40px;
    }

    .loading-spinner i {
        font-size: 40px;
        color: #1a2a6c;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .single-events-box__text {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .date-box .img-box {
            width: 100%;
            height: 200px;
            max-width: 300px;
        }

        .title-box h6 {
            font-size: 15px;
        }

        .meta-info {
            justify-content: center;
        }

        .gallery-session {
            justify-content: center;
        }

        .news-stats {
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .single-events-box {
            padding: 12px;
        }

        .date-box .img-box {
            height: 160px;
        }

        .meta-info li {
            font-size: 12px;
        }
    }

    /* Animation */
    .single-events-box {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .single-events-box:nth-child(1) {
        animation-delay: 0.1s;
    }

    .single-events-box:nth-child(2) {
        animation-delay: 0.2s;
    }

    .single-events-box:nth-child(3) {
        animation-delay: 0.3s;
    }

    .single-events-box:nth-child(4) {
        animation-delay: 0.4s;
    }

    .single-events-box:nth-child(5) {
        animation-delay: 0.5s;
    }

    .single-events-box:nth-child(6) {
        animation-delay: 0.6s;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.news-detail-wrapper {
        padding: 60px 0;
    }

    .news-detail-header {
        margin-bottom: 40px;
    }

    .news-detail-header h1 {
        color: #1a2a6c;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .news-detail-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        color: #6c757d;
        font-size: 14px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 30px;
    }

    .news-detail-meta i {
        margin-right: 5px;
        color: #1a2a6c;
    }

    .news-detail-image {
        margin-bottom: 30px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    }

    .news-detail-image img {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
    }

    .news-detail-content {
        font-size: 16px;
        line-height: 1.8;
        color: #333;
    }

    .news-detail-content h2 {
        color: #1a2a6c;
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 24px;
    }

    .news-detail-content h3 {
        color: #1a2a6c;
        margin-top: 25px;
        margin-bottom: 12px;
        font-size: 20px;
    }

    .news-detail-content ul,
    .news-detail-content ol {
        margin: 15px 0;
        padding-left: 25px;
    }

    .news-detail-content li {
        margin-bottom: 8px;
    }

    .news-detail-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 20px 0;
    }

    .back-button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 25px;
        background: #1a2a6c;
        color: #fff;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        margin-bottom: 20px;
    }

    .back-button:hover {
        background: #b21f1f;
        color: #fff;
    }

    /* Gallery Styles - Without Magnifying Glass */
    .gallery-section {
        margin-top: 40px;
        padding-top: 30px;
        border-top: 2px solid #f0f0f0;
    }

    .gallery-section h3 {
        color: #1a2a6c;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .gallery-section h3 i {
        margin-right: 10px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .gallery-page__card {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        aspect-ratio: 1/1;
        cursor: pointer;
        display: block;
        background: #f8f9fa;
    }

    .gallery-page__card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        z-index: 2;
    }

    .gallery-page__card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

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

    /* Removed magnifying glass icon - keeping only overlay without icon */
    .gallery-page__card__hover {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 42, 108, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .gallery-page__card:hover .gallery-page__card__hover {
        opacity: 1;
    }

    /* Removed the icon completely */

    .gallery-page__card__hover__box {
        position: absolute;
        background: rgba(255, 255, 255, 0.15);
        transition: all 0.4s ease;
    }

    .gallery-page__card__hover__box--1 {
        top: 0;
        left: 0;
        width: 0;
        height: 3px;
    }

    .gallery-page__card:hover .gallery-page__card__hover__box--1 {
        width: 100%;
    }

    .gallery-page__card__hover__box--2 {
        top: 0;
        right: 0;
        width: 3px;
        height: 0;
    }

    .gallery-page__card:hover .gallery-page__card__hover__box--2 {
        height: 100%;
    }

    .gallery-page__card__hover__box--3 {
        bottom: 0;
        right: 0;
        width: 0;
        height: 3px;
    }

    .gallery-page__card:hover .gallery-page__card__hover__box--3 {
        width: 100%;
    }

    .gallery-page__card__hover__box--4 {
        bottom: 0;
        left: 0;
        width: 3px;
        height: 0;
    }

    .gallery-page__card:hover .gallery-page__card__hover__box--4 {
        height: 100%;
    }

    .photo-caption {
        margin-top: 10px;
        font-size: 12px;
        color: #666;
        text-align: center;
    }

    /* Related News Section */
    .related-news-section {
        margin-top: 60px;
        padding-top: 40px;
        border-top: 2px solid #f0f0f0;
    }

    .related-news-section h3 {
        color: #1a2a6c;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .related-news-item {
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
        padding: 15px;
        border: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        margin-bottom: 20px;
    }

    .related-news-item:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
        border-color: #1a2a6c;
    }

    .related-news-item img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .related-news-item h5 {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
    }

    .related-news-item h5 a {
        color: #1a2a6c;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .related-news-item h5 a:hover {
        color: #b21f1f;
    }

    .related-news-item .related-date {
        font-size: 12px;
        color: #6c757d;
        margin-top: 5px;
    }

    /* Sidebar Styles */
    .sidebar-box {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 30px;
        position: sticky;
        top: 100px;
    }

    .sidebar-box h3 {
        color: #1a2a6c;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #e0e0e0;
    }

    .sidebar-news-item {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
    }

    .sidebar-news-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .sidebar-news-item img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .sidebar-news-item .info h6 {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        margin: 0 0 5px 0;
    }

    .sidebar-news-item .info h6 a {
        color: #1a2a6c;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .sidebar-news-item .info h6 a:hover {
        color: #b21f1f;
    }

    .sidebar-news-item .info small {
        color: #6c757d;
        font-size: 12px;
    }

    @media (max-width: 992px) {
        .gallery-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .news-detail-header h1 {
            font-size: 24px;
        }

        .news-detail-meta {
            font-size: 13px;
            gap: 10px;
        }

        .related-news-item img {
            height: 120px;
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .sidebar-box {
            position: static;
            margin-top: 30px;
        }
    }

    @media (max-width: 576px) {
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }
    }
