/* General Styles */
#wrapper {
    font-family: "Poppins", sans-serif;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Wizard Container */
.wizard-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

/* Progress Bar */
.progress-barz {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}

.progress {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(45deg, #007bff, #00b894);
    transition: width 0.4s ease;
}

.step {
    background: #ddd;
    color: #333;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.step.active {
    background: linear-gradient(45deg, #007bff, #00b894);
    color: white;
    transform: scale(1.1);
}

/* Step Content */
.step-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.step-content.active {
    display: block;
}
/* Summary Section Styling */
.summary-container {
    background: linear-gradient(135deg, #0088cc, #4CAF50); /* Blue-Green Gradient */
    padding: 20px;
    border-radius: 10px;
    color: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    margin: 20px auto;
}

.summary-container p {
    font-size: 1.1em;
    margin: 10px 0;
    font-weight: 500;
}

.summary-container strong {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1em;
}

.summary-container span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.summary-container h4 {
    font-size: 1.5em;
    margin-top: 15px;
    color: yellow;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
}


/* Styled Dropdown */
select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid #007bff;
    background: white;
    transition: all 0.3s ease-in-out;
}

select:focus {
    border-color: #00b894;
    outline: none;
}

/* Checkbox Styling */
label {
    display: block;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 6px;
    margin: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

label:hover {
    background: #007bff;
    color: white;
}

input[type="checkbox"] {
    margin-right: 10px;
}

/* Buttons */
button {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.next-btn {
    background: #007bff;
    color: white;
    margin-top: 15px;
}

.prev-btn {
    background: #00b894;
    color: white;
    margin-top: 15px;
}

button:hover {
    opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.features-content {
    text-align: center;
    padding: 20px;
}

.features-content h3 {
    font-size: 24px;
    color: #0a74da;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.features-content label {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    background: #f8f9fa;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    border: 2px solid transparent;
}

.features-content label:hover {
    background: #e3f2fd;
    border-color: #0a74da;
}

.features-content input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0a74da;
    margin-right: 10px;
    transform: scale(1);
    transition: transform 0.2s ease-in-out;
}

.features-content input[type="checkbox"]:checked {
    transform: scale(1.2);
}

/* .prev-btn, .next-btn {
    background: linear-gradient(135deg, #0a74da, #008080);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    margin: 15px 10px;
} */

.prev-btn:hover, .next-btn:hover {
    background: linear-gradient(135deg, #008080, #0a74da);
}

/* 🔹 Calendar Container */
.deadline-container {
    text-align: center;
    background: linear-gradient(135deg, #0088cc, #4CAF50); /* Blue-Green */
    padding: 20px;
    border-radius: 10px;
    color: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    margin: 20px auto;
}

/* 📅 Calendar Trigger */
#customCalendar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

#deadline {
    font-size: 1.2em;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    outline: none;
}

#openCalendar {
    padding: 8px 12px;
    font-size: 1.5em;
    border: none;
    background: white;
    border-radius: 5px;
    cursor: pointer;
}

/* 📆 Calendar Modal */
#calendarModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
}

.calendar {
    width: 300px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0088cc;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.calendar-header button {
    background: none;
    border: none;
    font-size: 1.2em;
    color: white;
    cursor: pointer;
}

.weekdays {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color:blue;
    padding: 5px 0;
}

#calendarGrid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    padding: 10px;
}

.calendar-day {
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 1.2em;
    background: #eee;
}

.calendar-day:hover {
    background: #4CAF50;
    color: white;
}

.disabled {
    color: gray;
    pointer-events: none;
}


.custom-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 300px;
    animation: fadeIns 0.3s ease-in-out;
    z-index: 1000;
}

.popup-content {
    padding: 15px;
}

.popup-content h4 {
    color: #007bff;
    font-size: 18px;
    margin-bottom: 10px;
}

.popup-content p {
    color: #333;
    font-size: 14px;
}

.popup-content button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.popup-content button:hover {
    background: #0056b3;
}

@keyframes fadeIns {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}
/* Popup Container Style */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Popup Content Style */
.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
    width: 80%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Success Button Style */
.btn-success {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Error Button Style */
.btn-danger {
    background-color: #dc3545;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Show Popup */
.popup-container.show {
    display: flex;
    opacity: 1;
}

/* Loader Styles */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-size: 1.2em;
    z-index: 9999;
}

/* Loader Dots */
.loader {
    display: flex;
    justify-content: space-between;
    width: 60px; /* Adjust size of the loader */
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #007bff; /* Blue color for dots */
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}
