@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}
.logo{
    margin-right: -180px;
}

.hero{
    width:100%;
    min-height: 100vh;
    padding:10px 10%;
    position: relative;
}
.profile{
    cursor: pointer;
    margin-left: -150px;
}

.submenuwrap {
    position:fixed; /* Use 'fixed' to keep the submenu in a fixed position relative to the viewport */
    top: 100%;
    left:-100px;
    width: 320px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Optional: Add shadow for better visibility */
    border-radius: 5px; 
    z-index: 1;/* Optional: Add border radius for better appearance */
  }
  
  
.submenuwrap.openmenu{
    max-height: 100%;
    z-index: 1;
}

.submenu{
    background: #fff;
    padding:20px;
    margin:10px;
}
.submenu hr{
    border:0;
    height:1px;
    width:100%;
    background: #ccc;
    margin:15px 0 10px;
}
.submenulink{
    display: flex;
    align-items: center;
    text-decoration: none;
    color:#525252;
    margin:12px 0;
}
.submenulink p{
   width:100%;
}
.submenulink:hover p{
    font-weight: 800;
}

.submenulink img{
    width:40px;
    background: #e5e5e5;
    border-radius: 50%;
    padding:8px;
    margin-right: 15px;
}



.userinfo{
    display:flex;
    align-items: center;
}
.userinfo h3{
    font-weight: 500;
}
.userinfo img{
    width: 60px;
    border-radius: 50%;

}

.row img{
    margin-top: 10px;
    margin-left: 10px;
}
nav{
    padding: 10px ;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 15px;
}
nav ul li a{
    text-decoration: none;
    color:#333;
    font-weight: 600;
}
.btn{
    text-decoration: none;
    color:#333;
    margin-right: 15px;
    font-weight: 400;
}
.login-btn{
    display: inline-block;
    text-decoration: none;
    padding:14px 20px;
    color:#fff;
    background-image: linear-gradient(45deg,#df4881,#c430d7);
    font-size:14px;
    border-radius: 30px;
}
.content{
    margin-top: 10%;
    max-width: 600px;
}

.content h1{
    font-size: 50px;
    color:#222;
    font-weight:900;
}
.content p{
    margin: 10px 0 30px;
    color: #222;
    font-size: 20px;
}
.content .login-btn{
    padding: 15px 40px;
    font-size: 20px;
}
.feature-img{
    width:530px;
    position: absolute;
    bottom:0;
    right: 0;
}
.about{
    display: flex;
    flex-direction: column;
    gap:1rem;
}
.container{
        width:100%;
        min-height: 100vh;
        padding:10px 12%;
        position: relative;
}
.about-img{
    position: absolute;
    right: 250px;
    top:250px;
}
.about h1 {
    font-size: 30px;
}
.about h3 {
    font-size: 25px;
}
.container ul li{
    text-decoration: none;
    list-style: none;
}

section{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.hexagon{
    width:950px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -100px;
    margin-bottom: -200px;
}

.hexagon .hexarea{
   display: flex; 
}

.hexagon .hexarea .last{
    transform: translateY(-45px);
}

.hexagon .hexarea .hex{
    position: relative;
    width: 200px;
    height: 225px;
    margin: 0 10px;
    clip-path: polygon(0 25%,50% 0,100% 25%,100% 75%,50% 100%,0 75%);
    background: deepskyblue;
    display: flex;
    justify-content:center ;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: .5s;
}
.head{
    font-size: 50px;
    display: flex;
    justify-content:center ;
    align-items: center;
}
.hexagon .hexarea .hex h3{
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 10px ;
    font-size: 17px;
}

.hexagon .hexarea .hex:hover{
    transform: scale(1.2);
}

.hexagon .hexarea .hex .info{
    position: relative;
}

