/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #d1d5db;
}

a {
    color: #76b900;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #9acd32;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #76b900, #9acd32);
    color: #000000;
    box-shadow: 0 4px 15px rgba(118, 185, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 185, 0, 0.4);
    color: #000000;
    background: linear-gradient(135deg, #9acd32, #76b900);
}

.btn-secondary {
    background: transparent;
    color: #76b900;
    border: 2px solid #76b900;
}

.btn-secondary:hover {
    background: #76b900;
    color: #000000;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(118, 185, 0, 0.2);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo h2 {
    background: linear-gradient(135deg, #76b900, #9acd32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo span {
    font-size: 0.8rem;
    color: #d1d5db;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #76b900;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #76b900, #9acd32);
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: #76b900;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    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"><polygon fill="%23ffffff" fill-opacity="0.1" points="0,1000 1000,0 1000,1000"/></svg>');
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    font-size: 8rem;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* About Section */
.about {
    background: #1a1a1a;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.about-origin, .about-belief {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(118, 185, 0, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    color: #ffffff;
}

.about-origin:hover, .about-belief:hover {
    transform: translateY(-5px);
    border-color: rgba(118, 185, 0, 0.5);
    box-shadow: 0 8px 35px rgba(118, 185, 0, 0.2);
}

.about-origin h3, .about-belief h3 {
    color: #76b900;
    margin-bottom: 1.5rem;
}

.about-origin p, .about-belief p {
    color: #d1d5db;
    line-height: 1.7;
}

/* Founder Section */
.founder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.founder .section-header h2, 
.founder .section-header p {
    color: white;
}

.founder-content {
    max-width: 1000px;
    margin: 0 auto;
}

.bio-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bio-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bio-section p, .bio-section li {
    color: rgba(255, 255, 255, 0.9);
}

.bio-section ul {
    padding-left: 1.5rem;
}

.bio-section li {
    margin-bottom: 0.5rem;
}

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

.program-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(118, 185, 0, 0.3);
}

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

.program-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.program-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.program-card p {
    margin-bottom: 1.5rem;
}

.program-card ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.program-card li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.program-link:hover {
    border-bottom-color: #3498db;
}

/* Activities Section */
.activities {
    background: #f8f9fa;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.activity-card h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.achievements {
    margin-top: 1rem;
}

.achievement {
    margin-bottom: 2rem;
}

.achievement h4 {
    color: #76b900;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.achievement ul {
    padding-left: 1.5rem;
}

.achievement li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.achievement li strong {
    color: #2c3e50;
}

.activity-card ul {
    padding-left: 1.5rem;
}

.activity-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

.activity-card li strong {
    color: #2c3e50;
}

/* Blogs Section */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-category {
    background: rgba(26, 26, 26, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.blog-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.blog-category h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.blog-category p {
    margin-bottom: 1.5rem;
}

.blog-category ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.blog-category li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #3498db;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

/* Research Section */
.research {
    background: #f8f9fa;
}

.research-content {
    max-width: 1000px;
    margin: 0 auto;
}

.research-project {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.research-project:hover {
    transform: translateY(-5px);
}

.research-project.featured {
    border: 2px solid #3498db;
}

.project-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-content {
    padding: 2rem;
}

.project-content p {
    margin-bottom: 1rem;
}

.project-content p strong {
    color: #2c3e50;
}

.project-highlights {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.project-highlights h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.project-highlights ul {
    padding-left: 1.5rem;
}

.project-highlights li {
    margin-bottom: 0.5rem;
    color: #666;
}

.research-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3498db;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.research-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
    color: white;
}

/* Maker Faire Section */
.makerfaire {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.makerfaire .section-header h2,
.makerfaire .section-header p {
    color: white;
}

.makerfaire-intro {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.makerfaire-intro h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.makerfaire-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.makerfaire-section {
    margin-bottom: 3rem;
}

.makerfaire-section h3 {
    color: #fff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.exhibits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.exhibit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.exhibit-card:hover {
    transform: translateY(-5px);
}

.exhibit-card h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.exhibit-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.exhibit-link {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.exhibit-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.current-year {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.current-exhibits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.current-exhibit {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.current-exhibit:hover {
    transform: translateY(-5px);
}

.exhibit-header h4 {
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-exhibit p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.booth-link {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.booth-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.get-involved {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.involvement-content h3 {
    color: #fff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.involvement-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.involvement-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
}

.involvement-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

.cta-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cta-buttons .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.contact-method:hover {
    transform: translateX(5px);
}

.contact-method i {
    font-size: 1.5rem;
    color: #3498db;
    width: 30px;
    text-align: center;
}

.contact-method h4 {
    margin: 0;
    color: #ffffff;
}

.contact-method p, .contact-method a {
    margin: 0;
    color: #cccccc;
}

.contact-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.contact-form h3 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(118, 185, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-section em {
    color: #3498db;
    font-style: italic;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3498db;
    transform: translateY(-2px);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* General text color fixes for dark theme */
.program-card p, .activity-card p, .blog-category p, .research-paper p, .project-card p, .team-member p, .contact-form p, .feature p {
    color: #cccccc;
}

.program-card ul, .activity-card ul, .blog-category ul, .research-paper ul, .project-card ul, .team-member ul {
    color: #cccccc;
}

.program-card h3, .activity-card h3, .blog-category h3, .research-paper h3, .project-card h3, .team-member h3, .contact-form h3, .feature h3 {
    color: #ffffff !important;
}

.program-card h4, .activity-card h4, .blog-category h4, .research-paper h4, .project-card h4, .team-member h4, .contact-form h4, .feature h4 {
    color: #ffffff !important;
}

/* Contact form specific fixes */
.contact-method i {
    color: #76b900;
}

/* Form elements for dark theme */
.form-group label {
    color: #ffffff;
}

/* Ensure all text in cards is visible */
.program-card *, .activity-card *, .blog-category *, .research-paper *, .project-card *, .team-member *, .contact-form *, .feature * {
    color: inherit;
}

.program-card a, .activity-card a, .blog-category a, .research-paper a, .project-card a, .team-member a, .contact-form a, .feature a {
    color: #76b900;
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 1rem;
        border-top: 1px solid rgba(118, 185, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-icon {
        font-size: 5rem;
    }

    .programs-grid,
    .activities-grid,
    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .exhibits-grid,
    .current-exhibits {
        grid-template-columns: 1fr;
    }

    .involvement-steps {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .project-header {
        flex-direction: column;
        align-items: flex-start;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .program-card,
    .activity-card,
    .blog-category {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
    border-bottom: 2px solid rgba(118, 185, 0, 0.3);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    background: linear-gradient(135deg, #76b900, #9acd32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(209, 213, 219, 0.9);
    margin-bottom: 2rem;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

/* Detailed Programs Styles */
.detailed-programs {
    padding: 5rem 0;
}

.program-detail {
    margin-bottom: 4rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.program-detail .program-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.program-detail .program-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.program-detail .program-info h2 {
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.program-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.program-content {
    padding: 3rem;
}

.program-description h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.outcome {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.outcome i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 0.25rem;
}

.outcome h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.program-resources {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.program-resources h3, 
.program-resources h4 {
    color: #2c3e50;
}

.program-resources ul {
    padding-left: 1.5rem;
}

.program-resources li {
    margin-bottom: 0.5rem;
    color: #666;
}

.external-resources {
    margin-top: 1.5rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3498db;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
    color: white;
}

.project-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.project-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.project-item h4 {
    color: #ffffff;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Enrollment CTA */
.enrollment-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Research Page Styles */
.featured-research {
    padding: 5rem 0;
}

.research-highlight {
    max-width: 1000px;
    margin: 0 auto;
}

.research-paper {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.paper-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 2.5rem;
    position: relative;
}

.paper-badge {
    position: absolute;
    top: 1rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.paper-badge.featured {
    background: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

.paper-header h3 {
    margin-bottom: 0;
    padding-right: 150px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.paper-content {
    padding: 3rem;
}

.paper-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e6ed;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.meta-item i {
    color: #3498db;
}

.paper-abstract h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.research-area {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.research-area i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 0.25rem;
}

.research-area h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.paper-highlights {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.paper-highlights h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.paper-highlights ul {
    padding-left: 1.5rem;
}

.paper-highlights li {
    margin-bottom: 0.5rem;
    color: #666;
}

.paper-impact {
    margin: 2rem 0;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.metric {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.metric i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 0.25rem;
}

.metric h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.paper-download {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.download-link,
.github-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-link {
    background: #27ae60;
    color: white;
}

.download-link:hover {
    background: #219a52;
    transform: translateY(-2px);
    color: white;
}

.github-link {
    background: #333;
    color: white;
}

.github-link:hover {
    background: #222;
    transform: translateY(-2px);
    color: white;
}

/* Technical Projects */
.technical-projects {
    background: #f8f9fa;
    padding: 5rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card .project-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-header .project-icon i {
    font-size: 2rem;
}

.project-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.project-type {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.project-content {
    padding: 2rem;
}

.project-details h4 {
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
}

.project-details ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.project-details li {
    margin-bottom: 0.5rem;
    color: #666;
}

.project-impact {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #2980b9;
}

/* Blog Categories Styles */
.blog-categories {
    padding: 5rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.category-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-header {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.category-card.science .category-header {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.category-card.engineering .category-header {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
}

.category-card.programming .category-header {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.category-icon i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-header h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.category-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.category-content {
    padding: 2.5rem 2rem;
}

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

.topic {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #2c3e50;
}

.topic i {
    color: #3498db;
    font-size: 1rem;
}

.recent-posts ul,
.video-highlights,
.project-highlights {
    padding-left: 1.5rem;
}

.recent-posts li {
    margin-bottom: 0.5rem;
    color: #666;
}

.video-highlights,
.project-highlights {
    padding-left: 0;
}

.video-highlight,
.project-highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.video-highlight i,
.project-highlight i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-top: 0.25rem;
}

.video-highlight h5,
.project-highlight h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.category-cta {
    text-align: center;
    margin-top: 2rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3498db;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
    color: white;
}

/* Newsletter Styles */
.newsletter-signup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.newsletter-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

#newsletter-email {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.newsletter-privacy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: center;
}

/* Contact Section Updates */
.contact-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-cta p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Team Page Styles */
.team-section,
.advisors-section {
    padding: 5rem 0;
}

.advisors-section {
    background: #f8f9fa;
}

.team-category {
    margin-bottom: 4rem;
}

.team-category h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #3498db;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member.featured {
    border: 2px solid #76b900;
    background: rgba(26, 26, 26, 0.9);
}

.team-member.placeholder {
    border: 2px dashed rgba(118, 185, 0, 0.5);
    background: rgba(26, 26, 26, 0.8);
}

.team-member.advisor {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.member-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.member-photo i {
    font-size: 4rem;
    color: #76b900;
    background: rgba(40, 40, 40, 0.8);
    padding: 2rem;
    border-radius: 50%;
    width: 8rem;
    height: 8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.team-member.placeholder .member-photo i {
    color: #999999;
}

.team-member.advisor .member-photo i {
    color: #76b900;
}

.member-info h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.member-title {
    color: #76b900;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-focus {
    background: rgba(40, 40, 40, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.member-focus h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-focus ul {
    padding-left: 1.5rem;
    margin: 0;
}

.member-focus li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.join-info {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.join-info p {
    margin: 0;
    color: #27ae60;
    font-size: 0.9rem;
}

.join-info a {
    color: #27ae60;
    font-weight: 600;
    text-decoration: none;
}

.join-info a:hover {
    text-decoration: underline;
}

.member-links {
    text-align: center;
    margin-top: 1rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0077b5;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background: #005885;
    transform: translateY(-2px);
    color: white;
}

.join-team-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.join-team-cta .cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.join-team-cta .cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.opportunity {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.opportunity i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.opportunity h3 {
    color: white;
    margin-bottom: 1rem;
}

.opportunity p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.join-team-cta .cta-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.join-team-cta .cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.join-team-cta .cta-buttons .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.join-team-cta .cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* About Page CSS - Add responsive design adjustments */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.about-impact {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(118, 185, 0, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    color: #ffffff;
}

.about-impact:hover {
    transform: translateY(-5px);
    border-color: rgba(118, 185, 0, 0.5);
    box-shadow: 0 8px 35px rgba(118, 185, 0, 0.2);
}

.about-impact h3 {
    color: #76b900;
    margin-bottom: 1.5rem;
}

.about-impact p {
    color: #d1d5db;
    line-height: 1.7;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Maker Faire Styles */
.maker-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.overview-text p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.overview-features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.feature i {
    color: #6366f1;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature h3 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #64748b;
    margin: 0;
}

.overview-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 4rem;
}

.placeholder-image p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.featured-projects {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.featured-projects h2 {
    text-align: center;
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.featured-projects > p {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.project-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(118, 185, 0, 0.3);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.project-card .project-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.project-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.event-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-card h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.event-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.event-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.event-item i {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.event-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #f1f5f9;
}

.event-item p {
    color: #cbd5e1;
    margin: 0;
}

.get-involved {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.8);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.contact-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.contact-detail {
    color: #475569;
    font-weight: 500;
}

.email-display {
    background: #6366f1;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.email-display:hover {
    background: #4f46e5;
}

.email-hidden {
    display: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(118, 185, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    color: #1e293b;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(118, 185, 0, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(40, 40, 40, 0.8);
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.faq-section {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.8);
}

.faq-section h2 {
    text-align: center;
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item h3 i {
    color: #6366f1;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-text h2 {
        font-size: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .event-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .placeholder-image {
        width: 100%;
        height: 250px;
    }
}

/* Maker Faire Page Styles */
.past-exhibits,
.current-exhibits {
    padding: 4rem 0;
    background: #0a0a0a;
    color: white;
}

.past-exhibits .section-header,
.current-exhibits .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.past-exhibits .section-header h2,
.current-exhibits .section-header h2 {
    color: #76b900;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.past-exhibits .section-header p,
.current-exhibits .section-header p {
    color: #e5e7eb;
    font-size: 1.1rem;
}

.exhibits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.exhibit-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exhibit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(118, 185, 0, 0.1);
    border-color: #76b900;
}

.exhibit-card h3 {
    color: #76b900;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.exhibit-card p {
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.exhibit-link {
    color: #76b900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #76b900;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.exhibit-link:hover {
    background: #76b900;
    color: #0a0a0a;
}

.current-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.current-exhibit {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.current-exhibit:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(118, 185, 0, 0.1);
    border-color: #76b900;
}

.exhibit-header h3 {
    color: #76b900;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
}

.current-exhibit p {
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.booth-link {
    background: #76b900;
    color: #0a0a0a;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.booth-link:hover {
    background: #5a8a00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(118, 185, 0, 0.2);
}

/* Image Styles for Maker Faire */
.main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #333;
}

.exhibit-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid #333;
}

.exhibit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.exhibit-card:hover .exhibit-image img {
    transform: scale(1.05);
}

.team-showcase {
    margin-top: 3rem;
    text-align: center;
}

.team-image {
    display: inline-block;
    max-width: 600px;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid #76b900;
}

.team-caption {
    margin-top: 1rem;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 10px;
    border: 1px solid #333;
}

.team-caption p {
    color: #e5e7eb;
    font-style: italic;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-image {
        height: 200px;
    }
    
    .exhibit-image {
        height: 150px;
    }
    
    .team-image {
        max-width: 100%;
        margin: 0 1rem;
    }
}