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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        
        

        .main-container {
            display: flex;
            max-width: 1000px;
            width: 100%;
            background: white;
            border-radius: 4px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        /* Left Sidebar Styles */
        .sidebar {
            flex: 1;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
        }

        .sidebar::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(0,0,0,0.1);
            box-shadow: 2px 0 5px rgba(0,0,0,0.05);
        }

        .logo {
    width: 160px;
    height: 160px;
    background: url('https://api.himalayanleisure.com/uploads/logo-hl-e7ab3d6b.svg') no-repeat center center,
                #ffffff; /* White background */
    background-size: 80%, cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f0f0f0; /* Optional: subtle border */
}

        .company-name {
            font-size: 24px;
            font-weight: 700;
            color: #666;
            margin-bottom: 10px;
        }

        .company-description {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 30px;
        }

        /*.contact-info {
            text-align: left;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #555;
            font-size: 14px;
        }

        .contact-item i {
            width: 20px;
            margin-right: 10px;
            color: #667eea;
        }
        */
        .contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    font-size: 16px;
    width: 16px;
    text-align: center;
    color: #fb5343;
}

.contact-item a {
    font-weight: 500;
    text-decoration: none;
    color: #666;
    transition: color 0.2s ease;
}

.contact-item a:hover, .contact-item a:focus {
    color: #9d27b0;
    transition: color 0.2s ease-in-out;
}

        /* Right Content Styles */
        .content {
            flex: 1.5;
            padding: 30px;
            position: relative;
        }

        .container {
            background: white;
            transition: all 0.3s ease;
            position: relative;
        }

        h1 {
            color: #666;
            margin-bottom: 14px;
            text-align: center;
            font-size: 22px;
            font-weight: 600;
            padding: 10px 20px;
            background: #f0f0f0;
            border-radius: 4px;
        }

        .form-group {
            margin-bottom: 12px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #209def;
            font-weight: 600;
            font-size: 13px;
        }

        input, select {
            width: 100%;
            padding: 10px 16px;
            border: 2px solid #e1e5e9;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.2s;
        }

        input:focus, select:focus {
            outline: none;
            border-color: #667eea;
        }
        .required::after {
    content: " *";
    color: red;
  }

        .card-fields {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .card-number {
            grid-column: 1 / -1;
        }

        .card-element-container {
            border: 2px solid #e1e5e9;
            border-radius: 4px;
            padding: 12px 16px;
            background: white;
            transition: border-color 0.2s;
        }

        .card-element-container.StripeElement--focus {
            border-color: #667eea;
        }

        .card-element-container.StripeElement--invalid {
            border-color: #e74c3c;
        }

        .payment-request-button {
            margin-bottom: 12px;
            border-radius: 4px;
            overflow: hidden;
        }

        .amount-info {
            background: #f8f9fa;
            padding: 12px;
            border-radius: 4px;
            margin-top: 8px;
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }
        
        .amount-info strong {
            color: red;
        }

        .exchange-rate {
            background: #e8f4fd;
            padding: 10px;
            border-radius: 6px;
            margin-top: 8px;
            font-size: 13px;
            color: #2c80b9;
        }

        .submit-btn {
            width: 100%;
            background: radial-gradient( circle farthest-corner at -24.7% -47.3%,  rgba(6,130,165,1) 0%, rgba(34,48,86,1) 66.8%, rgba(15,23,42,1) 100.2% );
            color: white;
            border: none;
            padding: 16px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 10px;
        }

        .submit-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .error {
            color: #e74c3c;
            background: #fdf2f2;
            padding: 12px;
            border-radius: 4px;
            margin-top: 10px;
            margin-bottom: 10px;
            border-left: 4px solid #e74c3c;
        }

        .success {
            color: #27ae60;
            background: #f2fdf2;
            padding: 30px;
            border-radius: 4px;
            margin-top: 20px;
            border-left: 4px solid #27ae60;
            text-align: center;
        }

        .success h2 {
            margin-bottom: 15px;
            color: #27ae60;
        }

        .conversion-display {
            text-align: center;
            margin: 15px 0;
            padding: 12px;
            background: #f8f9fa;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
        }

        .field-error {
            color: #e74c3c;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }

        .payment-form {
            transition: all 0.3s ease;
        }

        .payment-form.processing {
            filter: blur(3px);
            opacity: 0.7;
            pointer-events: none;
        }

        .hidden {
            display: none;
        }

        .success-icon {
            font-size: 48px;
            margin-bottom: 12px;
        }

        .success-details {
            margin: 20px 0;
            padding: 15px;
            background: #e8f6ef;
            border-radius: 4px;
            text-align: left;
        }

        .new-payment-btn {
            width: 100%;
            background: #667eea;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            margin-top: 15px;
        }

        .submit-container {
            position: relative;
        }

        .button-text {
            transition: opacity 0.3s ease;
        }

        .button-loading {
            display: none;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .rate-info {
            font-size: 12px;
            color: #666;
            margin-top: 5px;
        }

        /* Processing Overlay */
        .processing-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            border-radius: 16px;
            z-index: 10;
            flex-direction: column;
        }

        .processing-overlay.active {
            display: flex;
        }

        .processing-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #667eea;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 12px;
        }

        .processing-text {
            text-align: center;
            color: #333;
        }

        .processing-text h3 {
            margin-bottom: 10px;
            color: #667eea;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        
        
        
        
        .payment-methods {
    
    
    font-family: Arial, sans-serif;
    max-width: 300px;
    
}

.payment-title {
    font-size: 14px;
    color: #666;
    margin: 15px 0 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-cards {
    display: flex;
    gap: 20px;
    align-items: center;
}

.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.card-icon {
    font-size: 48px;
    transition: transform 0.2s ease;
}
.card-icon:hover {
    transform: scale(1.2);
}
.card-name {
    font-size: 12px;
    color: #555;
    font-weight: 500;
}
/* Card-specific colors */
.fa-cc-visa { color: #1a1f71; }
.fa-cc-mastercard { color: #f75c01; }
.fa-cc-amex { color: #1c5285; }
.fa-cc-diners-club { color: #008cdb; }

.payment-card:hover .card-icon {
    transform: scale(1.1);
}
.payment-card:hover .card-name {
    color: #333;
}
.sidebar-footer {
    font-size: 12px; 
    color: #888; 
    margin-top: 20px;
}

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-container {
                flex-direction: column;
            }
            
            .sidebar {
                padding: 30px 20px;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .sidebar::after {
                display: none;
            }
        }