@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Noto Sans", sans-serif;
    font-weight: normal;
    font-style: normal;
}

#chat {
    border: 1px solid #006633;
    border-radius: 5px;
    color: rgb(188, 188, 188);
    padding: 10px;
    height: 150px;
    overflow-y: scroll;
    margin-bottom: 10px;
}

.question {
    margin: 5px 0;
}

.answer {
    margin: 5px 20px;
    color: #006633;
}

.faq-btn {
    margin: 5px;
    padding: 8px !important;
    border: 1px solid #006633;
    border-radius: 5px;
    background-color: #121519;
    color: #006633;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.faq-btn:hover {
    background-color: #006633;
    color: #121519;
}

.bg-dark{
    background-color: #121519 !important;
}

input[type="file"]::-webkit-file-upload-button {
    background-color: #121519 !important;
    color: white !important;
    cursor: pointer;
}

.platforms-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid #006633;
    border-radius: 6px;
}

.countries-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid #006633;
    border-radius: 6px;
}

input[type="checkbox"]:checked {
    accent-color: #006633;
}

.text-green{
    color: #006633;
}

.text-bg-green{
    background-color: #006633;
}

.border-green{
    border-color: #006633 !important;
}

.gradient-btn{
    border-radius: 10px !important;
    background-color: #006633 !important;
    color: #121519 !important;
    border-color: #006633 !important;
    transition: color 1s ease, transform 0.3s ease !important;
    transition: background-color 1s ease, transform 0.3s ease !important;
}

.gradient-btn:hover {
    background-color: #121519 !important;
    color: #006633 !important;
}

.gradient-btn-register{
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 25px;
    padding-right: 25px;
    color: #006633 !important;
    border: 2px solid #006633 !important;
    transition: color 1s ease, transform 0.3s ease !important;
    transition: background-color 1s ease, transform 0.3s ease !important;
}

.gradient-btn-register:hover {
    background-color: #006633 !important;
    color: #121519 !important;
}

.nav-link{
    color: #006633 !important;
}

.custom-shadow{
    box-shadow: 0px 0px 5px rgba(29, 58, 83, 0.2) !important;
    border-radius: 10px;
}

.custom-shadow-login{
    box-shadow: 0px 0px 5px rgba(0, 102, 51, 0.5) !important;
    border-radius: 10px;
}

.py-2-5{
    padding-top: 10px;
    padding-bottom: 10px;
    border-color: #006633;
}

.light-input::placeholder {
    color: #d3d3d3;
    opacity: 0.5;
}

.light-input:focus {
    border-color: #006633 !important;
}

#header{
    background: #121519;
}

#header-icon{
    color: #006633;
    text-decoration: none;
    font-weight: bold;
}

#header-icon{
    color: #006633;
    text-decoration: none;
    font-weight: bold;
}

#logo{
    color: #006633;
    text-decoration: none;
    font-weight: bold;
}

#header-links{
    color: #006633;
    text-decoration: none;
    font-weight: bold;
}

#header-link{
    color: #006633;
    text-decoration: none;
    font-weight: bold;
}

#header-link:hover{
    color: #006633;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #006633;
}

.active-link{
    color: #006633;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #006633;
}

.btn-dark{
    background-color: #121519 !important;
    color: #006633 !important;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: #004824;
    border-radius: 10px;
    border: 3px solid #121519;
}

::-webkit-scrollbar-track {
    background-color: #121519;
    border-radius: 10px;
}

.bg-cover {
    position: relative;
    background-size: cover;
    background-position: center center;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bg-cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 21, 25, 0.85);
    z-index: 1;
}

.container-relative {
    position: relative;
    z-index: 2;
}

.down-arrow {
    margin-top: 50px !important;
    display: inline-block;
    animation: float 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.down-arrow i {
    transition: transform 0.3s ease;
}

.typing {
    display: inline-block;
    white-space: nowrap;
    animation: typing 5s ease-in-out infinite;
}

@keyframes typing {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.bg-green {
    background-color: #006633 !important;
}

.bg-darkgreen-gradient {
    background: linear-gradient(to bottom, #121519, #004824, #121519) !important;
}

.bg-darkgreen {
    background: #004824 !important;
}

.bg-darkgreen-reverse {
    background-color: #00482400;
}

#start-now{
    background-color: #121519;
    border: 2px solid #121519;
    color: white;
    transition: color 1s ease, transform 0.3s ease !important;
    transition: background-color 1s ease, transform 0.3s ease !important;
}

#start-now:hover{
    background-color: #00482400;
    border: 2px solid #121519;
}

.text-dark{
    color: #121519 !important;
}
