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

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

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

/* Header Styles */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    height: 50px;
    width: auto;
}

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

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

.nav-link:hover {
    color: #059669;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #059669 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.announcement-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    opacity: 0.8;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

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

.partnership-logo {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: center;
}

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

.lead-paragraph {
    font-size: 1.25rem;
    font-weight: 500;
    color: #059669;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight-box {
    background: #f8fafc;
    border-left: 4px solid #059669;
    padding: 2rem;
    border-radius: 8px;
}

.highlight-box h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.highlight-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* Investment Section */
.investment-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.investment-card {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.investment-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    margin: 0 0.5rem;
}

.unit {
    font-size: 1.5rem;
    font-weight: 600;
}

.investment-purpose {
    font-size: 1.1rem;
    opacity: 0.9;
}

.allocation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.allocation-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.allocation-item:hover {
    border-color: #059669;
    transform: translateY(-2px);
}

.allocation-percentage {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.allocation-label {
    font-weight: 600;
    color: #4b5563;
}

.facility-info {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.facility-info h3 {
    color: #1e3a8a;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

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

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #059669;
}

.feature-item h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

/* Technologies Section */
.technologies-grid {
    display: grid;
    gap: 3rem;
}

.tech-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.tech-card:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.tech-card:nth-child(even) .tech-image {
    order: 2;
}

.tech-image {
    overflow: hidden;
}

.tech-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.tech-content {
    padding: 2rem;
}

.tech-content h3 {
    color: #1e3a8a;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.tech-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tech-specs {
    display: grid;
    gap: 0.75rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
}

.spec-label {
    font-weight: 600;
    color: #4b5563;
}

.spec-value {
    font-weight: 700;
    color: #059669;
}

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

.impact-category h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.impact-items {
    display: grid;
    gap: 1.5rem;
}

.impact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-3px);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-weight: 600;
    color: #4b5563;
}

/* Timeline Section */
.timeline-section {
    background: #f8fafc;
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 20px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

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

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.timeline-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.timeline-item:nth-child(even) .timeline-date {
    order: 2;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-date {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
    text-align: right;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #059669;
    border: 4px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

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

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

.footer-section h4 {
    color: #10b981;
    margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-overview {
        grid-template-columns: 1fr;
    }
    
    .allocation-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-card,
    .tech-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .tech-card:nth-child(even) .tech-image {
        order: 1;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        grid-template-columns: 1fr;
        padding-left: 50px;
    }
    
    .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        text-align: left;
        order: 1;
    }
    
    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        order: 2;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .nav-menu {
        display: none;
    }
}

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

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

