html, body {
    margin: 0;
    padding: 0;
    font-size: 100%; /* Increase base font size */
    overflow-x: hidden; /* hides any horizontal overflow */
    box-sizing: border-box;
    background-color: #202A44;
    scroll-behavior: smooth;

}
@media (max-width: 750px) {
    html {
        font-size: 110%; /* Adjust base font size for smaller screens */
    }
}
header {
    background-color: #000035;
    color: #fff;
    padding: 0 0 0 0;
    position: relative;
}

#header-container {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-sizing: border-box;
}

/* Inner header layout for wide screens */
@media (min-width: 1000px) {
    .header-item, .header-item-three {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 25%;
        padding: 8px 20px; /* Increased padding */
        height: 75px;      /* Increased height */
        box-sizing: border-box;
        margin-right: auto;
        font-size: 1.3em;  /* Increased font size */
    }

    .header-item-two {
        width: 50%;
        height: 75px;      /* Increased height */
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3em;  /* Increased font size */
    }

    #logo {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        height: 350px;      /* Increased height */
        width: auto;
        background-color: #fff;
    }

    #call-button,
    #menu {
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    #call-button {
        background: transparent;
        border: 3px solid #fff;
        color: #fff;
        border-radius: 5px;
        cursor: pointer;
        width: 100px;       /* Increased width */
        height: 55px;      /* Increased height */
        font-size: 1.2rem; /* Increased font size */
        flex: 0 0 auto;
    }

    #call-button svg,
    #call-button i,
    #call-button .phone-icon {
        font-size: 1.5em;  /* Increased icon size */
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
        display: inline-block;
    }
}

@media (max-width: 999px) and (min-width: 768px) {
    .header-item, .header-item-three {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 25%;
        padding: 8px 20px; /* Increased padding */
        height: 55px;      /* Increased height */
        box-sizing: border-box;
        margin-right: auto;
        font-size: 1.3em;  /* Increased font size */
    }

    .header-item-two {
        width: 50%;
        height: 55px;      /* Increased height */
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3em;  /* Increased font size */
    }

    #logo {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        height: 250px;      /* Increased height */
        width: auto;
        background-color: #fff;
    }

    #call-button,
    #menu {
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    #call-button {
        background: transparent;
        border: 3px solid #fff;
        color: #fff;
        border-radius: 5px;
        cursor: pointer;
        width: 90px;       /* Increased width */
        height: 45px;      /* Increased height */
        font-size: 1.2rem; /* Increased font size */
        flex: 0 0 auto;
    }

    #call-button svg,
    #call-button i,
    #call-button .phone-icon {
        font-size: 1.5em;  /* Increased icon size */
        width: 1.25em;
        height: 1.25em;
        vertical-align: middle;
        display: inline-block;
    }
}

/* Header layout for small screens (under 301px) */
@media (max-width: 767px) {
    #header-container {
        align-items: center;
        justify-content: center;
        height: 50px;  /* Increased height */
    }
    .header-item,
    .header-item-two {
        width: 50%;
        justify-content: center;
        align-items: center;
        margin-right: 0;
        display: flex;
    }

   #call-button {
        width: 50%;
        justify-content: center;
        align-items: center;
        display: flex;
        margin-right: auto;
        width: 70px;      
        height: 35px;      
        background: transparent;
        border: 2px solid #fff;
        color: #fff;
        border-radius: 5px;
        cursor: pointer;
    }

    #call-button svg,
        #call-button i,
        #call-button .phone-icon {
            font-size: 1.5em;  /* Increased icon size */
            width: 1.5em;
            height: 1.5em;
            vertical-align: middle;
            display: inline-block;
        }

    #logo {
        justify-content: center;
        align-items: center;
        display: flex;
        margin-left: auto;
        height: 130px;      /* Increased height */
        width: 75%;

        background-color: #fff;  
    }
}

/* Hover effect for call button   */
#call-button:hover {
    background-color: #fff;
}
#call-button:hover svg,
#call-button:hover i,
#call-button:hover .phone-icon {
    color: #000;
    fill:  #fff;
    stroke: #000;

}

/* .header-item, .header-item-two, .header-item-three {
    boder: yellow 1px solid;  
} */