@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.container {
    overflow: hidden;
    padding: 24px;
}

/* Typography */
.bold-font {
    font-size: 4rem;
    font-weight: 900;
}

.bold-font-without-size {
    font-weight: 900;
}

/* Layout */
.background-image {
    background: url(/static/img/index/background.jpg) top center no-repeat;
    background-size: cover;
    width: 100%;
}

.phone-image {
    height: auto;
    max-width: 80vw;
    width: auto;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    height: 1rem;
    width: .2rem;
}

::-webkit-scrollbar:horizontal {
    height: .5rem;
    width: 1rem;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb {
    background-color: red;
    border-color: rgba(255, 255, 255, 1);
    border-radius: 0;
    border-width: 1px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: red;
}

.dark::-webkit-scrollbar-thumb {
    background-color: red;
}

.dark::-webkit-scrollbar-thumb:hover {
    background-color: red;
}

/* Components */
.arrow {
    max-width: 230px;
}

/* Media Queries */
@media (max-width: 1400px) {
    .arrow {
        max-width: 200px;
    }
}

@media (max-width: 992px) {
    .bold-font {
        font-size: 2.7rem;
    }

    .arrow {
        display: none;
    }

    .road-map-row {
        flex-wrap: wrap-reverse;
    }
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    background-color: #eeeeee;
    color: #333;
    padding: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.swiper-slide h1 {
    color: #dc3545;
    margin-bottom: 20px;
}

.swiper-slide img {
    margin: 0 auto;
}

.swiper-slide:nth-child(odd) {
    background-color: #f8f8f8;
}

.swiper-slide:nth-child(even) {
    background-color: #f8f8f8;
}


.card-custom {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border-radius: 5px;
    /* 5px rounded corners */
}

.card-custom:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card-image-top {
    width: 100%;
    height: 15vw;
    object-fit: cover;
}

@keyframes swipe-animation {
    0% { transform: translateX(100px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(-100px); opacity: 0; }
}

.swiper-hand-overlay {
    /* position: absolute; */
    top: 50%; /* Adjust as needed */
    right: 10px; /* Adjust as needed */
    animation: swipe-animation 2s ease-in-out infinite;
}

.swipe-hand {
    width: 50px; /* Adjust as needed */
    height: auto;
    display: block;
}

li{
    list-style: none;
}

.websummit-background-image {
    background: url(/static/img/index/websummit-bg.jpg) center no-repeat;
    height: 100%;
    width: 100%;
    background-size: cover;
}

.smoke-frame {
    background-color: #00000077;
}

.green-frame {
    background-color: rgba(0, 255, 255, 0.712);
}