/* 🔥 Background Auto Changing Animation */
@keyframes changeBG {
    0%   { background-image: url('image/w.jpg'); }
    25%  { background-image: url('image/abc.jpg'); }
    50%  { background-image: url('image/natural.jpg'); }
    75%  { background-image: url('image/wn.jpg'); }
    100% { background-image: url('image/natural2.jpg'); }
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    animation: changeBG 25s ease-in-out infinite;  /* 🔥 Auto background change */
    background-size: cover;
    background-position: center center;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow-y: auto;
}

/* Glass Box */
.glass-box {
    width: 100%;
    max-width: 460px;
    padding: 35px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    animation: pop 0.8s ease;
}

@keyframes pop {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}

.glass-box h2 {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 0 8px rgba(255,255,255,0.9);
}

/* Input Icons */
.input-group-text {
    background: rgba(255,255,255,0.3);
    border: none;
    color: #fff;
    border-radius: 10px 0 0 10px;
}

.form-control {
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 1.05rem;
    border-radius: 0 10px 10px 0;
}

.form-control::placeholder {
    color: #e8e8e8;
}

/* Button */
.btn-primary {
    height: 52px;
    font-size: 1.2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #2F80ED, #1CB5E0);
    border: none;
    box-shadow: 0 0 12px rgba(30, 144, 255, 0.7);
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(30,144,255,1);
}

/* Labels */
label {
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

p, a {
    color: #fff;
}

/* Glass Success Box */
.success-box {
    width: 90%;
    max-width: 450px;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    animation: fadeIn 0.8s ease;
    text-align: center;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Tick animation */
.check-icon {
    font-size: 60px;
    color: #00ff8c;
    text-shadow: 0 0 12px #00ff8c;
    animation: pop 0.5s ease;
}

@keyframes pop {
    0% {transform: scale(0);}
    100% {transform: scale(1);}
}

.success-text {
    color: #fff;
    font-size: 1.7rem;
    margin-top: 15px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

.desc {
    color: #e6e6e6;
    font-size: 1rem;
    margin-bottom: 25px;
}

.btn-glass {
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    text-decoration: none;
    backdrop-filter: blur(5px);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.5);
}
.ops{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}

/* ⭐ Glass Welcome Box */
.header-box {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ⭐ Main Glass Box */
.option-box {
    width: 95%;
    max-width: 450px;
    margin-top: 90px;
    padding: 35px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    animation: fadeIn 0.7s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn-custom {
    height: 55px;
    font-size: 1.4rem;
    border-radius: 12px;
}

/* ⭐ Glass Table Box */
.income-table {
    width: 95%;
    max-width: 450px;
    margin-top: 35px;
    padding: 20px;
    background: rgba(255,255,255,0.12);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Income Heading */
.income-table h4 {
    margin-bottom: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

/* ⭐ Clean Table Design (Fixed Version) */
.custom-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px; 
    color: #fff;
}

.custom-table th {
    background: rgba(255,255,255,0.25);
    padding: 12px 15px;
    border-radius: 10px 0 0 10px;
    width: 50%;
    text-align: left;
    font-size: 1.1rem;
}

.custom-table td.value {
    background: rgba(255,255,255,0.18);
    padding: 12px 15px;
    border-radius: 0 10px 10px 0;
    text-align: right;
    font-size: 1.1rem;
}


