
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    padding: 20px;
}

a {
    text-decoration: none;
    color: #0073b1;
    transition: color 0.3s ease;
}

a:hover {
    color: #005580;
}


.header {
    background-color: #0073b1;
    color: white;
    text-align: center;
    padding: 20px;
    transition: background-color 0.3s ease-in-out;
}


.header:hover {
    background-color: #005582; 
}


.header h1 {
    font-size: 28px;
    margin: 0;
}


.header p {
    font-size: 16px;
    margin-top: 5px;
    opacity: 0.9;
}


.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.profile-photo {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

.about-text {
    max-width: 600px;
}

.about h2 {
    font-size: 2rem;
    color: #0073b1;
    margin-bottom: 10px;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.skills, .experience, .projects {
    margin-top: 40px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.skills h2, .experience h2, .projects h2 {
    font-size: 2rem;
    color: #0073b1;
    margin-bottom: 20px;
}

.skills-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background-color: #f4f6f9;
    border-radius: 5px;
    padding: 30px;
    font-size: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card:hover {
    background-color: #0073b1;
    color: #ffffff;
    transform: scale(1.1);
}

.card i {
    font-size: 3rem;
    margin-right: 10px;
}

.experience ul, .projects ul {
    list-style-type: none;
    padding: 0;
}

.experience li, .projects li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.experience li strong {
    color: #0073b1;
}
.projects ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.projects li {
    background: #f3f3f3;
    border-radius: 12px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.projects li:hover {
    transform: scale(1.05);
}

.project-card {
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #0073b1;
}

.project-card i {
    font-size: 50px;
    color: #0073b1;
}


.projects li:hover {
    transform: scale(1.05);
}

.project-card {
    width: 200px;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card canvas {
    width: 100%;
    height: 100%;
}

.project-card h3 {
    position: absolute;
    top: 5px;
    left: 20px;
    color: white;
    font-size: 1.5rem;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: #555;
}

footer p {
    font-size: 1rem;
    color: #0073b1;
    margin-top: 20px;
}

footer a {
    color: #0073b1;
    font-weight: bold;
    text-decoration: none;
}

footer a:hover {
    color: #005580;
}
