 /* Banner Section */
.banner-section {
    position: relative;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.banner-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content Section */
.main-content {
    padding: 60px 20px;
    background-color: var(--white);
    /* min-height: 100vh; */
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Styles */
.section {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.section:nth-child(1) { animation-delay: 0.1s; }
.section:nth-child(2) { animation-delay: 0.2s; }
.section:nth-child(3) { animation-delay: 0.3s; }
.section:nth-child(4) { animation-delay: 0.4s; }
.section:nth-child(5) { animation-delay: 0.5s; }
.section:nth-child(6) { animation-delay: 0.6s; }
.section:nth-child(7) { animation-delay: 0.7s; }

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



.section-header {
    text-align: left;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    color: var(--secondary-color);
    font-size: 28px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
    max-width: 700px;
    line-height: 1.6;
}

/* Content Card */
.content-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    border-left: 5px solid var(--secondary-color);
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.content-text:last-child {
    margin-bottom: 0;
}

.content-text li{
    padding: 5px;
    margin-left: 30px;
}

/* Management Table */
.table-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.management-table {
    width: 100%;
    border-collapse: collapse;
}

.management-table thead {
    background: var(--bg-light);
    color: var(--text-dark);
}

.management-table th {
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

.management-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.management-table tbody tr:hover {
    background-color: var(--hover-bg);
    transform: translateX(5px);
}

.management-table tbody tr:last-child {
    border-bottom: none;
}

.management-table td {
    padding: 20px 15px;
    font-size: 15px;
    vertical-align: middle;
    text-align: center;
}

.serial-no {
    font-weight: 600;
    color: var(--secondary-color);
    width: 80px;
}

.person-name {
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    width: 250px;
}

.person-designation {
    color: var(--text-light);
    text-align: left;
    width: 300px;
}

.person-image {
    width: 60px;
    height: 60px;
    border-radius: 10%;
    object-fit: cover;
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
}

.management-table tbody tr:hover .person-image {
    border-color: var(--secondary-color);
    transform: scale(1.1);
}



.noa-activities-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.noa-activities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.noa-activities-header {
    /* text-align: center;
    margin-bottom: 60px; */
    margin-bottom: 40px;
    max-width: 600px;
}

.noa-activities-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    
    background: maroon;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.noa-activities-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.noa-activities-slider {
    position: relative;
    /* overflow: hidden; */
    overflow-x: hidden;
    /* overflow: hidden; */
    border-radius: 16px;
}

.noa-activities-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding: 0 15px;
}

.noa-activity-card {
    min-width: calc(33.333% - 20px);
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

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

.noa-activity-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.noa-activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.noa-activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.noa-activity-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: var(--white);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.noa-activity-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.noa-activity-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noa-activity-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.noa-activity-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-light);
}

.noa-activity-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.noa-activity-meta-item svg {
    width: 14px;
    height: 14px;
}

.noa-activity-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.noa-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.noa-author-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.noa-author-info p {
    font-size: 12px;
    color: var(--text-light);
}

.noa-read-activity-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 16px;
    align-self: flex-start;
}

.noa-read-activity-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.noa-read-activity-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.noa-read-activity-btn:hover svg {
    transform: translateX(3px);
}

.noa-activities-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.noa-activities-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.noa-activities-nav-btn:hover {
    
    background: rgb(182, 1, 1);
    border-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.noa-activities-nav-btn svg {
    width: 20px;
    height: 20px;
}

.noa-activities-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.noa-activities-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.noa-activities-dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--secondary-color);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-date {
    font-size: 14px;
    opacity: 0.9;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    display: flex;
}

@keyframes slideUp {
    from {
        transform: translateY(50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 20px;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: rotate(90deg);
}

/* Management Modal */
.management-modal-left {
    flex: 1;
    padding: 40px;
    border-right: 1px solid var(--border-color);
}

.management-modal-right {
    width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.modal-person-image {
    width: 150px;
    height: 150px;
    border-radius: 10%;
    object-fit: cover;
    border: 4px solid var(--border-color);
    margin-bottom: 20px;
}

.modal-person-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    text-align: center;
}

.modal-person-designation {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
}

.qr-code {
    width: 200px;
    height: 200px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 10px;
}

.qr-code img {
    width: 100%;
    height: 100%;
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-section h3 i {
    color: var(--secondary-color);
    font-size: 16px;
}

.modal-detail {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
}

.modal-label {
    font-weight: 600;
    color: var(--text-dark);
    width: 120px;
    flex-shrink: 0;
}

.modal-value {
    color: var(--text-light);
    flex: 1;
}

/* Activity Modal - Updated */
.noa-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.noa-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.noa-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.noa-modal-header {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.noa-modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noa-modal-body {
    padding: 40px;
}

.noa-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.noa-modal-close:hover {
    background: var(--white);
    transform: rotate(90deg);
}

.noa-modal-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.noa-modal-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Gallery Modal */
.gallery-modal-content {
    padding: 0;
    max-width: 900px;
}

.gallery-modal-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

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

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

    .content-card {
        padding: 25px;
    }

    .activity-card {
        min-width: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .modal-content {
        flex-direction: column;
        width: 95%;
    }

    .management-modal-left {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .management-modal-right {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 24px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .activity-card {
        min-width: 250px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}