/* General body styling */
a {
    text-decoration: none;
}

.logoimg {
    height: 4vw;
}

.name{
    font-size: 1.8em;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif ;
    font-weight: 900;
    color: white;
   
}

nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35%;
    padding: 0.5vw;
    background-color:#000000;
    height: 8vh;
    position: fixed;
      top: 0;
      width: 100%;
      transition: transform 0.2s ease-out;
      z-index: 1000;
      width: 100vw;
    
}

nav.hidden {
    transform: translateY(-100%);
    
    }

.nav-right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.1vw;
}

.home-link
{
    color: white;
    background-color: #E95060;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 1.1vw;
    padding: 0.4vw 0.75vw;
    border-radius: 5px;
    
   
}

.ph-link,
.docs-link,
.prof-link{
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 1.1vw;
   transition: all ease-in-out 0.3s;
   display: inline-block;
    
    outline: 0 !important;
  border: 0 !important;
    &:hover{
        color: #E95060;
        border-radius: 20px;
        transform: scale(1.05) translateY(-0.1vw);

           
    }
}

.nav-left {
    display: flex;
    justify-content: center;
    gap: 2vw;
}

header {
    background-color: #ffd6dd;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 1em;
}

/* Body layout */
body {
    font-family: Arial, sans-serif;
    background-color: #212121;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8vw; /* Adjust based on the height of the navbar */
}

/* Profile card styling */
.profile-card {
    background-color: rgb(0, 0, 0);
    width: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    margin-top: 2vw; /* Space below the navbar */
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0073e6;
}

.profile-info h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #ffffff;
}

.profile-info p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #ffffff;
}

.edit-btn {
    background-color: #0073e6;
    border: 1px solid #ffffff;
    padding: 5px 15px;
    font-size: 0.8rem;
    border-radius: 20px;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

.edit-btn:hover {
    background-color: #ffffff;
    color: #0073e6;
    
    border: 1px #0073e6 solid ;
    
}

hr {
    margin: 20px 0;
    border: 0.5px solid #ddd;
}

/* Profile details styling */
.profile-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.detail {
    width: 45%;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.label {
    color: #ffe5e5;
}

.value {
    color: #ffbfbf;
    font-weight: bold;
}
footer {
    background-color:  #000000;
    color: rgb(255, 255, 255);
    text-align: center;
    
    width: 100%;
    
    
    box-sizing: border-box;
    margin-top: 16vh;
}
