@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --primary-color: #9f0900;
    /* --primary-color: #221EAC; */
    --secondary-color: #21366B;
    --white-color: #ffffff;
    --black-color: #050505;
    --gradient: linear-gradient(90deg, #9a1909 0%, #ff262a 50%, #580a00 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --field-height: 50px;
    --label-font-size: 14px;
    --label-font-size-focused: 0.75rem;
    --text-gray: #666;
    --border-color: #e0e0e0;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    /* background: var(--gradient); */
    min-height: 100vh;
    /* padding: 20px 0; */
    margin: 0;
    touch-action: manipulation;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loader-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Loader Animation */
.loader-pulse {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.loader-pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.loader-icon {
    color: white;
    font-size: 2rem;
    z-index: 1;
}

.loader-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.loader-subtext {
    color: #ccc;
    font-size: 0.9rem;
    text-align: center;
}

/* loader */





/* preloader */
.main-loader {
  display: flex;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 94, 94, 0.8) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(255, 128, 128, 0.6) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(255, 60, 60, 0.5) 0%,
      transparent 50%
    ),
    linear-gradient(0deg, rgb(166 3 3), rgb(203 5 5));
  background-size: cover;
  background-position: center;
  justify-content: center;
  align-items: center;
  height: 100vh;
  z-index: 9999;
  position: absolute;
  top: 0;
  width: 100%;
}

.preloader {
  width: 10em;
  height: 10em;
  font-size: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader .face {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  animation: animate023845 1s linear infinite;
}

.preloader .face:nth-child(1) {
  width: 100%;
  height: 100%;
  color: rgb(255, 255, 255);
  border-color: currentColor transparent transparent currentColor;
  border-width: 0.2em 0.2em 0em 0em;
  --deg: -45deg;
}

.preloader .face:nth-child(2) {
  width: 70%;
  height: 70%;
  color: rgb(255, 255, 255);
  border-color: currentColor currentColor transparent transparent;
  border-width: 0.2em 0em 0em 0.2em;
  --deg: -135deg;
  animation-direction: reverse;
}

.preloader .face .circle {
  position: absolute;
  width: 50%;
  height: 0.1em;
  top: 50%;
  left: 50%;
  background-color: transparent;
  transform: rotate(var(--deg));
  transform-origin: left;
}

.preloader .face .circle::before {
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  content: "";
  width: 1em;
  height: 1em;
  background-color: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 2em, 0 0 4em, 0 0 6em, 0 0 8em, 0 0 10em,
    0 0 0 0.5em rgba(255, 255, 0, 0.1);
}

@keyframes animate023845 {
  to {
    transform: rotate(1turn);
  }
}
 
/* preloader */


.main-badge-wrapper{
    display: flex;
    gap: 15px;
}

.main-badge-wrapper-left{
    width: 30%;
}

.main-badge-wrapper-right{
    width: 70%;
}

@media (max-width: 991px) {
    .main-badge-wrapper{
        flex-direction: column;
        gap: 5px;
    }

    .main-badge-wrapper-left{
    width: 100%;
    }

    .main-badge-wrapper-right{
        width: 100%;
    }
}


.main-container {
    max-width: 1400px;
    margin: 50px auto;
    background: white;
    border-radius: 25px;
}

.header-section {
    background: var(--gradient);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    opacity: 0.95;
    margin-bottom: 10px;
}

/* Material Design Floating Labels */
.floating-label {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
    background-color: #fff !important;
}

.floating-label select option {
    color: #000 !important;
}

.floating-label input:not([type="tel"]),
.floating-label textarea,
.floating-label select {
    width: 100%;
    height: var(--field-height);
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
    transition: var(--transition);
    outline: none;
}

.footer-btn {
    justify-content: end;
    display: flex;
}


.floating-label label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: var(--label-font-size);
    color: #666;
    pointer-events: none;
    transition: var(--transition);
    background: #fff;
    padding: 0 4px;
    z-index: 1;
    max-width: 90%;
}

.floating-label input:focus:not([type="tel"]),
.floating-label textarea:focus,
.floating-label select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 14, 255, 0.1);
}

.floating-label input:focus:not([type="tel"])+label,
.floating-label input:not(:placeholder-shown):not([type="tel"])+label,
.floating-label textarea:focus+label,
.floating-label textarea:not(:placeholder-shown)+label,
.floating-label.has-value label {
    top: 0;
    transform: translateY(-50%);
    font-size: var(--label-font-size-focused);
    color: var(--primary-color);
    font-weight: 500;
}

.floating-label select:focus+label,
.floating-label select:not(:placeholder-shown)+label,
.floating-label.has-select-value label {
    top: 0;
    transform: translateY(-50%);
    font-size: var(--label-font-size-focused);
    color: var(--primary-color);
    font-weight: 500;
}

.floating-label input::placeholder:not([type="tel"]),
.floating-label select::placeholder,
.floating-label textarea::placeholder {
    color: transparent;
}

.floating-label input:focus::placeholder:not([type="tel"]),
.floating-label select:focus::placeholder,
.floating-label textarea:focus::placeholder {
    color: #999;
}

.floating-label.error input:not([type="tel"]),
.floating-label.error select,
.floating-label.error textarea {
    border-color: #e0e0e0;
    box-shadow: none;
}

.floating-label.error label {
    color: #565656;
    transform: translateY(-110%);
}

.floating-label.success input:not([type="tel"]),
.floating-label.success select,
.floating-label.success textarea {
    border-color: #979797;
    box-shadow: none;
}

.floating-label.success label {
    color: var(--primary-color);
}

.floating-label .required {
    color: var(--primary-color);
}

.invalid-feedback {
    display: block;
    font-size: 0.875rem;
    color: #e24b59;
    margin-top: 0.25rem;
}

.required {
    color: var(--primary-color);
}

/* Select2 Integration with Floating Labels */
.floating-label .select2-container {
    width: 100% !important;
}

.floating-label .select2-selection--single {
    height: var(--field-height) !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 12px 15px;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    background: #fff !important;
    transition: var(--transition) !important;
    outline: none !important;
}

.floating-label .select2-selection--single .select2-selection__rendered {
    color: #495057 !important;
    line-height: 1.5 !important;
    padding: 0 !important;
    /* margin-top: 8px !important; */
}

.floating-label .select2-selection--single .select2-selection__arrow {
    height: 54px !important;
    right: 10px !important;
    top: 1px !important;
    z-index: 9999 !important;
}

.floating-label .select2-container--focus .select2-selection--single,
.floating-label .select2-container--open .select2-selection--single {
    border-color: #848484;
    box-shadow: 0 0 0 3px rgba(24, 0, 65, 0.1) !important;
}

.floating-label.has-select-value label,
.floating-label .select2-container--focus+label {
    top: 0;
    transform: translateY(-50%);
    font-size: var(--label-font-size-focused);
    color: var(--primary-color);
    font-weight: 500;
}

/* .floating-label.error .select2-selection--single {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
} */

.floating-label.success .select2-selection--single {
    border-color: #848484 !important;
    box-shadow: 0 0 0 3px rgb(186 186 186 / 10%) !important;
    padding-top: 15px;
}

.select2-dropdown {
    border: 2px solid var(--primary-color) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    z-index: 9999 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 5px 12px !important;
    height: 45px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--primary-color) !important;
    outline: none !important;
}

/* International Tel Input Integration - FIXED */
.floating-label .iti {
    width: 100%;
    position: relative;
}

.floating-label .iti__flag-container {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

.floating-label .iti__selected-flag {
    background: transparent;
    border: none;
    padding: 12px 10px;
    border-right: 1px solid #e0e0e0;
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.floating-label .iti__selected-flag:hover {
    background: #f8f9fa;
}

.floating-label .iti__arrow {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #666;
    margin-left: 6px;
}

.floating-label .iti__country-list {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    background: white;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 350px;
}

.floating-label .iti__country-list .iti__country {
    padding: 10px 15px;
    border-bottom: 1px solid #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-label .iti__country-list .iti__country:hover {
    background: #f8f9fa;
}

.floating-label .iti__country-list .iti__country.iti__highlight {
    background: var(--primary-color);
    color: white;
}

.floating-label .iti__flag {
    width: 20px;
    height: 15px;
    margin-right: 8px;
}

.floating-label .iti input[type="tel"] {
    width: 100%;
    height: var(--field-height);
    padding: 1rem 1rem 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
    background: transparent;
    transition: var(--transition);
    outline: none;
    padding-left: 80px;
}

.floating-label .iti input[type="tel"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 0, 126, 0.1);
}

.floating-label .iti input[type="tel"]::placeholder {
    color: transparent;
}

.floating-label .iti input[type="tel"]:focus::placeholder {
    color: #999;
}

/* FIXED: Mobile Number Label Positioning */
.floating-label.phone-field label {
    left: 130px !important;
    /* Position after country code */
}

.floating-label.phone-focused label,
.floating-label.phone-has-value label {
    top: 0;
    left: 20px !important;
    /* Keep it positioned after country code even when focused */
    transform: translateY(-50%);
    font-size: var(--label-font-size-focused);
    color: var(--primary-color);
    font-weight: 500;
}

/* .floating-label.error .iti input[type="tel"] {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
} */

.floating-label.success .iti input[type="tel"] {
    border-color: #979797;
}

/* Form Cards */
.form-card {
    background: #fff;
    border-radius: var(--border-radius);
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.08); */
    border: 1px solid rgba(230, 0, 126, 0.1);
    /* transition: var(--transition); */
}


.form-card {
    border-radius: 30px;
    border: 1px solid rgba(216, 216, 216, 0.867);
}

.form-card .card-header {
    border-radius: 30px 30px 0 0;
}

.card-header {
    background-color: white;
    border-bottom: 2px solid var(--primary-color);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: 25px;
}

.card-header h3 {
    font-size: 23px;
    color: var(--black-color);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mt-40 {
    margin-top: 23px;
}

/* Interest Selection */
.interest-counter {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.interest-counter .badge {
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 15px;
    transition: var(--transition);
}

.interest-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: var(--transition);
    max-height: 180px;
    overflow-y: scroll;
    margin-bottom: 20px;
}



.interest-selection {
    overflow-y: auto;
    /* Enables vertical scroll */
    scrollbar-width: thin;
    /* For Firefox */
    scrollbar-color: #c3c3c3 #f1f1f1;
    /* For Firefox - thumb and track */
}

/* For WebKit browsers */
.interest-selection::-webkit-scrollbar {
    width: 8px;
}

.interest-selection::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 8px;
}

.interest-selection::-webkit-scrollbar-thumb {
    background-color: #e6e6e6;
    border-radius: 8px;
    border: 2px solid #f1f1f1;
}

.interest-selection::-webkit-scrollbar-thumb:hover {
    background-color: #e1e1e1;
}

.interest-selection.error {
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 10px;
    background-color: rgba(220, 53, 69, 0.05);
}

.interest-selection.success {
    border-color: var(--primary-color);
    background-color: rgba(119, 22, 96, 0.04);
    border-radius: 8px;
    padding: 10px;
}

.interest-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    position: relative;
    padding: 5px 10px;
}

.interest-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.interest-btn.selected {
    background: var(--gradient);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgb(184 23 24 / 38%);
}

.interest-btn.selected::before {
    content: '✓ ';
    font-weight: bold;
}

.interest-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.interest-btn-text {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 2px;
}

.interest-btn-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-indicator {
    font-size: 9px;
    color: #888;
    background: transparent;
    padding: 0;
    border-radius: 0;
    white-space: nowrap;
    font-weight: 400;
    opacity: 0.8;
    font-style: italic;
    display: block;
}

.interest-btn.selected .services-indicator {
    color: #ffffff;
    opacity: 1;
    display: none;
    /* Hide when selected */
}

.select-services-btn {
    background: #fff;
    color: var(--secondary-color);
    border: none;
    padding: 0px 2px;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.select-services-btn:hover {
    background: #ffffff;
}

.interest-btn.selected .select-services-btn {
    display: inline-block;
}

/* Badge Preview */
.badge-preview-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--border-radius);
    /* padding: 30px; */
    text-align: center;
    position: sticky;
    /* box-shadow: var(--shadow); */
}

.badge-preview-header {
    background: var(--gradient);
    color: white;
    /* margin: -30px -30px 30px -30px; */
    padding: 20px 30px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    border-radius: 25px 25px 0 0;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background: #f8f9fa;
    margin: 25px auto;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    position: relative;
    overflow: hidden;
}

.badge-info {
    margin: 20px 0;
}

.badge-name {
    font-size: 35px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.badge-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
}

.badge-company {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #5e5e5e;
    text-transform: uppercase;
}

.need-asistance h6 {
    font-size: 18px;
    font-weight: 600;
}

.visitor-badge {
    background: var(--gradient);
    padding: 15px 50px;
    border-radius: 0 0 15px 15px;
}

.visitor-badge h6 {
    font-weight: 400;
    font-size: 15px;
    color: white;
    margin: 0;
}

.visitor-badge h3 {
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin: 0;
}

/* Buttons */
.btn-primary2 {
    color: white;
    /* background: var(--primary-color); */
    border: 0;
    border-radius: 0;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    background: var(--gradient);
    border-radius: 6px;
}

.btn-primary2:hover {
    color: white;
    transform: translateY(-2px);
    background: var(--primary-color);
}

.btn-success {
    background: #fbca19 !important;
}

.btn-outline-secondary {
    padding: 15px 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border-radius: 0;
    color: white;
    background-color: #000;
    border: 0;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #dee2e6;
    transform: translateY(-2px);
}

/* Terms Section */
.terms-section {
    padding: 25px 0;
}

.terms-section h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-section p {
    font-size: 15px;
    line-height: 25px;
    color: #737373;
}

.terms-section p a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #0cc6d2;
}

.form-check {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
    position: relative;
}

.form-check:hover {
    background: #e9ecef;
}

/* ENHANCED: Checkbox Styling */
.form-check-input {
    width: 24px;
    height: 24px;
    border: 3px solid #dee2e6;
    border-radius: 6px;
    background: white;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    margin-right: 10px;
    transform: scale(1.2);
    /* margin-right: 12px; */
}

.form-check-input:checked {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border-color: #28a745 !important;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3) !important;
}

.form-check-input:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-weight: 900;
    font-size: 16px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.form-check-input:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
}

.form-check-input:hover {
    border-color: #28a745;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.form-check-label {
    font-size: 15px;
    line-height: 25px;
    color: #737373;
    transition: var(--transition);
    cursor: pointer;
    line-height: 1.5;
    padding-left: 12px;
    margin-top: 6px;
}

.sub-category-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.sub-category-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.form-check-input:checked+.form-check-label {
    color: #28a745 !important;
    font-weight: 400;
}

.form-check.terms-checked {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
    border-color: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.1);
}

.form-check.terms-checked .form-check-label {
    color: #28a745 !important;
    font-weight: 400;
}

/* Loading */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear ease-in-out infinite;
    margin-right: 10px;

    display: inline-block;
    border-top-color: transparent;
    animation: spin 1s infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        margin: 10px;
        border-radius: 15px;
    }

    .badge-preview-card {
        position: relative;
        margin-top: 30px;
    }

    .interest-selection {
        gap: 8px;
    }

    .interest-btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    /* Mobile phone label adjustment */
    .floating-label.phone-field label {
        left: 130px !important;
    }

    .floating-label.phone-focused label,
    .floating-label.phone-has-value label {
        left: 20px !important;
    }

    /* Mobile form improvements */
    .form-card {
        margin: 0;
        border-radius: 15px;
    }

    .form-card .card-body {
        padding: 20px 15px !important;
    }

    .floating-label {
        margin-bottom: 1rem;
    }

    .floating-label input,
    .floating-label select {
        font-size: 16px; /* Prevents zoom on iOS */
        height: 50px;
    }

    .floating-label label {
        font-size: 14px;
        top: 25px;
    }

    /* Ensure proper spacing on mobile */
    .row > [class*="col-"] {
        margin-bottom: 15px;
    }

    /* Mobile-specific form layout */
    .col-12.col-sm-6 {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .main-container {
        margin: 5px;
        border-radius: 10px;
    }

    .form-card .card-body {
        padding: 15px !important;
    }
    .card-header{
        padding: 15px;
    }

    .floating-label input,
    .floating-label select {
        height: 45px;
        font-size: 16px;
    }

    .floating-label label {
        font-size: 13px;
        top: 22px;
    }

    .card-header h3 {
        font-size: 18px;
        line-height: 1.4;
    }
}

/* Performance Optimizations */
.form-card {
    contain: layout style;
}


/* added */
.form-container-out {
    margin: 50px 0;
}

.top-header {
    position: relative;
    background-color: #000;
}

.header-page-head {
    position: absolute;
    top: 40%;
    right: 60px;
    font-size: 25px;
    font-weight: 500;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 20px;
    text-transform: uppercase;
    border-radius: 50px;
}

.top-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .header-page-head {
        font-size: 20px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .header-page-head {
        font-size: 15px;
        right: 10px;
    }
}

@media (max-width: 475px) {
    .header-page-head {
        font-size: 12px;
        right: 5px;
        top: 20%;
        padding: 5px 10px;
    }
}

@media (max-width: 380px) {
    .header-page-head {
        font-size: 10px;
        right: 2px;
        top: 10%;
        padding: 5px 10px;
    }
}

.top-header-second-out {
    background: var(--gradient);
    /* background-image: url(../img/card-footer.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: top; */
}

.top-header-second {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.left-top-header-sec {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.left-top-header-sec:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease-in-out;
}

.left-top-header-sec p {
    transition: all 0.3s ease-in-out;
}

.left-top-header-sec:hover a p {
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.left-top-header-sec p {
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: 0;
}

.left-top-header-sec a {
    text-decoration: none;
}

.right-top-header-sec button {
    border: 1px solid #fff;
    border-radius: 0px;
    padding: 4px 30px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
}

.right-top-header-sec a {
    width: fit-content;
    display: inline-block;
}

.right-top-header-sec button:hover {
    border: 1px solid #fde385;
    background: var(--gradient);
    color: white;
}

.right-top-header-sec span {
    color: white;
    font-size: 12px;
    padding-top: 2px;
}

/* footer */
.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 6;
}

/*bottom ft small*/
.bottom-ft-small {
    padding: 15px 0;
    background: var(--gradient);
    /* background-image: url(../img/shape2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
}

.ft-btm-cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    justify-content: space-between;
    align-items: center;
}

.left-ft-btm-cont ul {
    padding: 0;
    margin: 0;
}

.left-ft-btm-cont ul li {
    color: white;
    display: inline-block;
    text-decoration: none;
    padding-right: 15px;
}

.left-ft-btm-cont ul li a {
    font-size: 14px;
    font-weight: 400;
    color: white;
    text-decoration: none;
}

.right-ft-btm-cont i,
.right-ft-btm-cont svg {
    font-size: 20px;
    color: #fff;
}

.right-ft-btm-cont a {
    width: fit-content;
    display: inline-block;
}

.right-ft-btm-cont span {
    margin-left: 10px;
    font-size: 13px;
    color: white;
}

.right-car-ft {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #515151;
    margin: 10px auto 20px;
}

@media (max-width: 768px) {
    .ft-btm-cont {
        gap: 3px;
    }
    .right-ft-btm-cont span {
        margin-left: auto;
        margin-right: 10px;
    }
}

@media (max-width: 600px) {
    .top-header-second {
        padding: 5px;
    }

    .left-top-header-sec p {
        font-size: 12px;
    }

    .right-top-header-sec button {
        font-size: 10px;
    }


    .right-top-header-sec button {
        padding: 7px 15px;
    }

    .badge-name {
        font-size: 25px;
    }

    .visitor-badge h3 {
        font-size: 25px;
    }

    .card-header h3 {
        font-size: 18px;
    }

    .btn-outline-secondary,
    .btn-primary2 {
        padding: 10px 20px;
        font-size: 16px;
    }
}


/* login page */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    width: 40px;
    height: 40px;
    left: 70%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 80%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    width: 30px;
    height: 30px;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.3;
    }
}

.login-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    flex: 1;
    padding: 40px 0;
}

.login-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgb(176 176 176 / 15%), 0 0 0 1px rgb(226 226 226 / 20%), inset 0 1px 0 rgb(250 250 250 / 50%);
    padding: 50px 40px;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: 24px 24px 0 0;
}

.login-form-container h4 {
    font-size: 32px;
    font-weight: 700;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    position: relative;
}

.login-form-container h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.sub-wrapper-cntnt p {
    color: #64748b;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 300;
}

.input-group {
    position: relative;
    text-align: left;
}

.input-field {
    width: 100%;
    padding: 20px 20px 20px 56px;
    border: 2px solid #e5e7eb;
    border-radius: 16px !important;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.input-field:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    animation: focusPulse 0.3s ease-out;
    box-shadow:
        0 0 0 4px rgba(79, 70, 229, 0.1),
        0 8px 25px rgba(79, 70, 229, 0.15);
}

/* Safari-compatible label styling */
.input-label {
    position: absolute;
    left: 56px;
    top: 20px;
    color: #9ca3af;
    font-size: 16px;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
    z-index: 2;

}

/* Simplified active state for better Safari compatibility */
.input-label.active {
    top: -16px;
    left: 20px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 4px 12px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.8);

}

/* Fallback for browsers that support :not(:placeholder-shown) */
.input-field:focus+.input-label,
.input-field:not(:placeholder-shown)+.input-label {
    top: -16px;
    left: 20px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 4px 12px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.8);

}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 2;

}


.get-otp-btn {
    width: 100%;
    background: var(--primary-color);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 16px;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.get-otp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.get-otp-btn:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
}

.get-otp-btn:hover::before {
    left: 100%;
}

.get-otp-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.security-badge span {
    text-align: left;
    font-size: 12px;
}

.security-badge i {
    color: #10b981;
    font-size: 16px;
}

.footer {
    margin-top: auto;
}

.contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  flex-wrap: wrap;
  color: white;
  border-bottom: 1px solid #ffffff2e;
  padding-bottom: 10px;
  margin-bottom: 10px;
  }

  .contact-title {
      font-weight: bold;
      margin-right: 20px;
      white-space: nowrap;
      color: white;
      margin-bottom: 10px;
  }

  .all-right-reserve{
    color: white;
    font-size: 14px;
  }

  .footer-lets-talk{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .contact-item {
      margin-right: 20px;
      padding-right: 20px;
      border-right: 1px solid rgba(255, 255, 255, 0.4);
      white-space: nowrap;
  }

  .contact-item:last-child {
      border-right: none;
  }

  .contact-item span {
      display: block;
      font-weight: bold;
      font-size: 12px;
  }

  .contact-item a {
      color: #fff;
      text-decoration: none;
      font-size: 12px;
  }

  .contact-item a:hover {
      text-decoration: underline;
  }

  @media (max-width: 768px) {
      .contact-bar {
          /* flex-direction: column; */
          align-items: flex-start;
          padding-top: 5px;
      }
      .contact-item {
          border-right: none;
          padding-right: 0;
          margin-bottom: 8px;
      }
      .contact-item span {
        font-weight: 600;
        font-size: 8px;
    }
    .contact-item a{
        font-size: 10px;
        font-weight: 200;
    }
    .contact-title{
        margin: 0;
        font-size: 9px;
    }
    .all-right-reserve{
    font-size: 10px;
    }
  }

.success-animation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    scale: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.success-animation.show {
    opacity: 1;
    scale: 1;
}

.success-animation i {
    color: white;
    font-size: 24px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes focusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.3);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(79, 70, 229, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

@media (max-width: 480px) {
    .login-form-container {
        padding: 40px 12px;
        border-radius: 20px;
        margin: 0;
    }

    .login-form-container h4 {
        font-size: 20px;
    }

    .input-field {
        padding: 14px 18px 13px 52px;
        font-size: 16px;
    }

    .input-label {
        left: 52px;
        top: 18px;
        font-size: 11px;
    }


    .sub-wrapper-cntnt p {
        font-size: 15px;
        padding-bottom: 15px;
    }

    .input-icon {
        left: 18px;
    }

    .get-otp-btn {
        padding: 10px;
    }

    .security-badge {
        text-align: left;
    }
}

/* login page */


/* otp page */

.otp-inputs input:focus {
    border: 1.5px solid var(--primary-color);
    outline: none;
}


.otp-inputs-form {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
}

.otp-inputs {
    margin-top: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

}

.otp-inputs input {
    width: 50px;
    height: 50px;
    margin: 0 8px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 24px;
}



#countdown {
    font-weight: bold;
    color: var(--primary-color);
}

.resend-otp {
    font-size: 17px;
    font-weight: 600;
}

.resend-otp span a {
    color: var(--primary-color);
    font-weight: 700;

}

.resend-otp {
    margin-top: 20px;
    font-size: 16px !important;
}

.login-wrapper {
    max-width: 1500px;
    background: #f8f9fa;
    min-height: calc(100vh - 380px);
    gap: 50px;
    padding: 30px;
    border-radius: 15px;
    margin: 0 auto;
}



.sub-wrapper {
    background-color: #fff;
    border-radius: 30px;
    margin: auto;
    width: 500px;
    margin: auto;
    padding: 30px;
    border: 1px solid #abcd;
}

.sub-wrapper-main {
    padding: 60px 0px 60px 0px;
    /* margin-top: -80px; */
}

.sub-wrapper img {
    width: 200px;
    margin: 0px auto;
    margin-bottom: 20px;
    display: block;
}

.sub-wrapper h4 {
    color: var(--black-color);
    font-size: 35px;
    text-align: center;
    font-weight: 800;
}

.sub-wrapper h6 {
    color: #A7A7A7;
    font-size: 18px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 20px;
}

.sub-wrapper .sub-wrapper-cntnt p {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 20px;
}

.sub-wrapper .sub-wrapper-cntnt h5 {
    font-size: 17px;
    color: var(--black-color);
    font-weight: 600;
    margin: 6px 0px;
}

.sub-wrapper-cntnt {
    display: flex;
    flex-direction: column;
}


.sub-wrapper {
    text-align: center;
}


.login-input {
    text-align: center;
    display: inline-grid;
}

.login-wrapper {
    margin: auto;

}

.login-input label {
    font-size: 15px;
    color: #B9B9B9;
    font-weight: 300;
    margin-bottom: 10px;
}

.login-input input {
    border: none;
    background: transparent;
    padding-bottom: 10px;
    text-align: center;
    width: 350px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: auto;
    border-radius: 0px !important;
}

.login-input input::placeholder {
    color: rgb(189, 189, 189);
}

.login-input input:focus {
    outline: none;
    border: none;
}

.sub-wrapper-cntnt p span {
    font-weight: 800;
    color: #3A3A3A;
}

.secondary-btn {
    line-height: 15px;
    height: 45px;
    padding: 0px 15px;
    background: var(--primary-color);
    border: none;
    color: var(--white-color);
    transition: 1s;
    border-radius: 50px;
    width: fit-content;
    margin: auto;
    border-radius: 50px;
}

.secondary-btn:hover {
    background-color: #000;
    transition: 1s;
}

.reg-primary-span {
    color: #ddffd5;
    font-size: 11px;
    background: green;
    padding: 5px 15px;
    background: #ffffff1f;
    border: 1px solid #d5cfcf63;
    border-radius: 35px;
}


.custom-toast {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s, top 0.3s;
    z-index: 9999;

}

/* otp page */




/* Visitor Portal */

/* visitor dashboard */

.menu-header {
    background: var(--gradient);
    color: white;
    padding: 25px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.menu-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.dashboard {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 200px;
    background: var(--primary-color);
    color: #fff;
    padding-bottom: 20px;
}

.sidebar h2 {
    font-size: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar ul {
    list-style: none;
    padding: 0px;
}

.sidebar ul li {
    width: 100%;
}

.sidebar ul li a {
    padding: 12px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #fff;
    transition: .5s ease;
    width: 100%;
}

.sidebar ul li a:hover {
    background-color: #e81408;
    border-left: 4px solid #ffffff;
    color: #ffffff !important;
}

.sidebar ul li.active {
    background-color: #e81408;
    border-left: 4px solid #ffffff;
    color: #ffffff !important;
}

.sidebar ul li.active a {
    color: #ffffff;
}

.sidebar ul li.active i {
    color: #ffffff;
}


.sidebar ul li i {
    height: 25px;
    width: 25px;
    color: white;
    display: flex;
    align-items: center;
}

.main-dashboard {
    flex: 1;
    background-color: #fff;
}

.tab-content {
    padding: 20px;
}

.tab-content p {
    color: gray;
    font-size: 15px;
}

/* visitor dashboard */

/* badge profile */
.badge-search-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 500px;
}

.fade:not(.show) {
    display: none;
}

.search-input-group {
    position: relative;
    max-width: 500px;
}

.search-input {
    padding: 12px 45px 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(70, 108, 19, 0.1);
    border-color: #466c13;
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #466c13;
    pointer-events: none;
}

/* Responsive styles */


/* badge profile */

/* like profile */
.like-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    justify-content: end;
    width: 100%;
}

.heart {
    color: #ccc;
    /* empty heart */
    transition: color 0.3s;
}

.liked .heart {
    color: red;
    /* filled heart */
}



.user-dropdown {
    position: relative;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.user-info:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.dropdown-arrow {
    font-size: 0.8rem;
    color: #666;
    transition: transform 0.3s ease;
}

.user-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    /* opacity: 0; */
    /* visibility: hidden; */
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
    z-index: 9999;
}

.user-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-item i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.right-top-header-sec ul li a {
    width: 100%;
}

.right-top-header-sec button {
    width: 100%;
    border-radius: 0 !important;
    border: 1px solid #fff !important;
}


/* like profile */


.visitor_topright {
    align-items: center;
    gap: 10px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
}

.completed-badge {
    background: var(--black-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dash-head {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.sidebar .sidebar-logo {
    width: 170px;
    margin: auto;
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffff4f;
    margin-bottom: 30px;

}

.visitor_topright h4 {
    margin: 0px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.upload-container {
    border-radius: 0.5rem;
    width: 100%;
}

.title {
    font-size: 18px;
    margin-top: 30px;
    font-weight: 500;
    text-align: center;
    color: #1f2937;
}

#dataDisplay {
    text-align: center;
    padding-bottom: 30px;
    padding-top: 20px;
}

#dataEdit {
    text-align: center;
    padding-bottom: 30px;
    padding-top: 20px;
}

.avatar-section {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

.avatar-container {
    position: relative;
}

.remove-overlay {
    position: absolute;
    top: -15px;
    right: -14px;
    width: 2rem;
    height: 2rem;
    background-color: #ef4444;
    border-radius: 50%;
    border: 2px solid white;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.remove-overlay:hover {
    background-color: #dc2626;
}

.remove-overlay.show {
    display: flex;
}

.close-icon {
    width: 1rem;
    height: 1rem;
    color: white;
}

.avatar-circle {
    width: 8rem;
    height: 8rem;
    border-radius: 100%;
    background-color: #e2ffdf;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    overflow: hidden;
}

.avatar-circle:hover {
    background-color: #2f3134;
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5%;
}

.user-icon {
    width: 3rem;
    height: 3rem;
    color: white;
}




.file-info {
    margin-top: .5rem;
    padding: 0.75rem;
    display: none;
}

.file-info.show {
    display: block;
}

.file-info p {
    font-size: 13px;
    text-align: center;
    color: #374151;
    margin-bottom: 0.25rem;
}

#chooseBtn {
    background: #161616;
    border: 1px solid #ebebeb;
    color: #ffffff;
}

#removeBtn {
    display: none;
}

.file-info .file-size {
    color: #6b7280;
}

.file-name {
    font-weight: 500;
}

.form-control:disabled {
    background-color: transparent !important;
}

/* SVG Icons */


.icon {
    fill: rgb(36 127 46);
}


.edit-form-main {
    background-color: #fff;
    border-radius: 8px;
}

.edit-form-main .attendee-header {
    background-image: url(../img/banner.webp) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative !important;
}


.edit-form-main .attendee-header #editBtn {
    background: #ffffff !important;
    color: #74bb28 !important;
    border: 1px solid #6ab422;
}


.edit-form-main .attendee-header #saveBtn {
    background: #55105f !important;
    color: #fefefe !important;
    border: none;

}

.edit-form-inputs #saveBtn {
    margin-top: 20px !important;
    text-align: center;
    margin: auto;
    padding: 7px 30px;
}

.edit-form-inputs {
    padding: 20px;
    border: 1px solid #ebebeb;
}

.edit-form-inputs label {
    margin-top: 30px;
}


.edit-form-inputs .form-workshop {
    border-bottom: 1px solid #ebebeb;
}


/* badge table */

.table-container {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.table-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.search-box {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 200px;
}

.sort-select {
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.badge-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.badge-table th,
td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.badge-table th {
    background-color: #f9f9f9;
    color: #333;
    font-size: 13px;
}

.badge-table .user {
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-table .user img {
    border-radius: 100%;
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.badge-table .badge-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 0px;
    background-color: #7E57C2;
    cursor: pointer;
    color: white;
    font-size: 12px;
    transition: .5s ease;

}

.badge-table .badge-btn span {
    margin-right: 5px;
}

.badge-table .badge-btn:hover {
    background-color: #5E35B1;
    transition: .5s ease;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #555;
}

.action-cell {
    position: relative;
    text-align: center;
}

.action-cell .btn-link {
    color: #6c757d;
    padding: 6px;
    transition: color 0.2s;
}

.action-cell .btn-link:hover {
    color: #343a40;
}

.dropdown-menu {
    min-width: 180px;
    padding: 0.5rem 0;
    margin: 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 5px 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #333;
    transition: all 0.2s;
}

.dropdown-item i {
    width: 16px;
    color: #6c757d;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item:hover i {
    color: #49b964;
}

.dropdown-item.text-danger:hover i {
    color: #dc3545;
}

.badge-table {
    background-color: #fff;
    border: 1px solid #ebebeb;
}

.primary-user {
    background: #008800;
    color: #fff;
    font-size: 10px;
    font-weight: 300;
    padding: 4px 7px;
    border-radius: 30px;
}

.badge-status span {
    background: #cfa701;
    padding: 4px 8px;
    border-radius: 30px;
    color: white;
    font-size: 12px;
}

.badge-approved span {
    background-color: #008800;
}

.badge-cancel span {
    background-color: #8a340c;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    outline: none;
    box-shadow: none;
    border: none;
}


.edit-form-products label {
    margin-bottom: 5px;
}

.edit-form-products input[type="checkbox"] {
    accent-color: black;
}

.workshop-error {
    color: red;
}

.product-categorey-head {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
    color: #353799;
}

/* badge table */

/* table responsive card */

.mobile-card-header h5 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
}


.visitor-notification {
    position: relative;
    display: inline-block;
    font-size: 20px;
    background: #fff;
    padding: 10px;
    border-radius: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    color: #333;
    cursor: pointer;
}

.visitor-notification i {
    font-size: 20px;
    color: #333;
}

.notification-dot {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    border: 2px solid white;
    /* Optional: white border for contrast */
}


.badge-dtl-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.visitor-badge-dtail h4 {
    font-size: 15px;
    color: var(--black-color);
    font-weight: 400;
    display: flex;
    align-items: center;
}

.visitor-badge-dtail h4 svg {
    color: #ffffff;
    font-weight: 600;
    height: 15px;
    width: 15px;
    background: var(--primary-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    padding: 5px;
    font-size: 5px;
}

.vis-bdge-main-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.vis-badgeqr {
    width: 130px;
}


.mobile-table-card {
    margin-top: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 15px;
}

.mobile-card-header h6 {
    font-size: 14px;
    font-weight: 500;
    color: #606060;
    margin-bottom: 0px;
    margin-top: 5px;
}

.mobile-card-profile img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 100%;
}

.mobile-card-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mobile-card-profile .primary-user {
    margin-left: 5px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 5px;
    margin: 15px 0px;
}

.detail-item {
    text-align: center;
    padding: 6px;
    background: rgba(247, 250, 252, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(237, 242, 247, 0.9);
    transform: translateY(-2px);
}

.detail-label {
    font-size: 12px;
    color: #718096;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #f6ad55;
    color: #744210;
    display: inline-block;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mobile-table-card-wrapper {
    display: none;
}

/* table responsive card */
/* Notification */


.notification-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}


.notification-header h2 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.notification-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* semi-transparent black */
    z-index: 999;
    /* below the popup */
    display: none;
}

.notification-popup {
    position: absolute;
    top: 60px;
    /* adjust to your button */
    right: 20px;
    width: 500px;
    background: white;
    z-index: 1000;
    /* above the backdrop */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: none;
    border-radius: 8px;
    overflow: hidden;
}

.notification-popup.show {
    display: block;
}

.notification-backdrop.show {
    display: block;
}


.mark-all-read {
    padding: 0.5rem 1rem;
    background: #49b964;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mark-all-read:hover {
    background: #3a9651;
}

.notification-filter {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.notification-item.unread {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.notification-avatar {
    position: relative;
    margin-right: 1rem;
}

.notification-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #49b964;
    border-radius: 50%;
    border: 2px solid #fff;
}

.notification-icon {
    width: 20px;
    height: 20px;
    background: #e9ecef;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #49b964;
    font-size: 12px;
}

.notification-content {
    flex: 1;
}

.notification-text {
    color: #333;
    margin-bottom: 0.5rem;
}

.notification-time {
    color: #6c757d;
    font-size: 0.875rem;
}

.notification-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.accept-btn,
.decline-btn {
    padding: 0.4rem 1rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: #49b964;
    color: white;
}

.accept-btn:hover {
    background: #3a9651;
}

.decline-btn {
    background: #dc3545;
    color: white;
}

.decline-btn:hover {
    background: #bb2d3b;
}

.notification-options {
    color: #6c757d;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.notification-options:hover {
    color: #343a40;
}

.notification-options svg {
    padding: 10px;
    background: transparent;
}

.notification-options .btn-link {
    background: transparent;
}

.notification-options .btn-link:hover {
    background: transparent;
    border: none;
}

.notification-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0.5rem 0;
    background: #e8f5e9;
    color: #2e7d32;
}

.notification-badge.warning {
    background: #fff3e0;
    color: #e65100;
}

.system-update {
    background: #e3f2fd !important;
    color: #1976d2 !important;
}

.event {
    background: #f3e5f5 !important;
    color: #7b1fa2 !important;
}

.payment {
    background: #e8f5e9 !important;
    color: #2e7d32 !important;
}

.document {
    background: #fff3e0 !important;
    color: #e65100 !important;
}

.view-btn,
.remind-btn,
.download-btn,
.upload-btn {
    padding: 0.4rem 1rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #deebfb;
    color: #495057;
    font-size: 13px;
}

.view-btn:hover,
.remind-btn:hover,
.download-btn:hover,
.upload-btn:hover {
    background: #83bbff;
    color: #fff;
}

.view-btn.active,
.remind-btn.active,
.download-btn.active,
.upload-btn.active {
    background: #83bbff;
    color: #fff;
}

.download-btn {
    background: #e3f2fd;
    color: #1976d2;
    font-size: 13px;
}

.download-btn:hover {
    background: #bbdefb;
    color: #1565c0;
}

.upload-btn {
    background: #fff3e0;
    color: #e65100;
    font-size: 13px;
}

.upload-btn:hover {
    background: #ffe0b2;
    color: #ef6c00;
}

.table-upgrade-btn {
    background: #2e105b;
    color: white;
    padding: 6px 12px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.table-upgrade-btn span {
    margin-right: 8px;
}

.mobile-table-card-wrapper .mobile-table-card a {
    text-align: center !important;
}

.table-print-badge {
    background: #008f46;
}

.table-print-badge i {
    color: white;
    display: initial;
    background: transparent;
    border: none;
    font-size: 14px;
}


/* Animation for new notifications */
@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-item.unread {
    animation: slideIn 0.3s ease-out;
}

.notification-wrapper {
    position: relative;
}



.notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4b6e;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.notification-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header h5 {
    margin: 0;
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

.view-all {
    color: #466c13;
    text-decoration: none;
    font-size: 14px;
}

.notification-list-dashboard {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.notification-item:hover {
    background-color: #f8f9fa;
}

.notification-item.unread {
    background-color: #f0f7ff;
}

.notification-icon {
    width: 36px;
    height: 36px;
    background: #eef6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #466c13;
}

.notification-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.notification-time {
    font-size: 12px;
    color: #888;
    display: block;
    margin-top: 3px;
}

/* Notification */




/* upgrade ticket */

.select2-container--default.select2-container--disabled .select2-selection--single {
    background: transparent !important;
}

/* Meeting Icon and Modal Styles */
.meeting-icon-wrapper {
    position: absolute;
    top: 70px;
    right: 15px;
    z-index: 1;

}

.meeting-icon {
    border-radius: 100%;
    background-color: #fff;
    color: #3c3c3c;
    display: grid;
    border: none;
    place-content: center;
    padding: 10px;
    font-size: 25px;
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.15);
}

.meeting-icon i {
    font-size: 18px;
    color: #49b964;
}


/* Meeting List Styles */

.call-options {
    padding: 1rem;
    display: flex;
    gap: 10px;
}

.call-option-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.call-option-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.call-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.call-icon i {
    font-size: 24px;
}

.call-icon.video {
    background: #e5e1ec;
    color: #9575CD;
}

.call-icon.audio {
    background: #e8f5e9;
    color: #2e7d32;
}

.call-info {
    flex: 1;
}

.call-info h6 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.call-info p {
    margin: 0 0 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

.start-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    border: none;
    color: white;
}

.start-btn.video-call {
    background: #9575CD;
    color: white;
}

.start-btn.video-call:hover {
    background: #7255a2;
    color: white;
}

.start-btn.audio-call {
    background: #2e7d32;
    color: white;
}

.start-btn.audio-call:hover {
    background: #1b5e20;
    color: white;
}


.premium-header .btn-close {
    filter: brightness(0) invert(1);
}


.step {
    display: none;
}

.step.active {
    display: block;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.btn-return {
    width: fit-content;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 0px;
    display: block;
}

.ticket-upgrade .success-message {
    margin-bottom: 0px;
    padding: 0px 110px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2eb13f 0%, #0d3d0d 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

/* Current Ticket Display */
.current-ticket {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.upgrade-ticket-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upgrade-btn {
    width: fit-content;
}

.upgrade-ticket-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.upgrade-ticket-details p {
    color: #6b7280;
    font-size: 0.9rem;
}

.ticket-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #108a26;
}

.ticket-upgrade .button-group {
    position: sticky;
    bottom: -15px;
    background: #fff;
    width: 100%;
    padding: 10px 5px;
    box-shadow: none;
}



/* Ticket Selection */
.ticket-options {
    display: grid;
    gap: 1.5rem;
}

.ticket-option {
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.ticket-option:hover {
    border-color: #2eb13f;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.ticket-option.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.ticket-option.selected::before {
    content: '✓';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.ticket-option-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #048718;
}

.ticket-features {
    list-style: none;
    margin-top: 0px;
    padding: 0px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 11px;
}

.ticket-features li {
    display: flex;
    align-items: center;
    color: #0f5219;
    font-size: 12px;
    padding: 5px 9px;
    background: #e7ffeb;
    border-radius: 50px;
    border: 1px solid #34bc3f4a;
}

.ticket-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 600;
    margin-right: 0.5rem;
}

.upgrade-info {
    background: #e7ffeb;
    border: 1px solid #34bc3f;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upgrade-info svg {
      color: #d97706;
  }

  .upgrade-info span {
      color: #319604;
      font-weight: 500;
      font-size: 0.9rem;
  }

  /* Checkout Page */
  .checkout-summary {
      background: #f8fafc;
      border-radius: 0.75rem;
      padding: 1.5rem;
      margin-bottom: 2rem;
  }

  .summary-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem 0;
      border-bottom: 1px solid #e2e8f0;
  }

  .summary-row:last-child {
      border-bottom: none;
      font-weight: 600;
      font-size: 1.1rem;
      color: #1f2937;
  }

  .summary-label {
      color: #6b7280;
  }

  .summary-value {
      font-weight: 500;
  }

  .payment-section {
      margin-bottom: 2rem;
  }

  .payment-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 1rem;
  }


  .form-label {
      display: block;
      margin-bottom: 5px;
      font-weight: 400;
      color: #1f2124;
      font-size: 14px;
  }

  .iti--separate-dial-code .iti__selected-dial-code {
      font-size: 12px !important;
  }

  .iti--allow-dropdown input,
  .iti--allow-dropdown input[type=text],
  .iti--allow-dropdown input[type=tel],
  .iti--separate-dial-code input,
  .iti--separate-dial-code input[type=text],
  .iti--separate-dial-code input[type=tel] {
      font-size: 13px !important;
  }

  .form-input {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 2px solid #e2e8f0;
      border-radius: 0.5rem;
      font-size: 0.95rem;
      transition: border-color 0.2s ease;
  }

  .form-input:focus {
      outline: none;
      border-color: #667eea;
  }

  .form-row {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 1rem;
  }


  .button-group {
      display: flex;
      gap: 5px;
      margin-top: 5px;
  }

  .button-group .btn {
      flex: 1;
  }

  /* Success Page */
  .success-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 2rem;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
  }

  .success-message {
      text-align: center;
  }

  .success-message h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #048718;
      margin-bottom: 1rem;
  }

  .success-message p {
      color: #5f5e5e;
      font-size: 17px;
      margin-bottom: 15px;
  }

  .upgrade-ticket-details-card {
      background: #f8fafc;
      border-radius: 0.75rem;
      padding: 1.5rem;
      margin: 2rem 0;
  }


  .ticket-details-card {
      background: #fefdfd;
      padding: 15px 40px;
      border-radius: 8px;
      border: 1px solid #ebebeb;
      width: fit-content;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 140px;
      text-align: left;
  }

  .final-ticket-price {
      color: #0f9330 !important;
      font-weight: 700;
  }

  .final-ticket-type {
      font-size: 18px;
      font-weight: 600;
  }

  .checkout-form .form-group label {
      margin-bottom: 5px;
      font-size: 15px;
      color: #646464;
      font-weight: 100;
  }

  .validation-message {
      display: none;
      color: #dc2626;
      font-size: 0.95rem;
      font-weight: 500;
  }

  .ticket-upgrade {
      padding: 10px;
      padding-bottom: 0px;

  }

  .ticket-upgrade-scrollable-div {
      max-height: 500px;
      overflow-y: auto;
  }

  .ticket-upgrade .button-group button {
      width: fit-content;
  }

  .ticket-upgrade .step {
      display: none;
  }

  .ticket-upgrade .step.active {
      display: block;
  }

  .ticket-upgrade .ticket-option.selected {
      border: 2px solid green;
      background: #f0fff0;
  }

  /* Upgrade Ticket */



  /* operatesector Selection */
  /* .operatesector-counter {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .operatesector-counter .badge {
            font-size: 0.9rem;
            padding: 8px 12px;
            border-radius: 15px;
            transition: var(--transition);
        }

        .operatesector-selection {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            transition: var(--transition);
        }

        .operatesector-selection.error {
            border-color: #dc3545;
            background-color: rgba(220, 53, 69, 0.05);
        }

        .operatesector-selection.success {
            border-color: #28a745;
            background-color: rgba(40, 167, 69, 0.05);
        }

        .operatesector-btn {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 25px;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            color: #495057;
            cursor: pointer;
            transition: var(--transition);
            user-select: none;
        }

        .operatesector-btn:hover {
            background: #e9ecef;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .operatesector-btn.selected {
            background: var(--gradient);
            border-color: var(--primary-color);
            color: white;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(230, 0, 126, 0.3);
        }

        .operatesector-btn.selected::before {
            content: '✓ ';
            font-weight: bold;
        } */
  /* END operatesector Selection */


  @media (max-width: 1366px) {
      .reg-form-width {
          padding: 30px 50px;
      }

      .table-main-div {
          width: auto;
          overflow: scroll;
      }
  }



  @media (max-width: 992px) {

      .social-register-section h2 {
          font-size: 15px;
          width: 80%;
      }

      .social-btn {
          font-size: 11px;
          font-weight: 300;
      }

      .applied-promo {
          flex-direction: column;
      }

      .ticket-info-to {
          padding: 20px;
      }

      .match-profile-card {
          margin-bottom: 0px;
      }

      .ticket-info-to .badge-fullname {
          font-size: 20px;
          margin-bottom: 20px;
      }

      .ticket-info-ft h4 {
          font-size: 18px;
      }

      .reg-form-width {
          padding: 30px 20px;
      }

      .user-inner img {
          object-position: top;
      }

      .messages-container {
          padding: 15px;
      }

      .visitor_menu {
          justify-content: center;
      }

      .edit-form-inputs label {
          margin-top: 15px;
      }

      /* .table-tab{
        display: none;
    }
     */
      .message.received .message-content {
          margin: 0px;
      }

      .mobile-table-card-wrapper {
          display: block;
      }

      .table-main-div {
          display: none !important;
      }

      .message.sent .message-content {
          margin: 0px;
      }

      .profile-info {
          padding-left: 0px;
      }

      .profile-content h6 {
          width: 80%;
      }

      .user-inner {
          height: 250px;
          width: 100%;
      }

      .modal-profile-body {
          padding: 15px;
      }

      .modal-profile-body {
          flex-direction: column;
          gap: 20px;
      }


      .collapstable table {
          margin-top: 10px;
      }

      .form-workshop h5 {
          font-size: 16px;
      }

      .checkbox-grid label {
          font-size: 13px;
          flex-wrap: wrap;
      }

      .pass-cards {
          padding: 0px 10px;
      }

      #custom-toast {
          right: auto;
          margin: 0px 20px;
      }

      .attendee-header h4 {
          font-size: 18px;
      }

      .categories-list,
      .subitems-list {
          max-height: 100%;
      }

      .registration-text {
          font-size: 18px;
      }

      .attendee-header-ticket-info {
          font-size: 15px;
          text-align: center;
      }

      .attendee-header {
          flex-direction: column;
          gap: 10px;
      }

      .min-height-77 {
          min-height: auto;
      }

      .ticket-info-ft {
          padding: 0px;
      }

      .ticket-info-ft {
          padding: 10px 0px;
      }

      .ticket-form-collaps {
          flex-direction: column;
      }

      .registration-container .step-indicator {
          justify-content: start;
      }

      .visitor-header {
          flex-direction: column-reverse;
          justify-content: center;
          align-items: center;
          gap: 10px;
      }

      .upgrade-btn {
          margin: auto;
      }

      .call-options {
          flex-direction: column;
      }

      .social-icons {
          margin: 0px;
          padding-bottom: 10px;
          gap: 10px;
      }

      .left-top-header-sec-visitor {
          padding: 10px !important;
      }
  }

  @media (max-width: 768px) {
      .form-row {
          grid-template-columns: 1fr;
      }

      .button-group {
          flex-direction: column-reverse;
          gap: 0px;
      }

      .upgrade-ticket-info {
          flex-direction: column;
          gap: 1rem;
          text-align: center;
      }

      .match-profile-card {
          padding: 15px;
      }

      .page-section-title {
          font-size: 20px;
          margin-bottom: 10px;
      }

      .attendee-form {
          border: none;
      }

      .checkout-btn {
          font-size: 14px;
          font-weight: 500;
          padding: 8px 10px;
          width: fit-content;
      }

      .footer .logo-width {
          width: 120px;
      }

      .fixed-checkout-bar {
          padding: 10px;
          z-index: 1000;
          /* Make sure this is below the popup z-index */
      }

      .registration-text {
          font-size: 15px;
      }

      .checkout-btn {
          width: 100%;
      }

      .fixed-checkout-bar {
          padding: 10px 15px;
      }

      .checkout-controls {
          flex-direction: column;
      }

      .total-section {
          width: 100%;
      }

      .checkout-btn {
          width: 100%;
      }

      .checkout-right-aligned {
          flex-direction: column;
          align-items: stretch;
          gap: 10px;
      }

      .promocode-input,
      .total-section,
      .checkout-btn {
          width: 100%;
      }

      .total-section {
          width: 100%;
      }

      .checkout-btn {
          width: 100%;
      }

      .ticket-summary-popup {
          width: 100%;
          max-height: none;
          bottom: 10px;
          left: 0;
          right: 0;
          border-radius: 12px 12px 0 0;
          z-index: 1002;
          box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
      }

      .ticket-summary-content {
          max-height: calc(60vh - 50px);
          overflow-y: auto;
      }

      .ticket-summary-header {
          position: sticky;
          top: 0;
          background: linear-gradient(91deg, #1F2383 -0.01%, #0B0442 99.99%);
          z-index: 1;
          padding: 12px 15px;
      }

      /* Add a semi-transparent overlay behind the popup for better focus */


      .registration-container .step-indicator {
          padding: 8px 0;
          margin-bottom: 5px;
      }

      .registration-container .step-circle {
          width: 32px;
          height: 32px;
          font-size: 14px;
          margin: 0 5px;
          border-width: 2px;
      }

      .registration-container .step-circle.completed::after {
          font-size: 14px;
      }

      .registration-container .step-circle.active {
          font-size: 14px;
          /* Adjusted for consistency */
          transform: scale(1.15);
      }

      .registration-container .step-line {
          max-width: 60px;
          height: 2px;
      }

      /* Adjust form layout if using the two-column (form + badge) layout */
      .attendee-form .row .col-md-8,
      .attendee-form .row .col-md-4 {
          flex: 0 0 100%;
          /* Stack columns */
          max-width: 100%;
      }

      .attendee-form .row .col-md-4 {
          /* The badge column */
          margin-top: 20px;
          /* Add some space when stacked */
      }

      /* Adjust padding for form cards */




      .collaps-ticket-nav .nav-tabs .nav-link {
          font-size: 14px;
          margin-right: 10px;
      }

      .notification-container {
          margin-top: 0px;
          padding: 10px;
      }

      .notification-header {
          flex-direction: column;
          gap: 1rem;
      }

      .notification-actions {
          width: 100%;
          flex-direction: column;
          margin-top: 0px;
      }

      .notification-filter {
          flex: 1;
      }

      .lg-badge-hide {
          display: block !important;
      }

      .sm-badge-hide {
          display: none !important;
      }
  }

  @media (max-width: 480px) {
      .ticket-summary-popup {
          width: 90%;
          margin: auto;
          right: 0;
          left: 0;
          border-radius: 8px 8px 0 0;
      }

      .registration-container .step-indicator {
          padding: 8px 5px;
          /* Add side padding for when it scrolls */
          margin-bottom: 5px;
          overflow-x: auto;
          /* Enable horizontal scrolling */
          /* justify-content: flex-start; /* Optional: if you prefer scroll to start from left */
      }

      /* Webkit scrollbar styling for step indicator */
      .registration-container .step-indicator::-webkit-scrollbar {
          height: 5px;
      }

      .registration-container .step-indicator::-webkit-scrollbar-track {
          background: #f8f9fa;
          border-radius: 10px;
      }

      .registration-container .step-indicator::-webkit-scrollbar-thumb {
          background-color: #0B0442;
          border-radius: 10px;
      }

      .registration-container .step-indicator::-webkit-scrollbar-thumb:hover {
          background-color: #1F2383;
      }

      .registration-container .step-circle {
          width: 30px;
          height: 30px;
          font-size: 12px;
          margin: 0 4px;
          flex-shrink: 0;
          /* Prevent circles from shrinking when scrolling */
      }

      .registration-container .step-circle.completed::after {
          font-size: 12px;
      }

      .registration-container .step-circle.active {
          font-size: 13px;
          /* Keep active slightly more prominent */
          transform: scale(1.1);
      }

      .registration-container .step-line {
          max-width: 25px;
          /* Lines shrink more */
          height: 2px;
          /* flex-shrink: 1; /* Already default, ensures lines shrink */
      }


      .attendee-header h4,
      .summary-header h4 {
          font-size: 16px;
          text-align: center;
      }



      .action-buttons .btn {
          width: 100%;
      }

      .action-buttons .btn-previous {
          order: 2;
          /* Previous button below Continue/Submit */
      }

      .action-buttons .btn-continue,
      .action-buttons .btn-submit {
          order: 1;
      }


      /* Registration Bar at the top */
      .registration-bar {
          padding: 10px 15px;
          flex-direction: column;
          /* Stack items */
          text-align: center;
          gap: 10px;
      }

      .registration-bar .registration-text {
          font-size: 0.8rem;
          /* Smaller text */
          line-height: 1.3;
      }

      .registration-bar .login-btn {
          padding: 8px 15px;
          font-size: 0.9rem;
      }

      .registration-bar .login-icon svg {
          width: 22px;
          height: 22px;
      }

      /* Basic form input sizing for better mobile experience */
      .form-control,
      .select2-container--default .select2-selection--single {
          /* height: 45px; /* Slightly smaller if needed */
          font-size: 14px;
          /* Ensure readability */
      }

      .form-label {
          font-size: 13px;
      }

  }


  .audit-log-filter .filters {
      margin-bottom: 20px;
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      align-items: self-end;
  }

  .audit-log-filter .filter-group {
      display: flex;
      flex-direction: column;
      gap: 5px;
  }

  .audit-log-filter .filter-group label {
      font-size: 12px;
      color: #6c757d;
      font-weight: 500;
  }

  .audit-log-filter .filter-group input,
  .audit-log-filter .filter-group select {
      padding: 8px 12px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 14px;
  }

  .audit-log-filter .filter-btn {
      padding: 8px 15px;
      background: var(--primary-color);
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
  }

  .audit-log-filter .filter-btn:hover {
      background: var(--secondary-color);
  }

  .badge-status.badge-approved-us-hist {
      background: #b4f2b4;
      padding: 2px 5px;
      border-radius: 50px;
      color: #008800;
  }

  .badge-status.badge-pending-us-hist {
      background: #f2f0b4;
      padding: 2px 5px;
      border-radius: 50px;
      color: #b47c11;
  }

  .badge-status.badge-faild-us-hist {
      background: #fcaabd;
      padding: 2px 5px;
      border-radius: 50px;
      color: #9a1f3b;
  }

  .user-history-tabs .nav-link.active {
      background: var(--secondary-color);
      color: white;
  }

  .user-history-tabs .nav-link {
      color: #580041;
  }

  .if-yes {
      font-weight: 600;
  }

  .ps-10-ct {
      padding-left: 10px !important;
  }

  .badge-overlay-after {
      /* filter: blur(7px);
            user-select: none; */
  }

  .tab-cntnt-no-pad {
      padding: 0px;
  }



  /* mobile sidebar */
  #mobileSidebarNav {
      display: none;
  }

  #sidebarNav {
      display: none;
  }

  .side-bar-main-head {
      padding: 10px;
      background: var(--primary-color);
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1202;
  }

  .side-bar-main-head img {
      width: 120px;
  }

  .sidebar-toggle {
      display: none;
      z-index: 1201;
      width: 35px;
      height: 35px;
      background: transparent;
      border: none;
      border-radius: 50%;
      box-shadow: 0 2px 12px #01378822;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: background 0.2s;
      flex-direction: column;
  }


  .sidebar-toggle:focus-within {
      border: none;
      outline: none;
  }

  .sidebar-toggle .toggle-bar {
      display: block;
      width: 19px;
      height: 2px;
      margin: 3px auto;
      background: #ffffff;
      border-radius: 2px;
      transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  }

  /* Responsive */
  @media (max-width: 991px) {
      #mobileSidebarNav {
          display: block;
      }

      .visitor_topright {
          padding-top: 10px;
      }


      #sidebarNav {
          display: block;
      }

      .sidebar-toggle {
          display: flex;
      }

      .sidebar {
          position: fixed;
          top: 0;
          left: -260px;
          width: 240px;
          height: 100vh;
          background: var(--primary-color);
          box-shadow: 2px 0 16px #01378811;
          z-index: 1200;
          transition: left 0.35s cubic-bezier(.4, 0, .2, 1);
      }

      .sidebar.open {
          left: 0;
          top: 30px;
      }

      body.sidebar-open {
          overflow: hidden;
      }

      #sidebarNav ul {
          padding-top: 50px;
      }

      .badgeafterTab {
          min-width: 130px;
      }

      .top-header-visitor-portal {
          display: none;
      }

      .top-header-second-visitor-portal {
          margin-top: 55px;
      }
  }

  /* Animate toggle to X when open */
  .sidebar-toggle.open .toggle-bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
  }

  .sidebar-toggle.open .toggle-bar:nth-child(2) {
      opacity: 0;
  }

  .sidebar-toggle.open .toggle-bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
  }

  .sidebar ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .sidebar ul li a {
      color: white;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .sidebar-logo {
      width: 140px;
      margin: 0 auto 20px auto;
      display: block;
  }

  /* mobile sidebar */

  /* Visitor Portal */






  /* reg cnfirm page */
  /* Footer Placeholder */
  .footer-placeholder {
      height: 200px;
      background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      font-weight: 600;
      text-align: center;
  }

  /* Header Placeholder */
  .header-placeholder {
      height: 120px;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      font-weight: 600;
      text-align: center;
  }

  /* Main Container */
  .main-container {
      max-width: 1500px;
      background: #ffffff;
      display: flex;
      min-height: calc(100vh - 380px);
      gap: 50px;
      padding: 30px;
      border-radius: 15px;
      margin: 0 auto;
  }

  .width-container {
      width: 93%;
      max-width: 1500px;
      margin: 0 auto;
  }

  /* Left Sidebar Container */
  .left-sidebar-container {
      width: 400px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-self: flex-start;
  }

  /* Badge Sidebar */
  .badge-sidebar {
      background: white;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(46, 0, 230, 0.1);
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(230, 0, 126, 0.1);
  }

  .badge-sidebar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(145deg, rgba(230, 0, 126, 0.05) 0%, rgba(251, 202, 25, 0.05) 100%);
      pointer-events: none;
      z-index: 1;
  }

  .badge-preview-header {
      background: var(--gradient);
      color: white;
      padding: 25px 25px;
      text-align: center;
      font-weight: 700;
      font-size: 1.3rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      position: relative;
      overflow: hidden;
      z-index: 2;
      background-image: url(../img/card-footer.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: top;
  }

  .badge-preview-header::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
      0% {
          transform: translateX(-100%) translateY(-100%) rotate(45deg);
      }

      100% {
          transform: translateX(100%) translateY(100%) rotate(45deg);
      }
  }

  .badge-content {
      padding-top: 55px;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: linear-gradient(145deg, #ffffff 0%, #f9f9f9 100%);
      position: relative;
      z-index: 2;
  }

  .qr-code {
      width: 145px;
      height: 145px;
      background: white;
      border: 3px solid #e0e0e0;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .qr-code::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
      border-radius: 12px;
      z-index: -1;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .qr-code:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .qr-code:hover::before {
      opacity: 1;
  }

  .badge-id {
      font-size: 0.75rem;
      color: var(--text-gray);
      margin-bottom: 18px;
      padding: 4px 12px;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border-radius: 15px;
      border: 1px solid #dee2e6;
      font-weight: 500;
      letter-spacing: 0.5px;
  }

  .badge-name {
      font-size: 1.4rem;
      font-weight: 800;
      color: #333;
      text-align: center;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 1px;
      background: linear-gradient(135deg, #333 0%, #555 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .badge-job-title {
      font-size: 1rem;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 6px;
      font-weight: 600;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
      text-transform: uppercase;
  }

  .badge-company {
      font-size: 20px;
      color: var(--text-gray);
      text-align: center;
      margin-bottom: 22px;
      font-weight: 600;
      text-transform: uppercase;
  }

  .visitor-badge {
      background: var(--gradient);
      color: white;
      padding: 15px 25px;
      text-align: center;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0;
      width: 100%;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(106, 151, 175, 0.43);
      background-image: url(../img/card-footer.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: top;
  }

  .visitor-badge::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      animation: badgeShine 4s infinite;
  }

  @keyframes badgeShine {
      0% {
          transform: translateX(-100%) translateY(-100%) rotate(45deg);
      }

      100% {
          transform: translateX(100%) translateY(100%) rotate(45deg);
      }
  }

  .badge-category-label {
      font-size: 0.9rem;
      font-weight: 400;
      opacity: 0.9;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .visitor-badge>div:last-child {
      font-size: 2.1rem;
      font-weight: 900;
      letter-spacing: 4px;
      line-height: 40px;
  }

  /* Badge Note - Outside the badge */
  .badge-note-external {
      font-size: 0.8rem;
      color: var(--text-gray);
      text-align: center;
      line-height: 1.4;
      padding: 2px 1px;
  }

  .badge-note-external strong {
      color: var(--primary-color);
  }

  /* Right Content Area */
  .content-area {
      flex: 1;
      background: white;
      border-radius: 15px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      overflow: hidden;
  }

  /* Welcome Section */
  .welcome-section {
      padding: 20px 10px;
      background: #ffffff;
      border-bottom: 2px solid rgba(203, 203, 203, 0.1);
      margin-bottom: 20px;
      border-radius: 15px 15px 0 0;
  }

  .welcome-title {
      font-size: 1.6rem;
      font-weight: 700;
      color: #333;
      margin-bottom: 8px;
  }

  .welcome-text {
      color: var(--text-gray);
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
  }

  /* Event Information Section */
  .event-info-section {
      padding: 0px 30px 20px;
      background: white;
      border-bottom: 20px solid rgb(245 246 247);
      margin-bottom: 20px;
  }

  .event-info-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: start;
  }

  .event-details {
      /* Left side content */
      border-right: 1px solid rgba(230, 0, 126, 0.2);
      padding-right: 30px;
  }

  .event-actions-right {
      flex-direction: column;
      gap: 12px;
      align-items: flex-end;
  }

  .event-info-title {
      font-size: 1rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 5px;
  }

  .event-date-time {
      font-size: 1rem;
      font-weight: 700;
      color: #333;
      margin-bottom: 25px;
  }

  .event-location {
      color: var(--primary-color);
      font-size: 0.9rem;
      font-weight: 500;
      display: flex;
      /* align-items: center; */
  }

  .event-location svg {
      margin-right: 8px;
      margin-top: 6px;
  }

  .event-location a {
      color: var(--primary-color);
      text-decoration: none;
      transition: all 0.3s ease;
      text-transform: uppercase;
  }

  .event-location a:hover {
      color: var(--primary-color);
      text-decoration: underline;
      transform: translateX(3px);
  }

  .event-actions {
      flex-direction: column;
      gap: 12px;
  }

  .action-link {
      color: var(--primary-color);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      margin-top: 5px;
      text-transform: uppercase;
  }

  .action-link:hover {
      color: var(--primary-color);
      text-decoration: underline;
      transform: translateX(5px);
  }

  .add-calendar-link {
      color: var(--primary-color);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 15px;
      transition: all 0.3s ease;
  }

  .add-calendar-link:hover {
      color: var(--primary-color);
      text-decoration: underline;
      transform: translateX(5px);
  }

  /* Badge Instructions */
  .badge-instructions {
      padding: 0px 30px;
      background: white;
      border-bottom: 20px solid rgb(245 246 247);
  }

  .instruction-header {
      display: flex;
      align-items: center;
      color: #dc3545;
      font-weight: 700;
      font-size: 1.1rem;
      gap: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .instruction-header i {
      margin-right: 0;
      font-size: 1.2rem;
  }

  .instruction-content {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
      margin-top: 10px;
      margin-bottom: 10px;
  }

  .instruction-item {
      background: rgb(250 250 250);
      padding: 15px;
      border-radius: 12px;
      border-left: 4px solid var(--secondary-color);
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
      height: 100%;
  }

  .instruction-item:hover {
      background: #e9ecef;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .instruction-item h6 {
      font-weight: 700;
      color: #333;
      margin-bottom: 5px;
      font-size: 16px;
      line-height: 1.3;
  }

  .instruction-item p {
      color: var(--text-gray);
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      font-weight: 400;
  }

  .instruction-item a {
      color: #0066cc;
      text-decoration: none;
      font-weight: 500;
  }

  .instruction-item a:hover {
      text-decoration: underline;
  }

  /* Promotional Banners */
  .promo-banners {
      padding: 30px 40px;
      background: white;
      margin-bottom: 20px;
  }

  .banner-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 15px;
  }

  .banner-item {
      height: 120px;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .banner-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .banner-item.banner-1 {
      background: linear-gradient(135deg, #FBCA19 0%, #f39c12 100%);
      font-size: 0.85rem;
  }

  .banner-item.banner-2 {
      background: linear-gradient(135deg, #E6007E 0%, #c73650 100%);
  }

  .banner-item.banner-3 {
      background: linear-gradient(135deg, #E6007E 0%, #8e44ad 100%);
      font-size: 0.9rem;
  }

  .banner-content {
      padding: 15px;
      text-align: center;
  }

  .banner-attending {
      font-size: 0.75rem;
      margin-bottom: 5px;
      opacity: 0.9;
  }

  .banner-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 5px;
  }

  .banner-subtitle {
      font-size: 0.7rem;
      opacity: 0.9;
  }

  /* Social and App Section */
  .social-app-section {
      background: white;
      margin-top: auto;
      border-bottom: 20px solid rgb(245 246 247);
  }

  .social-app-grid {
      padding: 20px;
  }

  .social_network {
      background: #fff;
      border: 1px solid #E2E2E2;
      border-radius: 25px;
      overflow: hidden;
      min-height: 350px;
  }

  .b-cntnt {
      padding: 10px;
  }

  .social-section {
      /* padding: 20px 30px; */
      background: white;
      min-height: 270px;
      /* border-right: 1px solid #e9ecef; */
  }

  .app-section {
      /* padding: 30px 40px; */
      background: white;
  }

  /* Section Header Styles */
  .section-header {
      height: 150px;
      overflow: hidden;
      margin-bottom: 20px;
      position: relative;
      background: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
      font-size: 0.9rem;
      font-weight: 500;
  }

  .section-header img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .section-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 15px;
  }

  .section-description {
      color: var(--text-gray);
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 10px;
  }

  .aftr-reg-head-1 {
      background-image: url(../img/reg-cnf-header1.png);
      height: 127px;
      width: 100%;
      background-position: center;
      background-size: cover;
      background-position: center;
      display: flex;
      padding: 20px;
      align-items: self-start;
      flex-direction: column;
      justify-content: center;
      background-repeat: no-repeat;
  }

  .after-reg-head-height .aftr-reg-head-1 {
      height: 110px !important;
  }

  .aftr-reg-head-2 {
      background-image: url(../img/reg-cnf-header3.png);
  }

  .aftr-reg-head-3 {
      background-image: url(../img/reg-cnf-header4.png);
  }



  .ad-banner {
      height: 100%;
      width: 100%;
      background: url(../img/add-banner.png);
      background-repeat: no-repeat !important;
      background-position: bottom !important;
      background-size: cover !important;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border-radius: 25px;
      transition: all 0.3s ease;
  }

  .ad-banner::after {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: linear-gradient(138deg, rgba(0, 0, 0, 0) 70% 40%, #000 100%);
      transition: opacity 0.3s ease;
  }

  .banner-arrow-icon {
      position: absolute;
      bottom: 20px;
      right: 20px;
      height: 30px;
      width: 30px;
      border-radius: 100%;
      background: #ffffff14;
      border: 1px solid #ffffff57;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      z-index: 1;
      transition: all 0.4s ease;
      cursor: pointer;
  }

  /* Banner box hover effects */
  .ad-banner:hover {
      transform: scale(1.02);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .ad-banner:hover::after {
      opacity: 0.8;
  }

  .ad-banner:hover .banner-arrow-icon {
      background: #ffffff35;
      border-color: #ffffff90;
      transform: scale(1.1) translateX(8px);
      box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
  }

  /* Arrow icon animation */
  .banner-arrow-icon svg,
  .banner-arrow-icon i,
  .banner-arrow-icon::before {
      transition: transform 0.4s ease;
  }

  .ad-banner:hover .banner-arrow-icon svg,
  .ad-banner:hover .banner-arrow-icon i,
  .ad-banner:hover .banner-arrow-icon::before {
      transform: translateX(4px);
  }

  .ad-banner-2 {
      background: url(../img/add-banner-2.png);
  }

  .banner-arrow-icon a {
      font-size: 20px;
      color: var(--white-color);
  }


  .aftr-reg-head-1 h4 {
      color: #061742;
      font-weight: 700;
      font-size: 14px;
  }

  .aftr-reg-head-1 h4 span {
      font-weight: 300;
  }

  .aftr-reg-head-1 button {
      height: 35px;
      background-color: var(--white-color);
      border-radius: 8px;
      color: var(--black-color);
      font-weight: 600;
      text-transform: uppercase;
      font-size: 14px;
      border: none;
      padding: 0px 15px;

  }


  .social-buttons {
      display: flex;
      gap: 1px;
      flex-wrap: wrap;
  }

  .social-btn {
      padding: 10px;
      border-radius: 25px;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      font-size: 11px;
  }

  .linkedin-btn {
      background: #0077b5;
      color: white;
  }

  .facebook-btn {
      background: #1877f2;
      color: white;
  }

  .social-btn:hover {
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .app-buttons {
      display: flex;
      gap: 3px;
      flex-wrap: wrap;
  }

  .app-btn {
      width: 85px;
      border-radius: 8px;
      transition: transform 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .app-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  /* Your Details Section */
  .details-section {
      background: white;
      padding: 10px 10px;
      border-bottom: 20px solid rgb(245 246 247);
  }

  .details-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 1px solid #e9ecef;
  }

  .details-title {
      font-size: 1.6rem;
      font-weight: 700;
      color: #333;
      margin: 0;
  }

  .edit-btn {
      background: var(--primary-color);
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }



  .edit-btn:hover {
      transform: translateY(-2px);
  }

  .details-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px 40px;
      margin-bottom: 25px;
  }

  .detail-field {
      display: flex;
      flex-direction: column;
      width: 100%;
  }

  .detail-field.full-width {
      grid-column: 1 / -1;
  }

  .detail-label {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 2px;
      font-weight: 500;
  }

  .detail-value {
      color: #333;
      font-size: 13px;
      font-weight: 500;
      /* padding: 12px 0; */
      border-bottom: 1px solid transparent;
      transition: all 0.3s ease;
  }

  .detail-input {
      color: #333;
      font-size: 1rem;
      font-weight: 500;
      padding: 12px 15px;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      background: #f8f9fa;
      transition: all 0.3s ease;
      display: none;
  }

  .detail-input:focus {
      outline: none;
      border-color: var(--primary-color);
      background: white;
      box-shadow: 0 0 0 3px rgb(38 33 219 / 17%);
  }

  .detail-field.editing .detail-value {
      display: none;
  }

  .detail-field.editing .detail-input {
      display: block;
      width: 100%;
  }

  .address-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      margin-bottom: 25px;
  }

  .interests-section {
      margin-top: 30px;
      padding-top: 25px;
      border-top: 1px solid #e9ecef;
  }

  .interests-title {
      color: #333;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 20px;
  }

  .interests-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 20px;
  }

  .interest-tag {
      background: var(--gradient);
      color: white;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
  }

  .interest-tag:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(230, 0, 126, 0.3);
  }

  .submit-section {
      background: linear-gradient(135deg, #231ead 0%, #748d52 100%);
      padding: 25px 40px;
      text-align: left;
      width: 100%;
  }

  .submit-btn {
      background: var(--secondary-color);
      color: white;
      border: none;
      padding: 5px 16px;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .submit-btn:hover {
      background: #333;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .vis-badge-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
  }



  /* form visa section */
  .visa-section {
      font-size: 16px;
      color: #212529;
  }

  #visaDetails {
      margin-top: 20px;
  }

  .question {
      display: block;
      margin-bottom: 10px;
      font-weight: 500;
  }

  .radio-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .radio-option {
      position: relative;
      padding-left: 28px;
      cursor: pointer;
      user-select: none;
      display: flex;
      align-items: center;
      color: #1c1c1c;
      width: fit-content;
  }

  .radio-option input[type="radio"] {
      position: absolute;
      opacity: 0;
      cursor: pointer;
  }

  .custom-radio {
      position: absolute;
      left: 0;
      top: 3px;
      height: 16px;
      width: 16px;
      background-color: white;
      border: 2px solid #c0c0c0;
      border-radius: 50%;
      box-sizing: border-box;
  }

  .radio-option input:checked~.custom-radio {
      border-color: var(--primary-color);
  }

  .radio-option input:checked~.custom-radio::after {
      content: "";
      position: absolute;
      top: 2.5px;
      left: 2.5px;
      width: 8px;
      height: 8px;
      background-color: var(--primary-color);
      border-radius: 50%;
  }

  .visa-details {
      display: none;

  }

  .visa-details-wrapper {
      margin-top: 15px;
      padding: 15px;
      border: 1px solid #ddd;
      background-color: #f9f9f9;
      border-radius: 6px;
  }

  .passport-label {
      font-size: 13px;
      font-weight: 300;
  }

  /* form visa section */



  /* question */
  .question-label {
      display: block;
      margin-bottom: 10px;
      font-weight: 500;
      font-size: 16px;
      color: #333;
      margin: 0px;
  }

  .question-label small {
      font-size: 13px;
      font-weight: 300;
  }

  .question-block {
      display: flex;
      gap: 50px;
      align-items: center;
      margin: 10px 0px;
      margin-top: 20px;
  }

  .radio-options {
      display: flex;
      gap: 20px;
      align-items: center;
  }

  .radio-item {
      position: relative;
      padding-left: 26px;
      cursor: pointer;
      font-size: 16px;
      user-select: none;
      color: #333;
  }

  .radio-item input[type="radio"] {
      position: absolute;
      opacity: 0;
      cursor: pointer;
  }

  .custom-radio {
      position: absolute;
      left: 0;
      top: 3px;
      height: 16px;
      width: 16px;
      background-color: white;
      border: 2px solid #999;
      border-radius: 50%;
  }

  .radio-item input:checked~.custom-radio {
      border-color: var(--primary-color);
  }

  .radio-item input:checked~.custom-radio::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 8px;
      height: 8px;
      background-color: var(--primary-color);
      border-radius: 50%;
  }

  /* question */


  .checkbox-group label.title {
      font-weight: bold;
      display: block;
      margin-bottom: 15px;
      font-size: 18px;
  }

  .checkbox-item {
      margin-bottom: 10px;
  }

  .checkbox-item input[type="checkbox"] {
      margin-right: 5px;
      margin-top: 3px;
  }

  .checkbox-item {
      display: flex;
      align-items: self-start;
  }

  .checkbox-item label {
      font-size: 13px;
  }




  /* new style*/

  .service-wizard-header {
      background: var(--gradient);
      color: white;
      border-bottom: none;
      padding: 1.25rem 1.5rem;
  }

  .service-wizard-header h5 {
      font-size: 16px;
      font-weight: 600;
      margin: 0;
      color: white;
  }

  .service-wizard-header .btn-close {
      filter: invert(1);
      opacity: 0.8;
  }

  .service-wizard-body {
      padding: 10px;
      background: #fafbfc;
      max-height: 75vh;
      overflow-y: scroll !important;
      overflow-x: hidden;
  }

  .service-category-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 1.25rem;
      padding: 0.75rem 1rem;
      background: white;
      border-radius: 0.5rem;
      border-left: 4px solid var(--primary-color);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .selection-counter-outr {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 5px;
  }

  .selection-counter {
      background: linear-gradient(135deg, #dedfff, #ffffff);
      border: 1px solid var(--primary-color);
      border-radius: 0.5rem;
      padding: 5px 10px;
      margin-bottom: 1.25rem;
      font-size: 0.95rem;
      color: #495057;
      text-align: left;
  }

  .selection-counter .badge {
      font-size: 0.9rem;
      padding: 0.5rem 1rem;
      font-weight: 600;
      border-radius: 2rem;
      background-color: var(--primary-color) !important;
  }

  /* Enhanced service grid for better visibility */
  .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
      max-height: 50vh;
      overflow-y: scroll;
      padding: 0.5rem;
      background: white;
      border-radius: 0.5rem;
      border: 1px solid #e9ecef;
  }

  .service-wizard-modal {
      z-index: 99999;
  }


  /* Mobile responsive */
  @media (max-width: 768px) {
      .service-wizard-modal .modal-dialog {
          max-width: 98%;
          margin: 0.25rem auto;
      }

      .service-grid {
          grid-template-columns: 1fr;
          gap: 0.75rem;
          max-height: 60vh;
      }

      .service-wizard-body {
          padding: 1rem;
          max-height: 85vh;
      }
  }

  @media (max-width: 576px) {
      .selection-counter-outr {
          display: block;
      }

      .pro-select-label {
          display: block;
      }
  }

  /* Enhanced service item styling */
  .service-item {
      background: white;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      padding: 5px 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      min-height: 40px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .service-item:hover {
      box-shadow: 0 4px 10px rgb(0 0 0 / 11%);
      transform: translateY(-2px);
  }

  .service-item.selected {
      background: var(--gradient);
      color: #FFF;
      box-shadow: 0 6px 20px rgb(141 141 141 / 22%);
      padding-right: 35px;
      /* border: 1px solid  var(--primary-color); */
  }

  .service-item.selected::after {
      content: "✓";
      position: absolute;
      top: 10px;
      right: 0.75rem;
      font-weight: bold;
      font-size: 10px;
      background: var(--white-color);
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
  }

  /* Remove service-code styles since we're not using codes */
  .service-code {
      display: none;
  }

  .service-name {
      font-size: 12px;
      color: #4a4a4a;
      font-weight: 500;
      line-height: normal;
      flex: 1;
      padding-right: 10px;
  }

  .service-item.selected .service-name {
      color: #fff;
      font-weight: 600;
  }

  .wizard-buttons {
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      padding: 5px 10px;
      border-top: 1px solid #dee2e6;
      display: flex;
      justify-content: end;
      align-items: center;
      gap: 5px;
  }

  @media (max-width: 576px) {
      .wizard-buttons {
          flex-direction: column;
          gap: 0.75rem;
      }

      .wizard-buttons button {
          width: 100%;
      }
  }

  .btn-wizard-primary {
      background: var(--gradient);
      border: none;
      color: white;
      padding: 0.75rem 2rem;
      border-radius: 0.5rem;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
  }

  .btn-wizard-secondary {
      background: #6c757d;
      border: none;
      color: white;
      padding: 10px 20px;
      border-radius: 5px;
  }

  .btn-wizard-primary:hover {
      transform: translateY(-2px);
      color: white;
  }

  .btn-wizard-secondary {
      background: white;
      border: 2px solid #3a3c3d;
      color: #3a3c3d;
      padding: 0.75rem 2rem;
      border-radius: 0.5rem;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
  }

  .btn-wizard-secondary:hover {
      background: #6c757d;
      color: white;
      transform: translateY(-2px);
  }

  /* Enhanced selected services preview */
  .selected-services-preview {
      background: white;
      border: 2px solid #a4a4a4;
      border-radius: 8px;
      padding: 10px;
      margin-top: 1.5rem;
      max-height: 200px;
      overflow-y: auto;
      box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
  }

  .selected-services-preview h6 {
      color: #000;
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  /* Enhanced tag styling */
  .selected-service-tag {
      display: inline-block;
      background: #868686;
      color: white;
      padding: 5px 7px;
      border-radius: 2rem;
      font-size: 11px;
      margin: 0.25rem;
      font-weight: 500;
      transition: all 0.2s ease;
      cursor: default;
      border: none;
      box-shadow: 0 2px 6px rgba(40, 167, 69, 0.2);
      position: relative;
      padding-right: 24px;
      /* Make room for remove button */
  }

  .selected-service-tag.main-service-tag {
      background: var(--primary-color);
      font-weight: 600;
      margin-bottom: 2px;
      display: block;
      /* Make main service take full width of group */
  }

  .selected-service-tag.sub-category-tag {
      background: #6f42c1;
      /* Purple for sub-categories */
      margin-left: 8px;
      /* Indent sub-categories */
      font-size: 11px;
      display: block;
      margin-bottom: 1px;
  }

  .selected-service-tag.orphaned-sub-tag {
      background: #dc3545;
      /* Red for orphaned sub-categories */
      margin: 2px;
  }

  .service-group {
      display: inline-block;
      margin: 4px 8px 8px 0;
      border: 1px solid rgba(34, 30, 172, 0.2);
      border-radius: 8px;
      padding: 4px;
      background: rgba(34, 30, 172, 0.05);
      vertical-align: top;
  }

  .selected-service-tag:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  }


  .service-icon {
      margin-right: 4px;
      font-size: 10px;
  }

  .remove-service-btn {
      position: absolute;
      right: 4px;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.3);
      color: white;
      border: none;
      border-radius: 50%;
      width: 16px;
      height: 16px;
      font-size: 12px;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s ease;
  }

  .remove-service-btn:hover {
      background: rgba(255, 255, 255, 0.5);
  }

  /* Enhanced search functionality */
  .service-search {
      margin-bottom: 10px;
  }

  .service-search input {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 2px solid #e9ecef;
      border-radius: 0.5rem;
      font-size: 0.95rem;
      background: white;
      transition: all 0.3s ease;
  }

  .service-search input:focus {
      outline: none;
      border-color: var(--secondary-color);
      box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
      background: #f8f9fa;
  }

  /* Empty state enhancement */
  .empty-services {
      text-align: center;
      padding: 3rem 2rem;
      color: #6c757d;
      font-size: 1rem;
      background: white;
      border-radius: 0.5rem;
      border: 2px dashed #e9ecef;
  }

  /* Enhanced select all controls */
  .select-all-controls {
      display: flex;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
      justify-content: center;
  }

  .btn-select-all,
  .btn-clear-all {
      background: white;
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
      padding: 0.5rem 1.25rem;
      border-radius: 0.5rem;
      font-size: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 600;
  }

  .btn-select-all:hover,
  .btn-clear-all:hover {
      background: var(--primary-color);
      color: white;
      transform: translateY(-2px);
  }

  /* Scrollbar styling for better UX */
  .service-grid::-webkit-scrollbar,
  .selected-services-preview::-webkit-scrollbar,
  .service-wizard-body::-webkit-scrollbar {
      width: 8px;
  }

  .service-grid::-webkit-scrollbar-track,
  .selected-services-preview::-webkit-scrollbar-track,
  .service-wizard-body::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 4px;
  }

  .service-grid::-webkit-scrollbar-thumb,
  .selected-services-preview::-webkit-scrollbar-thumb,
  .service-wizard-body::-webkit-scrollbar-thumb {
      background: #d8d8d8;
      border-radius: 4px;
  }

  .service-grid::-webkit-scrollbar-thumb:hover,
  .selected-services-preview::-webkit-scrollbar-thumb:hover,
  .service-wizard-body::-webkit-scrollbar-thumb:hover {
      background: #0056b3;
  }

  /* Interest button enhancement to show service count */
  .interest-btn.has-services::after {
      content: "";
      position: absolute;
      top: -8px;
      right: -8px;
      background: linear-gradient(135deg, #28a745, #20c997);
      color: white;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      font-size: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
  }

  .interest-btn {
      position: relative;
  }

  /* Updated: Only show services button if services are available */
  .interest-btn.selected.has-services-available .select-services-btn {
      display: inline-block;
  }

  .interest-btn.selected:not(.has-services-available) .select-services-btn {
      display: none;
  }

  /* Show "No services available" text for selected buttons without services */
  .no-services-indicator {
      font-size: 9px;
      color: #ffffff;
      background: transparent;
      padding: 0;
      border-radius: 0;
      white-space: nowrap;
      font-weight: 400;
      opacity: 0.8;
      font-style: italic;
      display: none;
  }

  .interest-btn.selected:not(.has-services-available) .no-services-indicator {
      display: block;
  }

  .interest-btn.has-services::after {
      /* content: attr(data-service-count) ' services'; */
      content: attr(data-service-count);
      font-size: 10px;
      background: #28a745;
      color: var(--white-color);
      padding: 2px 6px;
      border-radius: 10px;
      position: absolute;
      top: -13px;
      right: -13px;
      min-width: 20px;
      text-align: center;
      font-weight: bold;
      z-index: 1;
      width: fit-content;
  }

  .interest-btn.selected::before {
      display: none;
  }





  /* Complete Floating Badge Preview Styles */


  .form-right-col {
      position: sticky;
      top: 10px;
      transition: all 0.3s ease;
  }

  /* Floating state - maintains original dimensions */
  .badge-preview-card.floating {
      position: fixed;
      top: 5px;
      /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0); */
      animation: floatIn 0.4s ease-out;
      /* Width will be set by JavaScript to maintain original size */
  }

  /* Enhanced shadow when sticky */
  /* .badge-preview-card.is-sticky {
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0);
  } */

  /* Smooth entry animation */
  @keyframes floatIn {
      from {
          transform: translateY(-20px);

      }

      to {
          transform: translateY(0);

      }
  }

  /* Smooth exit animation */
  @keyframes floatOut {
      from {
          transform: translateY(0);

      }

      to {
          transform: translateY(-20px);

      }
  }

  /* Placeholder to maintain layout */
  .badge-preview-placeholder {
      height: 0;
      width: 100%;
      /* transition: height 0.3s ease-out; */
      opacity: 0;
  }

  .badge-preview-placeholder.active {
      opacity: 1;
      /* Height will be set by JavaScript */
  }


  .pro-select-label {
      font-size: 12px;
  }

  .field-highlight {
      animation: highlightFieldFlash 0.4s ease-in-out 2;
      /* fast and flashes twice */
  }

  @keyframes highlightFieldFlash {
      0% {
          background-color: #ffffff;
      }

      50% {
          background-color: #fbf7e1;
      }

      100% {
          background-color: #ffffff;
      }
  }


  .visa-modal {
      overflow: auto !important;
      max-height: 100% !important;
  }

  .visa-wizard-modal {
      overflow: auto !important;
  }

  .modal-dialog-scrollable .modal-content {
      overflow: auto !important;
  }

  .visa-sep-form-wrapper {
      padding: 60px 0px;
  }


  .visa-sep-form-wrapper .wizard-buttons {
      background: transparent;
      border: none;
  }

  @keyframes highlightField {
      0% {
          background-color: transparent;
      }

      50% {
          background-color: rgba(34, 30, 172, 0.1);
      }

      100% {
          background-color: transparent;
      }
  }




  /* language selector */
  .lang-box {
      position: relative;
      width: auto;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
      cursor: pointer;
      font-family: "Poppins", sans-serif;

  }

  .lang-selected {
      padding: 4px 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .lang-selected span {
      display: flex;
      align-items: center;
      gap: 10px;
      color: white;
  }

  .lang-selected img {
      width: 20px;
      height: 14px;
  }

  .lang-dropdown {
      position: absolute;
      top: 110%;
      left: 0;
      right: 0;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      display: none;
      z-index: 10;
      max-height: 250px;
      overflow-y: auto;
  }

  .lang-dropdown::-webkit-scrollbar {
      width: 5px;
      /* Scrollbar width */
  }

  .lang-dropdown::-webkit-scrollbar-track {
      background: #f1f1f1;
      /* Track background */
      border-radius: 0px;
  }

  .lang-dropdown::-webkit-scrollbar-thumb {
      background: #00a76f;
      /* Thumb color */
      border-radius: 0px;
  }

  .lang-dropdown::-webkit-scrollbar-thumb:hover {
      background: #007c55;
      /* Thumb color on hover */
  }

  /* Firefox */
  .lang-dropdown {
      scrollbar-width: thin;
      /* Scrollbar width */
      scrollbar-color: #a01612 #f1f1f1;
      /* Thumb color | Track color */
  }

  .lang-dropdown.open {
      display: block;
  }

  .lang-item {
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      transition: background 0.2s;
  }

  .lang-item:hover {
      background: #f3f3f3;
  }

  .lang-item img {
      width: 20px;
      height: 14px;
  }

  .arrow {
      transition: transform 0.3s ease;
  }

  .arrow.rotate {
      transform: rotate(180deg);
  }

  /* language selector */



  /* promocode box */

  .reg-form-promodiv {
      position: relative;
      background: linear-gradient(91deg, #28993e -0.01%, #134122 99.99%);
      padding: 20px 40px;
      border-radius: 15px;
      background-image: url(../img/card-footer.jpg);
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      margin-bottom: 15px;
      overflow: hidden;
      width: 100%;
  }

  .reg-form-promodiv::before {
      position: absolute;
      height: 40px;
      width: 40px;
      background-color: #fff;
      border-radius: 100%;
      left: -20px;
      top: 50%;
      transform: translateY(-50%);
      content: "";
  }

  .reg-form-promodiv::after {
      position: absolute;
      height: 40px;
      width: 40px;
      background-color: #fff;
      border-radius: 100%;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      content: "";
  }


  .reg-form-promodiv input {
      background: transparent;
      height: 50px;
      width: 100%;
      border: none;
      outline: none;
      padding-left: 20px;
      border-radius: 5px;
      color: white;
      border: 2px dashed #ffffff9c !important;
      font-weight: 600;
      margin-top: 15px;
  }

  .reg-form-promodiv input::placeholder {
      color: white !important;
      opacity: 0.9;
      font-weight: 200;
  }

  .promo-bg-btn {
      background: white !important;
      color: #1a5b2b !important;
  }

  .reg-form-promodiv h6 {
      color: white;
      font-weight: 500;
      margin-bottom: 10px;
  }

  .reg-form-promodiv-inner {
      position: relative;
      z-index: 999;
  }

  .promo_error {
      font-size: 14px;
      color: #fff;
      margin: 3px 0px;
  }

  .promo-bg-btn {
      background: #ffffff !important;
      color: #931314 !important;
      display: flex;
      align-items: center;
      gap: 5px;
      justify-content: center;
      height: 40px;
      border: none;
      width: 100%;
      margin-top: 20px;
      border-radius: 5px;
  }

  /* promo validate button */
  /* iOS-style spinner */
  .ios-spinner {
      position: relative;
      width: 20px;
      height: 20px;
  }

  .ios-spinner div {
      transform-origin: 10px 10px;
      animation: ios-spinner-fade 1.2s linear infinite;
  }

  .ios-spinner div:after {
      content: " ";
      display: block;
      position: absolute;
      top: 2px;
      left: 9px;
      width: 2px;
      height: 6px;
      border-radius: 20%;
      background: var(--primary-color);
  }

  .ios-spinner div:nth-child(1) {
      transform: rotate(0deg);
      animation-delay: -1.1s;
  }

  .ios-spinner div:nth-child(2) {
      transform: rotate(45deg);
      animation-delay: -1s;
  }

  .ios-spinner div:nth-child(3) {
      transform: rotate(90deg);
      animation-delay: -0.9s;
  }

  .ios-spinner div:nth-child(4) {
      transform: rotate(135deg);
      animation-delay: -0.8s;
  }

  .ios-spinner div:nth-child(5) {
      transform: rotate(180deg);
      animation-delay: -0.7s;
  }

  
  .ios-spinner div:nth-child(6) {
      transform: rotate(225deg);
      animation-delay: -0.6s;
  }

  .ios-spinner div:nth-child(7) {
      transform: rotate(270deg);
      animation-delay: -0.5s;
  }

  .ios-spinner div:nth-child(8) {
      transform: rotate(315deg);
      animation-delay: -0.4s;
  }

  .summery-spinner div::after {
    background: white;
  }

  

  @keyframes ios-spinner-fade {
      0% {
          opacity: 1;
      }

      100% {
          opacity: 0;
      }
  }

  #confetti-canvas {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      width: 100%;
      height: 100%;
      z-index: 999;
  }

  /* promo validate button */

  /* promocode box */











  /* Responsive handling */





  /* Smooth scroll behavior */

  /* Hover effect when floating */
  .badge-preview-card.floating:hover {
      transform: translateY(-2px);
  }

  .clickable-area {
      cursor: pointer;
      padding: 15px;
      border-radius: 8px;
      margin-bottom: 15px;
      transition: background-color 0.2s ease;
      border: 1px solid transparent;
      position: relative;
  }

  .clickable-area:hover {
      background-color: rgba(110, 166, 185, 0.17);
      border-color: rgb(110, 166, 185);
  }

  .clickable-label {
      cursor: pointer;
      width: 100%;
      margin: 0;
      padding-left: 5px;
      display: block;
  }

  .clickable-label a {
      pointer-events: auto;
      /* Ensure links remain clickable */
      text-decoration: none;
      color: var(--primary-color);
  }

  .clickable-label a:hover {
      color: var(--secondary-color);
      cursor: pointer;
  }

  /* new style*/





  .dropdown-flag img {
      width: 20px;
      height: 14px;
      object-fit: cover;
  }

  .dropdown-flag .dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 6px 12px;
      border-radius: 10px;
      border: 1px solid #ccc;
  }



  /* reg summary */
  .reg-summary-main {
      max-width: 70%;
      margin: 0 auto;
      background-color: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .reg-summary-header {
      background-color: #dc2626;
      color: white;
      padding: 15px 20px;
      font-size: 18px;
      font-weight: bold;
  }

  .reg-summary-content {
      padding: 20px;
  }

  .reg-summary-workshop {
      margin-bottom: 20px;
  }

  .reg-summary-pass-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid #eee;
  }

  .reg-summary-pass-item:last-child {
      border-bottom: none;
  }

  .reg-summary-pass-item h4{
    text-transform: uppercase;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0px;
  }

  .offer-pr-cut{
    font-size: 12px !important; 
    text-align: right;
    text-decoration: line-through;
    display: flex;
    flex-direction: column;
    font-weight: 400 !important;
  }

  .reg-summary-pass-name {
      color: #333;
      font-size: 14px;
  }

  .reg-summary-pass-price {
      color: #666;
      font-size: 15px;
      font-weight: 700;
  }

  .promo-box {
      border: 1px dashed #86c98d;
      background-color: #f5f5f5;
      padding: 15px;
      border-radius: 5px;
      max-width: 100%;
  }

  .promo-label {
      color: #dc2626;
      font-weight: bold;
      font-size: 14px;
      display: block;
      margin-bottom: 8px;
  }

  .promo-input-group {
      display: flex;
      align-items: center;
  }

  .promo-input {
      flex: 1;
      padding: 10px 15px;
      border: 1px solid #ccc;
      border-radius: 6px 0 0 6px;
      font-size: 14px;
      outline: none;
  }

  .promo-button {
      background: linear-gradient(to right, #800000, #a00000);
      color: white;
      border: none;
      padding: 10px 18px;
      font-size: 14px;
      border-radius: 0 6px 6px 0;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s ease;
  }

  .promo-button:hover {
      background: linear-gradient(to right, #a00000, #800000);
  }

  .promo-show-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 10px;
}

 .promo-applywrapper {
       border: 1px dashed #adadad;
    background: #f3f3f3;
    padding: 15px;
    border-radius: 5px;
    }

    .promo-applywrapper h4 {
        color: #4CAF50;
        margin-top: 0;
    }

    .promo-input {
        display: flex;
        border: 1px dashed #b6b6b6;
        margin-bottom: 10px;
        background: #ffffff;
    }

    .promo-input input {
        flex: 1;
        padding: 8px;
        border-radius: 5px 0 0 5px;
        border: 1px solid #ccc;
        outline: none;
    }

    .promo-input button {
        background: linear-gradient(#c00, #900);
        color: white;
        padding: 0 20px;
        border: none;
        border-radius: 0 5px 5px 0;
        cursor: pointer;
        font-weight: bold;
    }

    .promo-success {
        color: var(--secondary-color);
        font-size: 14px;
        margin-bottom: 10px;
    }

    .promo-details {
        background: white;
        border-radius: 5px;
        padding: 10px;
        border: 1px solid #eee;
        font-size: 14px;
        color: #333;
    }

    .promo-details strong{
        color: var(--primary-color);
    }



    .promo-details span {
        display: block;
        margin-bottom: 5px;
    }

    .remove-link {
        color: red;
        float: right;
        cursor: pointer;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 13px;
    }

/* Offer Box */
.promo-offer {
      display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #ffffff1f, #ffffff00);
    border-radius: 50px;
    padding: 10px 20px;
    color: #fff;
    min-width: 350px;
    animation: fadeIn 0.4s ease;
    border: 1px solid #ffffff36;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}


.promo-offer::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }
    50% {
        left: 125%;
    }
    100% {
        left: 125%;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* Fade out animation */
@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Left text block */
.promo-text {
  display: flex;
  flex-direction: column;
}

.promo-main {
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
}

.promo-sub {
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

/* Right section */
.promo-discount {
  font-size: 16px;
  font-weight: bold;
  margin-left: 15px;
}

.close-btn {
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: rgba(255,255,255,0.4);
}

.ticket-amount {
      display: flex;
    align-items: flex-start;
    gap: 10px;
    justify-content: space-between;
    color: white;
    /* margin-bottom: 10px; */
}

.ticket-label {
  font-size: 16px;
  font-weight: 500;
}

.ticket-prices {
  text-align: right;
}

.old-price {
  color: #eaeaea;
  font-size: 14px;
  text-decoration: line-through;
}

.new-price {
  color: #006400; /* Dark green */
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.vat-text {
  font-size: 11px;
  color: #ffffff;
}


  .reg-summary-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      border-top: 2px solid #eee;
      border-bottom: 2px solid #eee;
      margin: 20px 0;
  }

  .reg-summary-total-label {
      font-size: 16px;
      font-weight: bold;
      color: #333;
  }

  .reg-summary-total-price {
      font-size: 18px;
      font-weight: bold;
      color: #dc2626;
  }

  .reg-summary-terms {
      font-size: 12px;
      color: #666;
      line-height: 1.4;
      margin: 20px 0;
  }

  .reg-summary-terms a {
      color: #dc2626;
      text-decoration: none;
  }

  .reg-summary-payment {
      margin: 30px 0;
  }

  .reg-summary-payment-options {
      display: flex;
      gap: 20px;
  }

  .reg-summary-payment-option {
      flex: 1;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      padding: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .reg-summary-payment-option.selected {
    border-color: #1f891b;
    background-color: #e3fee2;
  }

  .reg-summary-payment-label {
      font-weight: bold;
      color: #333;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
  }

  .reg-summary-payment-description {
      font-size: 12px;
      color: #666;
      margin-bottom: 15px;
  }

  .reg-summary-payment-cards {
      display: flex;
      gap: 8px;
  }

  .reg-summary-card-logo {
      width: 32px;
      height: 20px;
      background-color: #333;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 8px;
      font-weight: bold;
  }

  .reg-summary-visa {
      background-color: #1a1f71;
  }

  .reg-summary-mastercard {
      background-color: #eb001b;
  }

  .reg-summary-cmi {
      background-color: #0066cc;
  }

  .reg-summary-amex {
      background-color: #006fcf;
  }

  .reg-summary-apple-pay {
      background-color: #000;
  }

  .reg-summary-samsung-pay {
      background-color: #1428a0;
  }

  .reg-summary-final-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      border-top: 2px solid #eee;
      margin-top: 30px;
  }

  .gitex-terms-container {
      font-size: 16px;
      color: #333;
      line-height: 1.5;
      max-width: 1000px;
  }

  .gitex-checkbox-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 20px;
  }

  .gitex-checkbox {
      margin-top: 6px;
      transform: scale(1.2);
      accent-color: var(--primary-color);
  }

  .gitex-checkbox-text {
      display: inline-block;
      color: #1a1a1a;
  }

  .gitex-link-red {
      color: #d12128;
      font-weight: 600;
      text-decoration: none;
  }

  .gitex-link-blue {
      color: #3b50df;
      font-weight: 500;
      text-decoration: none;
  }

  .gitex-subtext {
      display: block;
      margin-top: 4px;
      font-size: 15px;
      font-weight: 400;
      color: #333;
  }

  .gitex-required {
      color: #d12128;
      font-weight: bold;
  }

  .billing-information{
    border: 1px solid #ebebeb;
    padding: 20px;
    border-radius: 10px;
  }

  .billing-information h4{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  /* reg button */
  .reg-summary-btn {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.reg-btn-prev,
.reg-btn-submit {
  position: relative;
  padding: 12px 28px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.4s ease;
}

.reg-btn-prev{
    background: var(--secondary-color);
}

.reg-btn-submit{
    background: var(--gradient);
}


.promocode-remove{
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    align-items: center;
}

.promocode-remove-resp br{
    display: none;
}
  /* reg button */

   @media (max-width: 991px) {
    .reg-summary-main{
        max-width: 100%;
    }
   }

  /* reg summary */


  @keyframes pulse {
      0% {
          transform: scale(1);
          opacity: 1;
      }

      50% {
          transform: scale(1.1);
          opacity: 0.8;
      }

      100% {
          transform: scale(1);
          opacity: 1;
      }
  }

  @keyframes progress {
      0% {
          width: 0;
      }

      100% {
          width: 100%;
      }
  }

  /* END loader */




  /* Mobile Responsive */
  @media (max-width: 768px) {
      .main-container {
          flex-direction: column;
          margin: 20px;
          border-radius: 10px;
      }

      .left-sidebar-container {
          width: 100%;
      }

      .badge-sidebar {
          border-right: none;
          border-bottom: 1px solid var(--border-color);
          margin-right: 0;
          margin-bottom: 2px;
      }

      .content-area {
          margin-left: 0;
          border-radius: 0 0 10px 10px;
      }

      .badge-content {
          padding: 20px;
      }

      .welcome-section,
      .event-info-section,
      .badge-instructions {
          padding: 20px;
      }

      .event-info-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .event-details {
          border-right: none;
          padding-right: 0;
      }

      .event-actions-right {
          align-items: flex-start;
      }

      .instruction-content {
          grid-template-columns: 1fr;
          gap: 15px;
      }

      .instruction-item {
          padding: 15px;
          min-height: auto;
      }

      .social-section {
          min-height: 220px;
          height: auto;
          margin-bottom: 10px;
      }

      .details-title {
          font-size: 15px;
      }

      .event-actions {
          gap: 10px;
      }

      .main-container {
          min-height: auto;
      }


      .social-section,
      .app-section {
          border-right: none;
          border-bottom: 1px solid #e9ecef;
          padding: 0px;
      }

      .details-section {
          padding: 20px;
      }

      .details-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .address-grid {
          grid-template-columns: 1fr;
          gap: 15px;
      }

      .visa-sep-form-wrapper {
          padding: 20px 0px;
      }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .main-container {
          flex-direction: column;
          margin: 20px;
          border-radius: 10px;
      }

      .left-sidebar-container {
          width: 100%;
      }

      .badge-sidebar {
          border-right: none;
          border-bottom: 1px solid var(--border-color);
          margin-right: 0;
          margin-bottom: 2px;
      }

      .content-area {
          margin-left: 0;
          border-radius: 0 0 10px 10px;
      }

      .badge-content {
          padding: 20px;
      }

      .welcome-section,
      .event-info-section,
      .badge-instructions {
          padding: 20px;
      }

      .event-info-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .event-details {
          border-right: none;
          padding-right: 0;
      }

      .event-actions-right {
          align-items: flex-start;
      }

      .instruction-content {
          grid-template-columns: 1fr;
          gap: 15px;
      }

      .event-actions {
          gap: 10px;
      }

      .main-container {
          min-height: auto;
      }

      .mt-40 {
          margin-top: 23px;
      }

      .question-block {
          flex-direction: column;
          gap: 0px;
          align-items: self-start;
      }

      .footer-btn {
          justify-content: center;
      }

      .terms-section {
          padding: 0px;
      }
      .lang-item{
        gap: 10px;
      }

  }

  @media (max-width: 480px) {
      .main-container {
          margin: 10px;
          border-radius: 8px;
      }

      .welcome-section,
      .event-info-section,
      .badge-instructions {
          padding: 15px;
      }

      .event-info-grid {
          gap: 15px;
      }

      .event-details {
          border-right: none;
          padding-right: 0;
      }

      .instruction-content {
          gap: 10px;
      }

      .instruction-item {
          padding: 12px;
      }


      .social-section,
      .app-section {
          border-right: none;
          border-bottom: 1px solid #e9ecef;
      }

      .details-section {
          padding: 10px;
      }

      .details-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .address-grid {
          grid-template-columns: 1fr;
          gap: 15px;
      }

      .form-check-input {
          height: 20px;
          width: 20px;
          border: 1px solid #ced4da;
      }

      .terms-section h5 {
          font-size: 16px;
          gap: 0px;
          margin-top: 20px;
      }

      .im-intresting {
          font-size: 14px;
      }

      .interest-counter .text-muted {
          font-size: 12px;
      }
      .ft-btm-cont {
        justify-content: center;
        flex-direction: column;
    }
  }

  /* reg cnfirm page */


  /* mobile responsive */

  @media (max-width: 1024px) {
      .main-container {
          padding: 0px;
          margin: 10px;
      }

      .social-app-grid {
          flex-direction: column;
          padding: 0px;
      }

      .aftr-reg-head-1 h4 {
          font-size: 12px;
      }

      .sub-wrapper {
          width: auto;
          padding: 10px;
      }

      .login-wrapper {
          padding: 15px;
      }

      .sub-wrapper h4 {
          font-size: 18px;
      }
      .promo-main{
        font-size: 15px;
      }
      .promo-offer{
        padding: 15px;
      }
      .promo-discount{
        margin-left: 5px;
        font-size: 9px;
      }
      .reg-form-promodiv{
        padding: 20px;
      }
      .promo-main {
        font-size: 13px;
     }
  }

  
  @media (max-width: 1024px) {
        .promo-offer {
        padding: 10px 15px;
    }
  }

 

  @media (max-width: 768px) {
      .sub-wrapper .sub-wrapper-cntnt p {
          font-size: 12px;
      }

      .left-ft-btm-cont ul li a {
          font-size: 11px;
          font-weight: 400;
      }

      .otp-inputs {
          gap: 0px;
      }

      .welcome-title {
          font-size: 18px;
      }

      .badge-search-wrapper {
          width: auto;
      }

      .vis-badge-box {
          flex-direction: column;
          gap: 5px;
      }

      .vis-bdge-main-wrapper {
          gap: 10px;
      }

      .floating-label .iti__country-list {
          max-height: 240px !important;
          overflow-y: auto;
      }

      .login-wrapper {
          min-height: 80vh;
      }

      .notification-popup {
          right: -230px;
          width: 300px;
      }

      .right-ft-btm-cont {
          font-size: 6px;
      }

      .bottom-ft-small {
          padding: 4px 0;
      }

      .right-ft-btm-cont i,
      .right-ft-btm-cont svg {
          font-size: 10px;
      }

      .bottom-ft-small {
          padding: 2px 0px;
          padding-top: 15px;
      }

      .right-ft-btm-cont span {
          font-size: 11px !important;
      }

      .header-page-head {
          font-size: 12px;
          padding: 3px 8px;
      }
      .top-header-second{
        flex-direction: column;
        justify-content: center;
      }
      .promo-offer{
        min-width: auto;
      }
      .promo-input{
        flex-direction: column;
        gap: 5px;
        padding: 0px;
        border: none;
        background: none;
      }
      .promo-input button{
        border-radius: 5px;
        padding: 5px;
      }
      .reg-summary-payment-options{
        flex-direction: column;
        gap: 10px;
      }
      .reg-summary-content {
         padding: 10px;
        }
/* 
        .reg-form-promodiv::before {
            display: none;
        }

        .reg-form-promodiv::after {
            display: none;
        } */
      
  }

  @media (max-width: 600px) {
      .header-page-head {
          font-size: 10px;
          padding: 3px 8px;
      }
      .reg-summary-total{
        padding: 10px;
      }
      .promo-details span{
        margin: 0px;
      }
      .promo-applywrapper{
        padding: 5px;
      }
      .promocode-remove-resp br{
        display: block;
    }
  }