Apply the Inter font family
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
}

/* 🌈 LOGO-BASED COLOR SCHEME (TRUST + EDUCATION) */
:root {
    /* Primary brand colors (from logo) */
    --primary-blue: #f6570e;        /* Knowledge / Trust */
    --primary-green: #4FAE6A;       /* Growth */
    --primary-orange: #F39C2D;      /* Action / Energy */
    --primary-saffron: #db7c00;     /* Indian roots */

    /* Accent & UI colors */
    --accent-gold: #4FAE6A;         /* Book glow / highlights */
    --light-blue: #E6F2FB;          /* Section bg */
    --light-green: #00f472ef;         /* Alternate section */

    /* Neutrals */
    --white: #ffffff;
    --text-dark: #2B2B2B;
    --text-muted: #6B7280;
}

/* Desktop active nav links */
.nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-gold);
}

/* Mobile active nav links */
.mobile-nav-link.active {
    color: var(--primary-blue);
    background-color: var(--light-blue);
}

/* Mobile dropdown button active */
.mobile-dropdown-btn.active,
#mobile-what-btn.active {
    color: var(--primary-green);
    font-weight: 600;
}

/* Active donate / CTA button */
.donate-btn-link.active {
    box-shadow:
        0 0 0 2px var(--white),
        0 0 0 4px var(--primary-orange);
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* Hero overlay (Trust blue → growth green gradient) */
.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,

    );
}

/* Pulse animation for CTA (logo green) */
@keyframes pulse-green {
    0%   { box-shadow: 0 0 0 0 rgb(8, 230, 71); }
    70%  { box-shadow: 0 0 0 14px rgba(0, 231, 4, 0.879); }
    100% { box-shadow: 0 0 0 0 rgb(0, 255, 72); }
}

.pulse-green {
    animation: pulse-green 2s infinite;
}

/* Counter animation */
.counter {
    transition: all 1s ease-out;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Custom styles for new pages */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-green), var(--secondary-green));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: var(--primary-green);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-green);
}

.certificate-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.program-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

.program-card img {
    transition: transform 0.5s ease;
}

.program-card:hover img {
    transform: scale(1.1);
}

.impact-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid var(--primary-green);
}

.story-card {
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.team-member {
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    transition: transform 0.5s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer.open {
    max-height: 500px;
}

.progress-bar {
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    transition: transform 0.5s ease;
}

.partnership-tier {
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.partnership-tier:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.partnership-tier.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

@keyframes popup {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-popup {
  animation: popup 0.4s ease-out;
}

@keyframes line-slide {
        0% { left: -100%; }
        100% { left: 100%; }
    }
    .animate-line-slide {
        animation: line-slide 3s infinite linear;
    }

  /* Optional: Make the scrollbar look cleaner */
                                .custom-scrollbar::-webkit-scrollbar {
                                    width: 6px;
                                }
                                .custom-scrollbar::-webkit-scrollbar-track {
                                    background: #f1f1f1;
                                    border-radius: 10px;
                                }
                                .custom-scrollbar::-webkit-scrollbar-thumb {
                                    background: #888;
                                    border-radius: 10px;
                                }
                                .custom-scrollbar::-webkit-scrollbar-thumb:hover {
                                    background: #555;
                                }    
    
                                
@keyframes line-slide {
        0% { left: -100%; }
        100% { left: 100%; }
    }
    .animate-line-slide {
        animation: line-slide 3s infinite linear;
    }

    /* Add any custom styles if needed */
#blogModal {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.prose {
    line-height: 1.6;
}

.prose p {
    margin-bottom: 1rem;
}

.prose ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}