* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: orange;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}


.preloader-logo img {
    width: 90px;      /* Adjust size as needed */
    height: auto;
}

@keyframes preloader-spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

        @media (max-width: 768px) {
            .preloader-logo {
                font-size: 2.2rem;
                transform: scale(0.6);
            }
        }
        
        @media (max-width: 480px) {
            .preloader-logo {
                font-size: 1.8rem;
                transform: scale(0.7);
            }
        
            .preloader {
                padding: 1rem;
            }
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

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

     /* Align logo image left and text right in .logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;           /* Space between logo and text */
    height: 60px;
    padding: 0 10px;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: orange;         /* Adjust color as needed */
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .logo {
        font-size: 1rem;
        padding: 0 5px;
    }
    .logo img {
        height: 36px;
    }
}

.logo img:hover {
    transform: scale(1.05);
}

        .nav-toggle {
            display: none;
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                position: relative;
                height: 75px;
            }
}
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: orange;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: orange;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(10, 25, 47, 0.6), rgba(10, 25, 47, 0.6)),
            url('/static/images/hero.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            opacity: 0;
            transform: translateY(50px);
            margin: 70px;
            line-height: normal;
            margin-bottom: 30px;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
        }

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

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: orange;
            color: white;
            box-shadow: 0 4px 15px rgba(255, 166, 0, 0.425);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px orange;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s ease;
        }

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

        .btn-secondary::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s ease;
        }

        .btn-secondary:hover{
            background: orange;
            color: white;
            border: 2px solid orange;
        }
        
        .btn-secondary:hover::after {
            background: rgba(255, 167, 2, 0.795);
            width: 100%;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            opacity: 0;
        }

        .scroll-arrow {
            width: 2px;
            height: 30px;
            background: white;
            margin: 0 auto 0.5rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        /* Section Styles */
        .section {
            padding: 5rem 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
            opacity: 0;
            transform: translateY(30px);
        }

        /* Mission Section */
.mission-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .mission-text {
            opacity: 0;
            transform: translateX(-50px);
        }

        .mission-text h3 {
            font-size: 1.8rem;
            color: orange;
            margin-bottom: 1rem;
        }

        .mission-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

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

        .values li {
            padding: 0.5rem 0;
            font-weight: 600;
            color: #555;
            position: relative;
            padding-left: 2rem;
        }

        .values li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: orange;
            font-weight: bold;
        }

        .mission-image {
            margin-left: 10%;
            width: 90%;
            height: 80%;
            object-fit: cover;
            border-radius: 20px;
            opacity: 0;
            transform: translateX(50px);
            display: flex;
            position: relative;    
            z-index: 1;              
        }
        

        .mission-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            
        }

        .mission-image-container {
            position: relative;
            width: fit-content;
            height: fit-content;
        }
        
        .orange-box {
            position: absolute;
            top: -40px;
            right: -50px; /* shifted to the right */
            width: 80%;
            height: 100%;
            background-color: orange;
            z-index: 0;
        }

        .mission-image {
            position: relative;
            z-index: 1;
        }
        

        

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

        .program-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(50px);
            cursor: pointer;
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .program-card h3 {
            color: orange;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .program-card p {
            color: #666;
            line-height: 1.6;
        }

        .program-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, orange, rgba(255, 166, 0, 0.315));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        /* Stories Section */
        .stories-carousel {
            position: relative;
            overflow: hidden;
            margin-top: 2rem;
        }

        .stories-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .story-card {
            min-width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            padding: 2rem 0;
        }

        .story-image {
            height: 400px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .story-content h3 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .story-quote {
            font-size: 1.2rem;
            font-style: italic;
            color: orange;
            margin-bottom: 1rem;
            padding-left: 2rem;
            border-left: 4px solid orange;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
          }
          
          .dot {
            height: 14px;
            width: 14px;
            margin: 0 8px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.3s;
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); /* subtle shadow */
          }
          
          .dot.active {
            background-color: orange;
            box-shadow: 0 0 6px rgba(255, 165, 0, 0.6); /* brighter shadow */
          }
          

        

        /* Transparency Section */
        .transparency {
            text-align: center;
        }

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

        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(30px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: orange;
            display: block;
        }

        .stat-label {
            color: #666;
            font-size: 1.1rem;
            margin-top: 0.5rem;
        }

        .chart-container {
            max-width: 400px;
            margin: 2rem auto;
            opacity: 0;
            transform: scale(0.8);
        }

        /* Get Involved Section */
        .involvement-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .involvement-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .involvement-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .involvement-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, orange, rgba(255, 166, 0, 0.315));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 1rem;
        }

        .contact {
            background:white;
            color: white;
            padding: 4rem 2rem;
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 50px;
          }
        
          .contact h2{
            color: #222;
          }

          .contact-grid h3{
            color: #222;
          }

          .contact-grid p{
            color: #222;
          }


          .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
          }
        
          .contact-form {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
          }
        
          .form-group {
            margin-bottom: 1.5rem;
          }
        
          .form-group label {
            color: #222;
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
          }
        
          .form-group input,
          .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            background: rgba(102, 126, 234, 0.3);
            font-size: 1rem;
          }
        
          .form-group input:focus,
          .form-group textarea:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(255, 166, 0, 0.644);
          }
        
          .contact-info h3 {
            color: orange;
            margin-bottom: 1rem;
          }
        
          .contact-info p {
            color: #222;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
          }
        
          .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
          }
        
          .social-link {
            width: 50px;
            height: 50px;
            background: orange;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
          }
        
          .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px orange;
          }
        
          .newsletter {
            margin-top: 2rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
          }
        
          .newsletter-form {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            color: #222;
          }
        
          .newsletter-form input {
            flex: 1;
            padding: 0.5rem;
            border: none;
            border-radius: 5px;
            color: #222;
            background-color: rgba(102, 126, 234, 0.3);
          }
        
          .newsletter-form input:focus{
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 166, 0, 0.644);
          }

          .newsletter-form button {
            padding: 0.5rem 1rem;
          }
        
          /* Footer */
          .footer {
            background: #2c3e50;
            color: #f8f5f0;
            padding: 4rem 2rem 2rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: orange;
            font-size: 1.25rem;
            letter-spacing: 0.5px;
        }
        .footer-section p {
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .footer-section ul {
            padding: 0;
            margin: 0;
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 0.75rem;
        }
        .footer-section ul li a {
            color: #f8f5f0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            cursor: pointer; /* Ensure links look clickable */
        }
        .footer-section ul li a:hover {
            color: orange;
        }
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        .social-icon {
            width: 40px;
            height: 40px;
            background: #34495e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #f8f5f0;
            font-size: 1rem;
            text-decoration: none;
        }
        .social-icon:hover {
            background: orange;
            color: #2c3e50;
            transform: translateY(-3px);
        }
        /* Renamed and Updated Modal Styles */
        .legal-policy-modal {
            display: none; 
            position: fixed; 
            z-index: 1000; 
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto; 
            background-color: rgba(0,0,0,0.6); /* Slightly darker overlay */
        }
        .modal-content {
            background-color: #fefefe;
            color: #333;
            margin: 5% auto;
            padding: 30px;
            border: 1px solid #888;
            width: 80%; 
            max-width: 700px;
            border-radius: 8px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .modal-close {
            color: #aaa;
            position: absolute;
            top: 10px;
            right: 25px;
            font-size: 35px;
            font-weight: bold;
        }
        .modal-close:hover,
        .modal-close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        .modal-body {
            max-height: 70vh;
            overflow-y: auto;
            padding-right: 15px; /* Add padding for scrollbar */
        }
        .modal-body h2 {
            margin-top: 0;
            color: #2c3e50;
        }
        .modal-body p, .modal-body li {
            font-size: 1rem;
            line-height: 1.6;
        }
        .footer-bottom { /* Merged from previous CSS snippet */
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            font-size: 0.9rem;
            color: #bbb;
        }
         .footer-bottom a {
            color: orange; /* Match accent color */
            text-decoration: none;
         }
         .footer-bottom a:hover {
            text-decoration: underline;
         }
        
        
          @media (max-width: 768px) {
            .contact-grid {
              grid-template-columns: 1fr;
            }
          }

        /* Default */
.btn-don {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: orange;
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 5px 15px orange;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
}

/* Hover */
.btn-don:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px orange;
}

/* For screens ≤ 785px */
@media (max-width: 785px) {
    .btn-don {
        padding: 12px 16px;
        font-size: 0.9rem;
        bottom: 15px;
        right: 15px;
    }
}

/* For screens ≤ 400px */
@media (max-width: 400px) {
    .btn-don {
        padding: 10px 14px;
        font-size: 0.85rem;
        bottom: 10px;
        
        border-radius: 20px;
        max-width: 90vw;
        white-space: normal; /* allow wrapping on very small screens */
        text-align: center;
    }
}

            

            /* Responsive Styles for Hero Section */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.7rem;
    }
    .hero-content {
        max-width: 600px;
        padding: 0 1.5rem;
    }
    .btn {
        font-size: 1rem;
        padding: 0.9rem 1.7rem;
    }
}

@media (max-width: 900px) {
    .hero {
        height: 70vh;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .hero-content {
        max-width: 90vw;
        padding: 0 1rem;
    }
    .btn {
        font-size: 0.95rem;
        padding: 0.8rem 1.3rem;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 100vh;
        min-height: 350px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .hero-content {
        padding: 0 0.5rem;
    }
    .hero h1 {
        font-size: 1.4rem;
        margin-bottom: 0.7rem;
    }
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 0.7rem;
    }
    .btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.7rem 0.5rem;
    }
    .scroll-indicator {
        bottom: 1rem;
        font-size: 0.9rem;
    }
    .scroll-arrow {
        height: 20px;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.7rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .btn {
        font-size: 0.85rem;
        padding: 0.6rem 0.3rem;
    }
}

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
    .mission-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-image {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .mission-text {
        transform: none;
    }
}

/* Small tablets & large phones (≤ 768px) */
@media (max-width: 768px) {
    .mission-text h3 {
        font-size: 1.5rem;
    }

    .mission-text p {
        font-size: 1rem;
    }

    .values li {
        font-size: 0.95rem;
    }

    .mission-image {
        width: 100%;
        height: auto;
    }
}

/* Phones (≤ 480px) */
@media (max-width: 480px) {
    .mission-content {
        gap: 2rem;
        padding: 0.5rem;
    }

    .mission-text h3 {
        font-size: 1.3rem;
    }

    .mission-text p {
        font-size: 0.95rem;
    }

    .mission-image img {
        border-radius: 0;
    }
}

/* =====================
   Responsive Breakpoints
   ===================== */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
    .story-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .story-image {
        height: 300px;
        width: 100%;
    }

    .story-content h3 {
        font-size: 1.6rem;
    }

    .story-quote {
        padding-left: 1rem;
        border-left-width: 3px;
        font-size: 1.1rem;
    }
}

/* Phones and small tablets (≤ 768px) */
@media (max-width: 768px) {
    .story-card {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .story-image {
        height: 250px;
    }

    .story-content h3 {
        font-size: 1.4rem;
    }

    .story-quote {
        font-size: 1rem;
        padding-left: 0.8rem;
    }
}

/* Mobile phones (≤ 480px) */
@media (max-width: 480px) {
    .story-card {
        padding: 1rem;
    }

    .story-image {
        height: 200px;
    }

    .story-content h3 {
        font-size: 1.2rem;
    }

    .story-quote {
        font-size: 0.95rem;
    }

    .footer-social .social-icons {
        justify-content: center;
      }

      .social-icons {
        gap: 0.6rem;
        margin-top: 0.75rem;
        margin-left: 80px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
 
    }
}



@media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-social .social-icons {
      justify-content: center;
    }
  }
  
  .footer-contact i {
    margin-right: 8px;
    color: #fff;
    width: 20px;
  }

  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }

    
  }

/* For screens up to 785px */
@media (max-width: 785px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .mission-text {
        transform: none;
        opacity: 1;
    }

    .mission-image-container {
        margin: 0 auto;
        width: 90%;
    }

    .mission-image {
        transform: none;
        opacity: 1;
        margin: 0 auto;
    }
}

/* For screens up to 400px */
@media (max-width: 400px) {
    .mission-text h3 {
        font-size: 1.5rem;
    }

    .mission-text p {
        font-size: 1rem;
    }

    .values li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }

    .mission-image-container {
        width: 100%;
    }

    .orange-box {
        top: -10px;
        right: -10px;
        border-radius: 0;
    }

    .mission-image img {
        border-radius: 0;
    }
}


  /* Hamburger icon */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
    color: orange;
  }
  
  /* Mobile menu behavior */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .nav-links {
      position: absolute;
      top: 100%;
      right: 2rem;
      flex-direction: column;
      background: white;
      width: 200px;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      display: none;
    }
  
    .nav-toggle:checked + .hamburger + .nav-links {
      display: flex;
    }
  }

         /* Hide native checkbox */
.nav-toggle {
    display: none;
  }

  /* Donation Modal Styles (Renamed to avoid conflicts) */
.donation-overlay {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100%;
  overflow: auto; 
  background: rgba(0,0,0,0.5);
}

.donation-modal-content {
  background: #fff;
  margin: 10% auto; 
  padding: 2rem;
  border-radius: 8px;
  width: 90%; 
  max-width: 400px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
}

.donation-close-btn {
  position: absolute; 
  right: 1rem; 
  top: 1rem;
  font-size: 1.5rem; 
  cursor: pointer; 
  color: #e67e22;
}

#donation-form input[type="number"] {
  width: 80%; 
  padding: 0.5rem; 
  margin: 1rem 0;
  border: 1px solid #e67e22; 
  border-radius: 4px;
  font-size: 1rem;
}

/* Show the modal when .show is added */
.donation-overlay.show {
    display: block;
  }

  @media (max-width: 1914px) {
  .scroll-indicator {
            display: none;
        }

        .scroll-arrow {
            display: none;
  }
}

