/* Innovation Lab Styles */
.innovation-hero {
    background: linear-gradient(135deg, #0a0a2a, #1a1a3e, #2a1a4e);
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.innovation-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 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-badge {
    display: inline-block;
    background: rgba(253, 187, 77, 0.2);
    color: #fdbb4d;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.innovation-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.innovation-hero h1 .highlight {
    color: #fdbb4d;
}

.innovation-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #fdbb4d;
}

.hero-stats .label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Featured Project */
.featured-project {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 24px;
    padding: 40px;
    margin: 60px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: linear-gradient(135deg, #fdbb4d, #b21f1f);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.project-info h2 {
    font-size: 2rem;
    color: #1a2a6c;
    margin-bottom: 10px;
}

.project-subtitle {
    color: #b21f1f;
    font-weight: 500;
    margin-bottom: 20px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.tech-tags span {
    background: #e8f4fd;
    color: #1a2a6c;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.project-metrics {
    display: flex;
    gap: 30px;
    margin: 25px 0;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #b21f1f;
}

.metric-label {
    font-size: 0.8rem;
    color: #666;
}

.project-media {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    border-radius: 16px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-media i {
    font-size: 5rem;
    color: rgba(255,255,255,0.5);
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
}

/* Research Areas */
.research-areas {
    margin: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #1a2a6c;
    margin-bottom: 15px;
}

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

.research-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.research-icon i {
    font-size: 2.5rem;
    color: #b21f1f;
    margin-bottom: 20px;
}

.research-card h3 {
    color: #1a2a6c;
    margin-bottom: 15px;
}

.research-progress {
    margin-top: 20px;
}

.progress-bar {
    height: 4px;
    background: linear-gradient(90deg, #b21f1f, #fdbb4d);
    border-radius: 2px;
    margin-bottom: 8px;
}

/* Innovation Stories */
.innovation-stories {
    margin: 80px 0;
}

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

.story-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.story-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin: 15px 0 10px;
}

.story-step.problem {
    background: #f8d7da;
    color: #721c24;
}

.story-step.innovation {
    background: #fff3cd;
    color: #856404;
}

.story-step.solution {
    background: #d4edda;
    color: #155724;
}

.story-card h3 {
    color: #1a2a6c;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.story-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-story {
    display: inline-block;
    margin-top: 15px;
    color: #b21f1f;
    text-decoration: none;
    font-weight: 600;
}

/* Tech Stack */
.tech-stack-showcase {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 50px;
    margin: 60px 0;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-category h4 {
    color: #1a2a6c;
    margin-bottom: 15px;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-items span {
    background: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #333;
}

/* Open Source Section */
.opensource-section {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    color: white;
    margin: 60px 0;
}

.opensource-content i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.btn-github {
    display: inline-block;
    background: white;
    color: #1a2a6c;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
}

/* Innovation CTA */
.innovation-cta {
    background: linear-gradient(135deg, #0a0a2a, #1a1a3e);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    color: white;
    margin: 60px 0;
}

.innovation-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto 0;
}

.innovation-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.innovation-form button {
    padding: 14px 30px;
    background: linear-gradient(135deg, #b21f1f, #fdbb4d);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .innovation-hero h1 {
        font-size: 2rem;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .innovation-form {
        flex-direction: column;
    }
}