:root {
    --primary: #22c55e;
    --primary-dark: #22c55e;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --success: #00ff5e;
    --warning: #f97316;
    --error: #ef4444;
    --background: #f8fafc;
    --surface: #ffffff;
    --surface-elevated: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(91.82deg, #003b4c 0.5%, rgb(51 135 158) 114.21%);
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--warning));
    --gradient-surface: linear-gradient(135deg, #ffffff, #f8fafc);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;;
    background: var(--background);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ms-auto{
    margin-left: auto;
}

.mb-0{
    margin-bottom: 0px !important;
}

.w-full{
    width: 100%;
}

.app-container {
    max-width: 375px;
    margin: 0 auto;
    height: 100vh;
    background: url(./img/bg2.png), rgba(0, 105, 134, 1);
    position: relative;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    overflow-y: scroll;
    background-repeat: no-repeat;
    background-size: 100%;
}

/* Typography */
.font-display { font-family: "Roboto", sans-serif; font-weight: 800; }
.font-heading { font-family: "Roboto", sans-serif; font-weight: 700; }
.font-subheading { font-family: "Roboto", sans-serif; font-weight: 600; }
.font-body { font-family: "Roboto", sans-serif }

h1 { font-size: 2rem; line-height: 1.2; }
h2 { font-size: 1.5rem; line-height: 1.3; }
h3 { font-size: 1.15rem; line-height: 1.4; }
.text-xl { font-size: 1.25rem; }
.text-lg { font-size: 1.125rem; }
.text-base { font-size: 1rem; }
.text-sm { font-size: 12px; }
.text-xs { font-size: 12px }

/* Utility Classes */
.hidden { display: none !important; }
.flex { display: flex; }

.gap-3{
    gap: 15px;
}

.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Colors */
.text-primary { color: #fff; }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--accent); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-error { color: var(--error); }
.text-muted { color: var(--text-muted); }
.text-gray { color: var(--text-secondary); }

.text-white{
    color: white;
}

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }
.bg-success { background-color: var(--success); }
.bg-warning { background-color: var(--warning); }
.bg-error { background-color: var(--error); }
.bg-surface { background-color: var(--surface); }
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-accent { background: var(--gradient-accent); }

/* Spacing */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

/* Border Radius */
.rounded { border-radius: 0.5rem; }
.rounded-lg { border-radius: 0.75rem; }
.rounded-xl { border-radius: 1rem; }
.rounded-2xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 50%; }

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Screen Container */
.screen {
    min-height: 100vh;
    padding-bottom: 80px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    /* background: url(./bg2.png), rgba(0, 105, 134, 1); */
    background-repeat: no-repeat;
}

.screen.slide-left {
    transform: translateX(-100%);
}

.screen.slide-right {
    transform: translateX(100%);
}

/* Header */
.header {
    /* padding: 1rem; */
    /* background: var(--surface); */
    /* border-bottom: 1px solid #ffffff1f;
    position: sticky;
    z-index: 10; */
    /* backdrop-filter: blur(10px); */
    /* background: rgba(255, 255, 255, 0.95); */
}

.form-switch .form-check-input {
    width: 2.6em;
    height: 1.4em;
    background-color: rgba(255, 255, 255, 0.25);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    background-position: left center;
    border-radius: 2em;
    border-color: transparent;
    transition: background-position .15s ease-in-out;
    float: left;
    cursor: pointer;
}

.form-switch .form-check-input:checked {
    background-color: var(--secondary) !important;
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input {
    --bs-form-check-bg: #fff;
    flex-shrink: 0;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #ddd;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
}


.header {
    padding: 0.5rem 1rem;
    /* background: var(--surface); */
    border-bottom: 1px solid #ffffff1f;
    position: sticky;
    z-index: 101;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.1);
}

.header a{
    text-decoration: none;
    color:white
}

.header a .wallet-ico{
    color: #22c55e;
    margin-right:3px
}

.header .coin{
    line-height: 1;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 10px 13px;
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
}

.header .coin img{
    width: 10px;
}

.header .coin small{
    display: block;
    font-weight: 400;
    font-size: 12px;
}

.loggedUser{
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
    color: white;
    background: #f68f0f;
    cursor: pointer;
}

.welcomeMsg{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.welcomeMsg .right{
    line-height: 1;
}

.welcomeMsg .right img{
    width: 33px;
    margin-bottom: -7px;
}

.welcomeMsg .right h5{
    color: white;
    font-size: 30px;
    margin: 0px;
}

.welcomeMsg .right h5 sup{
    font-size: 18px;
    font-weight: 300;
}



.header .logo{
    font-size: 13px;
    color: white;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
}

.header .logo img{
    display: block;
    width:35px
}

.header .logo span{
    text-align: center;
    display: block;
    font-size: 12px;
}

.header-title {
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
}

.header-back {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.header-back:hover {
    background: rgba(99, 102, 241, 0.1);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(91.82deg, #FFDC51 0.5%, rgba(255, 220, 81, 0) 114.21%);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    /* background: var(--primary);
    color: white; */
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
}

.btn-ghost:hover {
    background: rgb(32 138 168);
    transform: translateY(-1px);
}

.btn-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 12px;
    min-height: unset;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    min-height: 56px;
}

.btn i{
    font-size: 25px;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: white;
}

.card p{
    opacity: 0.7;
    line-height: 1.2;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-elevated {
    box-shadow: var(--shadow-lg);
}

.card-gradient {
    /* background: var(--gradient-primary); */
    color: white;
}

.card-gradient img{
    max-width: 100%;
    width: 55%;
}

.card-accent {
    background: radial-gradient(#c04d4d, transparent);
    color: white;
    padding: 10px;
    border-radius: 1rem;
    border: 1px solid #ffffff2e;
    backdrop-filter: blur(10px);
}

/* Balance Cards */
.balance-card {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 10px;
    border-radius: 1rem;
}

.balance-card h3{
    position: relative;
    z-index: 11;
}

.balance-card .stats-grid{
    position: relative;
    z-index: 11;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: #c2c268;
    animation: float 6s ease-in-out infinite;
    filter: blur(30px);
}

.communityFeed .list-item{
    align-items: start;
    gap: 10px;
}

.communityFeed .list-item .postMedia{
    max-width: 100%;
    height: 120px;
    border-radius: 10px;
}

.communityFeed .list-item .w-10{
    background: linear-gradient(45deg, #063947, transparent);
    width: 40px;
    height: 40px;
    min-width: 40px;
}

 /* Circular Progress */
 .circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 8;
}

.progress-ring-fill {
    fill: none;
    stroke: #10b981;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

.progress-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-value {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
    line-height: 1;
}

.progress-value i{
    margin-bottom: 10px;
}

.progress-value span{
    font-size: 15px;
    font-weight: 400;
    border-top: 1px solid #ffffff5c;
    padding-top: 10px;
    margin-top: 0px;
    display: inline-block;
    opacity: 0.7;
}

.progress-label {
    font-size: 12px;
    opacity: 0.8;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 8px;
    margin: 12px;
}

.stat-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 10px;
    opacity: 0.8;
}


.todaysProgress{
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px;
    border-radius: 1rem;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.todaysProgress h5{
    margin-bottom: 10px;
    font-size: 20px;

}

.todaysProgress .right{
    width: 100%;
}

.todaysProgress .stats-row{
    margin: 0px;
    gap: 20px;
}

.todaysProgress .stats-row .stat-item{
    background: transparent;
    border: none;
    padding: 0px;
    backdrop-filter: none;
    text-align: left;
    flex: unset;
}

.todaysProgress .stats-row .stat-item .stat-value{
    font-size: 15px;
}

.walkingAnimation.foodSecurity1.billboard1::after{
    content: '';
    width: 100%;
    background: url(./img/billboard1.svg);
    position: absolute;
    top: 0;
    left: 0;
    height: 265px;
    background-size: 80px;
    background-repeat: no-repeat;
    background-position: 130%;
    z-index: 1;
    animation: scrollBackword 20s linear infinite;
}

.walkingAnimation.foodSecurity1.billboard2::after{
    content: '';
    width: 100%;
    background: url(./img/billboard3.svg);
    position: absolute;
    top: 0;
    left: 0;
    height: 265px;
    background-size: 125px;
    background-repeat: no-repeat;
    background-position: 130%;
    z-index: 1;
    animation: scrollBackword 20s linear infinite;
}


@keyframes scrollBackword {
    from {
        background-position: 130%;
    }
    to {
        background-position: 0%;
    }
}

/* .walkingAnimation{
    position: relative;
} */

.walkingAnimation #walking{
    width: 70%;
    position: relative;
    z-index: 11;
    top: -15px;
}



.walkingAnimation.forest::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./frames/rain.png);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}

.walkingAnimation.desert::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./frames/desert3.png);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}


.walkingAnimation.rain::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./frames/road-village.jpg);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}

.walkingAnimation.foodSecurity1::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./food-security/f1.svg);
    background-size: 220%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
    background-color: #daf1ff;
}




.walkingAnimation.foodSecurity2::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./food-security/12.svg);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}

.walkingAnimation.foodSecurity3::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./food-security/333.svg);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}


.walkingAnimation.foodSecurity4::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./food-security/4.svg);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}

.walkingAnimation.cleanwater1::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./clean-water/111.svg);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}

.walkingAnimation.cleanwater2::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./clean-water/112.svg);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}

.walkingAnimation.cleanwater3::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./clean-water/113.svg);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}

.walkingAnimation.cleanwater4::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./clean-water/114.svg);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}

.walkingAnimation.forest1::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./forest/1.svg);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}

.walkingAnimation.forest2::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./forest/2.svg);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}

.walkingAnimation.forest3::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./forest/3.svg);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}

.walkingAnimation.forest4::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(26 98 121)), url(./forest/4.svg);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}


.walkingAnimation.rain::after{
    content: '';
    width: 100%;
    height: 255px;
    background: url(./frames/rain.gif);
    position: absolute;
    top: 0px;
    left: 0px;
}









.raindrop {
    position: absolute;
    width: 2px;
    height: 15px;
    background: rgba(255, 255, 255, 0.6);
    animation: fall linear infinite;
}



.singleRewardBox{
    background: linear-gradient(45deg, black, transparent);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px;
    backdrop-filter: blur(10px);
    min-height: 100px;
}

.singleRewardBox h5{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 5px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.singleRewardBox h5 span{
    font-size: 30px;
}
  
.singleRewardBox p{
    font-size: 12px;
    opacity: 0.7;
}



  @keyframes fall {
    0% {
      transform: translateY(-100px);
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    100% {
      transform: translateY(100vh);
      opacity: 0;
    }
  }
  

#walk-screen.noBg{
   background: rgb(26 98 121) ; 
}

#animationContainer .progress-bar{
    height: 20px;
    border-radius: 40px;
    background: url(./frames/progress.png);
    background-size: cover;
    background-position: 0px 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#animationContainer .progress-bar .progress-fill{
    background: transparent;
}

#animationContainer .progress-bar .progress-fill::after{
    background: transparent;
}

#animationContainer .progressWrapper .header2{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#animationContainer .progress-bar div{
    height: 20px;
    color: #ffffffd6;
    font-size: 14px;
}

#animationContainer .progress-bar .locked{
    position: relative;
    background: #2c2c2c7d;
    border-left: 1px solid #ffffff6e;
}

#animationContainer .progress-bar .locked::before{
    content: "\f023";
    width: 16px;
    height: 16px;
    font-family: "Font Awesome 6 Pro";
    position: relative;
    /* top: -2px; */
    font-weight: 600;
    color: #dcdcdc;
    margin-right: 4px;
}

#animationContainer .progress-bar .desert{
    width: 33%;
}

#animationContainer .progress-bar .forest{
    width: 33%;
}

#animationContainer .progress-bar .rain{
    width: 34%;
}




@keyframes scrollBackground {
    from {
        background-position: 0% 100%;
    }
    to {
        background-position: 100% 100%;
    }
}


@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.balance-amount {
    font-size: 2.5rem;
    font-weight: 800;
    /* margin: 0.5rem 0; */
    position: relative;
    z-index: 1;
}

.balance-label {
    opacity: 0.9;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(260deg, #54ff7b, #f87e13, #ff5454);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, .2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, .2) 50%,
        rgba(255, 255, 255, .2) 75%,
        transparent 75%,
        transparent
    );
    background-size: 50px 50px;
    animation: move 2s linear infinite;
}

.liberteServices{
    margin-bottom: 20px;
}

.liberteServices .heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.liberteServices .heading i{
    font-size: 21px;
    cursor: pointer;
}

.header .dropdown{
    position: relative;
}

.header .dropdown img{
    max-width: 100%;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    object-fit: cover;
}

.header .dropdown .moreMenu{
    position: absolute;
    right: 0px;
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 5px;
    display: none;
    min-width: 130px;
}

.header .dropdown .moreMenu li {
    list-style: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.header .dropdown .moreMenu li .form-check{
    color: black;
    font-size: 12px;
    white-space: nowrap;
}

.header .dropdown .moreMenu li .form-check input{
    margin-right:4px
}

.header .dropdown .moreMenu li .form-switch .form-check-input{
    background-color: rgba(0, 0, 0, 0.25) ;
}

.header .dropdown .moreMenu.active{
    display: block;
}

.header .dropdown a{
    text-decoration: none;
    font-size: 13px;
    color: #000;
    display: block;
    margin-top: 10px;
}

.header .dropdown a:first-child{
    margin-top: 0px;
}

.header2{
    position: relative;
    padding: 1rem !important;
}

.header2 .dropdown{
    position: absolute;
    right: 20px;
    top: 13px;
}


@keyframes move {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 375px;
    background: rgb(12 12 12 / 29%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-around;
    padding: 0.75rem 0 1rem 0;
    z-index: 1111;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #fff;
    text-decoration: none;
    min-width: 60px;
    border-radius: 0.75rem;
    position: relative;
}

.nav-item.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-item.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.nav-item i {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.nav-item.active i {
    transform: scale(1.1);
}

.nav-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #fff;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: var(--surface);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* Lists */
.list-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ffffff47;
    cursor: pointer;
    transition: all 0.2s ease;
    /* margin-bottom: 0.25rem; */
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.list-item .badge{
    margin-left: auto;
}

.list-item .btn{
    min-height: unset;
    margin-left: auto;
}

/* .list-item:hover {
    background: var(--border-light);
    transform: translateX(4px);
} */

.list-item:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.list-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
}

.list-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0.1;
    border-radius: inherit;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.badge-success {
    background: var(--success);
    color: #fff;
}

.badge-warning {
    background: var(--warning);
    color: #fff;
}

.badge-primary {
    background: var(--primary);
    color: #fff;
}

.badge-accent {
    background: var(--accent);
    color: #fff;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
    40%, 43% { transform: translate3d(0,-30px,0); }
    70% { transform: translate3d(0,-15px,0); }
    90% { transform: translate3d(0,-4px,0); }
}

.fade-in {
    animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-up {
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pulse {
    animation: pulse 2s infinite;
}

.bounce {
    animation: bounce 1s;
}

/* Loading Animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-dark);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
    box-shadow: var(--shadow-lg);
    max-width: 320px;
    text-align: center;
}

@keyframes slideDown {
    from { transform: translate(-50%, -100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal {
    background: var(--surface);
    border-radius: 1rem;
    padding: 1rem;
    max-width: 320px;
    width: 95%;
    box-shadow: var(--shadow-xl);
    animation: modalSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal h3{
    color: black !important;
}
.modal p{
    color: black !important;
}

.modal label{
    color: black !important;
}

.modal .btn-outline{
    border-color: black !important;
    color: black !important;
}

.profileMeta{
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: linear-gradient(#083b49, #097e9e);
    margin: auto;
    margin-bottom: 10px;
    font-size: 23px;
}

.gap-2{
    gap: 10px;
}


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

/* Refer & Earn Specific Styles */
.referral-code {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.referral-code .btn{
    margin-left: auto;
    padding: 9px 20px;
    min-height: unset;
    font-size: 14px;
}

.referral-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.share-btn i{
    font-size: 25px;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}

.share-btn.instagram {
    background: #e1306c;
    color: #fff;
}

.share-btn.facebook {
    background: #1877f2;
    color: #fff;
}

.share-btn.linkedin {
    background: #0a66c2;
    color: #fff;
}

.share-btn.copy {
    background: var(--gradient-accent);
    color: #fff;
}

/* Stats Cards */

.stats-grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.stats-grid3 .card{
    padding: 10px;
}

.stats-grid3 .card{
    gap: 0.5rem;
}

.stats-grid3 .card h5{
    font-size: 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.stats-grid .singleBox{
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: white;
}



.stats-grid .singleBox .text-2xl{
    font-size: 30px;
}

.stats-grid .text-xl{
    font-size: 30px;
}

.stat-card {
    background: linear-gradient(360deg, #006986 4.19%, #1D94A2 61.08%, #30B1B5 100%);
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.stat-value {
    font-size: 2rem;
    margin-bottom: 0rem;
}

.user-marker {
    background: #006986;
    border: 3px solid white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.readerToHit h5{
    font-size: 20px;
}

.readerToHit .singleEvent img{
    max-width: 100%;
    width: 100%;
    height: 75px;
    border-radius: 10px;
    object-fit: cover;
}

.refferalRewards ul{
    padding: 0px;
    margin: 0px;
}

.refferalRewards ul li{
    list-style: none;
    margin-top: 5px;
}

.refferalRewards ul li span{
    font-weight: 500;
}

.stats-grid .singleStat{
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.stats-grid .singleStat i{
    font-size: 30px;
}



.communityCard{
    position: relative;
    /* background: linear-gradient(#004b60, #004b6057), url(./img/community2.png); */
    /* background-size: 100%;
    padding-bottom: 40px !important;
    background-position: 0px 25px;
    background-repeat: no-repeat;
    background-color: #004b60; */
    overflow: hidden;
}

.communityCard::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.form-select{
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    appearance: none;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow);
    color: white;
    font-size: 16px;
    background-image: url(./frames/down.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: 95% 50%;
}

.form-select:focus{
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    outline: none;
}





@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

.stat-label {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}

/* Achievement Styles */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.achievement-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.achievement-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.achievement-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
}

.loginForm{
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.25);  
}

.otherLoginProcess .btn{
    font-size: 14px;
    padding: 7px 25px;
    border-radius: 6px;
    min-height: unset;
    background: white;
}

.text-end{
    text-align: end;
}

.communityCard{
    padding: 20px;
}

.communityCard h3{
    font-size: 28px;
}

.text-start{
    text-align: start;
}

/* For grid mode */
.grid-view .owl-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
.grid-view .owl-carousel .singleService {
width: calc(25% - 0.67rem);
line-height: 1;
margin-bottom: 20px;
cursor: pointer;
}

.grid-view .owl-carousel .singleService img{
    max-width: 100%;
}

.owl-carousel .singleService {
text-align: center;
}

.owl-carousel .singleService small{
    font-size:12px
}

.owl-carousel .singleService img{
    margin-bottom: 5px;
    /* height: 75px; */
    cursor: pointer;
}

.owl-carousel .singleService img.new{
    background: #629bab;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #73a5b4;
}
  
#servicesListWrapper{
    margin-right: -15px;
}

.bottom-nav .isActive{
    display: none;
}

.bottom-nav .active .isActive{
    display: block !important;
}

.bottom-nav .nav-item.active .notActive{
    display: none;
}


.light.app-container{
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), 
    url("https://projectlbt.visulz.com/public/web/img/bg2.png");
}

.light .header .logo{
    color: #000;
}



.light h1{
    color:#000 !important
}
.light h2{
    color:#000 !important
}
.light h3{
    color:#000 !important
}
.light h4{
    color:#000 !important
}
.light h5{
    color:#000 !important
}
.light h6{
    color:#000 !important
}

.light p{
    color:#000 !important
}

.light .btn-icon{
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
}

.light .btn-ghost{
    background: rgba(0, 0, 0, 0.1) !important;
    color: #000 !important;
}

.light .header .coin {
background: rgb(16 185 129 / 16%);
border: 1px solid rgb(16 185 129 / 30%);
color: black;
}

.light .todaysProgress .stats-row .stat-item{
color: black;
}

.light .stat-label{
color: black;  
}
.light .progress-value{
color: black;  
}

.light .progress-ring-bg {
fill: none;
stroke: rgba(0, 0, 0, 0.1) !important;
stroke-width: 8;
}

.light .header{
border-bottom: 1px solid #0000001f !important;
}

.light .todaysProgress {
/* background: rgba(0, 0, 0, 0.04); */
border: 1px solid rgba(0, 0, 0, 0.1);
}

.light .liberteServices .heading i{
color:#000
}

.light .owl-carousel .singleService small{
color:#000
}

.light .card {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.light .card div {
    color: #000 !important;
}

.light .owl-carousel .singleService img {
    border: 1px solid #ddd;
    border-radius: 15px;
}
  
.light .offerItems .singleOffer .text h4{
    color: white !important;
}

.light .winnDailyRewards h5{
    color: white !important;
}

.light .winnDailyRewards p{
    color: white !important;
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
    
}

.light .dailyCheckins{
    background: linear-gradient(0deg, #006986a3, #006986a3, #006986);
}

.light .daysChecked{
    background: rgb(99 177 195 / 76%);
}

.light .getReminder p{
    color: white !important;
}


/* .light #splash-screen h1{
    color: white !important;
}
.light #splash-screen p{
    color: white !important;
} */

.light .owl-carousel .singleService img.new{
    background: rgba(255,255,255,0.2) !important;
}

.light .header-back i {
    color: #000 !important;
}

.light .header-title{
    color: #000 !important;
}

.light .causeTypes .btn-check-btn{
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    color: black;
}

.light .rewardBreakdown{
    border-color: rgba(0, 0, 0, 0.2) !important;
}


.light .singleRewardBox {
    background: linear-gradient(45deg, #9d9d9d2b, #3535350f);
}

.light .stat-card.new .stat-value{
    color: #000 !important;
}

.light .stat-card.new .stat-desc{
    color: #000 !important;
}

.light .dailyRewardList .dailyRewardsSingle {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.light .dailyRewardList .dailyRewardsSingle .btn-lock{
    color: #000 !important;
    background: rgba(0, 0, 0, 0.1) !important;
}

.light .readerToHit .stat-card p{
    color: #fff !important;
}

.light .readerToHit .stat-card h6{
    color: #fff !important;
}


.light #walk-screen.noBg{
    background: white !important;
}

.light .walkingAnimation.forest1::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(255 255 255)), url(./forest/1.svg);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}

.light .stat-card.new{
    border: 1px solid #f1f1f1;
}

.light .list-item{
    border-bottom: 1px solid #99999947 !important;
}

.light .list-item:last-child{
    border-bottom: none !important;
}


.light .card .fa-flag{
    color: #009688 !important;
}

.light .card .user-marker{
    color: #fff !important;
}

.light .refBalance{
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.light .refBalance .link input{
    color: #000 !important;
}

.light .refefrral ul li{
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.light .singleRefferal{
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.light .singleRefferal .left span{
    color: #000 !important;
}

.light .card-accent{
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: radial-gradient(#c04d4d52, transparent);
}

.light .stats-grid .singleStat{
    color: black;
    border-color: #02020233 !important;
}

.light #safety-screen .card i{
    color: black !important;
}

.light .btn-outline{
    color: #000000;
    border: 2px solid #000000;
}


.light .portfolioCard{
    background: rgb(0 0 0 / 5%);
    border: 1px solid rgb(0 0 0 / 10%);
}

.light .portfolioCard select{
    color: black;
}

.light .balance-label{
    color: black;
}
.light .portfolioCard div{
    color: black;
}

.light .portfolioCard .btn{
    background: #4CAF50 !important;
    color: #fff !important;
}

.light .form-select {

    appearance: none;
    font-size: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 640 640'%3E%3Cpath d='M297.4 438.6C309.9 451.1 330.2 451.1 342.7 438.6L502.7 278.6C515.2 266.1 515.2 245.8 502.7 233.3C490.2 220.8 469.9 220.8 457.4 233.3L320 370.7L182.6 233.4C170.1 220.9 149.8 220.9 137.3 233.4C124.8 245.9 124.8 266.2 137.3 278.7L297.3 438.7z'/%3E%3C/svg%3E");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: 95% 50%;
}

.light .coin-card{
    color: black;
    border: 1px solid rgb(0 0 0 / 10%);
}

.light .coin-price{
    color: black;
}

.light .list-icon{
    color:#fff !important
}

.light .progress-bar{
    background: rgba(0, 0, 0, 0.1);
}

.light #causeSelectionModal h5{
    color:#fff !important
}

.light #causeSelectionModal p{
    color:#fff !important
}

.light #causeSelectionModal h6{
    color:#fff !important
}


.light .progress-value span{
    border-top: 1px solid #0303035c;
}

.light .hourlyForecast .title span{
    color: black;
}

.light .bigWeatherBox .highLows ul li{
    color: black;
}

.light .hourlyForecast .list .item {
    background: rgba(0, 0, 0, 0.05);
}

.light .hourlyForecast .list .item span{
    color: black;
}

.light .spin-info{
    color: black;
}

.light .dailyRewardList .singleDayRewards {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.light .btn-primary{
    color: black;
}

.light .form-label{
    color: black;
}

.light .loginForm .btn{
    color: black;
}

.light .loginForm .text-white{
    color: black !important; 
}

.light #login-screen .text-primary{
    color: black !important;  
}

.light .loginForm{
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.light #splash-screen{
    background-color: white !important;
}

.light .loading-spinner{
    border: 4px solid rgb(0 0 0 / 30%);
    border-top: 4px solid #fff !important;
}


.light .walkingAnimation.cleanwater1::before{
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(255 255 255)), url(./clean-water/111.svg);
    background-size: 280%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
}

.light .walkingAnimation.foodSecurity1::before {
    content: '';
    width: 100%;
    height: 265px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(255 255 255)), url(./food-security/f1.svg);
    background-size: 220%;
    background-repeat: no-repeat;
    background-position: 0%;
    animation: scrollBackground 20s linear infinite;
    background-color: #daf1ff;
}

.light .btn-check:checked+.btn{
    background: linear-gradient(91.82deg, #FFDC51 0.5%, rgba(255, 220, 81, 0) 114.21%);
    color: white;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    color: black;
}

/* Responsive Design */
@media (max-width: 450px) {
    .app-container {
        max-width: 100%;
    }
    
    .bottom-nav {
        max-width: 100%;
    }

    .app-container{
        max-width: 100%;
    }

    .owl-carousel .singleService img{
        height: 75px;
    }

    .notification {
        max-width: calc(100% - 40px);
        width: 100%;
    }
}