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

body {
    font-family: 'Crimson Text', 'Georgia', serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fafafa;
    font-size: 18px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', 'Times New Roman', serif;
    color: #1a252f;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2.1rem; font-weight: 700; }
h3 { font-size: 1.6rem; font-weight: 600; }
h4 { font-size: 1.3rem; font-weight: 600; }

p {
    margin-bottom: 1.2rem;
    color: #34495e;
}

/* Header Styles */
/* Header Styles - Updated Navigation Layout */
.header {
    background: #ffffff;
    border-bottom: 3px solid #8b4513;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 60%;
   
}

.logo-text h1 {
    font-size: 1.8rem;
    color: #8b4513;
    margin: 0;
    font-weight: 700;
}

.tagline {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-style: italic;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 15px;
    position: relative;
    transition: color 0.3s ease;
    border-radius: 4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #8b4513;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #ffffff;
    background: rgba(139, 69, 19, 0.05);
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-menu a.active {
    color: #8b4513;
    font-weight: 600;
    background: rgba(139, 69, 19, 0.1);
}

.nav-menu a.active::after {
    width: 80%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    top: 20px;
    right: 30px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .nav-container {
        position: relative;
        gap: 15px;
    }
    
    .logo-section {
        gap: 12px;
    }
    
    .logo-img {
        width: 75px;
        height: 75px;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 1px solid #e9ecef;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        margin-top: 20px;
        border-radius: 0 0 8px 8px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 12px 30px;
        width: 100%;
        text-align: center;
        border-radius: 0;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(139, 69, 19, 0.1);
        color: #ffffff;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0;
    }
    
    .nav-menu a {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 0.75rem;
    }
}

/* Hero Section */
.hero {
    min-height: 87vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(233, 236, 239, 0.8) 100%);
  
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.2rem;
    color: #1a252f;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5d6d7e;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #8b4513;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Libre Baskerville', serif;
}

.btn-primary {
    background: #8b4513;
    color: white;
    border-color: #8b4513;
}

.btn-primary:hover {
    background: #a0522d;
    border-color: #a0522d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    border-color: #2c3e50;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 0.5rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8b4513, #a0522d);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: #ffffff;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.lead-paragraph {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 2rem;
    padding-left: 20px;
    border-left: 4px solid #8b4513;
}

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

.highlight-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-decoration: none;
}
a.highlight-card {
  text-decoration: none;
  color: inherit;
}

a.highlight-card h3,
a.highlight-card p {
  text-decoration: none;
}
a.highlight-card p {
  text-decoration: none !important;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block; /* Ensures the whole card is clickable */
}

.card-link h3,
.card-link p {
  text-decoration: none;
  color: inherit;
}


.highlight-card h3,
.highlight-card p {
  text-decoration: none;
}

.highlight-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: #1a252f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight-card p {
    color: #5d6d7e;
    font-size: 1rem;
    margin: 0;
}

/* Mission Section */
.mission {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.mission-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transform: translateY(-8px);
}

.mission-card.full-width {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.mission-icon {
    font-size: 2.8rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    color: #1a252f;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

.mission-card p {
    color: #5d6d7e;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #bdc3c7;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #ecf0f1;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #95a5a6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #34495e;
    border-radius: 8px;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #8b4513;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #ecf0f1;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #ecf0f1;
}

.footer-divider {
    height: 1px;
    background: #34495e;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 37, 47, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #ffffff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #7f8c8d;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #2c3e50;
}

.modal-header {
    text-align: center;
    padding: 40px 40px 20px;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    color: #1a252f;}

    /* Additional CSS for , Donation & Gallery Pages */

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.page-header-content h1 {
    font-size: 2.8rem;
    color: #1a252f;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    color: #5d6d7e;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.breadcrumb a {
    color: #8b4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #a0522d;
}

.breadcrumb i {
    font-size: 0.7rem;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: #8b4513;
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Contact Page Styles */
.contact-section {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-panel,
.contact-form-panel {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.panel-header {
    background: #ffffff;
    padding: 2rem;
    border-bottom: 1px solid #e9ecef;
    border-radius: 12px 12px 0 0;
}

.panel-header h2 {
    color: #1a252f;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.panel-header .section-divider {
    width: 60px;
    height: 3px;
    background: #8b4513;
    margin: 1rem 0;
}

.panel-header p {
    color: #5d6d7e;
    margin: 0;
    font-size: 1rem;
}

.contact-details {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #8b4513;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-content h4 {
    color: #1a252f;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: #34495e;
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

.contact-content small {
    color: #7f8c8d;
    font-size: 0.85rem;
    font-style: italic;
}

.academic-note {
    margin: 2rem;
    padding: 1.5rem;
    background: #fff3cd;
    border-left: 4px solid #8b4513;
    border-radius: 0 8px 8px 0;
    display: flex;
    gap: 15px;
}

.note-icon {
    color: #8b4513;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.note-content h4 {
    color: #1a252f;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.note-content p {
    color: #5d6d7e;
    font-size: 0.9rem;
    margin: 0;
}

/* Academic Form Styles */
.academic-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a252f;
    font-size: 0.95rem;
}

.form-group label i {
    color: #8b4513;
    width: 16px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Crimson Text', serif;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #34495e;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
}

.checkmark {
    margin-left: 5px;
}

.text-link {
    color: #8b4513;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.text-link:hover {
    border-bottom-color: #8b4513;
}

/* Additional Information Section */
.additional-info {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

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

.info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #1a252f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: #5d6d7e;
    margin-bottom: 1.5rem;
}

/* Donation Page Styles */
.donation-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff3e0 100%);
}

.donation-section {
    background: #ffffff;
}

.impact-section {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.impact-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.impact-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.impact-card h3 {
    color: #1a252f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.impact-card p {
    color: #5d6d7e;
    margin: 0;
}

.donation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.donation-levels {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0;
    border: 1px solid #e9ecef;
}

.support-levels {
    padding: 2rem;
}

.support-level {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-level:hover {
    border-color: #8b4513;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.support-level.featured {
    border-color: #8b4513;
    background: #fff8f0;
    position: relative;
}

.support-level.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b4513;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.level-badge {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.level-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #1a252f;
    margin-bottom: 1rem;
}

.level-description ul {
    list-style: none;
    text-align: left;
}

.level-description ul li {
    color: #5d6d7e;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.level-description ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.donation-form-panel {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0;
    border: 1px solid #e9ecef;
}

.amount-selection {
    margin-bottom: 25px;
}

.amount-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #1a252f;
    font-size: 1rem;
}

.amount-label i {
    color: #8b4513;
    width: 16px;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.amount-btn {
    padding: 12px 8px;
    border: 2px solid #e9ecef;
    background: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.amount-btn.selected,
.amount-btn:hover {
    background: #8b4513;
    color: white;
    border-color: #8b4513;
}

.amount-btn.custom {
    grid-column: span 3;
    background: #f8f9fa;
    border-style: dashed;
}

.privacy-note {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
}

.privacy-note .note-icon {
    color: #8b4513;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.privacy-note .note-content h4 {
    color: #1a252f;
    font-size: 1rem;
    margin-bottom: 10px;
}

.privacy-note .checkbox-label {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.payment-section {
    border-top: 1px solid #e9ecef;
    padding-top: 25px;
    margin-top: 25px;
}

.payment-section h4 {
    color: #1a252f;
    margin-bottom: 20px;
    text-align: center;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.payment-method {
    text-align: center;
}

.qr-code-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: #e9ecef;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-size: 3rem;
}

.qr-code::before {
    content: '📱';
}

.payment-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.payment-details h5 {
    color: #1a252f;
    margin-bottom: 15px;
    text-align: center;
}

.bank-details p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #34495e;
}

.donation-btn {
    background: #27ae60 !important;
    border-color: #27ae60 !important;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.donation-btn:hover {
    background: #229954 !important;
    border-color: #229954 !important;
}

.recognition-section {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

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

.recognition-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.recognition-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.recognition-icon {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.recognition-card h3 {
    color: #1a252f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.recognition-card p {
    color: #5d6d7e;
    margin: 0;
}

/* Gallery Page Styles */
.filter-section {
    background: #f8f9fa;
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    background: #ffffff;
    color: #34495e;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: #8b4513;
    color: white;
    border-color: #8b4513;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.gallery-section {
    background: #ffffff;
}

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

.gallery-item {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 250px;
}

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

.gallery-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-icon {
    font-size: 3rem;
    color: #8b4513;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    opacity: 0.3;
    transform: scale(1.2);
}

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

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

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

.gallery-overlay p {
    color: #ecf0f1;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.gallery-meta {
    font-size: 0.8rem;
    color: #bdc3c7;
    font-style: italic;
}

.stats-section {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

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

.stat-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a252f;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #5d6d7e;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.recent-additions {
    background: #ffffff;
}

.additions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.addition-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #e9ecef;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.addition-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.addition-icon {
    font-size: 2rem;
    color: #8b4513;
    flex-shrink: 0;
    margin-top: 5px;
}

.addition-content h3 {
    color: #1a252f;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.addition-content p {
    color: #5d6d7e;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.addition-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.addition-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.access-info {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

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

.access-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.access-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.access-icon {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.access-card h3 {
    color: #1a252f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.access-card p {
    color: #5d6d7e;
    margin-bottom: 1.5rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header-content h1 {
        font-size: 2.2rem;
    }
    
    .page-header-content p {
        font-size: 1.1rem;
    }
    
    .contact-grid,
    .donation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .additions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .addition-card {
        flex-direction: column;
        text-align: center;
    }
    
    .addition-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .page-header-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item,
    .addition-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .academic-note,
    .privacy-note {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Form Error Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.error-message::before {
    content: '⚠';
    font-size: 0.9rem;
}

.header,
.header.scrolled {
    background: linear-gradient(90deg, #2c2a4a, #bfa76f) !important;
    color: #fff !important;
    border-bottom: 2px solid #a67c52 !important;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}



/* Donation CTA Button Styles */
.donation-cta-container {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1001;
}

.donation-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #cc3323, #862116);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    animation: gentle-bounce 3s ease-in-out infinite;
}

.donation-cta-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(45deg, #c0392b, #a93226);
}

.donation-icon {
    font-size: 1.1rem;
    animation: heart-beat 2s ease-in-out infinite;
}

.donation-text {
    font-family: 'Libre Baskerville', serif;
    letter-spacing: 0.5px;
}

/* Pulse Ring Animations */
.pulse-ring,
.pulse-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(231, 76, 60, 0.6);
    border-radius: 25px;
    animation: pulse-animation 2s ease-out infinite;
    pointer-events: none;
}

.pulse-ring-2 {
    animation-delay: 1s;
    border-color: rgba(231, 76, 60, 0.4);
}

/* Blinking effect */
@keyframes gentle-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

@keyframes heart-beat {
    0%, 50%, 100% {
        transform: scale(1);
    }
    25%, 75% {
        transform: scale(1.1);
    }
}

@keyframes pulse-animation {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Glow effect on hover */
.donation-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.donation-cta-btn:hover::before {
    left: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .donation-cta-container {
        top: 15px;
        right: 70px;
    }
    
    .donation-cta-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .donation-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .donation-cta-container {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 15px;
        text-align: center;
    }
    
    .donation-cta-btn {
        display: inline-flex;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Additional attention-grabbing effect */
.donation-cta-btn {
    animation: gentle-bounce 3s ease-in-out infinite, 
               attention-blink 4s ease-in-out infinite;
}

@keyframes attention-blink {
    0%, 90%, 100% {
        opacity: 1;
    }
    95% {
        opacity: 0.7;
    }
}

/* Urgent call-to-action styling */
.donation-cta-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff6b6b);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: border-glow 3s ease-in-out infinite;
}

@keyframes border-glow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
}

.donation-cta-btn:hover::after {
    opacity: 1;
}


.save-spot-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-top: 15px;
}

.save-spot-card {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e9ecef;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.save-spot-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.save-spot-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 25px;
    flex-shrink: 0;
    border: 3px solid #f1f3f4;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    position: relative;
}

.save-spot-image::after {
    content: '🔍';
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.7);
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.save-spot-image:hover::after {
    opacity: 1;
}

.save-spot-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    background: white;
}

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

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.image-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.image-modal-close:hover {
    color: #667eea;
}

#modalImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.save-spot-card:hover .save-spot-image img {
    transform: scale(1.05);
}

.save-spot-content {
    flex: 1;
    color: #2c3e50;
}

.save-spot-title {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.save-spot-subtitle {
    display: block;
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.save-spot-url {
    display: inline-block;
    font-size: 0.85rem;
    color: #667eea;
    font-family: monospace;
    background: #f8f9fa;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.save-spot-arrow {
    color: #667eea;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.save-spot-card:hover .save-spot-arrow {
    transform: translateX(5px);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
/*forum*/
 
        
        .forum-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background: white;
            min-height: 100vh;
        }
        
        .forum-header {
            background: white;
            padding: 20px 0;
            border-bottom: 1px solid #e5e5e5;
            margin-bottom: 30px;
        }
        
        .forum-title {
            font-size: 2.2rem;
            font-weight: 600;
            color: #8b4513;
            margin: 0 0 10px 0;
        }
        
        .forum-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin: 0;
        }
        
        .add-question-btn {
            background: #8b4513;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 500;
            cursor: pointer;
            margin: 20px 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .add-question-btn:hover {
            background: #a0522d;
            transform: translateY(-1px);
        }
        
        .question-form {
            background: white;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
            display: none;
        }
        
        .question-form.show {
            display: block;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
            display: block;
        }
        
        .form-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 14px;
            transition: border-color 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #8b4513;
            box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
        }
        
        .form-textarea {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .submit-btn {
            background: #8b4513;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .submit-btn:hover {
            background: #a0522d;
        }
        
        .cancel-btn {
            background: #f3f4f6;
            color: #374151;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            margin-left: 10px;
        }
        
        .question-card {
            background: white;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            margin-bottom: 20px;
            transition: box-shadow 0.3s ease;
        }
        
        .question-card:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .question-header {
            padding: 20px 20px 0 20px;
        }
        
        .scholar-info {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }
        
        .scholar-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b4513, #a0522d);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 16px;
        }
        
        .scholar-details {
            flex: 1;
        }
        
        .scholar-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 2px;
        }
        
        .scholar-contact {
            font-size: 0.85rem;
            color: #666;
        }
        
        .question-time {
            font-size: 0.85rem;
            color: #666;
        }
        
        .question-content {
            padding: 0 20px 20px 20px;
        }
        
        .question-text {
            font-size: 1.1rem;
            color: #333;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .question-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 15px 20px;
            border-top: 1px solid #f3f4f6;
            background: #fafafa;
        }
        
        .action-btn {
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .action-btn:hover {
            background: #f3f4f6;
            color: #333;
        }
        
        .action-btn.active {
            background: rgba(139, 69, 19, 0.1);
            color: #8b4513;
        }
        
        .answers-section {
            border-top: 1px solid #e5e5e5;
            display: none;
        }
        
        .answers-section.show {
            display: block;
        }
        
        .answers-header {
            padding: 20px;
            background: #f9fafb;
            font-weight: 600;
            color: #333;
            border-bottom: 1px solid #e5e5e5;
        }
        
        .answer-card {
            padding: 20px;
            border-bottom: 1px solid #f3f4f6;
        }
        
        .answer-card:last-child {
            border-bottom: none;
        }
        
        .answer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        
        .answer-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .answer-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #059669, #10b981);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 14px;
        }
        
        .answer-name {
            font-weight: 500;
            color: #333;
        }
        
        .answer-contact {
            font-size: 0.8rem;
            color: #666;
            margin-top: 2px;
        }
        
        .answer-time {
            font-size: 0.8rem;
            color: #666;
        }
        
        .answer-content {
            color: #333;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        
        .answer-actions {
            display: flex;
            gap: 15px;
        }
        
        .answer-form {
            padding: 20px;
            background: #f9fafb;
            border-top: 1px solid #e5e5e5;
        }
        
        .answer-form h4 {
            margin: 0 0 15px 0;
            color: #333;
            font-weight: 600;
        }
        
        .answer-input-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 12px;
            margin-bottom: 15px;
        }
        
        .answer-textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            min-height: 100px;
            resize: vertical;
            margin-bottom: 15px;
        }
        
        .search-bar {
            position: relative;
            margin-bottom: 30px;
        }
        
        .search-input {
            width: 100%;
            padding: 12px 16px 12px 45px;
            border: 1px solid #d1d5db;
            border-radius: 25px;
            font-size: 16px;
            background: white;
        }
        
        .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
        }
        
        .no-questions {
            text-align: center;
            padding: 60px 20px;
            color: #666;
        }
        
        .no-questions i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #d1d5db;
        }
        
        @media (max-width: 768px) {
            .forum-container {
                padding: 10px;
            }
            
            .form-row,
            .answer-input-row {
                grid-template-columns: 1fr;
            }
            
            .question-actions {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .forum-title {
                font-size: 1.8rem;
            }
        }
/*donation button*/
        .donate-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #8b4513, #d2691e);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
  margin-top: 20px;
}

.donate-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

   /* Floating bee icon */
#bee-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;       /* reduced from 80px */
  height: 60px;      /* reduced from 80px */
  cursor: pointer;
  z-index: 1000;
  border-radius: 50%;
  overflow: visible; /* important for tooltip visibility */
  margin-right: 20px;
}

#bee-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}


#bee-icon:hover img {
  transform: scale(1.1);
}

/* Tooltip */
#bee-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 10px;
  background: #6e1e2a;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  display: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

#bee-icon:hover #bee-tooltip {
  display: block;
}

/* Chatbox */
/* Chatbox */
#chatbot {
  position: absolute; /* changed from fixed */
  left: 30px;          /* initial position */
  top: 120px;          /* initial position */
  width: 360px;
  background: #fff8f6;
  border: 2px solid #6e1e2a;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(110, 30, 42, 0.3);
  padding: 20px;
  display: none;
  z-index: 999;
  cursor: default;
  margin-left: 60%;
  margin-top: -2%;
}

#chatbot h3 {
  margin-top: 0;
  color: #6e1e2a;
  font-size: 20px;
  font-weight: bold;
}

#chatbot ul {
  list-style: none;
  padding: 0;
}

#chatbot li {
  margin-bottom: 10px;
}

#chatbot button {
  width: 100%;
  padding: 10px;
  background-color: #6e1e2a;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

#chatbot button:hover {
  background-color: #4a121c;
}

/* Response area */
#response {
  margin-top: 20px;
  background: #fbe9e7;
  padding: 15px;
  border-radius: 5px;
  color: #4a121c;
  font-size: 15px;
  line-height: 1.5;
}

#response p {
  margin: 0 0 10px;
}

#response a {
  color: #b71c1c;
  font-weight: bold;
  text-decoration: underline;
}

/* Close button */
#close-chat {
  position: absolute;
  
  background: transparent;
  border: none;
  font-size: 14px;
  color: #6e1e2a;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  height: 1px;
  width: -1px;
}

#close-chat:hover {
  color: #c0392b;
}