/* ==========================================================================
    GLOBAL LAYOUT WRAPPER
========================================================================== */
body {
    background-color: #0b0d19;
    /* Dark outer background surrounding card */
    font-family: system-ui, -apple-system, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    margin: 0;
}

.surveyPageContainer {
    max-width: 1240px;
}

.survey-container {
    width: 100%;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 0;
    overflow: visible;
}
.survey-form-main{
    width: 100%;
    display: flex;
    justify-content: center;
}
.question-box {
    display: none;
}

.question-box.active {
    display: block;
}

.d-none {
    display: none !important;
}

/* ==========================================================================
   1. TOP MINI NAVBAR STYLES
   ========================================================================== */

.top-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 20px;
    background: #ffffff;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

.navbar-progress-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #07253f;
    font-size: 16px;
    font-weight: bold;
}

.progress-divider {
    border-right: 1px solid #e2e8f0;
    padding-right: 1.5rem;
    height: 100%;
    min-height: 24px;
}

.progress-micro-track {
    height: 10px;
    width: 100px;
    background-color: #e2e8f0;
    border-radius: 4px;
    display: inline-block;
}

.progress-micro-fill {
    height: 100%;
    background-color: #5c24fc;
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

.navbar-stats-group {
    display: flex;
    align-items: center;
    /* gap: 1.5rem; */
    gap: 1rem;
    flex-grow: 1;
}

.reward-container {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 0 14px;
    height: 100%;
    color: #0000FF;
    font-weight: bold;
}
.points-badge {
    width: 30px;
    height: 30px;
    background-image: url('../images/user-icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

#navbarRewardValue {
    font-size: 17px;
    font-weight: 600;
    color: #0000FF;
    line-height: 1;
}

.timer-badge {
    color: #07253f;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 15px;
}

.timer-bold {
    font-weight: 700;
    /* color: #212529; */
    color: #f5351e;

}

.timer-muted {
    color: #07253f;
    font-weight: bold;
}

.encouragement-msg {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #07253f;
    margin-left: 20px;
}


.campaign-banner-bg {
    width: 100%;
    max-width: 1190px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.campaign-banner-bg img {
    width: 100%;
    height: auto;
    object-fit: fill;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .campaign-banner-bg {
        /* height: 250px; */
        height: auto;
    }

    .earningTimeCounter {
        font-size: 14px !important;
    }
}

.user-profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-left: 15px;
}

.profile-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: fill;
}

.balance-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.balance-label {
    font-size: 11px;
    color: #07253f;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.balance-value {
    font-size: 14px;
    color: #212529;
    font-weight: 700;
}

@media (max-width: 768px) {
    .top-navbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px;
    }

    .navbar-progress-group {
        width: 100%;
        justify-content: space-between;
    }

    .progress-divider {
        border-right: none !important;
        border-left: none !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .navbar-stats-group {
        width: 100%;
        display: grid;
        grid-template-columns: auto auto;
        gap: 10px;
        align-items: center;
    }

    .navbar-progress-group {
        font-size: 13px;
    }

    .user-profile-badge {
        width: 100%;
        justify-content: center;
        padding-left: 0;
        margin-top: 4px;
        border-top: 1px solid #eeeeee;
        padding-top: 8px;
    }

    .progress-micro-track {
        flex-grow: 1;
        margin: 0 10px;
    }
}

/* ==========================================================================
   3. QUESTIONNAIRE MAIN CONTENT SECTION
   ========================================================================== */
.survey-body-panel {
    background-color: #ffffff;
    padding: 1.5rem;
}

.question-header-row {
    margin-bottom: 1.5rem;
}

.question-title-flex {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.badge-round-index {
    background-color: #5c24fc;
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.question-text-title {
    color: #0f172a;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.required-star {
    color: #d9383a;
    margin-left: 4px;
}

.motivation-card-wrapper {
    display: flex;
    justify-content: start;
}
@media (max-width: 768px){
    .question-text-title{
        font-size: 18px;
    }
    .option-card{
        font-size: 16px !important;
    }
}
@media (min-width: 992px) {
    .motivation-card-wrapper {
        justify-content: flex-end;
    }
}

.motivation-card-box {
    border: 1px solid #e2e5ff;
    background-color: #f6f8ff;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.motivation-icon {
    font-size: 2rem;
}

.motivation-card-title {
    font-size: 0.9rem;
    color: #5c24fc;
    font-weight: 700;
}

.motivation-card-desc {
    font-size: 0.8rem;
    color: #07253f;
}

/* ==========================================================================
   4. SELECTION CARD CONTAINER GRID
   ========================================================================== */
.survey-option {
    height: 100%;
}

.option-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    font-size: 1.3rem;
    color: #000;
    display: flex;
    align-items: center;
    margin: 0;
}

.option-card:hover {
    border-color: #5c24fc;
    background-color: #5c24fc;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 36, 252, 0.05);
}

.option-card.active {
    border-color: #5c24fc;
    background-color: #5c24fc;
    color: #ffffff;
    font-weight: 500;
}

/* ==========================================================================
   5. ACTION FOOTER CONTAINER BAR
   ========================================================================== */
.btn-action-submit {
    background-color: #5c24fc;
    color: #ffffff;
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 500;
    border: none;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-action-submit:hover {
    background-color: #4b1cd1;
    color: #ffffff;
}

@media (max-width: 768px) {
    .progress-divider {
        border-right: none;
        padding-right: 0;
    }

    .encouragement-msg {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .campaign-last-name {
        font-size: 2.5rem;
    }

    .campaign-first-name {
        font-size: 1.1rem;
    }

    .campaign-serif-motto {
        font-size: 1rem;
    }
}

.disclaimer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 25px 0;
}

.btn-disclaimer {
    background-color: transparent;
    color: #fff;
    font-family: sans-serif;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-disclaimer:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
    color: #212529;
}

.btn-disclaimer:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.25);
}

.survey-footer-actions {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 0 !important;
}
.survey-footer-actions-a{
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    --bs-gutter-x: 1rem;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    margin: 0;
}
.survey-footer-reward {
    display: flex;
    align-items: center;
    border-radius: 10px;
    font-size: 0.85rem;
    max-width: 250px;
    padding: .5rem !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.language-container{
    display: flex;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 1rem !important;
    order: 1 !important;
}
.next-q-btn{
    background-color: #5c24fc;
    border-color: #5c24fc;
    color: #fff;
    padding: .5rem 1.5rem .5rem 1.5rem;
}
.next-q-btn:hover{
    background: #030f56;
    color: #fff;
}
.survey-reward-subfooter {
    text-align: center;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
    background-color: #fcfbfe !important;
    transition: background-color 0.2s ease;
}
.survey-reward-subfooter a{
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4a154b;
    font-size: 1.2rem;
    gap: .5rem !important;
    font-weight: bold;
}
.survey-reward-subfooter a:hover {
    opacity: 0.85;
}

@media (max-width: 767.98px) {
    .survey-footer-actions .order-1 {
        margin-bottom: 0.25rem;
    }
}

.question-badge {
    color: #000;
    font-weight: 600;
}

/* Survey Model CSS */

.survey-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 15px;
    backdrop-filter: blur(2px);
}

/* Modal Content Box */
.survey-modal-content-box {
    background: #ffffff;
    width: 100%;
    max-width: 680px;
    border-radius: 16px;
    padding: 10px 10px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: modalFadeIn 0.3s ease-out;
    font-family: sans-serif;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Close Button */
.survey-modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    color: #4b5563;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    z-index: 10;
    padding: 0;
}

.survey-modal-close-btn:hover {
    background: #f9fafb;
    color: #111827;
}

/* Confetti Background */
.confetti-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: radial-gradient(circle at 10% 20%, #60a5fa 4px, transparent 4px),
    radial-gradient(circle at 90% 30%, #fbbf24 4px, transparent 4px),
    radial-gradient(circle at 20% 80%, #fbbf24 3px, transparent 3px),
    radial-gradient(circle at 85% 70%, #60a5fa 3px, transparent 3px);
    opacity: 0.8;
    pointer-events: none;
}

.confetti-piece {
    position: absolute;
    width: 6px;
    height: 12px;
    border-radius: 3px;
    opacity: 0.9;
}

.c1 {
    top: 15px;
    left: 20%;
    background: #c084fc;
    transform: rotate(30deg);
}

.c2 {
    top: 35px;
    left: 80%;
    background: #c084fc;
    transform: rotate(-45deg);
}

.c3 {
    top: 50px;
    left: 10%;
    background: #fbbf24;
    transform: rotate(15deg);
}

.c4 {
    top: 60px;
    right: 15%;
    background: #fbbf24;
    transform: rotate(-25deg);
}

/* Header Section */
.survey-modal-top-header {
    text-align: center;
    margin-bottom: 12px;
    position: relative;
}

.header-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 8px;
}

.trophy-icon-wrap {
    position: absolute;
    left: 55px;
    top: -5px;
    width: 65px;
}

.survey-modal-top-header h2 {
    color: #1e1b4b;
    font-size: 21px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.5px;
}

.survey-modal-top-header .star-divider {
    color: #fbbf24;
    font-size: 14px;
    margin: 0px 0 6px 0;
}

.survey-modal-top-header .good-news {
    color: #4c1d95;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.survey-modal-top-header p {
    color: #374151;
    font-size: 13px;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 90%;
}

.survey-modal-top-header p strong {
    color: #4200d6;
    font-weight: 700;
}

/* =========================================
   COMBINED REWARD BOX
   ========================================= */
.combined-reward-box {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    background: #ffffff;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.reward-top-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

/* Left Half */
.reward-left {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 48%;
    justify-content: center;
}

.reward-coin-icon svg {
    width: 45px;
    height: 45px;
}

.reward-left-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.rl-title {
    font-size: 10px;
    font-weight: 800;
    color: #1e1b4b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.rl-number {
    font-size: 38px;
    font-weight: 800;
    color: #4200d6;
    margin: 2px 0;
}

.rl-subtitle {
    font-size: 14px;
    font-weight: 800;
    color: #4200d6;
}

/* Divider */
.reward-center-line {
    width: 1px;
    height: 50px;
    background: #e5e7eb;
}

/* Right Half */
.reward-right {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rr-top-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4200d6;
    margin-bottom: 3px;
}

.rr-top-row i {
    font-size: 24px;
}

.rr-top-row .rr-number {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.rr-caps {
    font-size: 10px;
    font-weight: 800;
    color: #4200d6;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 3px;
}

.rr-sub {
    font-size: 11px;
    color: #000;
    font-weight: 500;
}

.inner-purple-banner {
    background: #f5f3ff;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.inner-purple-banner svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.inner-purple-banner p {
    font-size: 11.5px;
    color: #1e1b4b;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
    text-align: left;
}

/* Categories Section */
.cat-header {
    font-size: 11px;
    font-weight: 800;
    color: #1e1b4b;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.cat-grid {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 15px;
}

.cat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cat-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 15px;
    margin-bottom: 4px;
}

.sm-bg-travel {
    background: #7c3aed;
}

.sm-bg-dining {
    background: #f59e0b;
}

.sm-bg-shopping {
    background: #10b981;
}

.sm-bg-entertainment {
    background: #3b82f6;
}

.sm-bg-hotels {
    background: #ef4444;
}

.sm-bg-gifts {
    background: #8b5cf6;
}

.cat-box span {
    font-size: 10px;
    font-weight: 700;
    color: #1e1b4b;
}
/* Sponsor Box */
.sponsor-container {
    background: #f5f3ff;
    border: 1px solid #ede9fe;
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.sponsor-container img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sponsor-info span {
    display: block;
    font-size: 9px;
    font-weight: 800;
    color: #4200d6;
    text-transform: uppercase;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.sponsor-info strong {
    font-size: 13px;
    color: #1e1b4b;
    font-weight: 800;
}

/* Footer Actions */
.modal-bottom-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-checkbox-wrap {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    color: #1e1b4b;
    font-weight: 500;
    line-height: 1.3;
    user-select: none;
}

.custom-checkbox-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.check-box-ui {
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #4200d6;
    border-radius: 4px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}

.custom-checkbox-wrap input:checked ~ .check-box-ui::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #4200d6;
    font-size: 12px;
}

.btn-purple-continue {
    background: #4200d6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}

.btn-purple-continue i {
    margin-left: 8px;
    font-size: 13px;
}

.btn-purple-continue:hover {
    background: #3100a6;
}

/* Mobile Adjustments */
@media (max-width: 650px) {
    .reward-top-split {
        flex-direction: column;
        gap: 12px;
    }

    .reward-center-line {
        width: 100%;
        height: 1px;
    }

    .reward-left, .reward-right {
        width: 100%;
    }

    .inner-purple-banner {
        align-items: flex-start;
    }

    .modal-bottom-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn-purple-continue {
        width: 100%;
        justify-content: center;
    }

    .cat-grid {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .cat-more {
        margin-top: 8px;
    }

    .header-title-wrap {
        flex-direction: column;
    }

    .trophy-icon-wrap {
        position: static;
        width: 45px;
        margin-bottom: 8px;
    }
}

/* Thank you page CSS */
.campaign-thankyou-card {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #eef2f5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 24px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-header-success {
    text-align: center;
    background-image: url('../images/POLL.png');
    background-size: cover;
    background-repeat: no-repeat;
    /* padding: 26px; */
    padding: 18px;
}
.checkmark-circle {
    width: 44px;
    height: 44px;
    background-color: #2800f7;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}
.main-title {
    color: #1a1a1a;
    font-size: 33px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.subtitle-text {
    color: #2c1bf7;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.small-text {
    font-size: 16px;
    line-height: 1.5;
    color: #07253f;
}

/* Candidate Banner Graphic Styles (referencing image_cd4415.png) */
.candidate-banner {
    height: 400px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.4);
}
.banner-overlay {
    height: 100%;
    display: flex; /* Replacement for d-flex */
    flex-direction: column; /* Replacement for flex-column */
    justify-content: space-between; /* Replacement for justify-content-between */
    padding: 1rem; /* Replacement for p-3 */
    text-align: left; /* Replacement for text-start */
    color: #ffffff; /* Replacement for text-white */
}
.candidate-name {
    font-size: 22px;
    font-weight: 900;
    margin: 0; /* Replacement for m-0 */
    letter-spacing: 1px;
}
.candidate-sub {
    font-size: 11px;
    font-weight: 700;
    color: #ff3b30;
    margin: 0; /* Replacement for m-0 */
    letter-spacing: 2px;
}
.candidate-sub .star {
    font-size: 9px;
}
.banner-footer {
    background-color: #d62227;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 4px;
    width: fit-content;
    text-align: center;
}

/* Campaign Narrative Typography */
.support-section {
    margin-bottom: 1.5rem;
}
.support-title {
    color: #4533f6;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.4;
    width: 100%;
    margin: auto;
    max-width: 360px;
}
.support-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #07253f;
}

/* Social Actions Module */
.share-box {
    background-color: #f6f9fe;
    border: 1px solid #e2edf9;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.share-title {
    font-size: 17px;
    font-weight: 700;
    color: #4533f6;
    margin-bottom: 0.25rem;
}
.small-text-muted {
    font-size: 14px;
    color: #07253f;
    margin-bottom: 1rem;
}
.social-links-wrap {
    display: flex !important;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0.5rem;
}
.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.2s ease;
}
.social-icon:hover {
    transform: scale(1.08);
}
.social-icon.fb { background-color: #3b5998; }
.social-icon.x-twitter { background-color: #000000; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.whatsapp { background-color: #25d366; }
.social-icon.linkedin { background-color: #0077b5; }
.extra-small-text {
    font-size: 14px;
    color: #07253f;
    margin: 0;
}

.custom-row-gap {
    --bs-gutter-y: 1rem;
    margin-bottom: 1.5rem;
}
.points-display-box {
    border: 1px solid #e2edf9;
    border-radius: 8px;
    padding: 1rem;
    background-color: #F3F2FF;
    height: 100%;
    display: flex;
    align-items: center;
}
.trophy-container {
    margin-right: 1rem;
}
.trophy-img {
    width: 130px;
    height: auto;
}
.points-text-side {
    text-align: left;
}
.label-text {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    display: block;
    letter-spacing: 0.5px;
}
.points-row {
    display: flex;
    align-items: baseline;
}
.points-highlight {
    font-size: 45px;
    font-weight: 900;
    color: #4a13ff;
    line-height: 1;
}
.points-label {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-left: 4px;
}
.balance-text {
    font-size: 16px;
    color: #07253f;
    display: block;
    margin-top: 0.25rem;
}
.balance-count {
    color: #4a13ff;
    font-size: 16px;
}

.keep-it-up-box {
    border: 1px solid #def2e8;
    border-radius: 8px;
    padding: 1rem;
    background-color: #f4faf7;
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    position: relative;
}
.keep-up-tag {
    font-size: 15px;
    font-weight: 700;
    color: #198754;
    display: block;
    margin-bottom: 0.25rem;
}
.extra-small-text-dark {
    font-size: 15px;
    color: #000;
    margin: 0;
}
.chart-badge {
    position: absolute;
    bottom: 0;
    end: 0;
    margin: 0.5rem;
}
.chart-badge i {
    font-size: 32px;
    color: #198754;
    opacity: 0.8;
}

.rewards-wrapper {
    border: 1px solid #e2edf9;
    border-radius: 8px;
    padding: 1rem;
    background-color: #f6f9fe;
}
.rewards-title {
    font-size: 20px;
    font-weight: 700;
    color: #4533f6;
    letter-spacing: -0.1px;
    margin-bottom: 0.25rem;
}
.extra-small-text-center {
    font-size: 15px;
    color: #07253f;
    margin-bottom: 1rem;
    text-align: center;
}
.custom-grid-gap {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}
/* Base Layout: Mobile First (Stack vertically on small screens) */
.success-container {
    display: flex;
    flex-direction: column; /* Stacks items on top of each other on mobile */
    gap: 15px; /* Spacing between the stacked cards */
    width: 100%;
    box-sizing: border-box;
}

.success-column {
    width: 100%; /* Full width on mobile */
}

/* Desktop Layout: Applied only to screens wider than 768px */
@media (min-width: 768px) {
    .success-container {
        flex-direction: row; /* Switches them back to a side-by-side row */
        flex-wrap: nowrap;   /* Forces all 5 to stay strictly on one line */
    }

    .success-column {
        flex: 1; /* Gives all 5 columns an identical, equal width */
        min-width: 0; /* Prevents text overflow from breaking the width */
    }
}

/* Image Safety Guard */
.success-icon {
    max-width: 100%;
    height: auto;
    display: block;
}
.reward-item-card {
    border: 1px solid #e2edf9;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 0.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}
.reward-item-card:hover {
    border-color: #2b59ff;
    box-shadow: 0 4px 10px rgba(43,89,255,0.1);
}
.reward-icon {
    width: 190px;
    height: 130px;
    object-fit: cover;
    margin-bottom: 6px;
    border-radius: 20px;
}
.reward-desc{
    font-size: 15px;
    color: #000;
}
/* Interaction Call-To-Action Element */
.explore-rewards-btn {
    display: flex;
    width: 50%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #1b49ff;
    color: #ffffff;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: background-color 0.2s ease;
    margin: 12px auto;
}
.explore-rewards-btn:hover {
    background-color: #0b5ed7;
    color: #ffffff;
}
.explore-rewards-btn i {
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .explore-rewards-btn{
        width: 100%;
    }
}

/* login register styling*/

.form-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    padding: 50px 15px 40px;
    position: relative;
    margin-top: 50px;
    border: 1px solid #f0f0f0;
}

.profile-icon-top {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #431c9e 40%, #ff1833 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    border: 6px solid #f8fbff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-heading-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.form-heading-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0b1930;
    margin-bottom: 8px;
}

.form-heading-wrapper p {
    font-size: 0.8rem;
    color: #0a2347;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 85%;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 6px;
}

.form-label .text-danger {
    color: #d11228 !important;
}

.form-control,
.form-select {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 0.95rem;
    color: #1a202c;
    box-shadow: none;
    transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: #431c9e;
    box-shadow: 0 0 0 0.2rem rgba(67, 28, 158, 0.1);
}

.form-control::placeholder {
    color: #a0aec0;
}

.input-group-text {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
}

.input-group > .form-control:not(:last-child) {
    border-right: 0;
}

.input-group > .input-group-text:not(:first-child) {
    border-left: 0;
    cursor: pointer;
}

.phone-group .input-group-text {
    padding: 0;
    border: 1px solid #e2e8f0;
    background: white;
    border-right: 0;
}

.phone-select {
    border: none;
    background: transparent;
    padding: 10px 5px 10px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: none !important;
    outline: none;
}

.country-code-text {
    padding: 10px 10px 10px 5px;
    font-size: 0.95rem;
    font-weight: 500;
    border-right: 1px solid #e2e8f0;
}

/* Password Helper Text */
.password-helper {
    font-size: 0.75rem;
    color: #a0aec0;
    margin-top: 5px;
    display: block;
}

/* Checkboxes */
.form-check {
    margin-bottom: 12px;
}

.form-check-input {
    margin-top: 4px;
    border-color: #cbd5e1;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #431c9e;
    border-color: #431c9e;
}

.form-check-label {
    font-size: 0.9rem;
    color: #4a5568;
    cursor: pointer;
}

.form-check-label a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 500;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-gradient-submit {
    background: linear-gradient(90deg, #d11228 0%, #431c9e 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    width: 100%;
    margin-top: 15px;
    transition: opacity 0.3s ease;
}

.btn-gradient-submit:hover {
    opacity: 0.9;
    color: #ffffff;
}

.secure-text {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 15px;
}

.secure-text i {
    color: #4a5568;
    margin-right: 5px;
}

section.stats-section.container-ac {
    margin: 10px auto !important;
}

.nav-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-login {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-outline {
    background: transparent;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3) !important;
    padding: 10px 30px !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-book-h {
    background: linear-gradient(to bottom, #f00a0a, #a60000);
    color: #ffffff !important;
    padding: 10px 30px !important;
    border: 1px solid #da2128;

    box-shadow: 0 2px 4px rgba(218, 33, 40, 0.3);
}

.btn-book-h:hover {
    background: linear-gradient(180deg, #e3363b 0%, #c4181e 100%);
}

.section-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #002244;
    display: flex;
    align-items: center;
    margin-bottom: 0rem;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 0.5rem;
}

.section-title i {
    color: #0e4072;
    margin-right: 8px;
    font-size: 2rem;
}

label.form-label {
    font-size: 18px;
    font-weight: 700;
    color: #030f56 !important;
    margin-bottom: 0.3rem;
}

.req-star {
    color: #de0303;
}

.form-control,
.form-select {
    font-size: 0.85rem !important;
    padding: 0.5rem 1rem !important;
    border: 1px solid #cccccc;
    border-radius: 6px;
}

.form-control:focus,
.form-select:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.1);
}

/* Privacy Box */
.privacy-box {
    background-color: #eafaf1;
    border: 1px solid #bce8d1;
    border-radius: 10px;
    padding: 0.5rem;
}

/* starting survey page 09-06-2026 */

.promo-card {
    background-color: #ffffff;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.start-header-section {
    text-align: center;
    margin-bottom: 30px;
    position: relative;

    background-image: url('../images/POApy.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}
.coach-bubble {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 235px;
    font-family: sans-serif;
}

.coach-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
    filter: drop-shadow(0px 1px 0px #e2e8f0);
}

.coach-avatar {
    font-size: 28px;
    line-height: 1;
}

.coach-text-bold {
    font-weight: bold;
    color: #1a1a3a;
    font-size: 13px;
    margin: 0 0 3px 0;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.logo-icon {
    width: 45px;
    height: 45px;
}

.logo-text {
    text-align: left;
}

.logo-title {
    font-size: 24px;
    font-weight: 800;
    color: #0b1a30;
    line-height: 1;
}

.logo-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #e62222;
    letter-spacing: 4px;
    line-height: 1.2;
}

.main-headline {
    font-size: 36px;
    font-weight: 800;
    color: #0b1a30;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.sub-headline {
    font-size: 44px;
    font-weight: 900;
    color: #4a13ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.sub-headline::before, .sub-headline::after {
    content: '⚡';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #ff9d00;
}
.sub-headline::before { left: -35px; }
.sub-headline::after { right: -35px; }

.header-description {
    font-size: 16px;
    color: #07253f;
    line-height: 1.6;
    max-width: 475px;
    margin: 0 auto;
    font-weight: 600;
}

/* Speech Bubble Coach */
.coach-avatar {
    font-size: 24px;
}

.coach-text-bold {
    font-size: 16px;
    font-weight: 700;
    color: #4a13ff;
    margin-bottom: 2px;
}

.coach-text-sub {
    font-size: 13px;
    color: #000;
    line-height: 1.2;
    margin-bottom: 0rem;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-box {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 20px 10px;
    text-align: center;
    transition: transform 0.2s;
}

.feature-box:hover {
    transform: translateY(-2px);
}

.icon-wrapper {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}
.icon-wrapper i{
    color: #fff;
    font-size: 40px;
}

.start-image{
    height: 130px;
    width: 140px;
    object-fit: cover;
}
/* Page-specific background design configurations */
/* .opinion-icon-bg { background: #6025e7;}
.points-icon-bg  { background: radial-gradient(circle, #dcfce7 0%, #86efac 100%); }
.rewards-icon-bg { background: radial-gradient(circle, #e0f2fe 0%, #7dd3fc 100%); }
.impact-icon-bg  { background: radial-gradient(circle, #fce7f3 0%, #f472b6 100%); } */

.feature-title {
    font-size: 18px;
    font-weight: 800;
    color: #16144b;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 17px;
    color: #07253f;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 0rem;
}

.start-survey-container {
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    background-image: url('../images/start-survey-celeb.jpg');

    /* Add these lines */
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}
@media (max-width: 768px) {
    .start-survey-container {
        background-image: none;
        text-align: center;
        padding: 8px;
    }
    .start-header-section{
        background-image: none;
    }
}
.start-survey-text {
    font-size: 17px;
    color: #334155;
    font-weight: 600;
    margin-bottom: 15px;
}

.start-survey-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #5116ff 0%, #3b06cc 100%);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    max-width: 570px;
    box-shadow: 0 4px 15px rgba(59, 6, 204, 0.3);
    transition: opacity 0.2s;
}

.start-survey-button:hover {
    opacity: 0.95;
}
.security-note {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    gap: 6px;
    font-size: 18px;
    color: #07253f;
    margin-top: 15px;
}

.rewards-section {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px 0px;
    position: relative;
}

.rewards-header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 0 20px;
    width: max-content;
}

.divider-line {
    width: 15px;
    height: 2px;
    background-color: #a78bfa;
}

.rewards-title {
    font-size: 14px;
    font-weight: 800;
    color: #4a13ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 15px;
}
.rewards-grid-videoads {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.reward-item {
    text-align: center;
    padding: 10px 5px;
}

.reward-icon-box {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.reward-name {
    font-size: 13px;
    font-weight: 700;
    color: #1e1e4e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0rem;
}

.footer-utils {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.language-selector {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    font-size: 13px;
    color: #334155;
    background: #ffffff;
    cursor: pointer;
}

.disclosure-tag {
    background-color: #050b14;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.language-selector {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
}

.arrow {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.language-selector .dropdown-menu {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
}

.language-selector .dropdown-menu li a {
    color: #334155;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.language-selector .dropdown-menu li a:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}

.language-selector:hover .dropdown-menu {
    display: block;
}

.language-selector:hover .arrow {
    transform: rotate(180deg);
}

.login_sec {
    max-width: 450px;
    margin: 0 auto;
}

.earning-clock {
    margin-right: 5px;
    color: #000;
}

@media (max-width: 850px) {
    .coach-bubble {
        position: relative;
        top: 0;
        right: 0;
        margin: 15px auto 15px;
        max-width: 260px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .rewards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 550px) {
    .promo-card {
        padding: 20px 10px;
    }
    .main-headline {
        font-size: 26px;
    }
    .sub-headline {
        font-size: 30px;
    }
    .sub-headline::before, .sub-headline::after {
        display: none;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rewards-header-divider {
        width: 90%;
        font-size: 11px;
    }
    .start-survey-button {
        font-size: 15px;
        padding: 14px 20px;
    }
}

.candidate-img-banner {
    height: 100%;
    width: 100%;
}
.doingGreatDiv{
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    max-width: 255px;
    padding: .5rem;
    border: 1px solid #f4f4f4;
    border-radius: 10px;
    background: #fff;
}
.doingGreatDiv-text{
    display: block;
    font-size: 15px;
    color: #5c24fc;
}
.language-drop{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    order: 1;
}
.survey-q-bottom{
    padding: 1rem 1rem 1rem 1rem;
    margin-bottom: 1rem;
    align-items: center;
    --bs-gutter-y: 1rem;
}
.next-q-btn{
    background-color: #5c24fc;
    border-color: #5c24fc;
    color: #fff;
    padding: .5rem 1.5rem .5rem 1.5rem;
}

@media (max-width: 768px) {
    .submitBtn {
        text-align: center !important;
        padding-bottom: 15px;
    }

    .doingGreatDiv {
        text-align: left !important;
        max-width: 100% !important;
    }

    .candidate-banner {
        height: auto !important;
    }
}
