body {  
    background: #F5F3FF; 
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif; 
    font-size: 18px; 
    margin: 0;
    padding: 0;
    text-align: left; 
    line-height: 1.6;
}


header h1 {
    color: #6A5ACD; 
    font-size: 2.5em;
    margin-top: 20px;
    text-align: center;
}

header p {
    color: #333;
    font-size: 1.2em;
    margin: 10px 0;
    text-align: center;
}


h1 {
    color: #6A5ACD;
    font-size: 2.5em;
    text-align: center;
    margin: 20px 0;
}

h2 {
    color: #6A5ACD;
    font-size: 1.8em;
    border-bottom: 2px solid #9370DB; 
    padding-bottom: 5px;
    margin: 20px 0 10px;
}

h3 {
    color: #6A5ACD;
    font-size: 1.5em;
    margin: 15px 0 5px;
}


nav ul {
    list-style: none;
    padding: 12px;
    background: #9370DB; 
    margin: 0;
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #6A5ACD;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background: #E6E0F8; 
    color: #4B0082; 
}


.resume {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 2px solid #9370DB;
}

.resume h2 {
    margin-top: 0;
}

.resume p,
.resume li {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
}

.resume ul {
    list-style: square;
    padding-left: 20px;
    margin: 10px 0;
}

.resume ul li {
    margin-bottom: 5px;
}


a {
    color: #6A5ACD;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #4B0082;
}


.skills ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.skills ul li {
    background: #E6E0F8; 
    padding: 8px 12px;
    border: 1px solid #9370DB;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    color: #4B0082;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.skills ul li:hover {
    background: #d8c9f2; 
    transform: scale(1.05);
}


@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }

    .skills ul {
        grid-template-columns: 1fr;
    }
}

.resume-header {
    text-align: center;
    margin-bottom: 20px;
}