body {
    font-family: 'Times New Roman', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

footer {
    color: #000000;
    text-align: center;
    padding: 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.language-switcher {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.language-switcher button {
    margin: 0 10px;
    padding: 10px 25px;
    border: none;
    background: #333;
    color: #1b6e9e;
    cursor: pointer;
}

.language-switcher button:hover {
    background: #555;
}

/* Adjust layout for tablet and smaller screens */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    nav {
        flex-direction: column;
    }

    nav a {
        padding: 10px;
    }
}
.lang-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .lang-switch a {
    margin-left: 10px;
    text-decoration: none;
    padding: 6px 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: bold;
  }
  
  .lang-switch a:hover {
    background-color: #f0f0f0;
  }

  .footer {
    position: absolute;
    bottom: -100px;
    width: 100%;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 0 0;
    font-size: 14px;
    z-index: 10;
}



/*sidebar styles*/
    #sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 180px;
    padding-top: 60px;
    z-index: 1001;
    transition: transform 0.3s ease-in-out;
    }

    #sidebar ul {
    list-style-type: none;
    padding: 0;
    }

    #sidebar li {
    margin: 20px 0;
    text-align: center;
    }

    #sidebar a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: bold;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 25px; 
    }

    #sidebar a:not(.inactive)::after,
    #sidebar a:not(.inactive)::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #ff0000, #00ffff);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-out;
    }

    #sidebar a:not(.inactive)::before {
    top: -5px;
    transform-origin: left;
    }

    #sidebar a:hover:not(.inactive)::after,
    #sidebar a:hover:not(.inactive)::before {
    transform: scaleX(1);
    }

    #sidebar a:hover:not(.inactive) {
    transform: scale(1.2);
    color: #ffffff;
    }

    #sidebar a.inactive {
    pointer-events: none;
    cursor: default;
    color: rgb(0, 0, 0);
    }




@keyframes slide-out {
    0% {
        transform: translateX(-10px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

