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

/* Body Styling */
body {
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Main Title */
h1 {
    color: #0056b3;
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Section Titles */
h2 {
    color: #333;
    font-size: 1.8em;
    margin-top: 30px;
    text-align: center;
}

/* Section Containers */
.about, .skills, .projects {
    width: 100%;
    max-width: 800px;
    margin: 15px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* About Section Styling */
.about img {
    float: left;
    margin-right: 15px;
    width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.about p {
    margin: 10px 0;
    font-size: 1.1em;
    color: #555;
    text-align: justify;
}

/* Skills Section Styling */
.skills p {
    margin: 10px 0;
    text-align: justify;
    font-size: 1.1em;
    color: #555;
}
.skills b {
    color: #0056b3;
    font-weight: bold;
}
.skills a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}
.skills a:hover {
    text-decoration: underline;
}

/* Project Section */
.project {
    margin-top: 20px;
    text-align: center;
}
.project h3 {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 10px;
}
.project img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}
.project img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.project p {
    color: #666;
    margin-top: 10px;
    font-size: 1.1em;
    text-align: center;
}
.project a img {
    border: 2px solid #0056b3;
    transition: border-color 0.3s, transform 0.3s;
}
.project a img:hover {
    border-color: #003f7d;
    transform: scale(1.1);
}
.project p a {
    display: inline-block;
    margin-top: 10px;
    color: #0056b3;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}
.project p a:hover {
    color: #003f7d;
    text-decoration: underline;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}
a:hover h3 {
    color: #003f7d;
}
