/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
    line-height: 1.6;
}

/* Header */
h1 {
    font-size: 2em;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    ;
}


/* Person Container */
.person {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 10px auto;
    max-width: 400px;
    transition: box-shadow 0.3s ease;
    position: relative;
}

.person:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Person Name */
.person h2 {
    font-size: 1.4em;
    color: #0073e6;
    margin-bottom: 10px;
}

/* Skills List */
.skills {
    list-style-type: none;
    padding: 0;
}

.skills li {
    background: #f0f0f0;
    padding: 8px 12px;
    margin: 5px 0;
    border-radius: 5px;
    font-size: 1em;
    color: #555;
    transition: background 0.3s;
}

.skills li:hover {
    background: #e6f7ff;
    color: #0073e6;
}

/* Contact Button */
.contact-btn {
    margin-top: 10px;
    padding: 6px 12px;
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background 0.3s;
}

.contact-btn:hover {
    background-color: #005bb5;
}

/* Contact Dropdown (hidden by default) */
.contact-dropdown {
    display: none;
    background: #f7f7f7;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#intro{
    text-align: center;
    margin-top: 20px;
}
.sidebar {
    position: fixed;
    height: 100%;
    width: 260px;
    background: #11101d;
    padding: 15px;
    z-index: 99;
    margin-top: -117px;
    margin-left: -20px;
}
.sidebar a {
    color: #fff;
    text-decoration: none;
}    
.logo {
    font-size: 25px;
    padding: 0 15px;
}
.menu-content {
    position: relative;
    height: 100%;
    width: 100%;
    margin-top: 40px;
    overflow-y: scroll;
}
.menu-content::-webkit-scrollbar {
display: none;
}
.menu-items {
height: 100%;
width: 100%;
list-style: none;
transition: all 0.4s ease;
}
.submenu-active .menu-items {
transform: translateX(-56%);
}
.menu-title {
color: #fff;
font-size: 14px;
padding: 15px 20px;
}
.item a,
.submenu-item {
padding: 16px;
display: inline-block;
width: 100%;
border-radius: 12px;
}
.item i {
font-size: 12px;
}
.item a:hover,
.submenu-item:hover,
.submenu .menu-title:hover {
background: rgba(255, 255, 255, 0.1);
}
.submenu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    cursor: pointer;
}
.submenu {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: calc(-100% - 26px);
    height: calc(100% + 100vh);
    background: #11101d;
    display: none;
}
.show-submenu ~ .submenu {
display: block;
}
.submenu .menu-title {
border-radius: 12px;
cursor: pointer;
}
.submenu .menu-title i {
margin-right: 10px;
}
.navbar,
.main {
left: 260px;
width: calc(100% - 260px);
transition: all 0.5s ease;
z-index: 1000;
margin-top: -117px;
}
.sidebar.close ~ .navbar,
.sidebar.close ~ .main {
left: 0;
width: 100%;
}
.navbar {
position: fixed;
color: #fff;
padding: 15px 20px;
font-size: 25px;
background: #4070f4;
cursor: pointer;
margin-bottom: 50px;
}
.navbar #sidebar-close {
cursor: pointer;
}
