  /* CSS Variables for Brand Colors */
        :root {
            --primary-red: #7E272F;
            --dark-red: #5B1C22;
            --black: #171719;
            --dark-gray: #2E2E30;
            --light-gray: #E6E6E6;
            --soft-white: #F8F8F8;
            --white: #FFFFFF;
        }

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Base Styles */
        body {
            font-family: 'Inter', sans-serif;
            color: var(--black);
            background-color: var(--soft-white);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: var(--primary-red);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--dark-red);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .section {
            padding: 4rem 0;
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .btn-primary {
            background-color: var(--primary-red);
            color: var(--white);
            border: none;
        }

        .btn-primary:hover {
            background-color: var(--dark-red);
            color: var(--white);
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 50px;
            width: auto;
        }

        .logo-text {
            margin-left: 0.5rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            color: var(--primary-red);
            font-size: 1.2rem;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 1.5rem;
        }

        nav ul li a {
            color: var(--black);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: var(--primary-red);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--black);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../image/donation.jpg') no-repeat center center;
            background-size: cover;
            color: var(--white);
            padding: 6rem 0;
            text-align: center;
        }

           /* Add media query for smaller screens */
@media screen and (max-width: 380px) {
    .hero {
        /* Change background position to show more center/top of image for portrait view */
        background-position: center top;
        padding: 2rem 0;
        /* You can also use a different image optimized for mobile if needed */
         background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../image/donation-mobile.jpg'); 
    }
}


        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: var(--black);
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--primary-red);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Donation Information Section */
        .donation-info {
            background-color: var(--white);
            padding: 4rem 0;
        }

        .donation-card {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--soft-white);
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .bank-details {
            margin: 2rem 0;
            padding: 2rem;
            background-color: var(--white);
            border: 2px solid var(--primary-red);
            border-radius: 8px;
        }

        .bank-details h3 {
            color: var(--primary-red);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .account-info {
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .account-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-red);
            margin: 1.5rem 0;
            letter-spacing: 2px;
        }

        .copy-btn {
            background-color: var(--dark-gray);
            color: var(--white);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-size: 0.9rem;
            margin-left: 1rem;
        }

        .copy-btn:hover {
            background-color: var(--black);
        }

        .donation-steps {
            margin-top: 3rem;
            text-align: left;
        }

        .donation-steps h3 {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .step {
            display: flex;
            margin-bottom: 1.5rem;
        }

        .step-number {
            background-color: var(--primary-red);
            color: var(--white);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .step-content {
            flex: 1;
        }

        .contact-support {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--light-gray);
        }

        .contact-support p {
            margin-bottom: 1rem;
        }
        
          .video-wrapper {
  max-width: 900px;
  margin: 2rem auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
      .centered-text {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

       /* Donation Impact Section */
.donation-impact-section {
    background-color: var(--soft-white);
    padding: 4rem 0;
}

.impact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.impact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.impact-title {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.impact-period {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.impact-description {
    color: var(--dark-gray);
}

.impact-footer {
    text-align: center;
    margin-top: 3rem;
}

.impact-footer p {
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--dark-red);
    color: var(--white);
}

        /* Footer Styles */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 4rem 0 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .footer-logo-img {
            height: 40px;
            margin-right: 0.5rem;
        }

        .footer-about p {
            color: var(--light-gray);
            margin-bottom: 1rem;
        }

        .footer-title {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-title:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--primary-red);
            bottom: -10px;
            left: 0;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.8rem;
        }

        .footer-links ul li a {
            color: var(--light-gray);
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--primary-red);
        }

        .footer-newsletter p {
            color: var(--light-gray);
            margin-bottom: 1rem;
        }

        .newsletter-form {
            display: flex;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-family: 'Inter', sans-serif;
        }

        .newsletter-btn {
            background-color: var(--primary-red);
            color: var(--white);
            border: none;
            padding: 0 1rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .newsletter-btn:hover {
            background-color: var(--dark-red);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            background-color: var(--dark-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: background-color 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--primary-red);
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--dark-gray);
            text-align: center;
            color: var(--light-gray);
            font-size: 0.9rem;
        }

        /* Responsive Styles */

          /* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .header-container {
        padding: 0.8rem;
    }
    
    nav ul li {
        margin-left: 1rem;
    }
    
    nav ul li a {
        font-size: 0.9rem;
    }


}
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .testimonials-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .donation-card {
                padding: 2rem 1.5rem;
            }
            
            .bank-details {
                padding: 1.5rem 1rem;
            }
            
            .account-number {
                font-size: 1.6rem;
            }
            
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                flex-direction: column;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            nav ul li {
                margin: 0.5rem 0;
            }
            
            .mobile-menu-btn {
                display: block;
                padding-left: 350px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* Mobile Styles (up to 600px) */
@media (max-width: 600px) {
    .header-container {
        padding: 0.8rem 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
   

    .mobile-menu-btn {
            display: block;
            padding-left: 200px;
        }

    
    nav ul li a {
        font-size: 0.95rem;
        padding: 0.8rem 0;
    }
}

/* Extra Small Mobile (up to 400px) */
@media (max-width: 400px) {
    .header-container {
        padding: 0.6rem 0.8rem;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .mobile-menu-btn {
        font-size: 1.3rem;
        padding-left: 100px;
    }
    
   
    
    nav ul li a {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }
}
.footer-links a[title="Coming Soon"] {
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none; /* Optional: make it fully unclickable */
}