  @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: #221EAC;
      --secondary-color: #B2E01E;
      --white-color: #ffffff;
      --black-color: #050505;
      --gradient: linear-gradient(135deg, #221EAC 0%, #B2E01E 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: 1rem;
      --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;
  }

  

  .main-container {
      max-width: 1400px;
      margin: 50px auto;
      background: white;
      border-radius: 25px;
      overflow: hidden;
  }

  .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;
  }

  .floating-label input:not([type="tel"]),
  .floating-label textarea {
      width: 100%;
      height: var(--field-height);
      padding: 10px 15px;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      font-size: 1rem;
      line-height: 1.5;
      background: transparent;
      transition: var(--transition);
      outline: none;
  }

  .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: white;
      padding: 0 4px;
      z-index: 1;
  }

  .floating-label input:focus:not([type="tel"]),
  .floating-label textarea:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 3px rgba(14, 0, 75, 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 input::placeholder:not([type="tel"]),
  .floating-label textarea::placeholder {
      color: transparent;
  }

  .floating-label input:focus::placeholder:not([type="tel"]),
  .floating-label textarea:focus::placeholder {
      color: #999;
  }

  .floating-label.error input:not([type="tel"]),
  .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 textarea {
      border-color: #979797;
      box-shadow: none;
  }

  .floating-label.success label {
      color: #28a745;
  }

  .floating-label .required {
      color: var(--primary-color);
  }

  .invalid-feedback {
      display: block;
      font-size: 0.875rem;
      color: #e24b59;
      margin-top: 0.25rem;
  }

  /* 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: 10px 15px;
      font-size: 1rem !important;
      line-height: 1.5 !important;
      background: transparent !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;
  }

  .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(0, 23, 230, 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: #f8f9fa !important;
      color: var(--primary-color) !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;
      border: 2px solid var(--primary-color);
      background: white;
      max-height: 200px;
      overflow-y: auto;
      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(29, 0, 97, 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: 600;
  }

  .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(--primary-color);
      font-weight: 600;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  /* 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);
  }

  .interest-selection.error {
      border-color: #dc3545;
      background-color: rgba(220, 53, 69, 0.05);
  }

  .interest-selection.success {
      border-color: #28a745;
      background-color: rgba(40, 167, 69, 0.05);
  }

  .interest-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;
  }

  .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(150 186 59 / 54%);
  }

  .interest-btn.selected::before {
      content: '✓ ';
      font-weight: bold;
  }

  /* 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;
  }

  .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(--secondary-color);
  }

  .badge-company {
      font-weight: 400;
      font-size: 20px;
      line-height: 30px;
      text-align: center;
      color: #5e5e5e;
  }

  .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(--secondary-color);
      border: 0;
      border-radius: 0;
      padding: 15px 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: var(--transition);
  }

  .btn-primary2:hover {
      color: white;
      transform: translateY(-2px);
      background: #e0b002;
  }

  .btn-success-custom{
    background: var(--primary-color);
    color: white;
  }

  .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: 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;
  }

  .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 infinite;
      margin-right: 10px;
  }

  @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;
      }
  }

 
  /* Performance Optimizations */
  .form-card {
      contain: layout style;
  }

  .badge-preview-card {
      contain: layout style;
  }

  /* added */
  .form-container-out {
      margin: 50px 0;
  }

  .top-header{
    position: relative;
  }


  .top-header img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

   .top-header{
    position: relative;
  }

  .header-page-head{
    position: absolute;
    top: 40%;
    right: 60px;
    font-size: 35px;
    font-weight: 700;
    background-color: var(--secondary-color);
    color: var(--black-color);
    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%;
        }
    }


  .top-header-second-out {
      /* margin-top: -3px; */
      background-color: #221EAC;
  }

  .top-header-second {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
  }

  .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: 10px 30px;
      color: #fff;
      background-color: transparent;
      cursor: pointer;
  }

  .right-top-header-sec button:hover {
      border: 1px solid #fde385;
      background: var(--gradient);
      color: white !important;
  }

  .right-top-header-sec span {
      color: white;
      font-size: 12px;
      padding-left: 10px;
  }

  .right-top-header-sec a{
    width: fit-content;
    display: inline-block;
  }

  .right-ft-btm-cont a{
    width: fit-content;
    display: inline-block;
  }


  /* footer */
  .footer-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  /*bottom ft small*/
  .bottom-ft-small {
      padding: 8px 0;
      background-color: var(--primary-color);
  }

  .ft-btm-cont {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: space-between;
  }

  .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: 600;
      color: white;
      text-decoration: none;
  }

  .right-ft-btm-cont i,
  .right-ft-btm-cont svg {
      font-size: 20px;
      color: #fff;
  }

  .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: 20px auto;
  }

  @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 {
          display: block;
          padding: 5px;
      }
      .left-top-header-sec p{
        font-size: 12px;
      }
      .right-top-header-sec button{
        font-size: 10px;
      }

      .right-top-header-sec {
          margin-top: 6px;
      }

      .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;
      padding-bottom: 35px;
      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(--secondary-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(--secondary-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(--secondary-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;
  }

  .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: 6px;
}

.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: 15px 15px;
    background: var(--secondary-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: #0c0b45;
    border-left: 4px solid #ffffff;
    color: #ffffff !important;
}

.sidebar ul li.active {
        background-color: #0c0b45;
    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;
        }

        .user-dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .user-dropdown .dropdown-menu {
            display: none;
        }
        .user-dropdown.active .dropdown-menu {
            display: block;
        }

        .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;
        }


/* 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;
}

/* 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 */


@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;
    }
}

@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: #05250d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.audit-log-filter .filter-btn:hover {
    background: #0056b3;
}

.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: #580041;
    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: 60px;
        }


        #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;
        }
        }

        /* 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: #f8f9fa;
            display: flex;
            min-height: calc(100vh - 380px);
            gap: 50px;
            padding: 30px;
            border-radius: 15px;
            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(19, 1, 70, 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: 15px 25px;
            text-align: center;
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        .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);
        }

        .badge-company {
            font-size: 20px;
            color: var(--text-gray);
            text-align: center;
            margin-bottom: 22px;
            font-weight: 500;
        }

        .visitor-badge {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
            color: white;
            padding: 15px 25px;
            text-align: center;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 0;
            width: 100%;
            border-radius: 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgb(9 7 58 / 25%);
        }

        .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;
            max-width: 400px;
        }

        .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: 15px;
        }

        .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;
            gap: 8px;
        }

        .event-location i {
            margin-right: 8px;
        }

        .event-location a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .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;
        }

        .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;
            margin-bottom: 20px;
            border-bottom: 20px solid rgb(245 246 247);
        }

        .instruction-header {
            display: flex;
            align-items: center;
            color: var(--secondary-color);
            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: 25px;
            border-radius: 12px;
            border-left: 4px solid var(--primary-color);
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .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: 15px;
            font-size: 1.1rem;
            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 {
            display: flex;
            gap: 10px;
            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;
            /* 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-header2.png);

        }

        .aftr-reg-head-1 h4{
            color: #061742;
            font-weight: 700;
            font-size: 15px;
        }

        .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: 90px;
            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: #B2E01E;
            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;
        }

        .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 rgba(230, 0, 126, 0.1);
        }

        .detail-field.editing .detail-value {
            display: none;
        }

        .detail-field.editing .detail-input {
            display: block;
        }

        .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: var(--gradient);
            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;
        }


        /* 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;
            }
            
            .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;
            }
        }

        /* 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;
            }
            
            .instruction-item {
                padding: 15px;
            }
            
            .event-actions {
                gap: 10px;
            }
            
            .main-container {
                min-height: auto;
            }

        }

        @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: 20px;
            }

            .details-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .address-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }
    /* reg cnfirm page */


    /* mobile responsive */

        @media (max-width: 1024px) {
            .main-container{
                padding: 0px;
            }
            .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;
            }
        }

        @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;
            }
            .login-wrapper{
                min-height: 80vh;
            }
            .notification-popup{
                right: auto;
                    width: 340px;
                left: auto;
            }
            .right-ft-btm-cont{
                font-size: 6px;
            }
            .right-ft-btm-cont i, .right-ft-btm-cont svg{
                font-size: 10px;
            }
            .right-ft-btm-cont span{
                font-size: 11px !important;
            }
        }

    
    /* mobile responsive */