body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}

.banner {
    background: #333;
    color: white;
    padding: 15px 20px;
	display:flex;
	justify-content: space-between;
	align-items: center;
}

.banner-left h1 {
    margin: 0;
    padding: 0;
}

.nav-links {
    display: flex;
	gap: 25px;
    margin-top: 8px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}
/* profile image*/
.banner-right img{
	height: 100px;
	width: 100px;
	object-fit:cover;
	
}
footer {
    text-align: center;
    margin: 20px 0;
    color: #555;
}

/* Resume Page */
.resume-container {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
}

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

.resume-header h1 {
    margin-bottom: 8px;
}

.contact a {
    color: #333;
}

.download-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #0a84ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.download-btn:hover {
    background: #006ad4;
}

.date {
    font-size: 14px;
    color: #555;
    display: block;
}

/*Home-container*/
.home-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.home-intro {
    max-width: 700px;
    margin: 30px auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
}

