label{
    color: #000;
}
.page-header{
    background: #f8f8f8;
}
.navbar-light .navbar-nav .nav-link{
    color: #000;
    text-transform: uppercase;
}

#installPWA {
    position: fixed;
    top: 19px;
    right: 70px;
    z-index: 9999;
}

#loginbutton {
    position: fixed;
    top: 500px;
    right: 600px;
    z-index: 9999;
    padding: 10px 20px;
    font-size: 16px;
}

@media (max-width: 768px) {
    #loginbutton {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: calc(100% - 40px);
        font-size: 14px;
    }
}


.branch-card {
    color: rgb(214, 9, 9);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.branch-card:hover {
    transform: scale(1.02);
    box-shadow: 4px 6px 15px rgba(0, 0, 0, 0.2);
}

.scheme-label {
    font-size: 1.2rem;
    font-weight: bold;
}

.scheme-details {
    font-size: 1rem;
    margin-top: 5px;
}

.date-range {
    text-align: right;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    display: block;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}


body {
   padding-bottom: 60px; 
}

.fixed-bottom {
   z-index: 1030;
}



 
    .rate {
        font-size: 18px;
        font-weight: 600;
        color: #d32f2f;
    }
    .feed-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
        border-radius: 50%;
        margin: auto;
        margin-bottom: 8px;
    }
    .card-count {
        background: linear-gradient(45deg, #ffe69c, #dfa804);
        font-size: 16px;
    }
    .section-title {
        font-size: 20px;
        font-weight: 700;
        border-left: 4px solid #9c8000;
        padding-left: 10px;
    }

    .gold-box {
        background: linear-gradient(135deg, #fff3cd, #ffe69c);
        border-radius: 1rem;
        border-left: 6px solid #ffc107;
        overflow: hidden;
    }

    .gold-icon {
        background: radial-gradient(circle, #ffd700, #ffb300);
        padding: 15px;
        border-radius: 50%;
        box-shadow: 0 0 15px rgba(255, 193, 7, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        animation: pulse 2s infinite;
    }

    .gold-rate {
        font-size: 22px;
        font-weight: bold;
        color: #b71c1c;
    }

    .gold-title {
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }

    .gold-image {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
        border: 2px solid #ffc107;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
        }
        50% {
            transform: scale(1.1);
            box-shadow: 0 0 25px rgba(255, 193, 7, 0.9);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
        }
    }

    .feed-box {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feed-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        border: 3px solid #0d6efd; /* Bootstrap primary for ring effect */
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 28px;
        margin-bottom: 5px;
        transition: transform 0.2s;
    }

    .feed-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

    .feed-box .text-dark {
        font-size: 14px;
        font-weight: 500;
    }

    .custom-login-form {
        background: #ffffff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
        max-width: 400px;
        width: 100%;
        margin: auto;
    }

    /* Form Title */
    .custom-login-title {
        font-size: 22px;
        font-weight: bold;
        text-align: center;
        color: #333;
        margin-bottom: 20px;
    }

    /* Input Fields */
    .custom-input-field {
        width: 100%;
        padding: 12px;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        transition: 0.3s ease-in-out;
    }

    .custom-input-field:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0px 0px 8px rgba(0, 123, 255, 0.2);
    }

    /* Submit Button */
    .custom-btn-submit {
        background: #007bff;
        color: white;
        width: 100%;
        padding: 12px;
        font-size: 18px;
        font-weight: bold;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        transition: 0.3s ease-in-out;
    }

    .custom-btn-submit:hover {
        background: #0056b3;
    }

    /* Register Link */
    .custom-register-link {
        text-align: center;
        margin-top: 12px;
    }

    .custom-register-link a {
        color: #007bff;
        font-weight: bold;
        text-decoration: none;
    }

    .custom-register-link a:hover {
        text-decoration: underline;
    }

    .navbar-toggler {
        border: none; /* Removes the outer border */
        outline: none; /* Optional: removes the focus outline */
        box-shadow: none; /* Optional: removes any shadow */
    }

    .nav-tabs {
        border-bottom: 2px solid #dee2e6;
        padding: 10px 15px;
    }

    .nav-tabs .nav-link {
        border: 1px solid transparent;
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
        color: #495057;
        padding: 10px 20px;
        transition: 0.3s;
        padding: 10px 20px;
    }

    .nav-tabs .nav-link:hover {
        background-color: #f8f9fa;
        border-color: #dee2e6 #dee2e6 #fff;
    }

    .nav-tabs .nav-link.active {
        color: #0d6efd;
        background-color: #fff;
        border-color: #dee2e6 #dee2e6 #fff;
        font-weight: bold;
    }

    /* Tab Content Styling */
    .tab-content {
        border: 1px solid #dee2e6;
        border-top: none;
        padding: 20px;
        background: #fff;
        border-radius: 0 0 0.5rem 0.5rem;
    }

    .tab-pane p {
        margin-bottom: 15px;
    }

    .tab-pane .row {
        display: flex;
        align-items: center;
    }

    .tab-pane .col-4 {
        font-weight: bold;
        margin-right: 10px;
    }

    .tab-pane .col-8 {
        color: #495057;
    }


    .tab-pane .row {
        margin-bottom: 15px; /* Space between each row */
        align-items: center; /* Vertically center text and button */
    }
    .tab-pane .col-4 {
        font-weight: 500;
        padding-left: 15px; /* Inner left padding for labels */
    }
    .tab-pane .col-2 {
        padding-left: 0;
    }
    .copy-btn {
        padding: 4px 10px;
    }
    .qr-img {
        width: 150px;
        height: 150px;
        object-fit: contain;
    }






