.mb-70{
    margin-bottom: 70px;
}
.recharge-container {
    max-width: 95%;
    margin: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1rem;
}

.recharge-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.recharge-back-arrow {
    font-size: 1.2rem;
    cursor: pointer;
}

.recharge-user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

.recharge-username {
    font-weight: bold;
    font-size: 1rem;
    text-transform: lowercase;
}

.recharge-phone {
    font-size: 0.9rem;
    color: gray;
}

.recharge-airtel-logo {
    width: 40px;
}

.recharge-options {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.recharge-btn {
    flex: 1;
    padding: 0.5rem;
    background: #eee;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
}

.recharge-selected {
    background-color: #007bff;
    color: white;
}

.recharge-search-box input {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.recharge-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.recharge-tab {
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
    background-color: #f0f0f0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.recharge-active {
    background-color: #007bff;
    color: white;
}

.recharge-plans {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recharge-plan-card {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.recharge-label {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.5rem;
    color: white;
}

.recharge-red {
    background: #e74c3c;
}

.recharge-purple {
    background: #8e44ad;
}

.recharge-plan-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.recharge-info {
    font-size: 0.9rem;
    color: #333;
}

.recharge-desc {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

.recharge-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

.recharge-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.recharge-tab {
    flex: 0 0 auto; /* Don’t shrink, allow horizontal scroll */
    scroll-snap-align: start;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    background-color: #f0f0f0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
}

.recharge-tab.recharge-active {
    background-color: #007bff;
    color: white;
}

/* ---------Electricity Bill------------- */

.payment-container {
    max-width: 95%;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1rem;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.back-arrow {
    font-size: 1.5rem;
    cursor: pointer;
}

.payment-header h2 {
    font-size: 1.2rem;
}

.company-name {
    font-size: 1rem;
    margin-bottom: 0.7rem;
    font-weight: 500;
}

.bill-card {
    background: #f1f3f6;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.amount {
    font-size: 1.5rem;
    font-weight: bold;
}

.bill-details {
    font-size: 0.9rem;
}

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

.bill-logo img {
    height: 30px;
}

.bill-number {
    font-size: 0.75rem;
    text-align: right;
}

.payment-method {
    margin-top: 1.5rem;
}

.section-title {
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.method-card {
    background: #f1f3f6;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.method-card.selected {
    background-color: #0da189;
    color: white;
}

.checkmark {
    font-size: 1.2rem;
}

.radio {
    width: 16px;
    height: 16px;
    border: 2px solid #777;
    border-radius: 50%;
}

.pay-btn-wrapper {
    margin-top: 2rem;
}

.pay-btn {
    width: 100%;
    padding: 1rem;
    background-color: #0baf9a;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.pay-btn:hover {
    background-color: #3dd6b0;
}

.method-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.radio {
    border: 2px solid #777;
    border-radius: 50%;
}

.checkmark {
    color: white;
}

/* ------------------------------------------------ */

.payment-method {
    padding: 0.2rem;
    max-width: 100%;
    margin: auto;
}

.section-title {
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 1rem;
}

.method-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 10px;
    border: 1.5px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.method-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-circle {
    width: 18px;
    height: 18px;
    border: 2px solid #888;
    border-radius: 50%;
    position: relative;
}

.method-card.selected .radio-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #d7d9da;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
}

.method-name {
    font-size: 15px;
}

.checkmark {
    font-size: 16px;
    color: #ffffff;
    display: none;
}

.method-card.selected .checkmark {
    display: block;
}

/* -------------Water Bill-------------- */

.water-container {
    max-width: 95%;
    margin: auto;
    background-color: #fff;
    padding: 1.2rem;
    border-radius: 10px;
}

.water-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.water-title {
    font-size: 1.2rem;
    margin: 0;
}

.water-logo {
    height: 80px;
    position: absolute;
    top: 8rem;
    right: 20px;
}

.water-info-block {
    margin-bottom: 1rem;
}

.water-label {
    font-size: 0.8rem;
    color: gray;
}

.water-value {
    margin: 0.3rem 0 0;
    font-weight: bold;
}

.water-input-block {
    margin-bottom: 1.5rem;
    position: relative;
}

.water-input {
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.3rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.water-sample-link {
    font-size: 0.8rem;
    color: #0baf9a;
    text-decoration: none;
    display: block;
    text-align: right;
    margin-top: 0.4rem;
}

.water-btn-proceed {
    width: 100%;
    padding: 0.9rem;
    background-color: #0baf9a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.water-help-section {
    text-align: center;
}

.water-video-thumbnail {
    width: 100%;
    background-color: #ddd;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.water-play-icon {
    font-size: 2rem;
    color: #555;
}

.water-help-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* ==============Gas  bill=========================== */

.gas-container {
    max-width: 95%;
    margin: auto;
    background-color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}
.hidden {
    display: none;
}

.gas-title {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: bold;
    position: absolute;
    top: 0;
    padding: 5px;
}

.gas-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 1rem;
}

.gas-tabs input[type="radio"] {
    display: none;
}

.gas-tab-label {
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
}

.gas-tab-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: #fff;
}

.gas-tabs input[type="radio"]:checked + .gas-tab-label::before {
    border-color: #0baf9a;
    background: radial-gradient(circle at center, #0baf9a 40%, #fff 41%);
}

.gas-tab-content {
    margin-bottom: 1.2rem;
}

.gas-input-label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    color: #777;
}

.gas-input {
    width: 100%;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.gas-button {
    width: 100%;
    background-color: #0baf9a;
    border: none;
    color: white;
    padding: 0.9rem;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
}

.hidden {
    display: none;
}
/* =============Gas Provider=== */

.gas-provider-wrapper {
    max-width: 95%;
    margin: auto;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.gas-provider-heading {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.gas-provider-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gas-provider-item {
    flex: 0 0 48%;
    cursor: pointer;
}

.gas-provider-item input {
    display: none;
}

.gas-provider-box {
    border: 2px solid #e0e0e0;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.gas-provider-box img {
    height: 40px;
    object-fit: contain;
}

.gas-provider-box span {
    font-size: 0.85rem;
    color: #333;
}

.gas-provider-item input:checked + .gas-provider-box {
    border-color: #0baf9a;
    box-shadow: 0 0 8px rgba(40, 214, 171, 0.4);
}
