/* style.css - Enhanced visually appealing design */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #e0e7ef 0%, #f4f6fb 100%);
    color: #222;
}

header {
    background: linear-gradient(90deg, #005bea 0%, #3ec6e0 100%);
    color: #fff;
    padding: 48px 0 36px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    z-index: 0;
}

.container {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.profile-img img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    background: #e0e7ef;
    transition: transform 0.3s;
}
.profile-img img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.intro-text h1 {
    margin: 0 0 12px 0;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.intro-text h2 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.intro-text p {
    margin: 0 0 16px 0;
    font-size: 1.15rem;
    opacity: 0.92;
}

.social-links {
    margin-top: 10px;
    display: flex;
    gap: 18px;
}
.social-links a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.2s;
}
.social-links a:hover {
    color: #ffe082;
}

main {
    padding: 48px 0 28px 0;
}

.about, .projects, .skills, .contact {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 36px;
    margin-bottom: 36px;
}

.about h2, .projects h2, .skills h2, .contact h2 {
    margin-top: 0;
    color: #005bea;
    font-size: 2.1rem;
    letter-spacing: 1px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}
.skill {
    background: #e0e7ef;
    color: #005bea;
    border-radius: 6px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.project-list {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.project {
    flex: 1 1 270px;
    background: linear-gradient(120deg, #f4f6fb 60%, #e0e7ef 100%);
    border-radius: 10px;
    padding: 24px 20px 20px 20px;
    box-shadow: 0 2px 12px rgba(0,91,234,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 5px solid #3ec6e0;
    position: relative;
}
.project:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(0,91,234,0.13);
    border-left: 7px solid #005bea;
}
.project h3 {
    margin-top: 0;
    color: #3ec6e0;
    font-size: 1.22rem;
    margin-bottom: 8px;
}
.project p {
    margin: 0 0 8px 0;
    font-size: 1.05rem;
}
.project .tags {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.project .tag {
    background: #005bea;
    color: #fff;
    border-radius: 4px;
    padding: 2px 10px;
    font-size: 0.92rem;
    font-weight: 500;
}

footer {
    background: #e0e7ef;
    color: #222;
    text-align: center;
    padding: 20px 0;
    font-size: 1.05rem;
    border-top: 1px solid #d1d9e6;
    margin-top: 36px;
}

@media (max-width: 800px) {
    .header-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .project-list {
        flex-direction: column;
    }
    .skills-list {
        flex-direction: column;
        align-items: flex-start;
    }
}
