body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}
header {
	background-color: #2d1e40;
	color: white;
	text-align: center;
	padding: 1rem;
}
.container {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}
.sidebar {
	flex: 1;
	background-color: #2d1e40;
	color: white;
	padding: 1rem;
}
.profile-photo {
	flex: 1;
	max-width: 300px;
	margin-right: 2rem;
	text-align: center;
}
.profile-photo img {
	max-width: 100%;
	height: auto;
}
.bio {
	flex: 2;
	text-align: justify;
}
footer {
	background-color: #2d1e40;
	color: white;
	text-align: center;
	padding: 0.5rem;
	position: fixed;
	bottom: 0;
	width: 100%;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
	.container {
		flex-direction: column;
	}
	.sidebar {
		flex: none;
		width: 100%;
		order: 2;
	}
	.profile-photo {
		margin-right: 0;
	}
}

/* New styles for navigation bar */
.navbar {
	background-color: #2d1e40;
	overflow: hidden;
	text-align: center; /* Center-align the content */
}
.navbar a {
	display: inline-block; /* Display navigation links in a row */
	color: white;
	text-align: center;
	padding: 20px 20px;
	text-decoration: none;
}
.navbar .icon {
	display: none;
	font-size: 24px;
	float: left;
	padding: 20px 20px;
	cursor: pointer;
	color: #FFF; /* Replace with your desired color value */
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
	/* ... your existing responsive styles ... */

	.navbar a:not(.icon) {
		display: none;
	}
	.navbar .icon {
		display: block;
	}
}

.profile-image {
	max-width: 100%;
	height: auto;
	/* Add desired width here */
	width: 600px; /* For example, set the width to 200px */
}

.bio-hr {
	border: none;
	border-top: 5pt solid 2d1e40;
	margin: 1rem 0;
}

.container ul {
	line-height: 2.0; /* Adjust this value as needed for the desired line spacing */
	margin: 0; /* Reset default margin for ul element */
	padding: 0; /* Reset default padding for ul element */
}

.container li {
	/* Your existing styles for list items */
}






.experience-section {
    font-family: Arial, sans-serif;
}

.row {
    margin-bottom: 40px; /* Maintain spacing between rows */
}

.row h3 {
    color: #4CAF50;
    font-size: 20px;
    border-bottom: 2px solid #4CAF50;
    display: inline-block;
}

.timeline {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Enable wrapping for responsiveness */
    justify-content: space-between; /* Ensure items are spaced evenly */
}

.timeline-item {
    flex: 1 1 calc(50% - 20px); /* Take up 50% of the available width, minus the gap */
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: calc(50% - 20px); /* Prevent items from stretching too wide */
    box-sizing: border-box; /* Include padding and border in width calculation */
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    .timeline-item {
        flex: 1 1 100%; /* Stack items vertically on small screens */
        max-width: 100%;
    }
}

.timeline-date {
    font-size: 14px;
    color: #555;
    font-style: italic;
    display: block;
    margin-bottom: 10px;
}

.timeline-content h4 {
    margin: 5px 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.timeline-content p {
    margin: 5px 0;
    color: #555;
    font-size: 14px;
}






.profile-container {
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: space-between; /* Space equally */
    gap: 20px; /* Space between image and text */
}

.profile-photo {
    flex: 1; /* Takes 50% of the container */
    text-align: center; /* Center-align the image */
}

.profile-photo img {
    width: 100%; /* Ensure the image scales properly */
    max-width: 300px; /* Optional: Limit the image size */
    border: 5px solid navy; /* Add border to the image */
    border-radius: 10px; /* Optional: Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add shadow */
}

.bio {
    flex: 1; /* Takes 50% of the container */
    font-size: 16px; /* Adjust font size for readability */
}

.social-icons-with-text {
    display: flex;
    gap: 15px; /* Space between icons */
    align-items: center;
    margin-top: 10px;
}

.social-icons-with-text a {
    display: flex;
    align-items: center;
    color: navy;
    font-size: 18px;
    text-decoration: none;
    gap: 8px;
    transition: color 0.3s ease;
}

.social-icons-with-text a:hover {
    color: darkorange;
}


