/* Existing styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: #f8f9fa;
    color: #333;
}

header {
    background: linear-gradient(135deg, #4a90e2, #0073e6);
    color: #080101;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #090101;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 20px auto;
    overflow: hidden;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

#about .content {
    flex: 1;
    margin-right: 20px;
}

#about .content h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

#about .content p {
    font-size: 1.1em;
    line-height: 1.8;
}

#about .image {
    flex: 1;
    text-align: center;
}

#about .image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

#about .image img:hover {
    transform: scale(1.05);
}

#projects {
    padding: 20px;
}

.project {
    background: #fff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.project h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

.project p {
    font-size: 1.1em;
    line-height: 1.6;
}

footer {
    background: #343a40;
    color: #0f0101;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer .footer-content {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .footer-content p {
    margin: 10px 0;
}

footer .social a {
    color: #050000;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

footer .social a i {
    margin-right: 8px;
}

footer .social a:hover {
    color: #ffcc00;
}

@media (max-width: 768px) {
    #about {
        flex-direction: column;
        text-align: center;
    }

    #about .content {
        margin: 0 0 20px 0;
    }
}

/* Add this to your existing styles.css file */

#resume {
    padding: 20px;
}

.resume-section {
    background: #fdfdfd;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.resume-section h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

.resume-section p, .resume-section ul {
    font-size: 1.1em;
    line-height: 1.6;
}

.resume-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

nav ul li a {
    position: relative;
    color: #0a0000;
    text-decoration: none;
    font-size: 1.1em;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    background: #ffcc00;
    transition: width 0.3s;
    bottom: -5px;
    left: 0;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #ffcc00;
}
#contact {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 600px; /* Centering element */
    text-align: center; /* Centering text */
}

#contact h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left; /* Align text inside form groups to the left */
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

button[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.1em;
    color: #fff;
    background-color: #0073e6;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #005bb5;
}
