/*
* @Author: Lalit
* @Date:   2025-10-03 15:25:22
* @Last Modified by:   Lalit
* @Last Modified time: 2025-10-08 12:58:54
*/

 .offline-payment-section {
            background: linear-gradient(135deg, #fff9e6 0%, #ffe6cc 100%);
            border: 2px dashed #ff9933;
            border-radius: 12px;
            padding: 30px;
            margin: 40px auto;
            max-width: 900px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .offline-payment-section h3 {
            color: #b7171d;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .offline-payment-section p {
            color: #333;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .bank-transfer-btn {
            background: linear-gradient(71deg, #b7171d 50%, #f37110 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            margin: 20px auto 0;
            box-shadow: 0 4px 10px rgba(183, 23, 29, 0.3);
        }
        
        .bank-transfer-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(183, 23, 29, 0.4);
        }
        
        .bank-transfer-btn i {
            margin-right: 8px;
        }
        
        .offline-payment-page {
            display: none;
            padding: 40px 0;
        }
        
        .offline-payment-page.active {
            display: block;
        }
        
        .bank-details-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .bank-details-card h4 {
            color: #b7171d;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f37110;
        }
        
        .bank-detail-row {
            display: flex;
            justify-content: space-between;
            padding: 15px;
            background: #f9f9f9;
            margin-bottom: 10px;
            border-radius: 6px;
        }
        
        .bank-detail-row:last-child {
            margin-bottom: 0;
        }
        
        .bank-detail-label {
            font-weight: 600;
            color: #555;
        }
        
        .bank-detail-value {
            color: #333;
            font-weight: 500;
            font-family: 'Courier New', monospace;
        }
        
        .instructions-card {
            background: #fff3cd;
            border-left: 4px solid #ff9933;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 8px;
        }
        
        .instructions-card h5 {
            color: #b7171d;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .instructions-card ol {
            margin-left: 20px;
        }
        
        .instructions-card li {
            margin-bottom: 10px;
            color: #333;
        }
        
        .payment-form-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .payment-form-card h4 {
            color: #b7171d;
            font-weight: 700;
            margin-bottom: 25px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            display: block;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 15px;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f37110;
        }
        
        .file-upload-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
        }
        
        .file-upload-wrapper input[type="file"] {
            opacity: 0;
            position: absolute;
            z-index: -1;
        }
        
        .file-upload-label {
            display: block;
            padding: 12px;
            background: #f9f9f9;
            border: 2px dashed #ddd;
            border-radius: 6px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .file-upload-label:hover {
            background: #f0f0f0;
            border-color: #f37110;
        }
        
        .submit-payment-btn {
            background: linear-gradient(71deg, #b7171d 50%, #f37110 100%);
            color: white;
            border: none;
            padding: 15px 50px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            margin: 30px auto 0;
        }
        
        .submit-payment-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(183, 23, 29, 0.4);
        }
        
        .back-btn {
            background: #6c757d;
            color: white;
            border: none;
            padding: 10px 25px;
            font-size: 16px;
            border-radius: 6px;
            cursor: pointer;
            margin-bottom: 20px;
        }
        
        .back-btn:hover {
            background: #5a6268;
        }
        
        .alert-info {
            background: #d1ecf1;
            border: 1px solid #bee5eb;
            color: #0c5460;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 20px;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background-color: #25D366;
            color: white;
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            margin-top: 15px;
        }

        .whatsapp-btn:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
            color: #fff;
            text-decoration: none;
        }

        .whatsapp-btn:active {
            transform: translateY(0);
        }

        .whatsapp-icon {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .offline-payment-page span{font-size: 16px;}

        /* Base box style */
        .bank-transfer-btn{
            font-size: medium !important;
        }
        .effect-shine {
          background: linear-gradient(71deg, #B7171D 50%, #F37110 100%);
          -webkit-mask-image: linear-gradient(
            -75deg,
            rgba(0, 0, 0, 0.6) 30%,
            #000 50%,
            rgba(0, 0, 0, 0.6) 70%
          );
          -webkit-mask-size: 200%;
          animation: shine 1s infinite linear;
        }
        /* Optional: a little 3D pop */
        .effect-shine:hover {
          transform: translateY(-3px);
          transition: transform 0.3s ease;
        }
        /* Keyframes for moving glare */
        @-webkit-keyframes shine {
          from {
            -webkit-mask-position: 150%;
          }
          to {
            -webkit-mask-position: -50%;
          }
        }
        @keyframes shine {
          from {
            mask-position: 150%;
          }
          to {
            mask-position: -50%;
          }
        }
        
        @media (max-width: 768px) {
            .offline-payment-section {
                padding: 20px;
                margin: 20px 15px;
            }
            
            .bank-detail-row {
                flex-direction: column;
                gap: 5px;
            }

            .whatsapp-btn {
                padding: 14px 24px;
                font-size: 16px;
                gap: 10px;
            }

            .whatsapp-icon {
                width: 24px;
                height: 24px;
            }
        }

        @media (max-width: 480px) {
            .whatsapp-btn {
                padding: 12px 20px;
                font-size: 14px;
                gap: 8px;
            }

            .whatsapp-icon {
                width: 20px;
                height: 20px;
            }
        }

        @media only screen and (max-width:767px) and (min-width:300px){
            .offline-payment-page h1{font-size: 30px;}
            .offline-payment-section h3 {font-size: 18px;}
            .bank-transfer-btn {font-size: 12px;}
            .submit-payment-btn {padding: 12px 50px;font-size: 13px;}
            .offline-payment-page span {font-size: 13px;}
        }
