:root {
    --primary-color: #2EDF9B;
    --secondary-color: #000c39;
}

html[dir="ltr"] {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

html[dir="rtl"] {
    font-family: "Tajawal", sans-serif;
}

html {
    scroll-behavior: smooth;
}

.nav-items {
    font-weight: 600;
}

.nav-items li {
    transition: all 0.3s;
}

.nav-items li:hover {
    color: var(--primary-color);
}

.btn {
    top: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    border: none;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 21px 30px;
    min-width: 170px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
}

.btn-secondary {
    color: #fff;
    background-color: var(--secondary-color);
}

.btn-white {
    background-color: #fff;
    color: var(--secondary-color);
}

.btn:hover {
    top: -4px;
}

.btn-primary:hover {
    top: -4px;
    box-shadow: 0 5px 15px rgba(21, 196, 255, 0.4);
}

.swiper-button-next,
.swiper-button-prev {
    background-color: var(--primary-color);
    background-color: var(--primary-color);
    padding: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff !important;
    fill: #fff !important;
    stroke: #fff !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
}

.swiper-container-thumbs > .swiper-wrapper > .swiper-slide-thumb-active {
    border: 2px solid var(--primary-color);
    border-radius: 0.75rem;
}

.footer-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    height: 2px;
    width: 92px;
    background-color: transparent;
    background-image: linear-gradient(
        to right,
        var(--primary-color),
        transparent
    );
}

html[lang="ar"][dir="rtl"] .footer-link:after {
    right: 0;
    left: auto;
    background-image: linear-gradient(
        to left,
        var(--primary-color),
        transparent
    );
}

.opacity-50{
    opacity: 0.5;
}

button{
    position: relative;
}

.loader-container{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(1px);
}

.iti {
    width: 100%;
}

.loader {
    width: 20px;
    height: 20px;
    border: 3px solid #FFF;
    border-bottom-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    .loader::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    }
