/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #263A83;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: #18224D;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    width: 70px;
    height: auto;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* About Me Section */
.about-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #18224D;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-content img {
    width: 180px;
    height: auto;
    border-radius: 10px;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
    text-align: left;
}



/* Achievements Section */
.achievements-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #18224D; /* Matches other sections */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.achievements-container h2 {
    font-size: 2rem;
    color: #FFD700; /* Gold highlight for consistency */
    margin-bottom: 1rem;
}

.achievements-container p {
    font-size: 1.2rem;
    color: #ddd;
}

.achievements-container ul {
    list-style-type: square;
    font-size: 1.2rem;
    color: white;
    text-align: left;
    margin-top: 1rem;
    padding-left: 20px;
}


/* Project Sections */
.website-container, .app-container {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #18224D;
    border-radius: 10px;
    text-align: left;
}

.website-container img, .app-container img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    margin-right: 2rem;
}

/* Footer */
footer {
    background-color: #18224D;
    text-align: center;
    padding: 1.5rem;
    width: 100%;
    margin-top: auto;
}

.footer-container h2 {
    font-size: 2rem;
    color: #FFD700;
}

/* Social Links */
.social-links {
    margin-top: 1rem;
}

.social-links a {
    margin: 0 10px;
}

.social-links img {
    width: 40px;
    transition: transform 0.3s;
}

.social-links img:hover {
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .about-content, .website-container, .app-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content img, .website-container img, .app-container img {
        width: 60%;
        margin: 0 auto 1rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #18224D;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
