body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
}

header {
    background-color: #444343;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #03a9f4;
}

.social-icons {
    text-align: center;
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin: 0 15px;
    text-decoration: none;
    color: #e0e0e0;
}

.social-icons img {
    width: 30px;
    height: auto;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-icons span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

.main {
    margin-top: 60px;
}

.profile-pic {
    width: 200px;
    border-radius: 50%;
    border: 5px solid #03a9f4;
}

.intro {
    text-align: center;
    padding: 50px 20px;
}

.intro h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.intro p {
    font-size: 1.2em;
}

footer {
    background-color: #1e1e1e;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: #e0e0e0;
}

footer p {
    margin: 0;
}

.about, .contact, .projects, .details {
    padding: 50px 20px;
    text-align: center;
}

h1 {
    color: #03a9f4;
}

a {
    color: #03a9f4;
}

a:hover {
    text-decoration: underline;
}

.about .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.about h1 {
    text-align: center;
    color: #1e90ff;
    font-size: 2em;
}

.about .section {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.about .section h2 {
    color: #1e90ff;
    border-bottom: 2px solid #1e90ff;
    padding-bottom: 10px;
    font-size: 1.5em;
}

.about .section p {
    margin: 10px 0;
    font-size: 1.2em;
}

.about .education-item {
    margin-bottom: 20px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

.about .education-item img {
    height: 60px;
    margin-right: 15px;
}

.about .button {
    display: block;
    width: fit-content;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #6c757d;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
}

.about .button:hover {
    background-color: #5a6268;
}

/* Styles for contact.html */
.contact .contact-info {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(255, 254, 254, 0.5);
}

.contact .contact-info p {
    margin: 10px 0;
    font-size: 1.2em;
}

.contact .contact-info a {
    color: #1e90ff;
    text-decoration: none;
}

.contact .contact-info a:hover {
    text-decoration: underline;
}

.contact .button {
    display: block;
    width: fit-content;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #6c757d;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
}

.contact .button:hover {
    background-color: #5a6268;
}

.projects {
    padding: 50px 20px;
    text-align: center;
}

.project-list {
    list-style: none;
    padding: 0;
}

.project-list li {
    margin: 15px 0;
}

.project-list a {
    color: #76a5c1;
    text-decoration: none;
    font-size: 1.2em;
}

.project-list a:hover {
    text-decoration: underline;
}

.certifications {
    margin-top: 20px;
    text-align: center; 
}

.certification-item {
    display: block; 
    margin: 0 auto 20px auto; 
}

.certification-item .logo {
    width: 100px; 
    margin-bottom: 10px; 
}

.certification-details p {
    margin: 0;
}
