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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

p {
    font-family: 'Lato', sans-serif;
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    font-family: 'Lato', sans-serif;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

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

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    min-width: 250px;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

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

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

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.about-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.about-card p {
    color: #666;
    line-height: 1.6;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.service-number {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.service-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Funding Section */
.funding {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

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

.program-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.program-card.featured {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    transform: scale(1.05);
}

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

.program-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.program-header h3 {
    margin: 0;
}

.program-budget {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.program-card:not(.featured) .program-budget {
    background: #f1f5f9;
    color: #2563eb;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.program-card:not(.featured) .feature-tag {
    background: #e0f2fe;
    color: #0369a1;
}

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

.success-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid #10b981;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.success-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.success-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
}

.success-program {
    background: #ecfdf5;
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.success-impact {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.impact-metric {
    background: #f0f9ff;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Industries Section */
.industries {
    background: #f8fafc;
}

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

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.industry-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Process Section */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.step-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 300px;
}

.step-content h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    margin: 0;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.contact-content > p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
}

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

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}

.method-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: #e2e8f0;
    margin-bottom: 0.25rem;
}

.method-content small {
    color: #94a3b8;
    font-size: 0.8rem;
}

.contact-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 2rem;
}

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

.contact-cta p {
    color: #e2e8f0;
    margin-bottom: 2rem;
}

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

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 100px;
    width: 264px;
    object-fit: contain;
}

.footer-brand p {
    color: #94a3b8;
    margin: 0;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .process-step:nth-child(even) {
        flex-direction: row !important;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .step-content {
        max-width: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.hero-stats {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.5s;
}


/* Accelerator Partners Section */
.accelerator-partners {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.accelerator-partners .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.accelerator-partners .section-header h3 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.accelerator-partners .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
    min-width: 200px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.accelerator-logo {
    max-height: 80px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* F6S Buttons Styling */
.f6s-buttons-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.f6s-apply-container,
.f6s-apply-container-section,
.f6s-follow-container {
    display: inline-block;
}

.f6s-follow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.f6s-follow-container:hover {
    background: rgba(255,255,255,0.2);
}

.hero-follow {
    margin-top: 15px;
    background: rgba(255,255,255,0.9);
}

.hero-follow:hover {
    background: rgba(255,255,255,1);
}

.f6s-follow-container img {
    transition: opacity 0.3s ease;
}

.f6s-follow-container:hover img {
    opacity: 0.8;
}

/* Enhanced F6S Apply Button Styling */
.f6s-apply-btn {
    background: linear-gradient(135deg, #4285f4, #1976d2) !important;
    border: none !important;
    padding: 15px 30px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3) !important;
    color: white !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.f6s-apply-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4) !important;
    background: linear-gradient(135deg, #1976d2, #4285f4) !important;
}

/* Program Status Section Styling */
.program-status {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.program-status h3 {
    co/* Enhanced Program Status Section */
.program-status {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.program-status h3 {
    color: #4CAF50;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.program-status .status-content {
    text-align: center;
}

.program-status .status-info {
    text-align: center;
}

.status-info h4 {
    color: #4CAF50;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.status-info p {
    color: #4CAF50;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}

.status-info strong {
    color: #4CAF50;
    font-weight: 600;
}

/* Make highlight descriptions GREEN and visible */
.highlight-description {
    color: #4CAF50 !important;
    font-weight: 500 !important;
    opacity: 1 !important;
}

.status-info strong {
    color: white;
}

.status-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.status-highlight {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.highlight-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
    display: block;
    margin-bottom: 5px;
}

.highlight-label {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .partners-logos {
        gap: 30px;
    }
    
    .partner-logo {
        min-width: 160px;
        min-height: 100px;
        padding: 15px;
    }
    
    .accelerator-logo {
        max-height: 60px;
        max-width: 140px;
    }
    
    .f6s-buttons-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .status-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .status-highlights {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .status-highlight {
        flex: 1;
        margin: 0 5px;
    }
    
    .highlight-number {
        font-size: 1.5rem;
    }
    
    .accelerator-partners {
        padding: 40px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-follow {
        margin-top: 10px;
    }
}



/* Enhanced F6S Widget Styling */
#f6s-apply-689ba5cea1c6f,
#f6s-apply-section-689ba5cea1c6f {
    display: inline-block !important;
    min-width: 200px !important;
    text-align: center !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

/* F6S Widget Override Styles */
.f6s-widget-apply-countdown-button {
    display: inline-block !important;
    min-width: 200px !important;
}

.f6s-widget-apply-countdown-button a {
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    color: white !important;
    padding: 15px 30px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
}

.f6s-widget-apply-countdown-button a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4) !important;
    background: linear-gradient(135deg, #45a049, #4CAF50) !important;
}

/* F6S Follow Button Enhanced Styling */
.f6s-follow-btn {
    display: inline-block !important;
    padding: 8px 12px !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.f6s-follow-btn:hover {
    background: rgba(255,255,255,0.2) !important;
    transform: translateY(-1px) !important;
}

.f6s-follow-btn img {
    transition: opacity 0.3s ease !important;
}

.f6s-follow-btn:hover img {
    opacity: 0.8 !important;
}

/* Ensure F6S buttons are visible and properly spaced */
.hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 30px !important;
}

.hero-buttons .btn-group {
    display: flex !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

.hero-buttons .f6s-follow-btn {
    margin-top: 10px !important;
}


/* Enhanced Hero Section F6S Button Styling */
.hero #f6s-apply-689ba5cea1c6f {
    padding: 22px 45px !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    min-width: 280px !important;
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4) !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
}

.hero #f6s-apply-689ba5cea1c6f:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.5) !important;
    background: linear-gradient(135deg, #45a049, #4CAF50) !important;
}

/* Enhanced Hero F6S Follow Button */
.hero .f6s-follow-btn {
    padding: 12px 20px !important;
    background: rgba(255,255,255,0.15) !important;
    border-radius: 10px !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    transition: all 0.3s ease !important;
    margin-top: 15px !important;
}

.hero .f6s-follow-btn:hover {
    background: rgba(255,255,255,0.25) !important;
    border-color: rgba(255,255,255,0.5) !important;
    transform: translateY(-2px) !important;
}

/* Status Highlight Description Styling */
.highlight-description {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-top: 8px;
    display: block;
    font-weight: 500;
    text-align: center;
}


/* Enhanced F6S Follow Button Large */
.f6s-follow-btn-large {
    background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
    color: white !important;
    border: none !important;
    min-width: 250px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.f6s-follow-btn-large:hover {
    background: linear-gradient(135deg, #4f46e5, #4338ca) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4) !important;
}

/* F6S Buttons Container Enhanced */
.f6s-buttons-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin-top: 25px !important;
}

.f6s-apply-container-section,
.f6s-follow-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


/* Accelerator Program Section Enhanced/* Green Industrial Shift Accelerator Program Section */
.accelerator-program {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(33, 150, 243, 0.1));
    text-align: center;
}

.accelerator-program h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.accelerator-program .intro-text {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.program-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
}

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

.highlight-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.highlight-card h3 {
    color: #4CAF50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.highlight-card p {
    color: #4CAF50;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}
/* Program CTA Section */
.program-cta {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.program-cta h3 {
    color: #4CAF50;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.program-cta p {
    color: #4CAF50;
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
}

.f6s-buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.f6s-apply-container-section,
.f6s-follow-container {
    flex: 0 0 auto;
}

/* Fix Apply button to match hero section style */
.f6s-apply-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: white !important;
    border: none !important;
    padding: 20px 40px !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
    min-width: 250px !important;
}

.f6s-apply-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
}

.f6s-follow-btn-large {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: white !important;
    border: none !important;
    padding: 20px 40px !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
    min-width: 250px !important;
}

.f6s-follow-btn-large:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
}    text-align: center;
}

.benefit-item::before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Enhanced Program Status Section */
.program-status {
    text-align: center;
}

.program-status .status-content {
    text-align: center;
}

.program-status .status-info {
    text-align: center;
}

/* Mobile Responsiveness for Program Section */
@media (max-width: 768px) {
    .program-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-card {
        padding: 25px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}



/* Force center alignment for ALL accelerator program text */
.accelerator-program * {
    text-align: center !important;
}

.accelerator-program .highlight-card h3,
.accelerator-program .highlight-card p,
.accelerator-program .program-benefits h3,
.accelerator-program .benefit-item,
.accelerator-program .benefit-item span,
.accelerator-program .status-info h4,
.accelerator-program .status-info p,
.accelerator-program .status-info strong {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Specific center alignment for benefit items */
.benefit-item {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
}

.benefit-item span {
    text-align: center !important;
}

