/* ====== Global Styling ====== */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f3f7ff, #dbe7ff);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    animation: fadeIn 1s ease-in-out;
}
/* Attractive Light Gradient Button */
button.question-answer.btn.btn-secondary.d-flex.flex-column.justify-content-between.align-items-center {
    width: 100%;
    padding: 16px 28px;
    border: 1px solid #e9e9e9 !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff, #e6e6f0); /* light attractive gradient */
    color: #1f1f1f; /* dark text for readability */
    cursor: pointer;
    border: none;
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.08), /* soft shadow */
        inset 0 -2px 6px rgba(0, 0, 0, 0.03); /* subtle inner depth */
    text-align: center;
    transition: 
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease;
}



/* Active: Pressed Effect */
button.question-answer.btn.btn-secondary.d-flex.flex-column.justify-content-between.align-items-center:active {
    transform: scale(0.97);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

div
{
	max-width: 100%;
}
span.components-container {
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.questionnaire br 
{
	display: none !important;
}
.progressbar {
    display: none !important;
}
ul.progress-list {
    display: none !important;
}
.progress-container {
    margin-bottom: 20px;
    display: none !important;
}
#funnel-app .col-lg-8.mx-auto.p-3.py-md-5 br {
    display: none !important;
}
.questionnaire {
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    animation: slideUp 0.7s ease;
}

/* ====== Animations ====== */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(25px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

@keyframes growBar {
    from { width: 0; }
    to   { width: 100%; }
}

/* ====== Progress Bar ====== */
.progress-container {
    margin-bottom: 20px;
}

.progressbar {
    width: 100%;
    height: 10px;
    background: #e5e8ef;
    border-radius: 20px;
    overflow: hidden;
}

.prgress-1 {
    background: #4e7bff;
    height: 100%;
    border-radius: 20px;
    transition: width 0.6s ease;
    animation: growBar 1s ease forwards;
}

/* ====== Question Text ====== */
.question-text {
    font-size: 23px;
    font-weight: 600;
    color: #222;
}

/* ====== Buttons (Answers) ====== */
.question-answer {
    width: 100%;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    border: none;
    background: #eef2ff;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.question-answer:hover {
    background: #4e7bff !important;
    color: #fff !important;
    transform: translateY(-3px);
}

/* ====== Nav Buttons ====== */
.btn-previous-next-container {
    margin-top: 30px;
}

.btn-previous-question,
.btn-next-question {
    background: #4e7bff;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-previous-question:hover,
.btn-next-question:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

/* ====== Responsive ====== */
@media (max-width: 600px) {
    .question-text {
        font-size: 1.3rem;
        text-align: center;
    }

    .questionnaire {
        padding: 20px 15px;
    }

    .question-answer {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .btn-previous-question,
    .btn-next-question {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

