/* Header CSS */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    background-color: white;
    padding: 20px 10px;
    font-family: Calibri, Verdana, Arial, sans-serif;
}
.brandhead {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brandhead img {
    height: 50px;
    width: auto;
}
.brandhead .logo {
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    color: black;
}
/* Float the link section to the right */
.header-right {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}
.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: black;
    cursor: pointer;
}
/* Style the header links*/
.header-right a {
    padding: 12px;
    text-decoration: none;
    color: black;
    font-size: 20px;
    line-height: 25px;  
    border-radius: 4px;
}
.header-right a:hover {
background-color: #ddd;
}
.header-right a.home {
background-color: #0A1A2F;
color: white;
}
.header-right a.solutions {
background-color: #0A1A2F;
color: white;
}
.header-right a.about {
background-color: #0A1A2F;
color: white;
}
.header-right a.login {
background-color: #0A1A2F;
color: white;
}
/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 850px) {
.header a {
    float: none;
    display: block;
    text-align: left;
    font-size: 18px;
    padding: 10px, 0;
    border-radius: 8px;
}
.header-right a:hover {
    background-color: #f5f5f5;
    color: black;
}
.header-right {
    flex-direction: column;
    gap: 15px;
    background-color: white;
    position: absolute;
    top: 70px;
    right: 15px;
    width: 230px;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
}
.header-right.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.hamburger {
    display: block;
}
.master {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100%;
}
.master-left {
    width: 100%;
    text-align: center;
}
.master-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.master-right img {
    max-width: 90%;
    height: auto;
}
}