
 :root {
            --primary: #2c5282;
            --secondary: #f39c12;
            --dark: #1e3a5f;
            --light: #f8f9fa;
            --text: #2c3e50;
            --white: #ffffff;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--light);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .top-bar {
            background: var(--primary);
            color: var(--white);
            padding: 10px 0;
            font-size: 14px;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .location {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--secondary);
        }

        header {
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        header nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-image img {
            height: 60px;
            width: auto;
        }

        .logo-text h2 {
            font-size: 18px;
            font-weight: 900;
            color: var(--primary);
            margin: 0;
            line-height: 1.2;
        }

        .logo-text p {
            font-size: 12px;
            color: var(--secondary);
            margin: 0;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 15px;
            position: relative;
            transition: all 0.3s;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::before {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--secondary);
            transform: translateY(-2px);
        }
.donate-btn {
            background: var(--secondary) !important;
            color: var(--white) !important;
            padding: 12px 35px !important;
            border-radius: 50px;
            font-weight: 700;
            box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .donate-btn:hover {
          background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
        }
       
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 10;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background-color: var(--dark);
            transition: all 0.3s;
            border-radius: 3px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }


        .page-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: var(--white);
            padding: 150px 40px 100px;
            text-align: center;
            position: relative;
            margin-top: 0;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            animation: shimmer 3s infinite;
        }

        .header-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            animation: heroFadeIn 1.5s ease-out;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .page-header h1 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 0 5px 30px rgba(0,0,0,0.5);
            animation: slideUp 1s ease-out 0.3s both;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .page-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
.categories {
    max-width: 1400px;
    margin: -30px auto 60px;
    padding: 0 40px;
    position: relative;
    z-index: 5;
}

.category-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) var(--light);
}

.category-tabs::-webkit-scrollbar {
    height: 8px;
}

.category-tabs::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 10px;
}

.category-tabs::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

.category-tabs::-webkit-scrollbar-thumb:hover {
    background: #e67e22;
}
       .category-tab {
    padding: 12px 30px;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap; /* ADD THIS LINE */
    flex-shrink: 0; /* ADD THIS LINE */
}

        .category-tab:hover {
            background: rgba(243, 156, 18, 0.1);
            color: var(--secondary);
        }

        .category-tab.active {
            background: var(--secondary);
            color: var(--white);
            border-color: var(--secondary);
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto 80px;
            padding: 0 40px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            grid-auto-flow: dense;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s;
            height: fit-content;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s;
        }

        .gallery-item:hover img {
            transform: scale(1.15);
        }
/* 
        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(30, 58, 95, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay-content {
            text-align: center;
            color: var(--white);
            padding: 20px;
        }

        .gallery-overlay h3 {
            font-size: 20px;
            margin-bottom: 8px;
            font-weight: 800;
        }

        .gallery-overlay p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }

        .zoom-icon {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 15px;
        } */

        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 20px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90vh;
            position: relative;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: var(--secondary);
            color: var(--white);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            transition: all 0.3s;
        }

        .lightbox-close:hover {
            transform: rotate(90deg) scale(1.1);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--secondary);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            transition: all 0.3s;
        }

        .lightbox-nav:hover {
            transform: translateY(-50%) scale(1.15);
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        .loading {
            text-align: center;
            padding: 80px 40px;
            grid-column: 1 / -1;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 5px solid var(--light);
            border-top-color: var(--secondary);
            border-radius: 50%;
            margin: 0 auto 30px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            100% { transform: rotate(360deg); }
        }

/* Footer */
        footer {
            background: #0d1b2a;
            color: var(--white);
            padding: 100px 40px 40px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--secondary);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-section h3 {
            margin-bottom: 30px;
            font-size: 24px;
            font-weight: 800;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }

        .footer-section p {
            color: #b0b0b0;
            line-height: 1.9;
            margin-bottom: 25px;
            font-size: 15px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 15px;
        }

        .footer-section ul li a {
            color: #b0b0b0;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
        }

        .footer-section ul li a::before {
            content: '→';
            color: var(--secondary);
            transition: transform 0.3s;
        }

        .footer-section ul li a:hover {
            color: var(--secondary);
            padding-left: 10px;
        }

        .footer-section ul li a:hover::before {
            transform: translateX(5px);
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .footer-social a {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 20px;
        }

        .footer-social a:hover {
            background: var(--secondary);
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #7f8c8d;
            font-size: 15px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 18px 25px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
            border-radius: 50px;
            font-size: 15px;
            transition: all 0.3s;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--secondary);
            background: rgba(255, 255, 255, 0.1);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-form button {
            background: var(--secondary);
            color: var(--white);
            border: none;
            padding: 18px 35px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
            background: #e67e22;
        }


        @media (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nav-menu .donate-btn {
    background: var(--secondary) ;
    color: var(--white) ;
    margin-top: 25px;
    padding: 34px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    display: block;
    width: 100%; /* full width */
    border-bottom: none;
    transition: background 0.3s;
}

.nav-menu .donate-btn:hover {
    background: #ff9933; /* lighter hover */
}

            .top-bar-content {
                padding: 0 20px;
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .location {
                font-size: 12px;
            }

            header nav {
                padding: 15px 20px;
            }

            .logo-image img {
                height: 45px;
            }

            .logo-text h2 {
                font-size: 14px;
            }

            .logo-text p {
                font-size: 10px;
            }

            .menu-toggle {
                display: flex;
            }
.nav-menu {
    display: none;
    position: fixed;
    top: 200px; /* below header */
    right: -380px; /* hidden offscreen */
    width: 320px;
    height: auto;
    max-height: calc(100vh - 100px);
    background: var(--dark);
    flex-direction: column;
    padding: 40px 30px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.25);
    transition: right 0.4s ease;
    z-index: 999;
    overflow-y: auto;
    border-radius: 12px; /* softer rounding */
}

.nav-menu.active {
    display: flex;
    right: 20px; /* slides into view */
}

/* Menu links */
.nav-menu a {
    color: var(--white);
    font-size: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15); /* subtle line */
    transition: all 0.3s ease;
    text-align: left; /* better than centered */
    font-weight: 500;
}

            .nav-menu li {
                width: 100%;
            }

            .nav-menu a {
                font-size: 16px;
                display: block;
                padding: 10px 0;
            }

            .nav-menu a::before {
                display: none;
            }

            .page-header {
                padding: 100px 20px 60px;
            }

            .page-header h1 {
                font-size: 32px;
            }

            .page-header p {
                font-size: 16px;
            }

             .categories {
        padding: 0 10px;
        margin-bottom: 40px;
    }

    .category-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 20px 15px;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

            .category-tab {
                padding: 10px 20px;
                font-size: 12px;
            }

            .gallery-container {
                padding: 0 20px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .lightbox-prev {
                left: 10px;
            }

            .lightbox-next {
                right: 10px;
            }

            .lightbox-close {
                top: -45px;
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

footer {
    padding: 40px 20px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1 1 100%;
}

.footer-section:nth-child(2),
.footer-section:nth-child(3) {
    flex: 1 1 calc(50% - 15px);
}
            .newsletter-form {
                flex-direction: column;
            }
        }

/* Language Selector - Text Only, No Flags */
.language-selector {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9998;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 2px solid var(--secondary);
    padding: 12px 22px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-family: inherit;
}

.language-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
    background: var(--secondary);
}

.language-btn:hover .language-text,
.language-btn:hover .arrow-icon {
    color: var(--white);
}

.language-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.arrow-icon {
    font-size: 10px;
    color: var(--secondary);
    transition: all 0.3s;
}

.language-btn:hover .arrow-icon {
    color: var(--white);
}

/* Language Menu (Popup Upward) */
.language-menu {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}

.language-option:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateX(5px);
}

/* Hide Google Translate Elements */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate {
    display: none !important;
}

#google_translate_element {
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-selector {
        bottom: 20px;
        left: 20px;
    }

    .language-btn {
        padding: 10px 18px;
        gap: 8px;
    }

    .language-text {
        font-size: 13px;
    }

    .language-menu {
        min-width: 160px;
        bottom: 60px;
    }

    .language-option {
        padding: 10px 16px;
        font-size: 14px;
    }
}
/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.6);
}
