
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Anek Malayalam", sans-serif;
    font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    background-image: url("Digital Resume1.jpg");
    background-size: cover;
    background-attachment: scroll;
}

nav {
    background-color: #FDE0FF;
    padding: 10px 0;
    font-family: "Arsenal", sans-serif;
    font-weight: 700;
    font-style: normal;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    padding: 0 10px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #FDE0FF;
    overflow: hidden;
}

.resume {
    font-family: "Arsenal", serif;
    font-weight: bold;
    font-size: 26px;
    float: left;
}

.aboutme {
    font-family: "Arsenal", serif;
    font-weight: bold;
    display: flex;
    font-size: 26px;
    float: right;
}

li a {
    display: block;
    color: #43158E;
    text-align: center;
    padding: 20px 30px;
    text-decoration: none;
}

li a:hover:not(.active) {
    background-color: #E5A8F5;
}

.active {
    background-color: #E7A02E;
}

.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

.container {
    width: 100%;
    margin: auto;
    overflow: auto;
}

.content {
    padding: 20px;
}

.me {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 150px 100px 0px;
}

.me .image {
    flex: 1;
    min-width: 500px;
    max-width: 800px;
    padding-left: 10px;
}

.me .image img {
    width: 100%;
    height: auto;
}

.q1 {
    font-size: 26px;
    font-weight: 600;
}

.q2 {
    font-size: 26px;
    font-style: normal;
}

.me .quote {
    flex: 1;
    color: #43158E;
    padding-left: 20px;
    padding-top: 20px;
}

.column {
    margin-bottom: 20px;
}

.column h2 {
    color: #BA76FF;
    padding: 10px 0;
    text-transform: uppercase;
    margin: 0;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
}

.column p {
    margin: 10px 0;
    font-family: "Anek Malayalam", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #43158E;
}

.two-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center; /* Align items to center */
}

.left-contact, .right-contact {
    flex: 1;
    padding: 0;
}
.left-contact{
	width:20px;
	float:right;
}
.left-contact img {
    height: 170px;
    object-fit: contain;
	/* Ensure the image fits nicely */
}

.right-contact p {
    width: 550px;
	float:left;
	/* Remove default margin from paragraphs */
}

.two-column {
    display: flex;
    flex-wrap: wrap;
    padding-right: 50px;
    padding-left: 50px;
}

.left-column, .right-column {
    flex: 1;
    min-width: 100px;
    padding: 0 10px;
}

.two-education {
    display: flex;
    gap: 10px;
}

.two-experience {
    display: flex;
    gap: 20px;
}

.language-image, .interest-image, .expertise-image {
    width: 100%;
    max-width: 400px;
    height: auto;
}

@media (max-width: 768px) {
    .aboutme {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .menu-icon {
        padding: 15px 10px;
        display: flex;
        color: #43158E;
        float: right;
    }

    #menu-toggle:checked ~ .menu-icon + .aboutme {
        display: flex;
    }

    ul li a {
        padding: 20px;
        text-align: left;
    }

    .me {
        padding: 100px 20px;
        gap: 10px;
    }

    .me .image {
        min-width: 100%;
    }

    .two-contact {
        flex-direction: row;
    }

    .left-contact, .right-contact {
        padding: 0;
    }
}
