body{
    margin: 0;
}
header{
    background-color: #ffffff;
    color:#000000;   
    min-height: 70px;  /*if screen is adjust and text or logo goes down then hight auto increase*/
    transition: 0.6s;
    height: 120px;
    display: flex;
    justify-content: center;
    
}
.container{
    width: 90%;
    margin: auto;
    overflow: hidden;
    border-bottom: 1px solid #dcdcdc;
    padding: 20px 0px;
}

 /*  header Start  */
 .headContainer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e3e3e38a;
    position: fixed;
 }
.sticky{
    padding: 10px 0;
    background-color: #fff;
    width: 100%;
    z-index: 10;
}
.sticky-font{
    font-size: 16px;
}
.sticky-image{
    width: 235px;
    height: 65px;
}
 header a{
    color:#000000;
    text-decoration: none;    
    font-size: 20px;
}
header ul{
    display: flex;
    gap: 20px;
    list-style: none;
 }

header li{
    float: left;
    display: inline;
    padding: 8px 20px 8px 20px ;    
 }
 header .current a{
    color:#ffffff;    
 }
 header .current {
    background-color: #003399;
    border-radius: 30px;      
 }
 header li:hover{
    background-color: #96CBFF;      
    border-radius: 30px;     
    transition: background-color 0.3s ease-in-out; 
 }
 header a:hover{
    color: #ffffff;
 }