* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;


}
body    {
    background-color: white;
    color: #1b1b1b;
    margin-top: 90px;

}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 15px 30px;
    box-shadow: 0 2px 8px rgba(0, 52, 52, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;


}
.logo img {
    width:150px;
}

.menu ul {
    
    display:flex;
    list-style: none;
    gap: 20px;
}

.menu li a {
    text-decoration: none;
    font-size: 16px;    
    color:#1b1b1b;
    cursor: pointer;
    transition: 0.3s ease;
}
.menu li a:hover {
    color:rgb(206, 84, 84);
}
.avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 200px;
    
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 5px;
    overflow: visible;
    transition: transform 0.3s ease-in-out;
    color: rgba(25, 25, 184, 0.993);
}
.avatar ul {   
    list-style: none;
}


.avatar ul li a {   
    text-decoration: none;
    font-size: 16px;    
    color:#1b1b1b;
    cursor: pointer;
    transition: 0.3s ease;
}
.avatar li a:hover {
    color: rgb(206, 84, 84);
}

.avatar img{
    width:60px;
}

/* header profile pic*/
.user-menu {
    position: relative;
    display: inline-block;
    cursor: pointer;
    
    
}
.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    
}
.user-info img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    width: 150px;
    z-index: 1000;   
}
.dropdown-menu li {
    list-style: none;
    padding: 5px;
    text-align: center;
}
.dropdown-menu li a {
    text-decoration: none;
    color: #333;
    display: block;
}
.dropdown-menu li:hover {
    background-color: #f0f0f0;
}



/* header of pages instead of slider */
.pageHeader {       
    width: 100vw;  
    height: 40vh;
    position: relative;
    overflow:hidden;
    position: relative;

}
.pageHeader img {
    width:100%;
    height:100%;
    object-fit: cover;
    
}







.section {
    text-align: center;
    padding: 50px 20px;
    background-color: white;
    margin: 30px auto;
    border-radius: 10px;
    
}
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 10px;
}

.feature-box {
    flex: 1;
    min-width: 300px;
    
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.feature-box h3 {
    margin-top: 15px;
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.feature-box p {
    font-size: 16px;
    color: #666;
    padding: 0 15px;
}



/* login style */



.login-box {
    flex: 1;
    min-width: 300px;
    display:flex;
    justify-content: flex-end;    
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    background-image: url('/images/invincible-martial-arts-athlete.jpg');
    background-size: cover;

    
}

.Login {
    padding: 100px 20px;   
    height: 70vh;
    margin-right: 2vh;   
    
}
.Login form {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    position: relative;    
    margin: 10px 0;
    
    
}
.Login img{
    width: 150px;
}
.input-group {
    position: relative;
    width: 100%;
    margin: 20px 0;
}

.input-group input {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease-in-out;

}
.input-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #888;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    
}   

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: 5px;
    font-size: 14px;
    color: rgb(69, 99, 231);
    background: white;
    
}

.input-group input:focus {
    border-color: rgb(69, 99, 231);
}











.Login form button {
    padding: 10px;
    width: 100%;
    background-color: rgb(69, 99, 231);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease-in-out;
    border-radius: 6px;
    
}
.Login form button:hover {
    padding: 10px;
    width: 100%;
    background-color: rgb(43, 77, 230);
    font-size: 16px;
    font-weight: 500;    
    
}




/* css for dashboard profile */


.dashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    background: linear-gradient(135deg, #2A2A72, #009FFD);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 30px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    color: #fff;
}
/*.dashboard:hover {
    transform: scale(1.05);    
} */
.profile img {
    width: 120px;
    height: 120px;
    border-radius: 5px;
    border: 5px solid #fff;
    object-fit: cover;
}
.info {
    margin-top: 15px;
}
.info h3 {
    font-size: 22px;
    font-weight: 600px;
    margin: 10px 0;
}
.info p {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
}



/*mobile responsive menu*/
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}




/*responsive*/
@media (min-width: 768px){
    .dashboard {
        flex-direction: row;
        max-width: 1200px;
        padding: 40px;
    }
    .profile img {
        width: 150px;
        height: 150px;
    }
    .info {
        text-align: left;
        margin-left: 20px;
    }
}
@media screen and (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: white;
        border: 1px solid #ccc;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        border-radius: 5px;        
        z-index: 1000;   
        width: 100%;
        text-align: center;
    }
    .menu ul {
        flex-direction: column;
    }
    .menu ul li {
        padding: 10px;
    }
    .menu ul li:hover {
        background-color: #f0f0f0;
    }
    



    .hamburger {
        display: block;
    }
    .menu.active {
        display: flex;
    }
}


.msg{
    width: 100%;
    color:white;
    background-color:red;
}

.footer {
    display: flex;
    justify-content: center;
    background-color: rgb(34, 33, 33);
    color: white;    
    padding: 10px;
    width: 100%;
    bottom: 0;
}

