.progress-container {
    height: 25px;
    background-color: #e2e8f0;
    border-radius: 9999px;
    overflow: hidden;
    position: relative;
}

/* Smooth transitions for all interactive elements */
* {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

/* Custom color classes */
.hover\:border-custom-color:hover {
    border-color: #054352;
}

.text-custom-color {
    color: #054352;
}

.hover\:text-custom-color:hover {
    color: #054352;
}

.bg-custom-color {
    background-color: #054352;
}

.hover\:bg-custom-color:hover {
    background-color: #054352;
}

.progress-bar {
    height: 100%;
        background: linear-gradient(90deg, rgba(65, 195, 211, 1) 50%, rgba(75, 210, 154, 1) 100%);
    border-radius: 9999px;
    transition: width 0.3s ease;
    position: relative;
}

#progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    z-index: 1;
}

.card.selected {
    border-color: #054352 !important;
    /* background-color: #f0fff4; */
    box-shadow: 0 0 0 1px #054352;
}

.card.selected .text-gray-700 {
    color: #054352;
    font-weight: bold;
}

.centered-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card.selected .h-5.w-5 {
    background-color: #054352;
    border-color: #054352;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-content {
    flex: 1;
}

/* Improve image card styling */
.image-card img {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.image-card.selected img {
    border-color: #054352;
    transform: scale(1.1);
}

/* Button styling */
.contu-btn {
    width: 100%;
    border-radius: 5px !important;
    background-color: #054352 !important;
    transition: all 0.3s ease;
}

.contu-btn:hover {
    background-color: #054352 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-return {
    background-color: transparent !important;
    color: black !important;
    padding: 0 !important;
}

.step.hidden {
    display: none !important;
}
@media (max-width: 1023px) {
    .mobile-fullscreen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        background-color: white;
        overflow-y: auto;
    }
    
    .hidden-section {
        display: none !important;
    }
    
    .main-content-fullscreen {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        padding: 1rem;
    }
    
    .main-content-fullscreen > div {
        width: 100%;
        max-width: 500px;
    }
}