@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo+Play:wght@200..1000&display=swap');

.cairo-play {
    font-family: "Cairo Play", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
        "slnt" 0;
}

body {
    font-family: "Cairo", sans-serif;
    overflow-x: hidden;
    background-color: #f8fafc;
}

.dark body {
    background-color: #020617;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .glass-effect {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-tour-slider .swiper-button-next,
.visual-tour-slider .swiper-button-prev {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 9999px;
    width: 44px;
    height: 44px;
    transition: background-color 0.2s ease;
}

.visual-tour-slider .swiper-button-next:hover,
.visual-tour-slider .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.visual-tour-slider .swiper-button-next::after,
.visual-tour-slider .swiper-button-prev::after {
    font-size: 1.25rem;
    font-weight: 800;
}

.visual-tour-slider .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.7);
    width: 10px;
    height: 10px;
    opacity: 0.8;
}

.visual-tour-slider .swiper-pagination-bullet-active {
    background-color: #ffffff;
    transform: scale(1.2);
}

.typing-cursor::after {
    content: '|';
    display: inline-block;
    margin-right: 0.15em;
    color: #3b82f6;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* .active-link {
    background-color: #eef2ff;
    color: #2563eb;
    font-weight: 700;
}

.dark .active-link {
    background-color: #1e293b;
    color: #60a5fa;
} */