/* Professional Pitch Deck Styles - Investor Ready */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1259A8 0%, #50A945 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

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

.slide {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 100%;
    min-height: 675px;
    display: none;
    position: relative;
    overflow: hidden;
}

.slide.active {
    display: block;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-header {
    background: linear-gradient(135deg, #1259A8 0%, #50A945 100%);
    color: white;
    padding: 30px 40px;
    position: relative;
}

.slide-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #289BB0, #50A945);
}

.slide-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.slide-subtitle {
    font-size: 1.2em;
    opacity: 0.9;
    font-weight: 300;
}

.slide-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.navigation {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-btn {
    background: linear-gradient(135deg, #1259A8 0%, #50A945 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 89, 168, 0.4);
}

.nav-btn:active {
    transform: translateY(0);
}

.slide-indicator {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* Title Slide Specific */
.title-slide {
    text-align: center;
    background: linear-gradient(135deg, #1259A8 0%, #50A945 100%);
    color: white;
}

.title-slide .slide-content {
    padding: 60px;
}

.org-name {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.vision-statement {
    font-size: 1.3em;
    font-style: italic;
    line-height: 1.6;
    margin: 40px auto;
    max-width: 800px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #50A945;
}

/* Problem Slide */
.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,107,107,0.3);
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Solution Slide */
.pillars-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.pillar-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1259A8, #50A945);
}

.pillar-card:hover {
    border-color: #1259A8;
    box-shadow: 0 10px 30px rgba(18, 89, 168, 0.2);
    transform: translateY(-3px);
}

.pillar-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.pillar-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.pillar-desc {
    color: #666;
    line-height: 1.5;
}

/* AIASFA Slide */
.technology-highlight {
    background: linear-gradient(135deg, #289BB0 0%, #1259A8 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.technology-highlight::before {
    content: '🌱';
    position: absolute;
    font-size: 8em;
    opacity: 0.1;
    right: 20px;
    top: 20px;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.metric-value {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9em;
    opacity: 0.9;
}

/* Financial Slide */
.budget-breakdown {
    margin: 30px 0;
}

.budget-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.budget-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.budget-percentage {
    width: 100px;
    font-weight: bold;
    color: #1259A8;
    font-size: 1.2em;
}

.budget-bar {
    flex: 1;
    height: 30px;
    background: linear-gradient(90deg, #1259A8, #50A945);
    border-radius: 15px;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
}

.budget-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.budget-label {
    min-width: 200px;
    font-weight: 600;
    color: #333;
}

/* Team Slide */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: linear-gradient(135deg, #1259A8 0%, #50A945 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(18, 89, 168, 0.3);
}

.member-role {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.member-expertise {
    color: #666;
    line-height: 1.4;
}

.team-member:hover .member-expertise {
    color: rgba(255,255,255,0.9);
}

/* Call to Action */
.cta-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '🤝';
    position: absolute;
    font-size: 10em;
    opacity: 0.1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.investment-amount {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-text {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide {
        min-height: auto;
        margin: 10px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-title {
        font-size: 1.8em;
    }
    
    .org-name {
        font-size: 2.5em;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .navigation {
        bottom: 10px;
        padding: 10px 15px;
        gap: 10px;
    }
    
    .nav-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }
    
    .navigation {
        display: none;
    }
    
    .slide {
        display: block !important;
        page-break-after: always;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}