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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
    padding: 40px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.badges {
    margin-top: 20px;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    margin: 0 5px;
    font-size: 0.9rem;
}

.projects {
    padding: 40px;
}

.projects h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

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

.project-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.project-card h3 {
    color: #2a5298;
    margin-bottom: 15px;
}

.tech-stack {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-stack span {
    background: #e0e0e0;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 15px;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

.counter-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 40px;
    text-align: center;
    color: white;
}

.counter-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.counter-card {
    background: rgba(255,255,255,0.2);
    padding: 30px;
    border-radius: 15px;
    min-width: 150px;
}

.counter-value {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 0.9rem;
}

.increment-btn {
    background: white;
    color: #f5576c;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
}

.increment-btn:hover {
    transform: scale(1.05);
}

.pipeline-status {
    padding: 40px;
    text-align: center;
}

.pipeline-stages {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0;
    gap: 10px;
}

.stage {
    background: #e0e0e0;
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.stage.completed {
    background: #4caf50;
    color: white;
}

.stage.active {
    background: #ff9800;
    color: white;
    animation: pulse 2s infinite;
}

.stage-arrow {
    font-size: 1.5rem;
    color: #666;
}

.stage-icon {
    font-size: 1.2rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.last-deployed {
    color: #666;
    margin-top: 20px;
}

.skills-section {
    padding: 40px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.skills-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.skill-category {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
}

.skill-category h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 8px;
}

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

.skill-items span {
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px;
}

footer a {
    color: #667eea;
    text-decoration: none;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-container {
        flex-direction: column;
        align-items: center;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}
