* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            background: rgba(30, 48, 80, 0.95);
            backdrop-filter: blur(10px);
            padding: 0.6rem 2rem;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(30, 48, 80, 0.98);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 40px; /* Adjust based on your navbar height */
}

.logo-image {
    height: 67px; /* Adjust size as needed */
    width: auto; /* Maintain aspect ratio */
    transition: all 0.3s ease;
}

/* Remove the ::before pseudo-element since we're using an image */
.logo::before {
    display: none;
}

/* Optional: Add hover effect */
.logo-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        .nav-links a:hover {
            background: rgba(255,167,38,0.2);
            color: #FFA726;
        }

        .contribute-btn {
            background: linear-gradient(135deg, #FFA726, #FF8F00);
            color: white !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,167,38,0.3);
        }

        .contribute-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,167,38,0.4);
            background: linear-gradient(135deg, #FF8F00, #FFA726) !important;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1e3050 0%, #2d4a73 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="0.5" cy="0.5" r="0.5"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            color: white;
            z-index: 2;
            position: relative;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-title .highlight {
            color: #FFA726;
            background: linear-gradient(135deg, #FFA726, #FFD54F);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-description {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .hero-description .highlight-text {
            color: #FFA726;
            font-weight: 600;
        }
.hero-illustration {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px;
    background-color: transparent; /* Makes background transparent */
}

.illustration-container {
    max-width: 350px;
    background-color: transparent; /* Also make container transparent */
}

.hero-image {
    width: 175%;
     margin-left: -50px;
    height: auto;
    object-fit: contain;
    background-color: transparent;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}


        .quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #FFD54F;
            margin-top: 1rem;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: #FFA726;
            animation: bounce 2s infinite;
            cursor: pointer;
        }

       
       
        /* Contribute Section */
        .contribute-section {
            background: #1e3050;
            padding: 6rem 2rem;
        }

        .contribute-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .contribute-title {
            color: white;
            font-size: 3rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        .contribute-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .contribute-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .contribute-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.15);
        }

        .card-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .card-title {
            color: white;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .card-btn {
            background: rgba(255,167,38,0.2);
            color: #FFA726;
            border: 2px solid #FFA726;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .card-btn:hover {
            background: #FFA726;
            color: white;
        }

        .made-with-love {
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 2rem;
            font-size: 1.4rem;
        }

 .tech-logo {
    margin: -4rem 0; /* Negative top margin to pull content up */
    z-index: 10; /* Ensures it stays above other elements */
    position: relative; /* Needed for z-index to work */
}

.tech-logo .logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none; /* Removes underline from link */
}

.tech-logo .logo-image1 {
    height: 25rem; /* Massive logo size */
    width: auto;
    filter: brightness(0) invert(1); /* White logo */
    transition: all 0.3s ease; /* Smooth hover effects */
    object-fit: contain; /* Ensures full logo is visible */
}

/* Optional hover effects */
.tech-logo .logo-container:hover .logo-image1 {
    transform: scale(1.02); /* Subtle zoom */
    opacity: 0.9; /* Slight transparency */
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

/* fooooooooooooooter*/
.site-footer {
    background: rgba(30, 48, 80, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 3rem 0 0;
    margin-top: 4rem;
}

/* Added your color (#48C4E0) to these elements */
.social-links a,
.copyright {
    color: #48C4E0 !important; /* Light blue-green from your image */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}


.footer-tagline {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #4ECDC4;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.social-links i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credits {
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }
  .hero-container {
        grid-template-columns: 1fr;
        display: grid;
        grid-template-areas: 
            "illustration"
            "content";
    }

    .hero-illustration {
        grid-area: illustration;
        justify-content: center;
        order: 1; /* Explicitly set image first */
        margin-bottom: 2rem;
    }

    .hero-content {
        grid-area: content;
        order: 0; /* Explicitly set text second */
        text-align: center;
    }

    /* Adjust image sizing for mobile */
    .hero-image {
        width: 100%;
        max-width: 280px;
        margin-left: 0;
        margin-right: 0;
    }

    /* Keep your existing mobile text styles */
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
} 
        

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                font-size: 0.7rem;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .filters {
                flex-direction: column;
                align-items: center;
            }

            .contribute-title {
                font-size: 2rem;
            }

            .contribute-options {
                grid-template-columns: 1fr;
            }
        }

 /* Search Section */




               .container1 {
    max-width: 1200px;
    margin: 60px auto 30px auto; /* top, right, bottom, left */
    /* OR: margin-top: 60px; margin-bottom: 30px; */
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}


        .header1 {
            background: rgba(30, 48, 80, 0.95);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .header1 h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .header1 p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .filters {
            padding: 30px;
            background: #f8f9ff;
            border-bottom: 1px solid #e0e6ed;
        }

        .filter-row {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .filter-group {
            flex: 1;
            min-width: 200px;
        }

        .filter-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2d3748;
        }

        .filter-select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 16px;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-select:focus {
            outline: none;
            border-color: #4facfe;
            box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
        }

        .filter-select:disabled {
            background: #f7fafc;
            color: #a0aec0;
            cursor: not-allowed;
            border-color: #e2e8f0;
        }

        .clear-btn {
            padding: 12px 24px;
            background:rgba(30, 48, 80, 0.95);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 28px;
        }

        .clear-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .results {
            padding: 30px;
            min-height: 400px;
        }

        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .results-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2d3748;
        }

        .results-count {
            background: #4facfe;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
        }

        .resource-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }

        .resource-card {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            padding: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .resource-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #4facfe 0%, #012a2c 100%);
        }

        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border-color: #4facfe;
        }

        .resource-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .resource-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 5px;
        }

        .resource-type {
            background: #e2e8f0;
            color: #4a5568;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .resource-type.pdf { background: #fed7d7; color: #c53030; }
        .resource-type.video { background: #c6f6d5; color: #2f855a; }
        .resource-type.presentation { background: #bee3f8; color: #2b6cb0; }
        .resource-type.exercise { background: #faf089; color: #744210; }

        .resource-description {
            color: #718096;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .resource-link {
            display: inline-block;
            background:rgba(30, 48, 80, 0.95);
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .resource-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
        }

        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: #718096;
        }

        .no-results-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.5;
        }

        .no-results h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #4a5568;
        }

        @media (max-width: 768px) {
            .filter-row {
                flex-direction: column;
            }
            
            .resource-grid {
                grid-template-columns: 1fr;
            }
            
            .header1 h1 {
                font-size: 2rem;
            }
        }
        html {
  scroll-behavior: smooth;
}