/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container2 {
    text-align: center;
}

/* Header & Navigation */
.navbar {
    background-color: #152644;
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #06A4DF;
    color: #f0f0f0;
}

.actived{
  background-color: #06A4DF !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #152644;
    color: white;
}

.btn-primary:hover {
    background-color: #0f1a30;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #06A4DF;
    color: #152644;
    border: 2px solid #06A4DF;
}

.btn-secondary:hover {
    background-color: #152644;
    color: white;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-yellow {
    background-color: #FBFC19;
    color: #152644;
    align-content: center;
}

.btn-yellow:hover {
    background-color: #152644;
        color: white;
    /* border: 2px solid #06A4DF; */
        transform: translateY(-2px);

}

/* Hero Section */
.hero {
  background-image: url('../images/slider1.jpg');
  /* background-size: cover; */
  /* background-position: center; */
  /* background: linear-gradient(135deg, #152644 0%, #2a4d7a 100%); */
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
    height: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #152644 0%, #2a4d7a 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 10px;
    
}


.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Stats Section */
.stats {
    background-color: white;
    padding: 80px 0;
    background: linear-gradient(135deg, #152644 0%, #2a4d7a 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: yellow;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    color: #152644;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* News Section */
.news {
    padding: 40px 0;
    background-color: white;
}

.news h2 {
    text-align: center;
    color: #152644;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #152644;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.news-card h3 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.read-more {
    color: #152644;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0f1a30;
}

/* Content Sections */
.content-section {
    padding: 20px 0;
    background-color: white;
}

.content-section:nth-child(even) {
    background-color: #f8f9fa;
}

.content-section h2 {
    color: #152644;
    font-size: 2.5rem;
    /* margin-bottom: rem; */
    text-align: center;
}

.content-section h3 {
    color: #152644;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.content-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Directory Styles */
.directory-filters {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #152644;
}

.filter-group input,
.filter-group select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.filter-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.directory-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.alumni-item {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    transition: background-color 0.3s ease;
}

.alumni-item:hover {
    background-color: #f8f9fa;
}

.alumni-item:last-child {
    border-bottom: none;
}

.alumni-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #152644, #2a4d7a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.alumni-info h3 {
    margin: 0 0 0.5rem 0;
    color: #152644;
    font-size: 1.1rem;
}

.alumni-details {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.alumni-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-active {
    background-color: #d4edda;
    color: #155724;
}

.status-inactive {
    background-color: #f8d7da;
    color: #721c24;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pagination button {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    color: #152644;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination button:hover:not(:disabled) {
    background-color: #152644;
    color: white;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination button.active {
    background-color: #152644;
    color: white;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #152644;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #152644;
    box-shadow: 0 0 0 2px rgba(21, 38, 68, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

/* Cards */
.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.card h3 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #152644, #2a4d7a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #152644, #2a4d7a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.team-member h3 {
    color: #152644;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: #666;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.table th {
    background-color: #152644;
    color: white;
    font-weight: 600;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #152644;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 1rem 2rem;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 2rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #06A4DF;
    border: 4px solid #152644;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-year {
    background-color: #152644;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #06A4DF;
}

.timeline-content h3 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Achievement Highlights */
.achievement-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #152644;
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-item h3 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.achievement-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #152644;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p,
.footer-section ul {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #152644;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 1rem;
        display: block;
        margin: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .features-grid,
    .news-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .filters-grid {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        justify-content: center;
    }

    .alumni-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .alumni-status {
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .table-responsive {
        font-size: 0.9rem;
    }

    .table th,
    .table td {
        padding: 0.5rem;
    }

    /* Timeline mobile responsive */
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 21px;
    }

    .achievement-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .pagination {
        font-size: 0.9rem;
    }

    .pagination button {
        padding: 6px 10px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #152644;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border-left: 4px solid;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #dc3545;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-color: #17a2b8;
}

/* Contact Page Styles */
.contact-intro {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.contact-method-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method-card h3 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-method-card p {
    color: #666;
    margin-bottom: 1rem;
}

.contact-details {
    color: #666;
    line-height: 1.6;
    text-align: left;
}

.contact-form-section {
    margin: 4rem 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.form-info h2 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.form-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.office-hours, .response-time {
    margin-bottom: 2rem;
}

.office-hours h3, .response-time h3 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.hours-list {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.hours-item {
    margin-bottom: 0.5rem;
    color: #666;
}

.hours-item:last-child {
    margin-bottom: 0;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #152644;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #152644;
    box-shadow: 0 0 0 3px rgba(21, 38, 68, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal !important;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: #152644;
    text-decoration: underline;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    width: 100%;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.location-card h3 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.map-container {
    margin: 3rem 0;
}

.map-placeholder {
    background: linear-gradient(135deg, #152644 0%, #2a4d7a 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.map-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.faq-section {
    margin: 3rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #06A4DF;
}

.faq-item h3 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.emergency-contact {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.emergency-contact h2 {
    color: white;
    margin-bottom: 1rem;
}

.emergency-contact p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.emergency-details {
    margin-top: 1.5rem;
}

.emergency-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.emergency-details em {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Character Counter */
.character-counter {
    font-size: 0.8rem;
    color: #666;
    text-align: right;
    margin-top: 0.25rem;
    transition: color 0.3s ease;
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Loading spinner for contact form */
.btn .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

/* Success state for form fields */
.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* FAQ Item Hover Effect */
.faq-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Board of Trustees Styles */
.board-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.board-member-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.board-member-card.executive {
    border-top: 4px solid #152644;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.board-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.board-member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #152644, #2a4d7a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(21, 38, 68, 0.2);
}

.board-member-card.executive .board-member-photo {
    background: linear-gradient(135deg, #06A4DF, #152644);
    border: 4px solid #06A4DF;
}

.board-member-info h3 {
    color: #152644;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.position {
    color: #06A4DF;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tenure {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.graduation-info {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.bio {
    text-align: left;
    margin-bottom: 1rem;
}

.bio p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.achievements {
    text-align: left;
    margin-top: 1rem;
}

.achievements strong {
    color: #152644;
    display: block;
    margin-bottom: 0.5rem;
}

.achievements ul {
    color: #666;
    padding-left: 1.2rem;
    line-height: 1.5;
}

.achievements li {
    margin-bottom: 0.3rem;
}

.governance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.governance-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #152644;
}

.governance-item h3 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.governance-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.governance-details ul {
    color: #666;
    padding-left: 1.2rem;
    line-height: 1.6;
}

.governance-details li {
    margin-bottom: 0.5rem;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.publication-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.publication-item:hover {
    transform: translateY(-5px);
}

.publication-item h3 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.publication-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-board {
    background: linear-gradient(135deg, #152644 0%, #2a4d7a 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.contact-board h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-board p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.board-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
}

.contact-item h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: white;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Board of Trustees Mobile Responsive */
@media (max-width: 768px) {
    .board-grid {
        grid-template-columns: 1fr;
    }
    
    .governance-grid {
        grid-template-columns: 1fr;
    }
    
    .publications-grid {
        grid-template-columns: 1fr;
    }
    
    .board-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .board-member-photo {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }
    
    .contact-board {
        padding: 2rem;
    }
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        padding: 2rem;
        min-height: 250px;
    }
    
    .emergency-number {
        font-size: 1.5rem;
    }
}


/* Events Timeline */
.events-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-date {
    min-width: 100px;
    background: #152644;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    height: fit-content;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    color: #152644;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.timeline-stats span {
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
}

/* Get Involved Section */
.get-involved {
    background: linear-gradient(135deg, #152644 0%, #2a4d7a 100%);
    color: white;
    padding: 4rem 0;
}

.involvement-header {
    text-align: center;
    margin-bottom: 3rem;
}

.involvement-header h2 {
    color: white;
    margin-bottom: 1rem;
}

.involvement-header p {
    color: white;
    opacity: 0.9;
    font-size: 1.1rem;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.involvement-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
}

.involvement-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.involvement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.involvement-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.involvement-card p {
    color: white;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.involvement-card .btn {
    background: white;
    color: #152644;
    border: none;
}

.involvement-card .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Form Styles */
.project-form .form-actions,
.upload-form .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Responsive Design for Gallery and Projects */
@media (max-width: 768px) {
    .gallery-filters,
    .projects-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .filter-btn,
    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .gallery-controls,
    .projects-controls {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .stats-row {
        flex-direction: column;
        align-items: center;
    }

    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        gap: 1rem;
    }

    .event-date {
        align-self: flex-start;
        min-width: 70px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-date {
        align-self: flex-start;
        min-width: 80px;
    }

    .involvement-options {
        grid-template-columns: 1fr;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 2% auto;
    }

    .modal-body {
        padding: 1rem;
    }

    .lightbox-nav {
        padding: 0.5rem;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .overview-stats {
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 1rem;
    }

    .stat-box {
        padding: 1rem;
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .project-card {
        padding: 1rem;
    }

    .project-actions {
        justify-content: center;
    }

    .project-actions .btn {
        flex: 1;
        min-width: 80px;
    }

    .event-actions {
        justify-content: center;
    }

    .event-actions .btn {
        flex: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .project-timeline {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Filter animations */
.filter-transition {
    transition: all 0.4s ease;
}

.filter-hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Loading states */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

/* Success states */
.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.project-card.success-highlight {
    border-left: 4px solid #28a745;
    background: linear-gradient(135deg, #d4edda 0%, #ffffff 100%);
}

/* Hover effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Focus styles for accessibility */
.btn:focus,
.filter-btn:focus,
.tab-btn:focus {
    outline: 2px solid #06A4DF;
    outline-offset: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(21, 38, 68, 0.1);
}

/* Print styles */
@media print {
    .modal,
    .lightbox,
    .btn,
    .hamburger,
    .navbar {
        display: none !important;
    }
    
    .project-card,
    .event-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Gallery Page Styles */
.gallery-navigation {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.gallery-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    color: #152644;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #152644;
    color: white;
    border-color: #152644;
}

.gallery-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.year-filter {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    color: #152644;
}

.upload-btn {
    margin-left: 1rem;
}

.gallery-stats {
    margin-bottom: 2rem;
}

.stats-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #152644;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #152644, #2a4d7a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.gallery-item-meta {
    font-size: 0.8rem;
    opacity: 0.8;
}

.gallery-pagination {
    text-align: center;
    margin-top: 2rem;
}

/* Featured Albums */
.featured-albums {
    background: #f8f9fa;
    padding: 4rem 0;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.album-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-5px);
}

.album-cover {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #152644, #2a4d7a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.album-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    color: #152644;
    margin-bottom: 0.5rem;
}

.album-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.album-info small {
    color: #999;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-large {
    max-width: 800px;
}

.modal-header {
    background: #152644;
    color: white;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: white;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

/* Upload Form */
.file-upload-area {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
    position: relative;
}

.file-upload-area:hover {
    border-color: #152644;
}

.file-upload-area input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-info {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    background: rgba(0,0,0,0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 4px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Projects Page Styles */
.projects-navigation {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.projects-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    color: #152644;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover,
.tab-btn.active {
    background: #152644;
    color: white;
    border-color: #152644;
}

.projects-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.category-filter {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    color: #152644;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info h3 {
    color: #152644;
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.stat-info p {
    color: #666;
    margin: 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.project-card.featured {
    border-left: 4px solid #06A4DF;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.project-card.completed {
    border-left: 4px solid #28a745;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-ongoing {
    background: #d1ecf1;
    color: #0c5460;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-planning {
    background: #fff3cd;
    color: #856404;
}

.project-category {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.project-content h3 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.project-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-progress {
    margin-bottom: 1rem;
}

.progress-bar {
    background: #e9ecef;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #152644, #06A4DF);
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.project-funding {
    margin-bottom: 1rem;
}

.project-funding .raised {
    color: #152644;
    font-weight: bold;
}

.project-funding .target {
    color: #666;
}

.project-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-stats span {
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
}

.project-timeline {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.project-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-link {
    background: none;
    border: none;
    color: #152644;
    text-decoration: underline;
    cursor: pointer;
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.btn-link:hover {
    color: #0f1a30;
}



/* Events */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.event-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card.highlight {
    border: 2px solid #06A4DF;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-date .month {
    background: #152644;
    color: white;
    padding: 0.5rem;
    border-radius: 8px 8px 0 0;
    font-size: 0.8rem;
    font-weight: bold;
}

.event-date .day {
    background: #06A4DF;
    color: white;
    padding: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.event-date .year {
    background: #e9ecef;
    color: #495057;
    padding: 0.5rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
}

.event-content {
    flex: 1;
}

.event-type {
    color: #06A4DF;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.event-content h3 {
    color: #152644;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.event-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.detail-item .icon {
    font-size: 1rem;
}

.event-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.event-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/*/* About Page Specific Styles - Add these to your existing styles.css */

/* About Story Section */
.about-story {
    max-width: auto;
    margin: 0 auto;
    text-align: center;
}

.about-story p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Timeline Enhancements for About Page */
.timeline-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Section Animation Enhancement */
.stat-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Achievement Items Animation */
.achievement-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.achievement-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Feature Cards Animation */
.feature-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Team Member Animation */
.team-member {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.team-member.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Values List Styling */
.card ul {
    padding-left: 0;
    list-style: none;
}

.card ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #06A4DF;
    font-weight: bold;
}

/* Responsive Adjustments for About Page */
@media (max-width: 768px) {
    .about-story p {
        font-size: 1rem;
        text-align: left;
    }
    
    .card ul li {
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .achievement-item h3 {
        font-size: 1.2rem;
    }
    
    .achievement-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-story {
        padding: 0 1rem;
    }
    
    .cards-grid {
        padding: 0 1rem;
    }
    
    .timeline-year {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }
}

/* Presidential Speech Section Styles - Add to your styles.css */

.presidential-speech {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0;
    margin: 0;
}

.speech-container {
    max-width: auto;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.speech-header {
    background: linear-gradient(135deg, #152644 0%, #2a4d7a 100%);
    color: white;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.president-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.president-photo {
    position: relative;
}

.photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06A4DF, #ffffff);
    color: #152644;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.president-details h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.president-details p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tenure {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.speech-title {
    text-align: right;
}

.speech-title h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.speech-date {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    font-weight: 500;
}

.speech-content {
    padding: 3rem 2rem;
}

.opening-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #152644;
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 5px solid #06A4DF;
    position: relative;
}

.opening-quote:before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #06A4DF;
    font-family: serif;
}

.opening-quote:after {
    content: '"';
    position: absolute;
    bottom: -30px;
    right: 30px;
    font-size: 4rem;
    color: #06A4DF;
    font-family: serif;
}

.speech-text {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.speech-text p {
    margin-bottom: 1.8rem;
    text-align: justify;
}

.speech-text p:first-of-type {
    font-weight: 600;
    color: #152644;
}

.speech-highlight {
    background: linear-gradient(135deg, #152644 0%, #2a4d7a 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2.5rem 0;
}

.speech-highlight h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.speech-highlight ul {
    list-style: none;
    padding: 0;
}

.speech-highlight li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    position: relative;
    padding-left: 2rem;
}

.speech-highlight li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #06A4DF;
    font-weight: bold;
    font-size: 1.2rem;
}

.speech-highlight li:last-child {
    border-bottom: none;
}

.closing-statement {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #06A4DF;
    margin-top: 3rem;
}

.signature-section {
    margin-top: 2rem;
    text-align: right;
}

.signature {
    margin-top: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #152644;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.signature strong {
    color: #152644;
    font-size: 1.2rem;
}

.signature em {
    color: #06A4DF;
}

.signature small {
    color: #666;
    font-style: normal;
}

.speech-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.speech-actions .btn {
    padding: 12px 24px;
    font-size: 1rem;
    min-width: 150px;
}

.speech-actions .btn-link {
    color: #152644;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.speech-actions .btn-link:hover {
    color: #06A4DF;
    border-color: #06A4DF;
    border-radius: 6px;
}

/* Speech Modal Styles */
.speech-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.speech-modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.speech-modal-header {
    background: linear-gradient(135deg, #152644 0%, #2a4d7a 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.speech-modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.speech-modal-close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.speech-modal-close:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .presidential-speech {
        padding: 60px 0;
    }
    
    .speech-container {
        margin: 0 1rem;
        border-radius: 15px;
    }
    
    .speech-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .president-info {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .photo-placeholder {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .president-details h3 {
        font-size: 1.4rem;
    }
    
    .speech-title {
        text-align: center;
    }
    
    .speech-title h2 {
        font-size: 2rem;
    }
    
    .speech-content {
        padding: 2rem 1.5rem;
    }
    
    .opening-quote {
        font-size: 1.2rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .speech-text {
        font-size: 1rem;
    }
    
    .speech-text p {
        text-align: left;
    }
    
    .speech-highlight {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .closing-statement {
        padding: 2rem;
    }
    
    .signature-section {
        text-align: center;
    }
    
    .speech-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .speech-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .speech-header {
        padding: 1.5rem 1rem;
    }
    
    .speech-content {
        padding: 1.5rem 1rem;
    }
    
    .opening-quote {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .speech-highlight {
        padding: 1rem;
    }
    
    .speech-highlight li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .closing-statement {
        padding: 1.5rem;
    }
    
    .signature {
        padding: 1rem;
    }
}

/* Animation for Presidential Speech */
.presidential-speech.animate-in .speech-container {
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll to speech section */
.scroll-to-speech {
    scroll-behavior: smooth;
}

/* Print styles for speech */
@media print {
    .presidential-speech {
        page-break-inside: avoid;
        background: white;
    }
    
    .speech-actions {
        display: none;
    }
}

/* Bank Transfer Modal Styles - Add to styles.css */

/* Modal overlay enhancement for bank modal */
#bankTransferModal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    animation: fadeIn 0.3s ease;
}

#bankTransferModal .modal-content {
    background-color: white;
    margin: 3% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#bankTransferModal .modal-header {
    background: linear-gradient(135deg, #152644 0%, #2a4d7a 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#bankTransferModal .modal-header h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
}

#bankTransferModal .close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#bankTransferModal .close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

#bankTransferModal .modal-body {
    padding: 2rem;
}

.bank-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bank-alert {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 8px;
    color: #856404;
    font-size: 0.95rem;
}

.bank-alert strong {
    color: #664d03;
}

.bank-details-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.bank-details-card:hover {
    border-color: #06A4DF;
    box-shadow: 0 5px 15px rgba(6, 164, 223, 0.1);
}

.bank-details-card h4 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #06A4DF;
    padding-bottom: 0.5rem;
}

.bank-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.bank-detail-item:last-child {
    border-bottom: none;
}

.bank-detail-item label {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.bank-detail-item span {
    color: #152644;
    font-weight: 500;
}

.account-number {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    color: #152644;
    background: #e9ecef;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
}

.btn-copy {
    background: #06A4DF;
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: #0589c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(6, 164, 223, 0.3);
}

.btn-copy:active {
    transform: translateY(0);
}

.payment-instructions {
    background: white;
    border: 2px solid #152644;
    border-radius: 12px;
    padding: 1.5rem;
}

.payment-instructions h4 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.payment-instructions ol {
    margin: 0;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.payment-instructions li {
    color: #495057;
    margin-bottom: 0.5rem;
}

.payment-instructions strong {
    color: #152644;
}

.dues-amount-info {
    background: linear-gradient(135deg, #152644 0%, #2a4d7a 100%);
    color: white;
    border-radius: 12px;
    padding: 1.5rem;
}

.dues-amount-info h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.amount-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.amount-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.amount-value {
    color: #FBFC19;
    font-size: 1.8rem;
    font-weight: bold;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 2px solid #e9ecef;
}

.modal-actions .btn {
    min-width: 150px;
}

/* Success message for copy action */
.copy-success {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    animation: slideInRight 0.3s ease;
    z-index: 4000;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #bankTransferModal .modal-content {
        width: 95%;
        margin: 2% auto;
    }

    #bankTransferModal .modal-body {
        padding: 1.5rem;
    }

    .bank-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .bank-detail-item label {
        font-size: 0.85rem;
    }

    .account-number {
        font-size: 1rem;
    }

    .btn-copy {
        margin-left: 0;
        width: 100%;
        margin-top: 0.5rem;
    }

    .amount-grid {
        grid-template-columns: 1fr;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
    }

    .payment-instructions ol {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #bankTransferModal .modal-header {
        padding: 1rem 1.5rem;
    }

    #bankTransferModal .modal-header h3 {
        font-size: 1.2rem;
    }

    #bankTransferModal .close {
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
    }

    .bank-details-card,
    .payment-instructions,
    .dues-amount-info {
        padding: 1rem;
    }

    .bank-details-card h4,
    .payment-instructions h4,
    .dues-amount-info h4 {
        font-size: 1.1rem;
    }

    .amount-value {
        font-size: 1.5rem;
    }
}


/* Voting Modal Specific Styles */
#votingModal .voting-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.voting-alert {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
    padding: 1rem;
    border-radius: 8px;
    color: #155724;
    font-size: 1rem;
    text-align: center;
}

.voting-schedule-card,
.eligibility-card,
.positions-card,
.voting-instructions,
.support-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
}

.voting-schedule-card h4,
.eligibility-card h4,
.positions-card h4,
.voting-instructions h4,
.support-card h4 {
    color: #152644;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #06A4DF;
    padding-bottom: 0.5rem;
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #06A4DF;
    transition: transform 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(5px);
}

.schedule-date {
    min-width: 100px;
    background: #152644;
    color: white;
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
    height: fit-content;
}

.schedule-details strong {
    color: #152644;
    display: block;
    margin-bottom: 0.25rem;
}

.schedule-details p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.eligibility-card ul {
    margin: 0;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.eligibility-card li {
    color: #495057;
    margin-bottom: 0.5rem;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.position-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.position-item:hover {
    border-color: #06A4DF;
    transform: translateY(-3px);
}

.position-item strong {
    color: #152644;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.position-item span {
    color: #06A4DF;
    font-weight: 600;
    font-size: 0.9rem;
}

.voting-instructions ol {
    margin: 0;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.voting-instructions li {
    color: #495057;
    margin-bottom: 0.5rem;
}

.voting-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 0.75rem;
    border-radius: 6px;
    margin-top: 1rem;
    color: #856404;
}

.support-card .support-details {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.support-details p {
    color: #495057;
    margin-bottom: 0.5rem;
}

.support-details strong {
    color: #152644;
}

/* Responsive Design */
@media (max-width: 768px) {
    .schedule-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .schedule-date {
        align-self: flex-start;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }
}

/* Candidates Page Specific Styles */
        .election-header {
            background: linear-gradient(135deg, #152644 0%, #2a4d7a 100%);
            color: white;
            padding: 30px 0 80px;
            text-align: center;
            margin-top: 80px;
        }

        .election-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .election-info {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem auto 0;
            max-width: 800px;
        }

        .election-info p {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .voting-status {
            background: #FBFC19;
            color: #152644;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: bold;
            display: inline-block;
            margin-top: 1rem;
        }

        .positions-navigation {
            background: white;
            padding: 2rem 0;
            position: sticky;
            top: 80px;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .position-tabs {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .position-tab {
            background: #f8f9fa;
            border: 2px solid #ddd;
            color: #152644;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            text-decoration: none;
        }

        .position-tab:hover,
        .position-tab.active {
            background: #152644;
            color: white;
            border-color: #152644;
            transform: translateY(-2px);
        }

        .position-section {
            padding: 4rem 0;
            background: #f8f9fa;
        }

        .position-section:nth-child(even) {
            background: white;
        }

        .position-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .position-header h2 {
            color: #152644;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .candidate-count {
            color: #666;
            font-size: 1.1rem;
        }

        .candidates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .candidate-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .candidate-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .candidate-header {
            background: linear-gradient(135deg, #152644 0%, #2a4d7a 100%);
            padding: 2rem;
            text-align: center;
            position: relative;
        }

        .candidate-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: linear-gradient(135deg, #06A4DF, #ffffff);
            color: #152644;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            font-weight: bold;
            margin: 0 auto 1rem;
            border: 5px solid white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .candidate-header h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .candidate-position {
            color: #FBFC19;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .candidate-body {
            padding: 2rem;
        }

        .candidate-info {
            margin-bottom: 2rem;
        }

        .info-item {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
            color: #666;
        }

        .info-item strong {
            color: #152644;
            min-width: 120px;
        }

        .candidate-manifesto {
            margin-bottom: 2rem;
        }

        .candidate-manifesto h4 {
            color: #152644;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            border-bottom: 2px solid #06A4DF;
            padding-bottom: 0.5rem;
        }

        .manifesto-points {
            list-style: none;
            padding: 0;
        }

        .manifesto-points li {
            padding: 0.75rem;
            margin-bottom: 0.5rem;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #06A4DF;
            color: #495057;
        }

        .candidate-qualifications {
            margin-bottom: 2rem;
        }

        .candidate-qualifications h4 {
            color: #152644;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .qualifications-list {
            list-style: none;
            padding: 0;
        }

        .qualifications-list li {
            padding: 0.5rem 0 0.5rem 1.5rem;
            position: relative;
            color: #495057;
        }

        .qualifications-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }

        .candidate-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .candidate-actions .btn {
            flex: 1;
            min-width: 150px;
        }

        .single-candidate {
            max-width: 600px;
            margin: 0 auto;
        }

        .unopposed-badge {
            background: #28a745;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: bold;
            display: inline-block;
            margin-top: 1rem;
        }

        .voting-cta {
            background: linear-gradient(135deg, #152644 0%, #2a4d7a 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .voting-cta h2 {
            color: white;
            margin-bottom: 1rem;
        }

        .voting-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .voting-cta .btn {
            margin: 0 0.5rem;
            min-width: 200px;
        }

        /* Candidate Modal */
        .candidate-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
        }

        .candidate-modal-content {
            background-color: white;
            margin: 3% auto;
            padding: 0;
            border-radius: 15px;
            width: 90%;
            max-width: 800px;
            max-height: 85vh;
            overflow-y: auto;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .election-header {
                padding: 120px 0 60px;
            }

            .election-header h1 {
                font-size: 2rem;
            }

            .positions-navigation {
                top: 70px;
            }

            .position-tabs {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 1rem;
            }

            .position-tab {
                white-space: nowrap;
                flex-shrink: 0;
            }

            .candidates-grid {
                grid-template-columns: 1fr;
            }

            .candidate-photo {
                width: 120px;
                height: 120px;
                font-size: 2.5rem;
            }

            .candidate-actions {
                flex-direction: column;
            }

            .voting-cta .btn {
                display: block;
                margin: 0.5rem auto;
            }
        }