.container.text-start {
    text-align: left;
    padding-left: 20px;
    padding-right: 0;
}

.container.text-start h1,
.container.text-start p {
    margin-bottom: 15px; /* Adjust spacing as needed */
}

.container.text-start .btn {
    margin-top: 10px; /* Space between the paragraph and the button */
}

.nothomepage {
    padding: 30px 0 !important;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}


.language {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    color:white;
}


.footer {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    height:100%;

}

body {
    font-family: "Encode Sans Expanded Medium" !important;

}


ul.wp-block-list li {
    margin-top:10px;
}

section.hero strong {
    font-weight:bold;
}




.mega-menu {
    width: 80vw;
    max-width: 1200px;
    margin: 0 auto; /* Center the menu */
    top: 100%;
    left: 50%; /* Start from the center */
    transform: translateX(-50%); /* Center horizontally */
    padding: 20px;
    background-color: #f8f9fa;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    display: none;
}

.mega-menu .row {
    margin: 0;
}

.navbar-nav .nav-item:hover .mega-menu {
    display: block;
    position: absolute;
    z-index: 1000;
    margin-left:0;
    transform: translateX(-50%); /* Ensure centered positioning on hover */
}

.feature-box {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-box h6 {
    margin-top: 0;
}

.feature-box p {
    margin-bottom: 10px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #e2e2e2;
}

.navbar-dark .navbar-brand {
    color: #ffffff;
}

.navbar-dark .navbar-brand:hover {
    color: #e2e2e2;
}



.left-menu {
    width: 200px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #f8f9fa;
    padding: 15px;
    border-right: 1px solid #ddd;
    overflow-y: auto;
    height: 100%;
    transition: transform 0.3s ease;
    text-align: left;


}

.menu-header {
    text-align: center;
    margin-bottom: 15px;
}

.left-menu ul {
    list-style-type: none;
    padding: 0;
}

.left-menu ul ul {
    margin-left: 20px;
}

.left-menu a {
    text-decoration: none;
    color: #007bff;
    display: block;
    padding: 5px 0;
}

.left-menu a:hover {
    text-decoration: underline;
}

.menu-toggle {
    display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .left-menu {
        transform: translateX(-100%);
    }

    .left-menu.open {
        transform: translateX(0);
    }

    .menu-toggle {
        display: block;
        background-color: #007bff;
        color: #fff;
        padding: 10px;
        text-align: center;
        cursor: pointer;
        position: fixed;
        bottom: 10px;
        left: 10px;
        z-index: 1000;
    }
}


p {
    font-size: 16px; /* Adjust font size */
    line-height: 1.6; /* Set line height for readability */
    margin-top: 1em;
    margin-bottom: 1em; /* Set bottom margin for spacing between paragraphs */
}

/* Custom styles for specific sections */
.hero-section p {
    font-size: 18px; /* Larger font size for hero section */
    line-height: 1.8; /* Increase line height for larger text */
}

/* Ensure consistent styling across different screen sizes */
@media (max-width: 768px) {
    p {
        font-size: 15px; /* Adjust font size for smaller screens */
        line-height: 1.5; /* Adjust line height for smaller screens */
    }
}


code {
    color:blue !important;
}


h1, h2, h3, h4, h5, h6 {
    line-height: 2em;
}

/*
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}*/

.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    margin: 0 auto;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.login-container .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.login-container .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.login-container .form-group input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-container .form-group button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.login-container .form-group button:hover {
    background-color: #0056b3;
}