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

/* Header Styles */
.header {
    background: var(--header-gradient);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    overflow: visible;
    /* Fix overlap by ensuring proper stacking */
    display: flex;
    flex-direction: column;
}

.header-top {
    background: var(--top-gradient);
    padding: 0.7rem 0;
    color: white;
    /* Fix overlap by ensuring proper positioning */
    position: relative;
    z-index: 1000;
    margin-bottom: 0;
    /* Add bottom margin to prevent overlap */
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.trust-name h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: white;
    margin: 0;
    text-align: center;
    flex: 1;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.trust-name h1::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #ffd700;
    overflow: hidden;
    border-right: 3px solid #ffd700;
    animation: waveTyping 8s steps(40) infinite;
    white-space: nowrap;
    text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700;
}

.trust-name h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #ffffff;
    overflow: hidden;
    animation: waveTyping 8s steps(40) infinite 4s;
    white-space: nowrap;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes waveTyping {
    0% {
        width: 0;
        border-right-color: #ffd700;
    }
    25% {
        width: 100%;
        border-right-color: #ffd700;
    }
    50% {
        width: 100%;
        border-right-color: transparent;
    }
    75% {
        width: 100%;
        border-right-color: transparent;
    }
    100% {
        width: 100%;
        border-right-color: transparent;
    }
}



/* Left and Right Logo Styling */
.left-logo,
.right-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

/* Navigation Center Alignment */
.header-bottom {
    background: white;
    padding: 0.7rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: center;
}

.header-bottom .header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.1rem;
    min-height: 60px;
    position: relative;
    z-index: 999;
    width: 98%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: visible;
    /* Fix overlap by ensuring proper spacing */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.left-logo .logo-circle,
.right-logo .logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    box-shadow: var(--shadow);
}

.left-logo .header-logo,
.right-logo .header-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-placeholder {
    display: flex;
    align-items: center;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    box-shadow: var(--shadow);
}

.header-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-bottom {
    background: white;
    padding: 0.7rem 0;
    border-bottom: 1px solid #e9ecef;
    /* Fix overlap by ensuring proper positioning */
    position: relative;
    z-index: 999;
    margin-top: 0;
}

.header-bottom .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.gif-section {
    display: flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    min-height: 50px;
    /* Ensure GIFs are always visible */
    opacity: 1 !important;
    /* Responsive flexbox support */
    width: 100%;
    height: 100%;
}

.gif-section.left-gif {
    position: absolute;
    left: 0;
    width: 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Prevent overlap with navigation */
    z-index: 999;
    top: 0;
    height: 100%;
}

.gif-section.right-gif {
    position: absolute;
    right: 0;
    width: 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Prevent overlap with navigation */
    z-index: 999;
    top: 0;
    height: 100%;
}

.gif-placeholder {
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    /* Fix overlap by ensuring proper containment */
    overflow: hidden;
    position: relative;
}

.header-gif {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.gif-fallback {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.8rem;
    text-align: center;
}

/* Page Header Styles - Fixed spacing for pages without hero sections */
.page-header {
    background: var(--top-gradient) !important;
    color: white !important;
    padding: 200px 0 100px 0 !important; /* Reduced top padding due to smaller header height */
    margin: 0 auto !important;
    text-align: center !important;
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-height: 300px !important;
}

.page-header .container {
    max-width: 90% !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.page-header h1 {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin: 50px 0 1rem 0 !important;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.page-header p {
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    margin: 0 auto 50px auto !important;
    color: white !important;
    opacity: 1 !important;
    max-width: 600px !important;
    line-height: 1.6 !important;
}

/* Responsive adjustments for page headers */
@media (max-width: 768px) {
    .page-header {
        padding: 160px 0 80px 0 !important;
    }
    
    .page-header .container {
        padding: 0 2rem !important;
    }
    
    .page-header h1 {
        font-size: 2.5rem !important;
        margin: 30px 0 1rem 0 !important;
    }
    
    .page-header p {
        font-size: 1.1rem !important;
        margin: 0 auto 30px auto !important;
    }
}

/* Donation Form Styles */
.donation-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.donor-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.donor-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.donor-form .form-group.full-width {
    flex: none;
    width: 100%;
}

.donor-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.donor-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.donor-form .form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(247, 158, 27, 0.1);
}

.donor-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.donor-form .form-actions {
    text-align: center;
    margin-top: 30px;
}

.donor-form .btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive form layout */
@media (max-width: 768px) {
    .donor-form {
        padding: 30px 20px;
    }
    
    .donor-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .donor-form .form-group {
        margin-bottom: 15px;
    }
}



.menu-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    /* Fix overlap by ensuring proper containment */
    padding: 0 0.25rem;
    overflow: visible;
    position: relative;
    margin: 0 auto;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.15rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    /* Fix overlap by ensuring proper positioning */
    position: relative;
    z-index: 998;
    /* Prevent overlap with GIFs */
    max-width: 100%;
    overflow: visible;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0.3rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    /* Prevent overlap with GIFs */
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    font-size: 0.8rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: #f8f9fa;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        max-width: 95%;
    }
    
    .header-top .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-bottom .header-container {
        width: 90%;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .gif-section.left-gif {
        flex: 0 0 15%;
    }
    
    .gif-section.right-gif {
        flex: 0 0 15%;
    }
    
    .menu-section {
        flex: 1;
    }
    
    .trust-name h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .left-logo .logo-circle,
    .right-logo .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .nav-menu {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .gif-placeholder {
        width: 60px;
        height: 55px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .left-logo,
    .right-logo {
        flex: 0 0 auto;
    }
}

/* Additional responsive fixes for header alignment */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 1.5rem;
        max-width: 92%;
    }
    
    .header-top .header-container {
        justify-content: space-between;
        gap: 1rem;
    }
    
    .header-bottom .header-container {
        justify-content: center;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .trust-name h1 {
        font-size: 2.8rem;
        text-align: center;
    }
    
    .nav-menu {
        gap: 1.5rem;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .gif-section {
        flex: 0 0 100px;
        width: 100px;
        min-width: 100px;
        max-width: 100px;
    }
    
    .gif-placeholder {
        width: 60px;
        height: 55px;
    }
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 1.5rem;
        max-width: 92%;
    }
    
    .header-top .header-container {
        justify-content: space-between;
        gap: 1rem;
    }
    
    .header-bottom .header-container {
        width: 95%;
        gap: 0.25rem;
        padding: 0 1.5rem;
    }
    
    .gif-section.left-gif {
        width: 10%;
    }
    
    .gif-section.right-gif {
        width: 10%;
    }
    
    .menu-section {
        flex: 1;
    }
    
    .trust-name h1 {
        font-size: 2.8rem;
        text-align: center;
    }
    
    .nav-menu {
        gap: 1.5rem;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .gif-section {
        width: 100%;
        min-width: 60px;
        max-width: 80px;
    }
    
    .gif-placeholder {
        width: 60px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 0.8rem;
        max-width: 98%;
    }
    
    .header-top .header-container {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .header-bottom .header-container {
        width: 90%;
        gap: 0;
        padding: 0 0.8rem;
    }
    
    .trust-name h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .left-logo .logo-circle,
    .right-logo .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .gif-section.left-gif {
        width: 15%;
    }
    
    .gif-section.right-gif {
        width: 15%;
    }
    
    .gif-placeholder {
        width: 45px;
        height: 45px;
    }
    
    .nav-menu {
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.25rem 0.4rem;
        font-size: 0.75rem;
        text-align: center;
    }
}

:root {
    --primary-color: #1E3A5F;
    --secondary-color: #F79E1B;
    --accent-color: #2E7D32;
    --neutral-light: #FFFFFF;
    --neutral-white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --header-gradient: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --top-gradient: linear-gradient(90deg, #1E3A5F 0%, #2c5aa0 100%);
    --logo-gradient: linear-gradient(135deg, #F79E1B 0%, #e68a00 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--neutral-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--neutral-white);
}

.btn-primary:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: #e68a00;
    border-color: #e68a00;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--neutral-white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--neutral-white);
    border: 2px solid var(--neutral-white);
}

.btn-outline-white:hover {
    background-color: var(--neutral-white);
    color: var(--primary-color);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-donate {
    background-color: var(--secondary-color);
    color: var(--neutral-white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-donate:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border: 3px solid var(--primary-color);
    border-radius: 0 0 15px 15px;
}

/* Header Container */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Top Row: Trust Name and Logo */
.header-top {
    padding: 1.5rem 0;
    border-bottom: 3px solid var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, #2c5aa0 100%);
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-top .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trust-name h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--neutral-white);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-placeholder {
    display: flex;
    align-items: center;
}

.logo-circle {
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--neutral-white);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    animation: slideInRight 0.8s ease-out 0.2s both;
    overflow: hidden;
}

.header-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    object-position: top center;
}

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

.logo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(247, 158, 27, 0.6);
}

/* Bottom Row: Navigation with GIFs */
.header-bottom {
    padding: 1rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 1000;
}

/* Removed duplicate and conflicting rules */

/* Removed conflicting gif styles */

/* Removed conflicting menu-section rules */

/* Removed conflicting navbar rules */

/* Removed conflicting nav-link rules */

.nav-link.active {
    background-color: rgba(247, 158, 27, 0.15);
    color: var(--secondary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}



/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 1rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
}







body header .gif-section {
    display: flex;
    flex-direction: row;
    flex: 0 0 120px;
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
}

body header .menu-section {
    display: flex;
    flex-direction: row;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
}

body header .nav-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
}

body header .nav-menu .nav-item {
    display: inline-block;
    margin: 0 10px;
}

body header .nav-menu .nav-link {
    display: inline-block;
    white-space: nowrap;
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: bold;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .trust-name h1 {
        font-size: 1.8rem;
        animation: slideInTop 0.8s ease-out;
    }
    
    .logo-circle {
        animation: slideInBottom 0.8s ease-out 0.2s both;
    }
    
    .header-bottom .header-container {
        width: 90%;
        gap: 1rem;
        position: relative;
    }
    
    .gif-section.left-gif {
        flex: 0 0 15%;
    }
    
    .gif-section.right-gif {
        flex: 0 0 15%;
    }
    
    .menu-section {
        flex: 1;
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
    }
    
    .gif-section {
        width: 100%;
        min-width: 50px;
        max-width: 60px;
    }
    
    .gif-placeholder {
        width: 50px;
        height: 40px;
    }
    
    .hamburger {
        display: flex;
        position: absolute;
        right: 0;
        top: 0;
        margin: 0;
        z-index: 1001;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        width: 100%;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        margin-top: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    .nav-link {
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-radius: 0;
        margin: 0;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(247, 158, 27, 0.1);
        transform: none;
    }
    
    .nav-link.active::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .trust-name h1 {
        font-size: 1.5rem;
    }
    
    .logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .header-top {
        padding: 1.5rem 0;
    }
    
    .header-bottom {
        padding: 1rem 0;
    }
    
    .nav-menu {
        padding: 0.5rem 0;
    }
    
    .nav-link {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    min-height: calc(100vh - 180px);
    max-height: calc(100vh - 180px);
    overflow: hidden;
    margin-top: 180px; /* Account for fixed header height - calculated: 179px */
}

.slider-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 180px);
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 8px;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 10px 0 0;
    margin: 0;
    font-size: 1.1em;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.8) 0%, rgba(0, 51, 102, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
}

.slide-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 2; /* Ensure content is above overlay */
}

.hero-text {
    max-width: 600px;
    color: white;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.prev-btn:hover,
.next-btn:hover {
    background: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-white) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: stretch;
    min-height: 600px;
}

.about-text-section {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-content {
    max-width: 100%;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.about-description p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-description p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 24px;
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.about-cta {
    margin-top: 1.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.about-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-main-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
    flex: 1;
}

.about-image-container:hover .about-main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 51, 102, 0.9));
    padding: 2rem;
    color: white;
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.overlay-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

.stats-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-highlight-item {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    margin-bottom: 0.5rem;
    text-shadow: none;
    opacity: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--primary-color) !important;
    font-weight: 500;
    text-shadow: none;
    opacity: 1;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--neutral-light);
    border-radius: var(--border-radius);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

/* Causes Section */
.causes {
    padding: 80px 0;
    background-color: #FFF3E0; /* Light orange background */
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

@media (max-width: 768px) {
    .causes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.cause-card {
    background-color: var(--neutral-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cause-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cause-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.cause-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cause-card p {
    margin-bottom: 1.5rem;
    text-align: left;
    flex-grow: 1;
}

.cause-card .btn {
    margin-top: auto;
}

/* Featured Project */
.featured-project {
    padding: 5rem 0;
    background: var(--neutral-light);
}

.project-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 500px;
    min-height: 500px;
}

.project-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.project-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.project-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 0.75rem;
    background: var(--neutral-light);
    border-radius: 8px;
}

.project-stats .stat {
    text-align: center;
    font-size: 0.9rem;
}

.project-stats .stat strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.project-progress {
    margin-bottom: 2rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.progress-bar {
    height: 8px;
    background: var(--neutral-light);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.project-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-actions .btn {
    flex: 1;
    min-width: 140px;
}

/* Call to Action */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    color: var(--neutral-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--neutral-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-consent p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a3a5f 0%, #122b44 100%);
    color: white;
    padding: 4rem 0 0;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 12px;
    margin-top: 4px;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.mini-donate {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.mini-donate h5 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.donate-amounts {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.amount-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.amount-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Developer Credit Styling */
.developer-credit {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.developer-credit p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-style: italic;
}

.developer-credit a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: #e68a00;
    text-decoration: underline;
}

/* Footer Pattern Overlay */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-section h4::after {
        left: 0;
        transform: none;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .contact-info p {
        justify-content: flex-start;
    }
    
    .donate-amounts {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        text-align: left;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .developer-credit {
        text-align: left;
        margin-top: 1rem;
    }
}

/* Remove duplicate footer styles */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer p,
.footer a,
.footer span,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
    color: white !important;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-section ul li a {
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: white !important;
    opacity: 0.9;
}

.contact-info i {
    color: var(--secondary-color);
    width: 16px;
}

.mini-donate {
    margin-top: 1.5rem;
}

.mini-donate h5 {
    color: var(--neutral-white);
    margin-bottom: 1rem;
}

.donate-amounts {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.amount-btn {
    background-color: var(--secondary-color);
    color: var(--neutral-white);
    border: none;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.amount-btn:hover {
    background-color: var(--accent-color);
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white !important;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Cookie Consent */
.cookie-consent {
    color: white;
    text-align: left;
}

/* Hero Banner */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.about-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Basic Section Styles */
.about-section {
    padding: 80px 0;
    position: relative;
}

.about-section.bg-white {
    background-color: #ffffff;
}

.about-section.bg-light-grey {
    background-color: #f8f9fa;
}

.about-section.bg-light {
    background-color: #f9f9f9;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-text {
    flex: 1;
    min-width: 0;
}

.section-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.section-image {
    flex: 1;
    min-width: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.section-image img:hover {
    transform: scale(1.03);
}

/* Values List */
.values-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.values-list li {
    margin-bottom: 12px;
    color: #555;
    font-size: 1.05rem;
    position: relative;
    padding-left: 25px;
}

.values-list li:before {
    content: '•';
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

/* MVP Section */
.mvp-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.mvp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.mvp-item {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.mvp-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mvp-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.mvp-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mvp-item p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.mvp-item .btn {
    margin-top: 20px;
}

/* Button spacing for all buttons on Get Involved page */
.get-involved .btn,
#volunteer-form .btn,
.about-section .btn {
    margin-top: 20px;
}

/* Specific button spacing for different sections */
.volunteer-benefits + .btn {
    margin-top: 25px;
}

.section-content .btn {
    margin-top: 25px;
}

/* Enhanced button styling for Get Involved page */
.get-involved .btn,
#volunteer-form .btn {
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.get-involved .btn:hover,
#volunteer-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Ensure buttons don't get attached to content */
.mvp-item p + .btn,
.section-text p + .btn,
.volunteer-benefits + .btn {
    margin-top: 25px !important;
}

/* Volunteer Form Styles */
.volunteer-form-container {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #e5e7eb;
}

.volunteer-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    line-height: 1.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(247, 158, 27, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d1d5db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.form-submit .btn {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 200px;
}

/* Section header improvements for volunteer form */
#volunteer-form .section-header {
    margin-bottom: 3rem;
}

#volunteer-form .section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#volunteer-form .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Additional spacing for volunteer form section */
#volunteer-form.about-section {
    padding: 4rem 0;
}

#volunteer-form .container {
    max-width: 900px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .volunteer-form-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .volunteer-form {
        gap: 1.5rem;
    }
    
    .form-submit .btn {
        min-width: 100%;
        padding: 1rem 2rem;
    }
}

.contact-section .form-group {
    flex: 1 1 100%;
    min-width: 0;
    margin-bottom: 15px;
}

.contact-section .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    overflow-x: hidden;
    align-items: center;
}

/* Beginning Section */
.beginning-section {
    padding: 100px 0;
    background: white;
}

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

.beginning-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 50px;
}

.timeline:before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin: 0 0 30px 0;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-year {
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content {
    padding: 20px 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.beginning-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.beginning-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Achievements Section */
.achievements-section {
    padding: 80px 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.achievement-item {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.achievement-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.achievement-text {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Chairman Section */
.chairman-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.chairman-content {
    display: flex;
    align-items: center;
    max-width: 1100px;
    gap: 40px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.chairman-image {
    flex: 1;
    min-width: 0;
}

.chairman-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chairman-message {
    flex: 1.2;
    padding: 50px;
}

.chairman-message h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.chairman-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    position: relative;
    padding: 0 0 0 30px;
    margin: 0 0 20px;
    border-left: 4px solid var(--secondary-color);
}

.chairman-quote footer {
    margin-top: 25px;
    font-style: normal;
}

.chairman-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.chairman-title {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

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

.team-member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-member h3 {
    font-size: 1.1rem;
    margin: 10px 0 5px;
    color: #2c3e50;
}

.team-member .role {
    font-size: 0.85rem;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.team-member p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Our Work Page - Programs Overview */
.programs-overview {
    padding: 80px 0;
}

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

.program-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    color: var(--text-dark);
    text-decoration: none;
}

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

.program-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.program-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.program-card p {
    color: var(--text-light);
    margin: 0;
}

/* Impact Stats */
.impact-stats {
    padding: 60px 0;
    text-align: center;
}

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

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* Program Sections */
.program-section {
    padding: 100px 0;
}

.program-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.program-content.reverse {
    flex-direction: row-reverse;
}

.program-text {
    flex: 1;
}

.program-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.program-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.program-image:hover img {
    transform: scale(1.03);
}

.section-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.program-section .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.program-highlights {
    margin: 40px 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.highlight-icon {
    background: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.highlight-item h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.highlight-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .program-content,
    .program-content.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .program-text,
    .program-image {
        width: 100%;
    }
    
    .program-section h2 {
        font-size: 1.8rem;
    }
}

/* Background Colors */
.bg-light-grey {
    background-color: #f8f9fa;
}

.bg-orange,
section.bg-orange,
.mvp-section.bg-orange,
.achievements-section.bg-orange,
.cta.bg-orange {
    background-color: #fff5e6 !important;
    background-image: linear-gradient(135deg, #fff5e6 0%, #ffebcc 100%) !important;
}

.bg-orange {
    background-color: #fff5e6;
    background-image: linear-gradient(135deg, #fff5e6 0%, #ffebcc 100%);
}



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

.about-section.bg-white {
    background-color: #ffffff;
}

.about-section.bg-orange {
    background-color: #fff5e6;
    background-image: linear-gradient(135deg, #fff5e6 0%, #ffebcc 100%);
}

.section-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.section-text, 
.section-image {
    flex: 1;
    min-width: 0;
}

.section-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.values-list li:before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .section-content.reverse {
        flex-direction: column;
    }
    
    .section-text, 
    .section-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .section-text {
        text-align: center;
    }
    
    .values-list {
        text-align: center;
    }
    
    .values-list li {
        padding-left: 0;
    }
    
    .values-list li:before {
        display: none;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.about-content {
    padding: 5rem 0;
}

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

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.achievements-section {
    background: var(--neutral-light);
    padding: 5rem 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.achievement-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.achievement-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.achievement-item p {
    color: var(--text-dark);
    font-weight: 500;
}

.team-section {
    padding: 5rem 0;
}

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

.team-member {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-info .role {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-info p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Our Work Page Styles */
.causes-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.causes-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.program-section {
    padding: 4rem 0;
}

.program-section:nth-child(even) {
    background: var(--neutral-light);
}

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

.program-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.program-features {
    list-style: none;
    margin: 2rem 0;
}

.program-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.program-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.program-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.impact-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.impact-stat h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Get Involved Page Styles */
.get-involved-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.get-involved-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.volunteer-opportunities {
    padding: 5rem 0;
}

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

.opportunity-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease;
}

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

.opportunity-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.opportunity-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partnership-section {
    background: var(--neutral-light);
    padding: 5rem 0;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: white;
}

/* Events Page Styles */
.events-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.events-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.event-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.event-image {
    height: 200px;
    background: var(--neutral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
}

.event-content {
    padding: 2rem;
}

.event-date {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.event-meta i {
    color: var(--secondary-color);
}

.calendar-section {
    background: var(--neutral-light);
    padding: 5rem 0;
}

.calendar-container {
    background: white;
}

/* Gallery Page Styles */
/* Gallery Preview */


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 0; /* Removed top and bottom margins */
    padding: 0 1rem; /* Added horizontal padding for mobile */
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    object-position: center;
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
}

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

/* Hide gallery overlay/caption */
.gallery-overlay {
    display: none;
}



.gallery-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Call to Action */
.cta {
    background: #24589c; /* Updated to dark blue */
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.cta p {
    color: white;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.cta .btn {
    min-width: 180px;
    text-align: center;
}

.cta .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cta .btn-primary:hover {
    background-color: #142a47;
    border-color: #142a47;
}

.cta .btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.gallery-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.gallery-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    padding: 2rem 0;
    background: var(--neutral-light);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.photo-gallery {
    padding: 0 0 6rem;
    background: var(--neutral-light);
}

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

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

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.video-section {
    background: var(--neutral-light);
    padding: 5rem 0;
}

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

.video-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    height: 200px;
    background: var(--neutral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        width: 100%;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--neutral-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

    .nav-menu li {
        margin: 1rem 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 {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
    }

    .project-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .project-image {
        height: 250px;
    }
    
    .project-content {
        padding: 25px 20px;
    }

    /* Chairman section mobile layout */
    .chairman-content {
        flex-direction: column;
    }
    .chairman-image {
        width: 100%;
    }
    .chairman-message {
        padding: 20px;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        align-items: center;
    }

    .about-text-section {
        padding-right: 0;
        text-align: center;
        justify-content: flex-start;
    }

    .about-main-image {
        min-height: 300px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-cta .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: left;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

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

    .gallery-item img {
        height: 250px;
    }

    .gallery-overlay {
        transform: translateY(0);
        padding: 1.5rem;
    }

    .gallery-overlay h3 {
        font-size: 1.3rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: calc(100vh - 160px);
        margin-top: 160px;
    }

    .slide-overlay {
        padding: 120px 20px 80px;
    }

    .slide-content {
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .slider-controls {
        bottom: 20px;
        gap: 1rem;
    }

    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .slide-overlay {
        padding: 100px 15px 60px;
    }

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

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

    .container {
        padding: 0 15px;
    }

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

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

    .about-stats {
        flex-direction: column;
    }

    .donate-amounts {
        justify-content: flex-start;
    }

    .about-preview {
        padding: 60px 0;
    }

    .about-title {
        font-size: 1.8rem;
    }

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

    .about-description p {
        font-size: 1rem;
    }

    .about-main-image {
        height: 250px;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    /* Lightbox responsive adjustments */
    .lightbox-nav {
        padding: 0.5rem;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    /* Footer mobile alignment */
    .footer-content {
        text-align: left;
    }
    
    .footer-bottom {
        text-align: left;
    }
    
    .footer-links {
        justify-content: flex-start;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Donation page responsive */
    .payment-methods {
        justify-content: center;
    }

    .payment-method {
        min-width: 70px;
        padding: 0.75rem;
    }

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

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

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .offline-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }



    .section-header h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .donation-type {
        flex-direction: column;
        gap: 1rem;
    }

    .preset-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(247, 158, 27, 0.1);
}

.form-control.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--neutral-white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-info {
    color: white;
    margin-top: 1rem;
    text-align: center;
}

.lightbox-info h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    color: #ccc;
    margin-bottom: 0;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

/* Sandbox Mode Notice */


/* Direct Donation Section Styles */
.direct-donation-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.donation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.donation-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.donation-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.donation-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.bank-transfer-option {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.bank-transfer-option h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bank-transfer-option p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bank-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.bank-detail-row {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.bank-detail-row:last-child {
    margin-bottom: 0;
}

.bank-detail-row .label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 120px;
    margin-right: 1rem;
}

.bank-detail-row .value {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    flex: 1;
}

.copy-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.copy-btn:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.bank-transfer-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.bank-transfer-note p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.5;
}

.bank-transfer-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.bank-transfer-note a:hover {
    text-decoration: underline;
}

/* Copy notification styles */
.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.copy-notification.success {
    background: #28a745;
}

.copy-notification.error {
    background: #dc3545;
}

.copy-notification i {
    font-size: 1.1rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .copy-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        animation: slideInTop 0.3s ease;
    }
    
    @keyframes slideInTop {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

.donation-option {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.donation-option:hover {
    transform: translateY(-5px);
}

.donation-option h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.donation-option p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.donation-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.donation-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.donation-info ol {
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 1.5rem;
}

.donation-info li {
    margin-bottom: 0.5rem;
}

.donation-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.razorpay-logo {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.razorpay-logo span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .donation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .donation-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bank-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .bank-detail-row .label {
        min-width: auto;
        margin-right: 0;
    }
    
    .bank-detail-row .value {
        font-size: 1rem;
    }
    
    .copy-btn {
        margin-left: 0;
        align-self: flex-end;
    }
}

/* Donation Page Styles */

.donation-impact {
    padding: 5rem 0;
    background: var(--neutral-light);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

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

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

.impact-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.impact-description h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.impact-description p {
    color: var(--text-light);
    line-height: 1.6;
}



.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}



.info-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.info-card li i {
    color: var(--accent-color);
}

.offline-donation {
    padding: 5rem 0;
    background: var(--neutral-light);
}

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

.offline-method {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.method-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.offline-method h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bank-details {
    text-align: left;
    margin: 1rem 0;
}

.bank-details p {
    margin-bottom: 0.5rem;
}

.bank-details strong {
    color: var(--primary-color);
}

.offline-method address {
    font-style: normal;
    margin: 1rem 0;
    line-height: 1.6;
}

.transparency {
    padding: 5rem 0;
    background: white;
}

.transparency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.transparency-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.transparency-features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.fund-breakdown h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.breakdown-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-item {
    background: var(--neutral-light);
    padding: 1rem;
    border-radius: 8px;
}

.chart-bar {
    height: 8px;
    background: var(--secondary-color);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.chart-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.chart-label strong {
    color: var(--primary-color);
    font-weight: 600;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--neutral-light);
    border-radius: var(--border-radius);
    min-width: 80px;
    text-align: center;
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.payment-method span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.security-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--neutral-light);
    border-radius: var(--border-radius);
    color: var(--accent-color);
}

.security-badges i {
    font-size: 1.2rem;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background: var(--neutral-light);
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.qr-placeholder i {
    font-size: 3rem;
    color: var(--text-light);
}

.qr-placeholder p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-style: italic;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none; }
.visible { display: block; }

/* Hide Desktop Header on Mobile and Tablet (for all pages except index) */
@media screen and (max-width: 1024px) {
    /* Hide desktop header on tablets and mobile for all pages except index */
    body:not(.index-page) .header {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    /* Hide desktop header on mobile for all pages except index */
    body:not(.index-page) .header {
        display: none !important;
    }
}
