@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
body{
    /* background-image: url('../img/back.png'); */
    background-position: center;
    background-size: cover;
}

.wizard-container {
    max-width: 900px;
    margin: 0px auto;
    padding: 0px 20px 20px 20px;
    border-radius: 8px;
}

.wizard-header {
    text-align: center;
    margin-bottom: 0px;
}

.progress-bar {
    background-color: #2F5059;
}

.wizard-progress-bar {
    margin-bottom: 20px;
    position: relative;
}

.wizard-step {
    display: none;
}

.active-step {
    display: block;
}

.wizard-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.back-btn {
    cursor: pointer;
}

.progress-container {
    width: 100%;
    position: relative;
}

.progress-label {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 14px;
}

.radio-bar {
    display: flex;
    flex-direction: column; /* Stack the options vertically */
    width: 100%;
    margin-top: 20px;
    gap: 10px; /* Adds a gap between each radio button option */
}

.radio-bar input[type="radio"] {
    display: none; /* Hide the actual radio buttons */
}

.radio-bar label {
    text-align: left;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    
    margin-bottom: 10px;
    border-radius: 12px;
border: 1px solid #FFF;
background: rgba(136, 208, 205, 0.13);

color: rgba(0, 0, 0, 0.76);
font-family: "Nunito Sans";
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 37.615px; /* 110.631% */
letter-spacing: 0.68px;
}

/* Remove the border for the last option */
.radio-bar label:last-child {
    border-bottom: none;
}

/* Background color when the bar item is hovered */
.radio-bar label:hover {
    background-color: #2F5059;
    color: white;
}

/* Selected state - when the radio is checked */
input[type="radio"]:checked + label {
    background-color: #2F5059;
    color: white;
}
.fa-arrow-left{
    color: #1a3b42;
}
.question{
    color: #2F5059;
    font-size: 34px;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: normal; /* 144.074% */
    letter-spacing: 1.08px;
}
.question-text{
    color: #000;
    text-align: center;
    font-family: "Nunito Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal; /* 174.731% */
}

/* Styling for the button */
.color-button {
    background-color: #2F5059; /* Button color */
    color: white; /* Text color */
    font-size: 16px; /* Text size */
    padding: 10px 20px; /* Padding around the text */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer on hover */
    transition: background-color 0.3s ease; /* Smooth transition effect */
    text-decoration: none;
  }
  
  .color-button:hover {
    background-color: #1f3d44; /* Darker shade for hover effect */
    color: white;
  }
  

  .link-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 600px;
    width: 100%;
    margin: 20px 0px;
}

.custom-link {
    display: inline-block;
    text-decoration: none;
    border-radius: 10.138px;
    border: 1.69px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0px 12.672px 21.121px 0px rgba(0, 0, 0, 0.15);
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    background-color: transparent;
    transition: background-color 0.3s, transform 0.3s;
}

.custom-link.male {
    background-color: #88D0CD;
}

.custom-link.female {
    background-color: #6872A4;
}

.custom-link.others {
    background-color: #FFF;
    color: #000;
}

.custom-link:hover {
    transform: scale(1.05);
    color: white;
    text-decoration:none;
}

.custom-link:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .link-container {
        flex-direction: column;
        align-items: center;
    }

    .custom-link {
        width: 80%;
        margin-bottom: 10px;
    }
}



.card {
    border-radius: 7.198px;
    padding: 15px;
    transition: box-shadow 0.3s ease;
}
.card-title{
    color: #2F5059;
text-align: center;
font-family: "Nunito Sans";
font-size: 25.016px;
font-style: normal;
font-weight: 700;
line-height: normal; /* 125.294% */
letter-spacing: 0.62px;
}

.card:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.card-1 {
    background: rgba(136, 208, 205, 0.21);
}

.card-2 {
    background: #FFEAEA;
}

.card-3 {
    background: #E6E9F6;
}

.card-img-top {
    border-radius: 7.198px;
}
