:root {
    --primary-color: #091e3e;
    --secondary-color: #6c757d;
    --accent-color: #ee6316;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --border-radius: 4px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --accent: #dc3545;
    --warning: #df0320;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --category-blue: #f9b81e;
    --early-bird: #4caf50;
    --mid-reg: #ff9800;
    --spot-reg: #f44336;

}

.payment-method img {
    max-width: 100px;
    margin: 10px;
}

.currency-selection label {
    margin-right: 15px;
}

.registration-table th,
.registration-table td {
    text-align: center;
    vertical-align: middle;
}

.accommodation-option {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
}

.accommodation-option h5 {
    margin-bottom: 15px;
}

.accommodation-option label {
    display: block;
    margin-bottom: 10px;
}

.accommodation-option input[type="radio"] {
    margin-right: 10px;
}

/*--------coupon code-------*/
/* Coupon Section */
.coupon-input-group {
    display: flex;
    max-width: 400px;
    margin-bottom: 10px;
}

.coupon-input-group .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-apply {
    background-color: #f9b81e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-apply:hover {
    background-color: #1e8fc6;
}

.coupon-message {
    font-size: 0.9rem;
    min-height: 20px;
}

.coupon-applied {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 10px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.coupon-applied a {
    color: #e74c3c;
    text-decoration: none;
}

/* Total Section */
.total-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.total-label {
    font-size: 1.2rem;
    font-weight: 500;
}

.total-amount input {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: right;
    border: none;
    background: transparent;
    color: #25aae1;
}

/* Captcha Section */
.captcha-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.captcha-display {
    display: flex;
    align-items: center;
    background-color: #2c3e50;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: bold;
}

.captcha-display button {
    background: none;
    border: none;
    color: white;
    margin-left: 10px;
    cursor: pointer;
}

/* Terms Section */
.terms-section {
    margin-bottom: 20px;
}

.terms-section a {
    color: #25aae1;
    text-decoration: none;
}

.terms-section a:hover {
    text-decoration: underline;
}

.errAgrre {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
}

.form-section {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.section-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    margin-bottom: 1rem;
    background-color: white;
}

.payment-method:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 170, 225, 0.2);
}

.payment-method.active {
    border-color: var(--primary-color);
    background-color: rgba(37, 170, 225, 0.05);
}

.payment-method img {
    max-height: 50px;
    margin-bottom: 0.5rem;
}

.payment-method p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.currency-option {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    border: 1px solid #ced4da;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(37, 170, 225, 0.25);
}

.registration-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.registration-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

.registration-table td {
    padding: 1rem;
    border: 1px solid #dee2e6;
    vertical-align: middle;
}

.registration-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.registration-table tr:hover {
    background-color: rgba(37, 170, 225, 0.05);
}

.registration-option {
    display: flex;
    align-items: center;
}

.price-option {
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-option label {
    margin-left: 0.5rem;
    cursor: pointer;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-control button:hover {
    background-color: #1a8fc7;
}

.quantity-control input {
    width: 50px;
    text-align: center;
    margin: 0 0.5rem;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius);
    padding: 0.25rem;
}

.accommodation-option {
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.accommodation-option h5 {
    color: white;
    margin-bottom: 1rem;
}

.accommodation-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.accommodation-price h6 {
    color: white;
    margin-bottom: 0.5rem;
}

.accommodation-price label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.accommodation-price label:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.accommodation-price input[type="radio"] {
    margin-right: 0.5rem;
}

.total-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 1rem;
}

.total-price-label {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark-bg);
}

.total-price-amount {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #f9b81e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.coupon-section {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.coupon-input {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.coupon-input .form-control {
    flex: 1;
}

.coupon-message {
    font-weight: 500;
}

.coupon-message.success {
    color: var(--success-color);
}

.coupon-message.error {
    color: var(--danger-color);
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.captcha-image {
    font-weight: bold;
    font-size: 1.5rem;
    background-color: var(--dark-bg);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    letter-spacing: 0.2em;
    text-align: center;
}

.captcha-refresh {
    background-color: var(--dark-bg);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.captcha-refresh:hover {
    background-color: #495057;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.terms-checkbox input {
    margin-right: 0.5rem;
}

.terms-error {
    color: var(--danger-color);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: none;
}

@media (max-width: 768px) {
    .payment-methods {
        flex-direction: column;
    }

    .registration-table {
        font-size: 0.9rem;
    }

    .registration-table th,
    .registration-table td {
        padding: 0.5rem;
    }

    .accommodation-options {
        flex-direction: column;
    }
}

/* Animation for payment method selection */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 170, 225, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 170, 225, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 170, 225, 0);
    }
}

.pulse-animation {
    animation: pulse 1s;
}

/* Styling for required field indicators */
.required-field::after {
    content: " *";
    color: var(--danger-color);
}

/* Card styling for accepted payment methods */
.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-gray);
}

.payment-method {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.payment-method:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.1);
}

.payment-method.active {
    border-color: var(--primary);
    background-color: rgba(67, 97, 238, 0.05);
}

.payment-method img {
    max-height: 40px;
    margin-bottom: 10px;
}

.payment-method p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.9rem;
}

.currency-option {
    margin-right: 15px !important;
    margin-bottom: 10px;
}

.form-check-input.currsel {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.1em;
}

.form-check-label.paycurrency {
    font-weight: 500;
    cursor: pointer;
}

.company-info {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    height: 100%;
}

.company-info h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.company-info p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.company-info strong {
    color: #555;
}

.accepted-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.accepted-cards img {
    height: 30px;
    width: auto;
}

@media (max-width: 768px) {
    .payment-method {
        margin-bottom: 15px;
    }

    .company-info {
        margin-top: 30px;
    }
}

.company-info p {
    margin-bottom: 0.5rem;
}

/* Responsive table container */
.table-responsive-container {
    overflow-x: auto;
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
}


.category-header {
    background-color: #2c3e50;
    color: white;
    font-weight: bold;
}

.category-header td {
    padding: 10px 15px;
}

.form-check {
    margin-bottom: 0;
}

.form-check-input {
    margin-right: 8px;
}

/* Number Input */
.number-input {
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-input button {
    background-color: #25aae1;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-input button:hover {
    background-color: #1e8fc6;
}

.number-input input {
    width: 50px;
    text-align: center;
    margin: 0 5px;
    padding: 5px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}


.conference-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.conference-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.conference-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.conference-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.conference-content {
    padding: 2.5rem;
}

.section-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 2rem 0.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px dashed rgba(67, 97, 238, 0.2);
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 12px;
    color: var(--accent);
}

.benefits-list {
    list-style-type: none;
}

.benefits-list li {
    padding: 0.2rem 0;
    /* border-bottom: 1px solid var(--light-gray); */
    display: flex;
    align-items: flex-start;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: 12px;
}

.package-card {
    background: linear-gradient(to right, rgba(67, 97, 238, 0.05), rgba(67, 97, 238, 0.02));
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.package-highlight {
    font-weight: 600;
    color: var(--primary);
    background: rgba(67, 97, 238, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.alert-section {
    background: linear-gradient(to right, rgba(247, 37, 133, 0.05), rgba(247, 37, 133, 0.02));
    border-left: 4px solid var(--warning);
    border-radius: 0 8px 8px 0;
    padding: 1.5rem;
    margin: 2rem 0;
}

.alert-title {
    color: var(--warning);
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.alert-title i {
    margin-right: 10px;
}

.contact-info {
    display: inline-flex;
    align-items: center;
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 500;
}

.contact-info i {
    margin-right: 8px;
    color: var(--accent);
}

.note-box {
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.note-title {
    color: #ff9800;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.note-title i {
    margin-right: 10px;
}

.icon-text {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.icon-text i {
    margin-right: 10px;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .conference-header {
        padding: 1.5rem;
    }

    .conference-header h1 {
        font-size: 1.8rem;
    }

    .conference-content {
        padding: 1.5rem;
    }

    .section-card {
        padding: 1.5rem;
    }
}

/*-----catergory-----------*/
.registration-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    overflow-x: auto;
    margin-bottom: 100px;
}

.registration-header {
    background-color: #fb4b58;
    color: white;
    padding: 1rem;
    text-align: center;
}

.registration-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.registration-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.registration-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.registration-table thead tr {
    background-color: var(--primary);
    color: white;
}

.registration-table th,
.registration-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--light-gray);
}

.registration-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.registration-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.registration-table tbody tr:hover {
    background-color: var(--primary-light);
}

.category-header {
    background-color: var(--category-blue) !important;
    color: white !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.registration-type {
    text-align: left !important;
    font-weight: 500;
}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.radio-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-container input[type="radio"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.price-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(76, 201, 240, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
}

.price-tag i {
    margin-right: 5px;
    color: var(--primary);
}

.early-bird {
    background-color: rgba(76, 175, 80, 0.1);
}

.mid-reg {
    background-color: rgba(255, 152, 0, 0.1);
}

.spot-reg {
    background-color: rgba(244, 67, 54, 0.1);
}

.members-col {
    background-color: rgba(67, 97, 238, 0.05);
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control button {
    background: var(--primary);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
}

.quantity-control input {
    width: 50px;
    text-align: center;
    margin: 0 10px;
    padding: 0.3rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
}

.disabled-option {
    opacity: 0.6;
}

.deadline-badge {
    display: inline-block;
    background: var(--light-gray);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    color: var(--gray);
}