* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

/* Variables */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #8b5cf6;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #FFFFFF;
    --light-bg: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.95);
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 15px 20px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 35px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo img {
    height: 35px;
    width: auto;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.translate-btn {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 1.5rem;
    box-shadow: var(--shadow);
}

.translate-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.donate-nav {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    font-weight: 500;
}

.nav-menu a.donate-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: 
        linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(55, 48, 163, 0.85) 50%, rgba(124, 58, 237, 0.85) 100%),
        url('../img/gallery/26.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::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" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="0.8" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="40" cy="80" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, var(--light-bg) 100%);
}

.hero-content {
    max-width: 750px;
    z-index: 2;
    position: relative;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero-location {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Section Styling */
section {
    padding: 4rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light-bg);
    position: relative;
}

.about::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"><circle cx="10" cy="10" r="1" fill="rgba(30,58,138,0.02)"/><circle cx="90" cy="30" r="1" fill="rgba(59,130,246,0.02)"/><circle cx="50" cy="90" r="1" fill="rgba(139,92,246,0.02)"/></svg>') repeat;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.about-text > p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.mission-points {
    display: grid;
    gap: 1.5rem;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.point i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.3rem;
}

.point h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Donate Section - Redesigned */
.donate {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #7c3aed 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
}

.donate::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"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="70" r="0.8" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.6;
}

.donate .container {
    position: relative;
    z-index: 2;
}

.donate h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.donate-content > p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.donate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.donate-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 1.8rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.donate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.donate-card:hover::before {
    transform: scaleX(1);
}

.donate-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.donate-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #fbbf24;
}

.donate-card p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
    line-height: 1.4;
}

.donate-card .btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    width: 100%;
}

.donate-card .btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.donate-card.featured {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.4);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.donate-card.featured::before {
    background: linear-gradient(90deg, #ffffff, #fbbf24, #ffffff);
    transform: scaleX(1);
}

.donate-card.featured h3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.donate-card.featured .btn {
    background: #fbbf24;
    color: var(--primary-color);
}

.donate-card.featured .btn:hover {
    background: #ffffff;
    color: var(--primary-color);
}

/* Custom amount styling */
.custom-amount {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.custom-amount input {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.7rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    width: 200px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.custom-amount input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.custom-amount input:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.custom-amount .btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
}

.custom-amount .btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Announcements Section */
.announcements {
    background: var(--light-bg);
}

.announcements-grid {
    display: grid;
    gap: 1.5rem;
}

.announcement-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.announcement-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.announcement-date {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
    box-shadow: var(--shadow);
}

.announcement-date .day {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
}

.announcement-date .month {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.announcement-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.announcement-content p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.event-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.event-image {
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.event-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.event-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

/* Join Us Section */
.join-us {
    background: var(--light-bg);
    text-align: center;
}

.join-options {
    margin-top: 1em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.join-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.join-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.join-card:hover::before {
    transform: scaleX(1);
}

.join-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.join-card i {
    font-size: 3rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.join-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.join-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 2.2rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #111827 100%);
    color: var(--white);
    padding: 3.5rem 0 1.5rem;
    position: relative;
}

.footer::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"><circle cx="25" cy="25" r="1" fill="rgba(59,130,246,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(139,92,246,0.1)"/></svg>') repeat;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.2rem;
    color: var(--white);
}

.footer-section p {
    color: #B2BEC3;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section ul li a {
    color: #B2BEC3;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Glass morphism effects */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Improved animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-content {
    animation: float 6s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Modern scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .translate-btn {
        margin-right: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .announcement-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .custom-amount {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .custom-amount input {
        width: 100%;
        max-width: 280px;
    }

    .event-image img {
        height: 160px;
    }

    .event-content {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 22px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .donate-card {
        padding: 2rem 1.5rem;
    }
    
    .join-card {
        padding: 2rem 1.5rem;
    }

    .event-image img {
        height: 150px;
    }

    section {
        padding: 1rem 0;
    }

    .hero {
        background-attachment: scroll;
    }
}

/* Smooth animations */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hindi version styles */
body.hindi {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Latest Announcement Section */
.latest-announcement {
    background: var(--white);
    padding: 4rem 0;
}

.announcement-spotlight {
    max-width: 100%;
}

.announcement-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.announcement-text {
    padding: 1rem 0;
}

.announcement-meta {
    margin-bottom: 1rem;
}

.announcement-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.announcement-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.announcement-excerpt {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.announcement-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.announcement-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.announcement-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.announcement-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.announcement-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.announcement-image:first-child {
    grid-column: 1 / -1;
}

.announcement-image:first-child img {
    height: 250px;
}

/* Gallery Preview Section */
.gallery-preview {
    background: var(--light-bg);
    padding: 4rem 0;
}

.gallery-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-main {
    position: relative;
}

.slideshow-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.gallery-slide {
    display: none;
    position: relative;
    height: 100%;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
}

.slide-caption h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow);
}

.slide-nav.prev {
    left: 15px;
}

.slide-nav.next {
    right: 15px;
}

.slide-nav i {
    color: var(--primary-color);
    font-size: 1rem;
}

.gallery-thumbnails {
    display: grid;
    gap: 1rem;
}

.thumbnail-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 190px;
}

.thumbnail-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay {
    transform: translateY(0);
}

.thumbnail-overlay span {
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-action {
    text-align: center;
}

.gallery-action .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .announcement-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .announcement-images {
        grid-template-columns: 1fr;
    }
    
    .announcement-image:first-child {
        grid-column: 1;
    }
    
    .announcement-image img,
    .announcement-image:first-child img {
        height: 180px;
    }
    
    .announcement-actions {
        flex-direction: column;
    }
    
    .gallery-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .slideshow-container {
        height: 300px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: 1fr 1fr;
    }
    
    .thumbnail-item {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .latest-announcement,
    .gallery-preview {
        padding: 3rem 0;
    }
    
    .announcement-title {
        font-size: 1.5rem;
    }
    
    .slideshow-container {
        height: 250px;
    }
    
    .slide-nav {
        width: 35px;
        height: 35px;
    }
    
    .thumbnail-item {
        height: 120px;
    }
    
    .slide-caption {
        padding: 1.5rem 1rem 1rem;
    }
    
    .slide-caption h4 {
        font-size: 1rem;
    }
}

/* Ensure existing donate card styles don't interfere */
.donate-card.featured {
    background: var(--accent-color);
    transform: scale(1.08);
    box-shadow: var(--shadow-xl);
}

.donate-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.donate-card:hover::before {
    opacity: 1;
}

.donate-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-xl);
}

/* Custom amount styling */
.custom-amount {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.custom-amount input {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.7rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    width: 200px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.custom-amount input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.custom-amount input:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.custom-amount .btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
}

.custom-amount .btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Donate Section */
@media (max-width: 768px) {
    .donate {
        padding: 2.5rem 0;
    }
    
    .donate h2 {
        font-size: 1.8rem;
    }
    
    .donate-options {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        max-width: 300px;
    }
    
    .donate-card {
        padding: 1.5rem 1.2rem;
    }
    
    .donate-card.featured {
        transform: scale(1);
        margin: 0.5rem 0;
    }
    
    .custom-amount {
        flex-direction: column;
        gap: 1rem;
    }
    
    .custom-amount input {
        width: 250px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .donate {
        padding: 1rem 0;
    }
    
    .donate h2 {
        font-size: 1.6rem;
    }
    
    .donate-card h3 {
        font-size: 1.6rem;
    }
    
    .donate-card {
        padding: 1rem 1rem;
    }
    
    .custom-amount input {
        width: 200px;
    }
}