.parsley-required {
    color: red;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #f8fafc;
    background-image: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 20%),
                      radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 20%);
    background-attachment: fixed;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1600px) {
    .glass-card {
        max-width: 1100px;
    }
}

.image-slider {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 16px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
}

.slide.active {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.3);
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 5;
}

.custom-input {
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.custom-input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn-gradient {
    background: #FF611E;
    transition: all 0.3s;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #1CBCFF 0%, #1CBCFF 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #1cbcff;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    z-index: 10;
}

.back-btn {
    transition: all 0.3s;
}

.back-btn:hover {
    transform: translateX(-3px);
}

.card-element-container {
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.card-element-container:focus-within {
    border-color: #1cbcff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

/* Slider toggle and fullscreen */
.slider-toggle-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
}

.image-slider.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    border-radius: 0;
}

.image-slider.fullscreen .slide {
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: center;
}


