@font-face {
    font-family: 'Lorimer No 2';
    src: url('/assets-compile/fonts/fonnts.com-Lorimer_No_2_Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Lorimer No 2';
    src: url('/assets-compile/fonts/fonnts.com-Lorimer_No_2_Medium_Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'Lorimer No 2';
    src: url('/assets-compile/fonts/fonnts.com-Lorimer_No_2_Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('/assets-compile/fonts/Proxima Nova Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('/assets-compile/fonts/Proxima Nova Semibold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
:root {
    --bg-main: #00001f;           
    --bg-nav: #000008;            
    
    --orb-purple: #5a1a74;
    --orb-blue: #184f84;

    --c-purple-1: #9933ff;
    --c-cyan:     #33ccff;
    --c-pink:     #ff33ff;
    --c-purple-2: #9933ff;

    --ai-gradient: linear-gradient(90deg, var(--c-purple-1) 0%, var(--c-cyan) 33%, var(--c-pink) 66%, var(--c-purple-2) 100%);
}
body {
    background-color: var(--bg-main);
    color: #ffffff;
    font-family: 'Lorimer No 2', -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 50%;
    filter: blur(80px); 
    z-index: -1;         
    opacity: 0.6;       
    pointer-events: none;
}

body::before {
    width: 450px;
    height: 450px;
    background: var(--orb-purple);
    top: -10%;
    left: -10%;
    animation: floatOrbOne 25s infinite alternate ease-in-out;
}

body::after {
    width: 500px;
    height: 500px;
    background: var(--orb-blue);
    bottom: -10%;
    right: -10%;
    animation: floatOrbTwo 30s infinite alternate ease-in-out;
}

@keyframes floatOrbOne {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40vw, 30vh) scale(1.2);
    }
    100% {
        transform: translate(15vw, 60vh) scale(0.9);
    }
}

@keyframes floatOrbTwo {
    0% {
        transform: translate(0, 0) scale(1.1);
    }
    50% {
        transform: translate(-35vw, -40vh) scale(0.85);
    }
    100% {
        transform: translate(-10vw, -20vh) scale(1);
    }
}
.page-grid-container {
    display: block;
    width: 100%;
    min-height: 100vh;
}

.desktop-left-hero {
    display: none; 
}

.main-content-column {
    width: 100%;
}

@media (min-width: 992px) {
   .page-grid-container {
        display: flex;
        width: 100%;
        /* REMOVED: height: 100vh, max-height, and overflow: hidden */
        min-height: 100vh; 
    }
    
    .desktop-left-hero {
        display: flex !important;
        flex: 0 0 55%;  
        width: 55%;
        /* CHANGED: Allow the background to be as tall as the form demands */
        min-height: 100%; 
        background-color: var(--bg-main);
        align-items: center;
        justify-content: center;
        position: relative;
    }

    /* Background image */
    .desktop-left-hero .hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        /* Forces the background image to stretch and cover the entire height of the expanded column */
        object-fit: cover; 
        z-index: 1;
    }

    /* Floating transparent image */
    .desktop-left-hero .hero-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        z-index: 2;
        pointer-events: none;
    }

    .main-content-column {
        flex: 0 0 45%;
        width: 45%;
        /* REMOVED: height: 100vh, max-height, and overflow-y: auto */
        background: radial-gradient(circle at 90% 20%, rgba(153, 51, 255, 0.12) 0%, transparent 60%);
        display: block;
        padding: 40px 0;
    }
}

@media (min-width: 992px) and (max-aspect-ratio: 13/10){
    .page-grid-container {
        display: block;
        height: auto;
        max-height: none;
        overflow: visible;
    }
    .desktop-left-hero {
        display: none !important;
    }
    .main-content-column {
        width: 100%;
        height: auto;
        max-height: none;
        overflow-y: visible;
        padding: 0;
    }
    .d-lg-none {
        display: block !important;
    }
    .d-lg-block {
        display: none !important;
    }
}

.top-navbar {
    background-color: var(--bg-nav);
    border-bottom: 1px solid rgba(153, 51, 255, 0.15);
    height: 55px;
}

.top-logo-img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.top-nav-title {
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--c-cyan);
}

.top-nav-title .text-pink {
    color: var(--c-pink);
}

.banner-container {
    position: relative;
    width: 100%;
    height: 420px; 
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}
.form-section-wrapper {
    width: 100%;
}

.form-container {
    width: 100%;
    max-width: 440px;  
}
.desktop-form-logo {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.section-heading {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: var(--ai-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtext {
    font-size: 0.75rem;
    color: #fff;
    max-width: 90%;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'Proxima Nova', sans-serif;
}

.field-label {
    font-size: 1.1rem;
    color: #ffffff;
    margin-left: 20px;
}

.custom-input, .custom-select {
    background-color: rgba(5, 5, 20, 0.75) !important;
    border: 1.8px solid transparent !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    padding: 11px 22px;
    font-size: 0.95rem;
    font-family: 'Proxima Nova', sans-serif;
    background-image: linear-gradient(rgba(2, 2, 18, 0.9), rgba(2, 2, 18, 0.9)), var(--ai-gradient) !important;
    background-origin: border-box !important;
    background-clip: padding-box, border-box !important;
    transition: box-shadow 0.25s ease;
}

.custom-input:focus, .custom-select:focus {
    outline: none !important;
    box-shadow: 0 0 12px rgba(51, 204, 255, 0.35) !important;
}
#country_select  .select2-container--default .select2-selection--single {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%239933ff'/%3E%3Cstop offset='50%25' stop-color='%2333ccff'/%3E%3Cstop offset='100%25' stop-color='%23ff33ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g)' d='M0,0 L14,0 L7,10 Z'/%3E%3C/svg%3E"),
                      linear-gradient(rgba(2, 2, 18, 0.95), rgba(2, 2, 18, 0.95)), 
                      var(--ai-gradient) !important;
    background-repeat: no-repeat, no-repeat, no-repeat !important;

    background-position: right 24px center, center, center !important;
    background-size: 14px 10px, auto, auto !important;
    background-origin: padding-box, padding-box, border-box !important;
    background-clip: padding-box, padding-box, border-box !important;
    
    border: 1px solid transparent !important; 
    border-radius: 50px !important;
    height: 50px !important; 
    display: flex;
    align-items: center;
    padding-left: 22px !important;
}
#country_select  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
    line-height: 50px !important;
    padding-left: 0px !important;
}


#country_select  .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none !important;
}

 .select2-dropdown {
    background-color: #020212 !important; 
    border: 1px solid #a332ff !important;
    border-radius: 20px !important;
    margin-top: 5px;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.5);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: #11111e !important;
    border: 1px solid rgba(163, 50, 255, 0.4) !important;
    border-radius: 25px !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    outline: none;
}

#country_select .select2-results__options {
    max-height: 200px;
}

#country_select .select2-results__option {
    color: #ffffff !important;
    padding: 10px 22px !important;
    background-color: transparent !important;
    font-size: 15px;
}

#country_select .select2-container--default .select2-results__option--highlighted[aria-selected],
#country_select .select2-container--default .select2-results__option[aria-selected="true"] {
    background: linear-gradient(90deg, #33ccff, #9933ff) !important; /* Uses your theme accents */
    color: #ffffff !important;
}
.custom-select option {
    font-style: normal;
    background-color: #020212;
    color: #ffffff;
}

.custom-radio .form-check-input {
    background-color: transparent;
    border: 2px solid var(--c-purple-1);
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    margin-top: 0.15rem;
}

.custom-radio .form-check-input:checked {
    background-color: var(--c-pink);
    border-color: var(--c-pink);
    box-shadow: 0 0 8px rgba(255, 51, 255, 0.6);
}

.custom-radio .form-check-label {
    font-size: 1rem;
    font-weight: 500;
    padding-left: 6px;
    cursor: pointer;
}

.btn-gradient {
    background: var(--ai-gradient) !important;
    border: none !important;
    color: #000000 !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 15px rgba(153, 51, 255, 0.2);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.btn-gradient:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    color: #000000 !important;
}

.btn-upload {
    font-size: 1.2rem;
    padding: 6px 36px;
}

.btn-submit {
    font-size: 1.2rem;
    padding: 8px 0;
    width: 55%;
}

@media (max-width: 576px) {
    .banner-image {
        max-height: 260px;
    }
    .btn-submit {
        width: 70%;
    }
}
.img-thumbnail2
{
    margin-bottom: 20px;
    max-width: 200px; max-height: 200px;
    background-image: linear-gradient(rgba(2, 2, 18, 0.9), rgba(2, 2, 18, 0.9)), var(--ai-gradient) !important;
    background-origin: border-box !important;
    background-clip: padding-box, border-box !important;
    transition: box-shadow 0.25s ease;
    background-color: rgba(5, 5, 20, 0.75) !important;
    border: 1.8px solid transparent !important;
    border-radius: var(--bs-border-radius);
}
.qr_entry_ticket
{
    max-width: 100%; width: 420px; height: auto;
    background-image: linear-gradient(rgba(2, 2, 18, 0.9), rgba(2, 2, 18, 0.9)), var(--ai-gradient) !important;
    background-origin: border-box !important;
    background-clip: padding-box, border-box !important;
    transition: box-shadow 0.25s ease;
    background-color: rgba(5, 5, 20, 0.75) !important;
    border: 1.8px solid transparent !important;
    border-radius: var(--bs-border-radius);
}

.iti.iti--input-container 
{
    width:100%;
}
.iti__dropdown-content
{
    background-color:black;
}
.iti__search-input {
    background-color:black;
    color:white;
}

.iti {
    width: 100%;
    position: relative;
}

.iti__dropdown-content {
    background-color: #020212 !important;  
    border: 1px solid #a332ff !important; 
    border-radius: 20px !important;       
    margin-top: 5px !important;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.6) !important;
    max-height: 200px !important;        
    overflow-y: auto !important;
    z-index: 9999 !important;
}

.iti__country {
    background-color: transparent !important;
    color: #ffffff !important;
    padding: 10px 15px !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background: linear-gradient(90deg, #33ccff, #9933ff) !important;  
    color: #ffffff !important;
}

.iti__search-input {
    background-color: #11111e !important;
    border: 1px solid rgba(163, 50, 255, 0.4) !important;
    border-radius: 25px !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    outline: none !important;
    margin: 8px !important;
    width: calc(100% - 16px) !important;
} 
#mobile::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;  
    opacity: 1;  
}

.custom-input::placeholder {
    color: #888888 !important; 
    opacity: 1;
}
 

@media (max-width: 443px) 
{
	  .banner-container { 
        height: 220px; 
    }
}
@media (min-width: 444px) and (max-width: 627px) 
{
	  .banner-container { 
        height: 300px; 
    }
}
@media (min-width: 628px) and (max-width: 767px) 
{
	  .banner-container { 
        height: 380px; 
    }
}
@media (min-width: 768px) and (max-width: 991px) 
{
	
}
@media (min-width: 992px) and (max-width: 1199px) 
{
	
}
@media (min-width: 1200px) {
	
}

.form-check {
    margin-bottom: .5rem!important;
    margin-right: 1.125rem!important;
}

.info-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  padding-bottom: 1rem;
}

.info-section .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.info-section .overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;  
  align-items: center;
}

.info-section_padding {
   padding: 2rem 0;
}

.info-section .content {
  width: 100%;
}

.desktop-only {
  display: none !important;
}

.info-section-mobile {
  position: relative;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
  padding-bottom: 1rem;
  display: block !important;  
}
.info-section-mobile .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.info-section-mobile .overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;  
  align-items: center;
}
.info-section-mobile .content {
  width: 100%;
}

@media (min-width: 992px) {
  .desktop-only {
    display: block !important;
  }
  

.info-section-mobile {
  min-height: 500px;
}
.info-section_padding {
   padding: 4rem 0;
}
  .mobile-only {
    display: none !important;
  }
}

.custom-phone-group {
    background-color: rgba(5, 5, 20, 0.75) !important;
    border: 1.8px solid transparent !important;
    border-radius: 50px !important;
    background-image: linear-gradient(rgba(2, 2, 18, 0.9), rgba(2, 2, 18, 0.9)), var(--ai-gradient) !important;
    background-origin: border-box !important;
    background-clip: padding-box, border-box !important;
    transition: box-shadow 0.25s ease;
    display: flex;
    align-items: center;
}

.custom-phone-group:focus-within {
    box-shadow: 0 0 12px rgba(51, 204, 255, 0.35) !important;
}

.custom-phone-group .phone-code-select,
.custom-phone-group .phone-number-input {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 0.95rem;
    height: 46px;  
}

.custom-phone-group .phone-code-select {
    max-width: 110px;
    padding: 0 10px 0 22px;  
    cursor: pointer;
}

.custom-phone-group .phone-number-input {
    padding: 0 22px 0 10px;  
}

.custom-phone-group .phone-number-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}


#custom-mobile-country .select2-container--default .select2-selection--single {
    background-color: transparent !important;
    border: 0 !important; 
    height: 46px !important; 
    display: flex;
    align-items: center;
    padding-left: 22px !important;  
    padding-right: 20px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23ffffff' opacity='0.4' d='M0,0 L10,0 L5,6 Z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 6px center !important;  
    background-size: 8px 5px !important;
}

#custom-mobile-country .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
    line-height: 46px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-size: 0.95rem;
}

#custom-mobile-country .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none !important;
}