body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0f172a;
    color: #f1f5f9;
}

.layout {
    display: flex;
    min-height: 100vh;
	padding: 10px;
	margin-top: 1%;
}


.sidebar {
    width: 300px;
    background: #1e293b;
    padding: 30px;
    text-align: center;
}

.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #38bdf8;
    margin-bottom: 15px;
}

.sidebar h2 {
    margin-bottom: 5px;
}

.title {
    color: #38bdf8;
    margin-bottom: 20px;
}

.contact p {
    font-size: 14px;
    margin-bottom: 15px;
}

.skills {
    margin-top: 30px;
    text-align: center;
}

.skills h3 {
    border-bottom: 2px solid #38bdf8;
    padding-bottom: 5px;
}

.skills ul {
    list-style: none;
    padding-left: 0;
}

.skills li {
    margin: 8px 0;
}

.skills {
	margin-bottom: 15px;
}

.social {
	margin-top: 30px;
	text-align: center;
}

.social h3 {
    border-bottom: 2px solid #38bdf8;
    padding-bottom: 5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

.social-icons img {
    width: 50px;
    height: 50px;
    object-fit: contain;
	border-radius: 20%;
}

.main-content {
    flex: 1;
    padding: 30px;
}

.me {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.me h1 {
	text-align: center;
    margin-top: 0;
    font-size: 28px;
	border-bottom: 2px solid #38bdf8;
    padding-bottom: 5px;
}

.content {
    background: #1e293b;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.content h2 {
    border-bottom: 2px solid #38bdf8;
    padding-bottom: 5px;
}

.job {
    margin-bottom: 20px;
}

.job span {
    font-size: 14px;
    color: #94a3b8;
}

ul {
    margin-top: 10px;
}

a {
	color: #FFB6C1;
}
a:visited {
	color: #FFB6C1;
}
a:hover {
	color: #06e;
}
a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

a {
	text-decoration: none;
}