#navbarNav{
    width: auto;
}

@media (min-width: 992px) { /* Styles for screens 992px and wider */
    #navbarNav{
        display: flex;
        justify-content: end;
    }
}

img.header-logo{
    height: 80px;
    width: 80px;
    margin-left: 1rem;
    margin-right: 1rem;
}

.nav-link{
    color: black;
}

.nav-link:hover{
    border: 2px solid #2980b9;
    border-radius: 10px;
}

.announcement-div{
    background-color: lightgray;
}

.container{
    margin: 0px 10px;
    padding: 1rem 0px;
}

body{
    min-height: 768px;
}

.two-column-list {
    column-count: 2;
    column-gap: 20px;
}

.whatsapp-sticky-button {
    z-index: 998;
    animation: 2s infinite pulse-whatsapp;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.whatsapp-btn {
    background-color: #25d366;
    color: #fff;
    border: none;
    border-radius: 50px;
    min-width: 50px;
    min-height: 50px;
    padding: 12px 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 12px #25d3664d;
}

.whatsapp-btn:hover{
    background-color: #25d366;
}

/* Add to your CSS file */
.facebook-btn {
    background-color: #1877f2;
    color: #fff;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(24,119,242,0.15);
    transition: all .3s;
}
.facebook-btn:hover {
    background-color: #145db2;
}

.lang-div{
    padding-top: 0.5rem;
}

header, footer{
    /* background: linear-gradient(90deg, #f8fafc 0%, #e3f0ff 100%); 
    background-color: #f8fafc;     */
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    background-color: white;
}

header{
    display: block;
    position: fixed;
    width: 100%;
    z-index: 999;
}

/* .header-title-div {
    font-family: cursive;
}

@media (min-width: 768px) {
    .header-title-div {
        min-width: 350px;
        display: block;
    }
} */

.header-div{
    display: flex;
    flex-wrap: inherit;
    justify-content: space-between;
    width: 100%;
}

.header-company-div {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-items: center;
    text-align: center;
    width: auto;
}

.header-title-div{
    display: none;
}

.header-burger-div{
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.header-sm-logo-div img{
    height: 100px;
    width: 100px;
}

.header-lg-logo-div{
    display: none;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media (min-width: 768px) {
    .header-title-div{
        display: block;
        font-family: cursive;
        width: auto;
    }

    .header-lg-logo-div{
        display: block;
    }

    .header-sm-logo-div{
        display: none;
    }
}

.bg-footer-deeper{
    background-color: #F2F4F8;
}

/* 

.lang-link:hover {
    text-decoration: underline;
    color: #0d6efd !important;
    transition: color 0.2s;
}
.fancy-link {
    position: relative;
    transition: color 0.2s;
}
.fancy-link:hover, .fancy-link:focus {
    color: #0d6efd !important;
    text-shadow: 0 2px 8px #0d6efd22;
}
.fancy-btn {
    box-shadow: 0 2px 8px #0d6efd22;
    transition: box-shadow 0.2s, background 0.2s;
}
.fancy-btn:hover, .fancy-btn:focus {
    background: linear-gradient(90deg, #0d6efd 60%, #6ea8fe 100%);
    box-shadow: 0 4px 16px #0d6efd33;
}
.header-logo {
    transition: transform 0.2s;
}
.header-logo:hover {
    transform: scale(1.05) rotate(-2deg);
} */