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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    min-height: 100vh;
}

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

.header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.profile-info {
    text-align: left;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.contact-info {
    color: #555;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #333;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: #000;
}

.main-content {
    background: white;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.section {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.section:nth-child(1) { animation-delay: 1.2s; }
.section:nth-child(2) { animation-delay: 1.4s; }
.section:nth-child(3) { animation-delay: 1.6s; }
.section:nth-child(4) { animation-delay: 1.8s; }
.section:nth-child(5) { animation-delay: 2.0s; }

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
}

.experience-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-left: 4px solid #000;
    background: #fafafa;
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.experience-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.job-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.company {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.accomplishments {
    list-style: none;
}

.accomplishments li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.accomplishments li::before {
    content: "•";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.skill-category {
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.skill-category:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.skill-category h4 {
    color: #000;
    margin-bottom: 1rem;
}

.skill-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-level {
    color: #666;
    font-size: 0.9rem;
}

.education-item {
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.education-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.degree {
    font-weight: 600;
    color: #000;
}

.school {
    color: #333;
    margin-bottom: 0.5rem;
}

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

.certification {
    background: #fafafa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.certification:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Project Tiles */
.projects-row {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.project-tile {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.project-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.project-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tile-favicon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.project-tile:hover .tile-favicon {
    transform: scale(1.1);
}

.project-tile:hover .project-icon {
    transform: scale(1.05);
}

.project-info {
    flex: 1;
    min-width: 0;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.75rem;
}

.project-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    width: 100%;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 2px solid #000;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.github-link {
    border-color: #333;
    color: #333;
}

.github-link:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

@media (max-width: 768px) {
    .projects-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .project-content {
        flex-direction: column;
        text-align: center;
    }
    
    .project-icon {
        align-self: center;
        margin-bottom: 1rem;
    }
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-info {
        text-align: center;
    }
    
    .main-content {
        padding: 2rem;
    }
    
    .name {
        font-size: 2rem;
    }
} 
