body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #7c3aed;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: #1a293d;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #5b21b6;
}

#image-container {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

#image-header {
    width: 36rem !important;
    animation: floating 2.5s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan,
#popular-plan {
    transition: all 0.3s ease-out;
}

#header-primary-button:focus {
    outline: 2px solid purple;
    outline-offset: 3px;
    outline-width: 2px;
}

.primary-button-outline:focus {
    outline: 2px solid #7c3aed;
    outline-offset: 3px;
    outline-width: 2px;
}

#popular-plan-button-focus:focus {
    outline: 2px solid #5b21b6;
    outline-offset: 3px;
    outline-width: 2px;
}

@media screen and (min-width: 768px) {
    #popular-plan {
        top: -0.5rem;
    }

    #plans-container div:not(#popular-plan) {
        margin-top: 0.75rem;
    }
}


@media screen and (max-width: 768px) {
    #mobile-menu-button {
        display: none;
    }
}


.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.carousel-inner {
    display: flex;
    animation: scroll 35s linear infinite;
}

.carousel-item {
    flex: 0 0 40%;
    margin: 0 10px;
    box-sizing: border-box;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.carousel.reverse .carousel-inner {
    flex-direction: row-reverse;
    animation: scroll-reverse 35s linear infinite;
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}


.dark-blue-bg {
    background-color: #1a293d;
    margin: 0;
    height: 100vh;
    overflow: hidden;
    cursor: none;
}

/* .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    background-color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

.cursor-outer {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    background-color: transparent;
    width: 35px;
    height: 35px;
    border: 2px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.135s ease-out;
    opacity: 0.5;
}

.custom-cursor,
.cursor-outer {
    z-index: 9999;
}

@media screen and (max-width: 768px) {

    .custom-cursor,
    .cursor-outer {
        display: none;
    }
}

.custom-cursor.cursor-pointer {
    background-color: transparent;
    border: 2px solid white;
}

.custom-cursor.cursor-pointer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
}

.custom-cursor.cursor-pointer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    opacity: 0.5;
} */