/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000000 !important;
}
h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Top Navbar */
.top-navbar {
    background-color: #f7fafd;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.top-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.top-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.top-nav-item i {
    color: #1a75ff;
}

/* Main Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #000000;
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1a75ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1a75ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1a75ff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Banner */
.banner {
    height: 60vh;
    background: linear-gradient(rgba(26, 117, 255, 0.7), rgba(0, 157, 255, 0.7)), 
                url('https://images.pexels.com/photos/6646917/pexels-photo-6646917.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 117, 255, 0.4), rgba(0, 157, 255, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.banner-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.banner-btn {
    display: inline-block;
    background-color: #ff5e13;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 94, 19, 0.3);
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 19, 0.4);
    background-color: #e54a0c;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: #1a75ff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 117, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #1a75ff;
    border-color: #1a75ff;
}

.btn-secondary:hover {
    background-color: #1a75ff;
    color: white;
    transform: translateY(-2px);
}

.btn-orange {
    background-color: #ff5e13;
    color: white;
}

.btn-orange:hover {
    background-color: #e54a0c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 94, 19, 0.3);
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #ff5e13;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-color: #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h2 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mini Gallery Section */
.mini-gallery {
    padding: 80px 0;
    background-color: #f7fafd;
}

.mini-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

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

.mini-gallery-item:hover {
    transform: translateY(-5px);
}

.mini-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mini-gallery-item:hover img {
    transform: scale(1.05);
}

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

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

.mini-gallery-overlay h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mini-gallery-overlay p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.gallery-cta {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: #f7fafd;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #1a75ff;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: #1a75ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 0;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #1a75ff;
    font-size: 0.9rem;
    margin: 0;
}

/* Members Section */
.members {
    padding: 80px 0;
    background-color: #f7fafd;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.member-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 2rem;
    text-align: center;
}

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

/* Commented out for later use - member images
.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.member-card:hover .member-image img {
    transform: scale(1.05);
}
*/

.member-info {
    text-align: center;
}

.member-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member-info p {
    color: #1a75ff;
    font-weight: 500;
    margin: 0;
}

/* Donation Info */
.donation-info {
    padding: 80px 0;
    background-color: #ffffff;
}

.donation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.donation-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.bank-details {
    background-color: #f7fafd;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #1a75ff;
}

.bank-details h3 {
    color: #1a75ff;
    margin-bottom: 1rem;
}

.bank-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

.bank-info strong {
    color: #2c3e50;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a75ff, #009dff);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Sections */
.about-section {
    padding: 80px 0;
}

.about-section:nth-child(even) {
    background-color: #f7fafd;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #1a75ff;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.focus-areas {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.focus-areas li {
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.focus-areas li:hover {
    transform: translateY(-2px);
}

.focus-areas li i {
    color: #1a75ff;
    margin-right: 1rem;
    font-size: 1.2rem;
    min-width: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* President Message */
.president-message {
    padding: 80px 0;
    background-color: #f7fafd;
}

.message-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.message-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.message-text {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff5e13;
}

.message-text h2 {
    color: #1a75ff;
    margin-bottom: 1.5rem;
}

.message-text blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    border-left: 4px solid #ff5e13;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    background-color: #f7fafd;
    padding: 1.5rem;
    border-radius: 10px;
}

.message-author {
    margin-top: 2rem;
}

.message-author h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.message-author p {
    color: #1a75ff;
    margin: 0;
}

/* Vision & Values */
.vision-values {
    padding: 80px 0;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vision-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid #1a75ff;
}

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

.vision-card:nth-child(2) {
    border-top-color: #ff5e13;
}

.vision-card:nth-child(3) {
    border-top-color: #009dff;
}

.vision-card i {
    color: #1a75ff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vision-card:nth-child(2) i {
    color: #ff5e13;
}

.vision-card:nth-child(3) i {
    color: #009dff;
}

.vision-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-section {
    padding: 80px 0;
}

.gallery-toggle {
    text-align: center;
    margin-bottom: 3rem;
}

.toggle-btn {
    background-color: #f5f5f5;
    color: #666;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background-color: #1a75ff;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.gallery-item:hover {
    transform: translateY(-5px);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

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

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

.gallery-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    margin: 0;
    opacity: 0.9;
}

.gallery-grid.clean .gallery-overlay {
    display: none;
}

.gallery-grid.clean .gallery-item {
    cursor: zoom-in;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    text-align: center;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

#modalImage {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Donate Page */
.donation-appeal {
    padding: 80px 0;
}

.appeal-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #f7fafd;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    color: #1a75ff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stat-item h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #555;
    margin: 0;
}

.bank-details-section {
    padding: 80px 0;
    background-color: #f7fafd;
}

.bank-card {
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid #1a75ff;
}

.bank-card h2 {
    color: #1a75ff;
    text-align: center;
    margin-bottom: 2rem;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bank-row:hover {
    background-color: #f7fafd;
    border-radius: 5px;
}

.bank-row:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: #2c3e50;
}

.value {
    color: #555;
    font-weight: 500;
}

.tax-info {
    background-color: #f7fafd;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
    border-left: 4px solid #ff5e13;
}

.tax-info i {
    color: #ff5e13;
    margin-right: 0.5rem;
}

/* Forms */
.donation-form-section,
.contact-section {
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h2 {
    color: #1a75ff;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f7fafd;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item i {
    color: #1a75ff;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #555;
    margin: 0;
}

.social-contact {
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a75ff;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #0056d3;
    transform: translateY(-2px);
}

.contact-form {
    background-color: #f7fafd;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    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: #1a75ff;
}

.form-group button {
    background-color: #1a75ff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background-color: #0056d3;
    transform: translateY(-2px);
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background-color: #f7fafd;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-item {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid #ff5e13;
}

.impact-item:hover {
    transform: translateY(-5px);
}

.impact-item i {
    color: #ff5e13;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.impact-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a75ff, #009dff);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background-color: white;
    color: #1a75ff;
    border: 2px solid white;
}

.cta-buttons .btn:hover {
    background-color: transparent;
    color: white;
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: #1a75ff;
}

/* Audits Page */
.audit-section {
    padding: 80px 0;
}

.audit-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.audit-table-container {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.audit-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.audit-table th,
.audit-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.audit-table th {
    background-color: #1a75ff;
    color: white;
    font-weight: 600;
}

.audit-table tr:hover {
    background-color: #f7fafd;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-badge.completed {
    background-color: #d4edda;
    color: #155724;
}

.download-btn {
    background-color: #1a75ff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #0056d3;
    transform: translateY(-1px);
}

.audit-info {
    margin-top: 3rem;
}

.audit-highlights {
    background-color: #f7fafd;
    padding: 3rem;
    border-radius: 15px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    color: #1a75ff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.audit-notice {
    background-color: #e8f4f8;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    border-left: 4px solid #1a75ff;
}

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

.notice-content i {
    color: #1a75ff;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.notice-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.notice-content a {
    color: #1a75ff;
    text-decoration: none;
}

.notice-content a:hover {
    text-decoration: underline;
}

/* Reports Page */
.reports-section {
    padding: 80px 0;
}

.reports-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.report-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.report-year {
    background-color: #1a75ff;
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.report-content {
    padding: 2rem;
}

.report-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.report-highlights {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f7fafd;
    border-radius: 10px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.highlight i {
    color: #1a75ff;
}

.report-content .download-btn {
    margin-top: 1rem;
}

.impact-summary {
    background-color: #f7fafd;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
}

.impact-summary h2 {
    color: #1a75ff;
    margin-bottom: 2rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a75ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #555;
    font-weight: 500;
}

.key-programs {
    margin-top: 3rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-item {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid #1a75ff;
}

.program-item:nth-child(even) {
    border-top-color: #ff5e13;
}

.program-item:hover {
    transform: translateY(-5px);
}

.program-item i {
    color: #1a75ff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.program-item:nth-child(even) i {
    color: #ff5e13;
}

.program-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #000000;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1a75ff;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-section p i {
    color: #1a75ff;
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-nav-container {
        justify-content: center;
        gap: 1rem;
    }

    .top-nav-item {
        font-size: 0.8rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-item {
        margin-left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .banner {
        height: 50vh;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .message-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .members-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

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

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

    .impact-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .report-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .highlight {
        justify-content: center;
    }

    .audit-table {
        font-size: 0.9rem;
    }

    .audit-table th,
    .audit-table td {
        padding: 0.5rem;
    }

    .focus-areas {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

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

    .impact-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .bank-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .top-nav-container {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}