::selection {
    background: #b3d4fc;
    color: black;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.custom-btn {
    border: 2px solid #00aaff;
    color: #00aaff;
    background-color: transparent;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background-color: #00aaff;
    color: #ffffff;
    text-decoration: none;
}

.fullscreen-header {
    height: 100vh;
    width: 100vw;
    padding: 20px;
    box-sizing: border-box;
}

.carousel, .carousel-inner, .carousel-item {
    height: calc(100vh - 40px) !important;
    margin: 0;
}

.background-image-scale::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top right, #0C356226, #186CC826);
    opacity: 1;
    z-index: 1;
}

.background-image-scale {
    border-radius: 40px;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.position-absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.white-container {
    background-color: white;
    height: 90vh;
    width: 450px;
    border-radius: 32px;
    position: fixed;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.cards-container {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 60px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cards-container::-webkit-scrollbar {
    display: none;
}

.logo-container {
    width: 383px;
    height: 73px;
    margin-left: 10px;
    margin-top: 30px;
}

.divider {
    width: 383px;
    height: 1px;
    background-color: #DDDDDD;
    border: none;
    margin-left: 10px;
    margin-top: 50px;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-container {
    width: calc(100% - 40px);
    margin: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid #DDDDDD;
    padding: 20px;
    cursor: pointer;
    text-decoration: none;
}

.card-container:hover {
    opacity: 1 !important;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    background: transparent;
    border: none;
    border-bottom: none;
    padding-left: 0;
    width: 100%;
}

.card-icon {
    width: 34px;
    height: 29px;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: #000000;
}

.card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    background: transparent;
    border: none;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.open-text {
    color: #0066FF;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.arrow-icon {
    color: #0066FF;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.card-container:hover .arrow-icon {
    animation: arrowMove 1s ease-in-out infinite;
}

@keyframes arrowMove {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

.card-container .divider {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
}

.copyright-text {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
}

.header-logo-container {
    display: none;
}

@media (max-width: 768px) {
    .fullscreen-header {
        padding: 10px 10px 0 10px;
        height: 30vh;
        position: relative;
    }

    .header-logo-container {
        display: flex;
        justify-content: center;
        position: absolute;
        width: 100%;
        top: 40px;
        left: 0;
        z-index: 3;
    }

    .header-logo-container::before {
        content: '';
        position: absolute;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background: white;
        border-radius: 16px;
        z-index: -1;
        padding: 20px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .header-logo-container img {
        width: 60%;
        max-width: 300px;
        padding: 12px 20px;
        position: relative;
    }

    .white-container .logo-container {
        display: none;
    }

    .carousel, .carousel-inner, .carousel-item {
        height: 35vh !important;
        margin: 0;
    }

    .background-image-scale {
        border-radius: 32px 32px 0 0;
        position: relative;
        width: 100%;
        height: 30vh;
    }

    .white-container {
        width: calc(100% - 20px);
        height: calc(70vh - 20px);
        position: absolute;
        left: 10px;
        top: 30vh;
        transform: none;
        border-radius: 32px;
        padding: 16px;
        z-index: 2;
        background-color: transparent;
        box-shadow: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .white-container::-webkit-scrollbar {
        display: none;
    }
    
    .white-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .logo-container {
        width: 100%;
        height: auto;
        margin: 20px auto;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .logo-container img {
        width: 60%;
        max-width: 300px;
        margin: 0 auto;
    }

    .divider {
        display: none;
    }

    .cards-container {
        margin-top: 20px;
    }

    .card-container {
        width: calc(100% - 20px);
        margin: 10px;
        padding: 16px;
    }

    .card-icon {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 14px;
    }

    .card-footer {
        width: 100%;
    }

    .copyright-text {
        width: 100%;
        text-align: center;
        left: 0;
        bottom: 16px;
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }
    
    .cards-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .card-container .divider {
        display: block;
        width: calc(100% - 20px);
        margin: 20px 10px;
        background-color: #DDDDDD;
        height: 1px;
    }

    .white-container > .divider {
        display: none;
    }
} 