/* Overview Page Styles - Dark Navy Blue Wireframe Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Crimson+Text:wght@400;600&family=Source+Serif+Pro:wght@400;600;700&display=swap');

.overview-main {
    background: #0f172a;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section - WEF Professional Standards */
.overview-hero-section {
    background: #0f172a;
    padding: 8rem 0 6rem;
    color: white;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content-wrapper {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.overview-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin: 0 0 2rem 0;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.overview-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.98);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    max-width: 900px;
    letter-spacing: -0.015em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.overview-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    max-width: 900px;
    letter-spacing: -0.005em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Action Buttons - WEF Professional Standard */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.005em;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 1.25rem 3rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.005em;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

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

.stat-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: left;
    box-shadow: none;
    border: none;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.4;
}

/* Mission Section - WEF Professional Light Background */
.overview-mission-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 6rem 0;
}

.mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content {
    color: #0f1419;
}

.mission-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0f1419;
    margin: 0 0 2rem 0;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.mission-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.mission-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(15, 20, 25, 0.85);
    line-height: 1.8;
    margin: 0 0 2.5rem 0;
    letter-spacing: -0.005em;
}

.mission-image-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    position: relative;
}

.mission-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.mission-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.feature-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f1419;
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.005em;
    line-height: 1.3;
}

.feature-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(15, 20, 25, 0.7);
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.003em;
}

/* Mission Additional Text */
.mission-additional-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(15, 20, 25, 0.8);
    line-height: 1.6;
    margin-top: 0;
    letter-spacing: -0.005em;
}

/* Global Business Goals Section */
.overview-goals-section {
    background: #0f172a;
    padding: 5rem 0;
}

.goals-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.goals-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin: 0 0 4rem 0;
}

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

.goal-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.goal-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.goal-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.goal-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .mission-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .mission-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .overview-hero-section {
        padding: 5rem 0 4rem;
        min-height: 70vh;
    }
    
    .overview-main-title {
        font-size: 2.5rem;
    }
    
    .overview-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .goals-title {
        font-size: 2rem;
    }
    
    .overview-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .overview-main-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mission-title {
        font-size: 1.75rem;
    }
    
    .goals-title {
        font-size: 1.75rem;
    }
    
    .goal-card {
        padding: 1.5rem 1rem;
    }
}

/* Add description styling */
.overview-sub-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 3rem 0;
    line-height: 1.7;
    max-width: 850px;
    letter-spacing: -0.005em;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Global Business Ecosystem Section - WEF Style Cards */
.overview-ecosystem-section {
    background: white;
    padding: 6rem 0;
}

.ecosystem-header {
    text-align: left;
    margin-bottom: 4rem;
}

.ecosystem-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0f1419;
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.ecosystem-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(15, 20, 25, 0.75);
    text-align: left;
    margin: 0;
    letter-spacing: -0.005em;
    line-height: 1.7;
}

.ecosystem-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.ecosystem-card {
    background: white;
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ecosystem-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.card-visuals {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.card-visuals img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ecosystem-card:hover .card-visuals img {
    transform: scale(1.1);
}

.card-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.card-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    letter-spacing: -0.005em;
}

.card-button {
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: -0.005em;
    align-self: flex-start;
}

.card-button:hover {
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.card-visuals {
    flex: 0 0 200px;
    position: relative;
    overflow: hidden;
}

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

.ecosystem-card:hover .card-visuals img {
    transform: scale(1.1);
}

/* Strategy Goals Section - Enhanced with Details */
.overview-strategy-section {
    background: white;
    padding: 6rem 0;
}

.strategy-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0f1419;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.strategy-goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.strategy-goal-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.strategy-goal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ecosystem-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .strategy-images-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .centers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .overview-main-title {
        font-size: 2.5rem;
    }
    
    .overview-subtitle {
        font-size: 1.5rem;
    }
    
    .mission-title, .ecosystem-title, .strategy-title {
        font-size: 2rem;
    }
    
    .strategy-goals-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-title,
    .centers-title {
        font-size: 2rem;
    }
    
    .ecosystem-header {
        margin-bottom: 2rem;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .card-content h3 {
        font-size: 1.5rem;
    }
    
    .centers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .overview-sub-description {
        font-size: 1rem;
        margin: 1rem 0 2rem 0;
    }
}

@media (max-width: 480px) {
    .ecosystem-title,
    .centers-title {
        font-size: 1.75rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.25rem;
    }
    
    .strategy-title {
        font-size: 2.5rem;
    }
    
    .strategy-images-row {
        gap: 2rem;
    }
    
    .strategy-image-item img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .strategy-images-row {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .strategy-image-item img {
        width: 120px;
        height: 120px;
    }
    
    .strategy-title {
        font-size: 2rem;
    }
}

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

.strategy-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.strategy-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.strategy-icon {
    color: white;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    opacity: 0.9;
}

.strategy-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.875rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.strategy-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
    letter-spacing: -0.003em;
}



@media (max-width: 480px) {
    .overview-main-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .mission-title {
        font-size: 1.75rem;
    }
    
    .ecosystem-title {
        font-size: 1.75rem;
    }
}