/* Reset basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* Left to right gradient with light greens and blues */
    background: linear-gradient(to right, #d4f0de, #dbeafe); 
    color: #333;
    line-height: 1.6;
    padding: 20px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Main Container */
.dashboard {
    display: flex;
    width: 100%;
    max-width: 1100px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Left Sidebar Styling */
.sidebar {
    /* Dark top to lighter bottom gradient */
    background: linear-gradient(to bottom, #0a1128, #1c2e4a);
    color: #fff;
    width: 320px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-placeholder {
    width: 160px;
    height: 160px;
    object-fit: cover;
    object-position: center 15%; /* Adjusts the focus slightly up towards your face */
    border-radius: 50%;
    margin-bottom: 25px;
    border: 4px solid #748cab;
}

.sidebar h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #f8f9fa;
}

.sidebar h2 {
    font-size: 1rem;
    font-weight: 400;
    color: #a9b5c2;
    margin-bottom: 35px;
}

.contact-links {
    list-style: none;
    width: 100%;
}

.contact-links li {
    margin-bottom: 15px;
}

.contact-links a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-links a:hover {
    background-color: #2b9348; /* Green highlight on hover */
    border-color: #2b9348;
}

/* Main Content Styling */
.content {
    flex: 1;
    padding: 60px;
    overflow-y: auto;
}

section {
    margin-bottom: 45px;
}

section h3 {
    color: #004b23; /* Dark green headers */
    border-bottom: 2px solid #55a630;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.item {
    margin-bottom: 25px;
}

.item h4 {
    color: #1c2e4a;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.item p {
    margin-bottom: 5px;
}

.skills-list {
    list-style-type: square;
    margin-left: 20px;
    color: #444;
}

.skills-list li {
    margin-bottom: 10px;
}

/* Responsive Design for Mobile Screens */
@media (max-width: 800px) {
    body {
        padding: 10px;
    }
    .dashboard {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        padding: 40px 20px;
    }
    .content {
        padding: 40px 20px;
    }
}

