 :root {
            /* --primary-blue: #2563eb; */
            --primary-blue: #5a9fb7;
            --secondary-blue: #3b82f6;
            --accent-green: #10b981;
            --accent-yellow: #f59e0b;
            --accent-red: #ef4444;
            --accent-purple: #8b5cf6;
            --dark-bg: #1e293b;
            --light-bg: #cae4fd;
            --text-light: #ffffff;
            --text-dark: #1e293b;
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
       @font-face {
    font-family: 'LexendExa';
    src: url('font/LexendExa-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;   /* Variable range */
    font-style: normal;
}

        body {
            font-family: 'LexendExa', Arial, sans-serif;
            background: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            /* background-image: url('../images/OLD/bg.jpg');
            background-repeat: repeat; */
        }

        /* Header & Navigation */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            padding: 1rem 2rem;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-blue);
            text-decoration: none;
        }

        .logo-icon {
            color: var(--accent-green);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background: var(--primary-blue);
            color: white;
        }

        .nav-link.active {
            background: var(--primary-blue);
            color: white;
        }

        .nav-btn {
            background: var(--accent-green);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: #0da271;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            /* background-image: url('../images/bannerbg.png');
            background-repeat: no-repeat;
            background-position: center; */
            background: linear-gradient(135deg, var(--dark-bg) 0%, #0f172a 100%);
            padding: 80px 20px 40px;
            opacity: 0.3;
        }

        /* Animated Banner from animation3.html */
        .animated-banner {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            opacity: 0.8;
            
        }

        /* Grid Background */
        .grid-background {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
        }

        /* Scene 1: Food Distribution */
        .scene-1 {
            position: absolute;
            left: 10%;
            bottom: 100px;
            width: 300px;
            height: 350px;
        }

        /* Character Base */
        .character {
            position: absolute;
            transform-origin: bottom center;
        }

        /* Professional Character Design - Volunteer */
        .volunteer {
            width: 120px;
            height: 240px;
            left: 30px;
            bottom: 0;
            animation: gentle-bounce 4s ease-in-out infinite;
        }

        .volunteer-head {
            position: absolute;
            width: 40px;
            height: 40px;
            background: #fbbf24;
            border-radius: 50%;
            top: 0;
            left: 40px;
            z-index: 2;
        }

        .volunteer-body {
            position: absolute;
            width: 70px;
            height: 90px;
            background: var(--primary-blue);
            top: 40px;
            left: 25px;
            border-radius: 8px;
            z-index: 1;
        }

        .volunteer-arm {
            position: absolute;
            width: 65px;
            height: 18px;
            background: var(--primary-blue);
            border-radius: 9px;
            top: 65px;
            left: 95px;
            transform-origin: 0% 50%;
            animation: handing-item 4s ease-in-out infinite;
        }

        .volunteer-leg {
            position: absolute;
            width: 18px;
            height: 70px;
            background: #1d4ed8;
            border-radius: 9px;
            top: 130px;
        }

        .volunteer-leg.left {
            left: 40px;
        }

        .volunteer-leg.right {
            left: 75px;
        }

        /* Professional Character Design - Recipient */
        .recipient {
            width: 120px;
            height: 240px;
            left: 170px;
            bottom: 0;
            animation: gentle-bounce 4s ease-in-out infinite 0.5s;
        }

        .recipient-head {
            position: absolute;
            width: 38px;
            height: 38px;
            background: #f59e0b;
            border-radius: 50%;
            top: 0;
            left: 41px;
            z-index: 2;
        }

        .recipient-body {
            position: absolute;
            width: 65px;
            height: 85px;
            background: var(--accent-green);
            top: 38px;
            left: 27px;
            border-radius: 8px;
            z-index: 1;
        }

        .recipient-arm {
            position: absolute;
            width: 65px;
            height: 18px;
            background: var(--accent-green);
            border-radius: 9px;
            top: 63px;
            right: 95px;
            transform-origin: 100% 50%;
            animation: receiving-item 4s ease-in-out infinite 0.5s;
        }

        .recipient-leg {
            position: absolute;
            width: 18px;
            height: 70px;
            background: #059669;
            border-radius: 9px;
            top: 123px;
        }

        .recipient-leg.left {
            left: 40px;
        }

        .recipient-leg.right {
            left: 75px;
        }

        /* Food Box Animation */
        .food-box {
            position: absolute;
            width: 45px;
            height: 35px;
            background: var(--accent-red);
            border-radius: 5px;
            top: 50px;
            left: 100px;
            z-index: 3;
            animation: transfer-item 4s linear infinite;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .food-box::before {
            content: '';
            position: absolute;
            width: 30px;
            height: 5px;
            background: #ffffff;
            border-radius: 2px;
            top: 15px;
            left: 7px;
        }

        /* Scene 2: Medical Help */
        .scene-2 {
            position: absolute;
            right: 15%;
            bottom: 100px;
            width: 350px;
            height: 350px;
        }

        /* Doctor Character */
        .doctor {
            width: 120px;
            height: 250px;
            right: 150px;
            bottom: 0;
            animation: gentle-bounce 4s ease-in-out infinite 0.3s;
        }

        .doctor-head {
            position: absolute;
            width: 42px;
            height: 42px;
            background: #fbbf24;
            border-radius: 50%;
            top: 0;
            left: 39px;
            z-index: 2;
        }

        .doctor-body {
            position: absolute;
            width: 75px;
            height: 95px;
            background: #ffffff;
            top: 42px;
            left: 22px;
            border-radius: 8px;
            z-index: 1;
        }

        .doctor-arm {
            position: absolute;
            width: 70px;
            height: 20px;
            background: #ffffff;
            border-radius: 10px;
            top: 70px;
            left: 92px;
            transform-origin: 0% 50%;
            animation: checking-pulse 3s ease-in-out infinite;
        }

        .doctor-leg {
            position: absolute;
            width: 20px;
            height: 75px;
            background: #e5e7eb;
            border-radius: 10px;
            top: 137px;
        }

        .doctor-leg.left {
            left: 35px;
        }

        .doctor-leg.right {
            left: 75px;
        }

        /* Medical Cross on Doctor */
        .medical-cross {
            position: absolute;
            width: 20px;
            height: 20px;
            top: 60px;
            left: 40px;
            z-index: 2;
        }

        .cross-line {
            position: absolute;
            background: var(--accent-red);
            border-radius: 2px;
        }

        .cross-vertical {
            width: 6px;
            height: 20px;
            left: 7px;
            top: 0;
        }

        .cross-horizontal {
            width: 20px;
            height: 6px;
            top: 7px;
            left: 0;
        }

        /* Scene 3: Education & Mentoring */
        .scene-3 {
            position: absolute;
            left: 50%;
            bottom: 120px;
            width: 250px;
            height: 300px;
            transform: translateX(-50%);
        }

        /* Teacher Character */
        .teacher {
            width: 110px;
            height: 240px;
            left: 20px;
            bottom: 0;
            animation: gentle-bounce 4s ease-in-out infinite 0.2s;
        }

        .teacher-head {
            position: absolute;
            width: 38px;
            height: 38px;
            background: var(--accent-purple);
            border-radius: 50%;
            top: 0;
            left: 36px;
            z-index: 2;
        }

        .teacher-body {
            position: absolute;
            width: 65px;
            height: 85px;
            background: var(--accent-purple);
            top: 38px;
            left: 22px;
            border-radius: 8px;
            z-index: 1;
        }

        .teacher-arm {
            position: absolute;
            width: 60px;
            height: 16px;
            background: var(--accent-purple);
            border-radius: 8px;
            top: 60px;
            left: 85px;
            transform-origin: 0% 50%;
            animation: teaching-gesture 3s ease-in-out infinite;
        }

        .teacher-leg {
            position: absolute;
            width: 16px;
            height: 70px;
            background: #5b21b6;
            border-radius: 8px;
            top: 123px;
        }

        .teacher-leg.left {
            left: 35px;
        }

        .teacher-leg.right {
            left: 70px;
        }

        /* Student Character */
        .student {
            width: 100px;
            height: 220px;
            left: 130px;
            bottom: 20px;
            animation: gentle-bounce 4s ease-in-out infinite 0.8s;
        }

        .student-head {
            position: absolute;
            width: 34px;
            height: 34px;
            background: #ec4899;
            border-radius: 50%;
            top: 0;
            left: 33px;
            z-index: 2;
        }

        .student-body {
            position: absolute;
            width: 60px;
            height: 80px;
            background: #ec4899;
            top: 34px;
            left: 20px;
            border-radius: 8px;
            z-index: 1;
        }

        .student-arm {
            position: absolute;
            width: 55px;
            height: 16px;
            background: #ec4899;
            border-radius: 8px;
            top: 55px;
            right: 85px;
            transform-origin: 100% 50%;
            animation: learning-gesture 3s ease-in-out infinite 0.5s;
        }

        .student-leg {
            position: absolute;
            width: 16px;
            height: 65px;
            background: #be185d;
            border-radius: 8px;
            top: 114px;
        }

        .student-leg.left {
            left: 30px;
        }

        .student-leg.right {
            left: 65px;
        }

        /* Book Animation */
        .book {
            position: absolute;
            width: 50px;
            height: 40px;
            background: var(--accent-yellow);
            border-radius: 5px;
            top: 50px;
            left: 80px;
            z-index: 3;
            animation: book-float 6s ease-in-out infinite;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .book::before {
            content: '';
            position: absolute;
            width: 40px;
            height: 4px;
            background: #ffffff;
            border-radius: 2px;
            top: 18px;
            left: 5px;
        }

        /* Connection Lines */
        .connection-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
            height: 2px;
            border-radius: 1px;
            opacity: 0.6;
            z-index: 0;
        }

        .line-1 {
            top: 200px;
            left: 20%;
            width: 30%;
            animation: line-pulse 4s ease-in-out infinite;
        }

        .line-2 {
            top: 200px;
            right: 20%;
            width: 30%;
            animation: line-pulse 4s ease-in-out infinite 0.5s;
        }

        .line-3 {
            top: 150px;
            left: 50%;
            transform: translateX(-50%);
            width: 40%;
            animation: line-pulse 4s ease-in-out infinite 0.8s;
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            filter: blur(1px);
        }

        .element-1 {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation: float-slow 15s ease-in-out infinite;
        }

        .element-2 {
            width: 80px;
            height: 80px;
            top: 30%;
            right: 15%;
            animation: float-slow 18s ease-in-out infinite 1s;
        }

        .element-3 {
            width: 60px;
            height: 60px;
            bottom: 30%;
            left: 15%;
            animation: float-slow 12s ease-in-out infinite 0.5s;
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 2rem;
        }

        .hero-main {
   /*  display: grid;
    grid-template-columns: 1fr 1fr; */
    /* gap: 4rem; */
    align-items: center;
        }

        .hero-text {
            color: white;
        }

        .hero-title {
            font-family: 'LexendExa';
            font-size: 10rem;
            /* font-weight: 2000; */
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #ffffff, #dbeafe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-align: center;
            width: 100%;
        }

        .hero-subtitle {
            font-size: 3.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.6;
            text-align: center;
        }
        .hero-subtitle a
            {
                display: inline-block;
                height:50px;
                width:300px ;
                background-color: white;
                text-decoration: none;
                color: #000;
                text-align: center;
                line-height: 50px;
                border-radius: 20px;
                font-size: 2rem;
            }

        .stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-green);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Search Filter */
        .search-container {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            margin-top: 2rem;
        }

        .search-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .search-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .form-label i {
            color: var(--primary-blue);
        }

        .form-input,
        .form-select {
            padding: 0.875rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: white;
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .search-btn {
            grid-column: 1 / -1;
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .search-btn:hover {
            background: var(--secondary-blue);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .search-btn:active {
            transform: translateY(0);
        }

        /* Quick Filters */
        .quick-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .filter-chip {
            background: #e2e8f0;
            color: var(--text-dark);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .filter-chip:hover {
            background: var(--primary-blue);
            color: white;
        }

        .filter-chip.active {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
        }

        /* Features Section */
        .features {
            padding: 5rem 2rem;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 3rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--light-bg);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-blue);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .feature-desc {
            color: #64748b;
            line-height: 1.6;
        }

        /* Categories Section */
        .categories {
            padding: 5rem 2rem;
            background: var(--light-bg);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .category-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .category-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.5rem;
        }

        .category-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .category-count {
            color: #64748b;
            font-size: 0.9rem;
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes gentle-bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes handing-item {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(-25deg); }
        }

        @keyframes receiving-item {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(25deg); }
        }

        @keyframes transfer-item {
            0% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(30px) translateY(-20px); }
            50% { transform: translateX(60px) translateY(0); }
            75% { transform: translateX(30px) translateY(20px); }
            100% { transform: translateX(0) translateY(0); }
        }

        @keyframes checking-pulse {
            0%, 100% { transform: rotate(0deg); }
            33% { transform: rotate(-15deg); }
            66% { transform: rotate(15deg); }
        }

        @keyframes teaching-gesture {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(-20deg); }
        }

        @keyframes learning-gesture {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(10deg); }
        }

        @keyframes book-float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-10px) rotate(5deg); }
            75% { transform: translateY(5px) rotate(-5deg); }
        }

        @keyframes line-pulse {
            0%, 100% { opacity: 0.3; width: 30%; }
            50% { opacity: 0.8; width: 32%; }
        }

        @keyframes float-slow {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, -20px) rotate(5deg); }
            50% { transform: translate(-10px, -30px) rotate(10deg); }
            75% { transform: translate(-20px, 10px) rotate(5deg); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .scene-1, .scene-2, .scene-3 {
                transform: scale(0.8);
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 1rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .hero-subtitle a
            {
                display: inline-block;
                height:50px;
                width:200px ;
                background-color: white;
                text-decoration: none;
                color: #000;
                text-align: center;
                line-height: 50px;
                border-radius: 10px;
                font-size: 80%;
            }
            
            .stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .search-form {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 60px 1rem 40px;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .search-container {
                padding: 1.5rem;
            }
            
            .features, .categories {
                padding: 3rem 1rem;
            }
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 1rem;
                box-shadow: var(--shadow-lg);
            }
        }