*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.hero {
 /* Adjusted to accommodate the sidebar */
    min-height: 100vh;
    background: #e58d8d76;
    color: #525252;
    
}
nav{
    background: #0693a2;
    width: 100%;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;

}
.logo{
    margin-left: 20px;
    width: 70px;
    height: 64px;
}
.nav{
    z-index: 1001;
}
.user-pic{
    width: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 30px;
    margin-right: 20px;
}
nav ul{
    width: 100%;
    text-align: right;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;

}
nav ul li a{
    color: #fff;
    text-decoration: none;
}
.sub-menu-wrap{
    position: absolute;
    top: 100%;
    right: 10%;
    width: 320px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s;
    z-index: 1;
}

.sub-menu-wrap.open-menu{
    max-height: 400px;
}

.sub-menu{
    background: #fff;
    padding: 20px;
    margin: 10px;
}
.user-info{
    display: flex;
    align-items: center;
}
.user-info h3{
    font-weight: 500;
}
.user-info img{
    width: 60px;
    border-radius: 50%;
    margin-right: 15px;
}
.sub-menu hr{
    border: 0;
    height: 1px;
    width: 100%;
    background: #ccc;
    margin: 15px 0 10px;
}
.sub-menu-link{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #525252;
    margin: 12px 0;
}
.sub-menu-link p{
    width: 100%;
}
.sub-menu-link img {
    width: 40px;
    background-color: #e5e5e5;
    border-radius: 50%;
    padding: 8px;
    margin-right: 15px;
}
.sub-menu-link span{
    font-size: 22px;
    transition: transform 0.5s;
}
.sub-menu-link:hover span{
    transform: translateX(5px);

}
.sub-menu-link:hover p{
    font-weight: 600;
}
.contact-container
{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left
{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title h2
{
   font-weight: 600;
   color: #a363aa;
   font-size: 40px;
   margin-bottom: 5px;
}

.contact-left-title hr
{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #a363aa;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs
{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
}

.contact-left textarea
{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus
{
    border: 2px solid #ff994f;
}

.contact-inputs::placeholder
{
    border: #a9a9a9;
}

.contact-left button
{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg,#ff994f,#fa6d86);
    cursor: pointer;
}

.contact-left button img
{
  height: 15px;
}

.contact-right img
{
    width: 500px;
}

@media(max-width:800px)
{
    .contact-inputs
    {
        width: 80vw;
    }
    .contact-right
    {
        display: none;
    }
}
.footer{
    background: #0693a2;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: bottom;
    bottom: 0;
    width: 100%;
}
/* Footer (matches #footer id used in the markup) */
footer#footer {
    background: #991a4baf;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
    font-size: 28px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: large;
}
.footer-content .about {
    flex: 1;
    text-align: center;
    justify-content: center;
}
.footer-content .logo-text {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
}
.footer-content #ps {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.668);
}
.social-icons a {
    color: #fff;
    font-size: 30px;
}
.social-icons a.fhov:hover {
    color: #000;
}
