/**************************************************************************************************************************
    THEME SPECIFIC CSS
**************************************************************************************************************************/

/***************************************************************************************************************************************************************************
    PAYMENT FORM CSS
****************************************************************************************************************************************************************************/
/* Container and Header */
.custom-event-form {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    overflow: hidden;
}
.form-logo-container {
    text-align: center;
    padding: 10px 20px 5px 20px;
    background-color:#06050c;
}
.company-logo {
    max-height: 100px;
    width: auto;
}
.form-header {
    background:#5854d2;
    color: white;
    text-align: center;
    padding: 20px 10px;
}
.form-header h2 {
    margin: 0 0 5px 0;
    font-size: 23px;
    color: white;
}
.form-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}
.form-body {
    padding: 25px;
}

/* Form Fields */
.form-group {
    margin-bottom: 10px;
}
.form-group label {
    display: block;
    margin-bottom: 0px;
    font-size: 15px;
    color: #333;
    font-weight: 600;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6b21a8;
    outline: none;
}

/* Payment Section */
.payment-section {
    background: #f9f9fb;
    border: 1px solid #eee;
    border-left: 4px solid #6b21a8;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}
.payment-title {
    color: #6b21a8;
    margin-top: 0;
    font-size: 18px;
}
.payment-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 12px;
}
@media (max-width: 767px) {
  .payment-meta {
    display: flex; /* Ensures flex is active */
    flex-direction: column;
  }
}
.meta-item span {
    display: block;
    color: #666;
    margin-bottom: 5px;
}
.meta-item strong {
    color: #333;
    font-size: 14px;
}

/* QR Code Area */
.qr-box {
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.qr-image {
    width:200px;
    max-width: 200px;
    border: 3px solid #e0f2fe;
    border-radius: 8px;
    margin-bottom: 15px;
}
.scan-text { color: #666; font-size: 13px; margin: 0 0 5px 0;}
.amount-text { color: #6b21a8; font-weight: bold; font-size: 16px; margin: 0 0 5px 0;}
.upi-apps { color: #888; font-size: 11px; font-style: italic; margin: 0;}

/* Instructions Box */
.instructions-box {
    background: #e0f2fe;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}
.instructions-box h4 {
    color: #0369a1;
    margin: 0 0 10px 0;
    font-size: 14px;
}
.instructions-box ol {
    margin: 0 0 15px 0;
    padding-left: 20px;
    color: #333;
}
.instructions-box ol li { margin-bottom: 5px; }
.note-box {
    border-left: 3px solid #0369a1;
    padding-left: 10px;
    font-size: 11px;
    color: #555;
}

/* Submit Button */
.submit-btn-wrapper input[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, #6b21a8, #4c1d95);
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.submit-btn-wrapper input[type="submit"]:hover {
    opacity: 0.9;
}

/*********************************************************
    IMAGE ROTATION ON ABOUT US PAGE
**********************************************************/
body {overflow-x:hidden;}
.mission-icon svg path {fill:#f4ee03;}

/* Define the rotation movement */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Apply it to your image class */
.rotating-image {
  animation: spin 10s linear infinite;
}
