
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css");

@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&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');
/* Sun To Human Foundation Login Page Styles */
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
body {
  background: linear-gradient(to bottom, #fff8e1 60%, #e8eaf6);
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
 
/* Logo and Foundation Name Styles */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0 20px 0;
}
.logo {
  height: 120px;
  margin-bottom: 10px;
}
.logo img {
  width: 100%;
  height: 100%;
}
.foundation-name {
  text-align: center;
}
.foundation-name h1 {
  color: #8b2131;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
}
.foundation-name h2 {
  color: #000;
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 1px;
}
/* Login Form Styles */
.login-container {
  width: 100%;
  padding:0 20px 30px 20px;
}
.login-container h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}
.input-container {
  position: relative;
  margin-bottom: 20px;
}
.input-container input {
  width: 100%;
  padding: 15px 15px 15px 50px;
  font-size: 16px;
  outline: none;
  background: #ffffff;
  border: 1px solid #e4dfdf;
  border-radius: 12px;
  color: #747688;
  font-weight: 400;
}
.phone-icon {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 22px;
}
.sign-in-button {
  width: 100%;
  padding: 15px;
  background-color: #FFCB12;
  border: none;
  border-radius: 15px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0px 10px 35px rgba(111, 126, 201, 0.25);
}
.sign-in-button img {
  position: absolute;
  right: 20px;
  font-size: 24px;
  background-color: #000;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
/*Event List Start*/
/* Header Styles */
header.event-list {
    background-color: #500104;
    color: white;
    padding: 15px 15px;
    border-radius: 0 0 15px 15px;
}
/* Status Bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 5px 15px;
  font-size: 14px;
}
.icons {
  display: flex;
  gap: 5px;
}
.signal, .wifi, .battery {
  width: 15px;
  height: 15px;
  background-color: white;
  opacity: 0.8;
}
/* App Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-button, .notification-button {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-button img, .notification-button img {
  width: 24px;
  height: 24px;
}
 
.location-label {
  font-size: 12px;
  opacity: 0.8;
  display: flex;
  gap: 5px;
  font-weight: 400;
}
.location-value {
  font-size: 18px;
  font-weight: bold;
}
/* Search Container */
.search-container {
  margin-top: 10px;
}
.search-input {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border-radius: 5px;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 16px;
  background-image: url(../image/search.svg);
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 20px;
  font-weight: 400;
}
.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
/* Main Content */
main {
  padding: 20px 15px;
}
/* Event Cards */
.event-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
}
.event-card {
  background-color: white;
  border-radius: 15px;
  display: flex;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  margin: 0 0 20px 0;
  flex-direction: row;
  padding: 10px 10px;
  gap: 15px;
}
.event-image-container {
  position: relative;
  overflow: hidden;
}
.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.favorite-button img {
  width: 20px;
  height: 20px;
}
.event-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.event-location {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #000;
}
.event-date, .event-time {
  font-size: 14px;
  color: #2B2849;
}
/*Event List End*/
/*New COmplaint Start*/
/* Status Bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background: transparent;
}
.time {
  font-weight: bold;
}
.icons {
  display: flex;
  gap: 5px;
}
.signal, .wifi, .battery {
  width: 15px;
  height: 15px;
  background-color: #000;
  border-radius: 2px;
}
 
/* Header */
.header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  text-decoration: none;
}
.header h1 {
  font-size: 24px;
  font-weight: bold;
}
/* Form Container */
.form-container {
  background-color: #fff;
  border-radius: 15px 15px 0 0;
  padding: 20px;
}
/* Form Elements */
.form-group {
  margin-bottom: 20px;
}
label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}
textarea {
  resize: none;
  min-height: 120px;
}
.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: '▼';
  font-size: 12px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #888;
}
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  cursor: pointer;
  outline: none;
}
/* Upload Area */
.upload-area {
  width: 100%;
  height: 120px;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #f9f9f9;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.upload-area.has-image .upload-placeholder {
  display: none;
}
.file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
/* Submit Button */
.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  background-color: #FFD600;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.submit-button svg {
  margin-left: 10px;
}
.submit-button:hover {
  background-color: #E6C200;
}
/*New COmplaint End*/
/*User Profile Start*/
.container { 
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
/* Status Bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-weight: 600;
}
.icons {
  display: flex;
  gap: 5px;
}
/* Header with Back Button */
.header-with-back {
  padding: 10px 0;
  margin-bottom: 10px;
}
.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
/* Main Content */
main {
  padding: 20px 0;
}
/* Profile Section */
.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.profile-picture-container {
  position: relative;
  margin-bottom: 15px;
}
.profile-picture {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.edit-button {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  background-color: #f8c52c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.profile-name {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
}
.profile-email {
    font-size: 16px;
    color: #2B2849;
    background-color: rgba(248, 197, 44, 0.2);
    padding: 8px 25px;
    border-radius: 20px;
}
/* Info Card */
.info-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.info-item:last-child {
  border-bottom: none;
}
  
.info-content {
  flex: 1;
}
.info-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 3px;
}
.info-value {
  font-size: 16px;
  font-weight: 500;
}
/* Navigation Links */
.navigation-links {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    padding: 10px 15px;
    gap: 5px;
    display: flex;
    flex-direction: column;
}
.nav-link {
    display: flex;
    align-items: center;
    padding: 0;
    text-decoration: none;
    color: #333;
}
.nav-link:last-child {
  border-bottom: none;
}
.nav-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-icon img {
  width: 24px;
  height: 24px;
}
.nav-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
}
.nav-arrow {
  margin-left: 10px;
}
.logout-link {
  color: #ff3b30;
}
/* Responsive Adjustments */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .profile-name {
    font-size: 22px;
  }
  .profile-picture {
    width: 100px;
    height: 100px;
  }
  .profile-icon {
    font-size: 50px;
  }
}
/*User Profile End*/
/*Verification Start*/
/* Status Bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  color: #000;
}
.time {
  font-weight: bold;
}
.icons {
  display: flex;
  gap: 5px;
}
.signal, .wifi, .battery {
  width: 15px;
  height: 15px;
  background-color: #000;
  border-radius: 2px;
}
/* Container */
 
/* Header */
.header {
  margin-bottom: 20px;
}
.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
/* Verification Container */
.verification-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    padding: 0 20px 30px 20px;
}
h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
  text-align: center;
}
.verification-message {
  font-size: 15px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.5;
  display: flex;
  width: 100%;
}
/* OTP Input */
.otp-container {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  width: 100%;
  justify-content: space-between;
}
.otp-input {
  width: 100%;
  height: 60px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 24px;
  text-align: center;
  background-color: #fff;
}
.otp-input:focus {
  outline: none;
  border-color: #007bff;
}
.otp-input::placeholder {
  color: #ccc;
}
/* Sign In Button */
.sign-in-button svg {
  position: absolute;
  right: 20px;
}
.sign-in-button:hover {
  background-color: #e6c200;
}
/* Resend Text */
.resend-text {
  font-size: 15px;
  color: #333;
  margin: 20px 0 0 0;
}
#countdown {
  font-weight: bold;
}
.resend-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}
/* Responsive Adjustments */
@media (max-width: 400px) {
  .otp-container {
    gap: 10px;
  }
  .otp-input {
    width: 50px;
    height: 50px;
  }
}
/*Verification End*/
/*Complaint Start*/
/* Status Bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-weight: 600;
}
.icons {
  display: flex;
  gap: 5px;
}
/* Progress Indicator */
.progress-indicator {
    position: relative; 
    display: flex;
    align-items: center;
    gap: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
}
.progress-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #f8c52c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}
.progress-text {
  font-size: 14px;
  color: #666;
}
/* Header with Back Button */
.header-with-back {
  padding: 10px 0;
  margin-bottom: 10px;
}
.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
/* Main Content */
main {
  padding: 20px 0;
}
.page-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #120D26;
    text-align: left;
}
/* Form Styles */
.form-group {
  margin-bottom: 20px;
}
label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}
.required-label::after {
  content: " *";
  color: #f00;
}
/* Select Dropdown */
.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px;
  background-color: #fff;
}
/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 20px;
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
}
.radio-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
}
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio-custom {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
}
.radio-container input:checked ~ .radio-custom::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f8c52c;
}
/* Checkbox Styles */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-container label {
  margin-bottom: 0;
  font-size: 14px;
}
.checkbox-container input:checked ~ label::before {
  background-color: #f8c52c;
  border-color: #f8c52c;
}
.checkbox-container label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 4px;
}
.checkbox-container input:checked ~ label::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 6px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/* File Upload */
.file-upload-container {
  display: flex;
  gap: 10px;
}
#photo-name {
  flex: 1;
  background-color: #fff;
}
.attach-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: #6c757d;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0 15px;
  cursor: pointer;
  font-size: 14px;
}
/* Physical Problems Grid */
.physical-problems {
  display: flex;
  flex-direction: column;
}
.checkbox-row {
  display: flex;
  justify-content: space-between;
}
.checkbox-row .checkbox-container {
  width: 48%;
}
/* Next Button */
.next-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f8c52c;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
/* Register Button */
.register-button {
  display: block;
  padding: 8px 20px;
  background-color: #f8c52c;
  color: #1A202C;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  margin: 5px 0 0 0;
}
/* Health Issues Section */
.health-issues {
  margin-top: 30px;
}
/* Terms Agreement */
.terms-agreement {
  margin-top: 20px;
}
/* Status Bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background: transparent;
}
.time {
  font-weight: bold;
}
.icons {
  display: flex;
  gap: 5px;
}
.signal, .wifi, .battery {
  width: 15px;
  height: 15px;
  background-color: #000;
  border-radius: 2px;
}
/* Header */
.header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  text-decoration: none;
}
.header h1 {
  font-size: 24px;
  font-weight: bold;
}
/* Tickets Container */
.tickets-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
/* Ticket Card */
.ticket-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
/* Ticket Header */
.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.ticket-title {
  font-size: 18px;
  font-weight: bold;
}
.action-button {
  padding: 8px 15px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background-color: #F0F0F0;
  color: #333;
}
.action-button.reopen {
  background-color: #F0F0F0;
}
.action-button.pay-now {
  background-color: #F0F0F0;
}
.action-button.paid {
  background-color: #F0F0F0;
}
.action-button.support {
  background-color: #F0F0F0;
}
/* Ticket Details */
.ticket-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ticket-date {
  font-size: 14px;
  color: #000;
}
.ticket-progress {
  display: flex;
  align-items: center;
  gap: 5px;
}
.progress-label {
  font-size: 14px;
  color: #000;
}
.progress-status {
  font-size: 14px;
  font-weight: 500;
}
.progress-status.done {
  color: #4CAF50;
}
.progress-status.pending {
  color: #FF9800;
}
.ticket-tracking {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tracking-label {
  font-size: 14px;
  color: #333;
}
.tracking-id {
  font-size: 14px;
  color: #000;
}
.copy-button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}
/* Add Complaint Button */
.add-complaint-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #FFD600;
  color: #000;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}
.add-complaint-button:hover {
  background-color: #E6C200;
}
.add-complaint-button svg {
  width: 20px;
  height: 20px;
}
/* Responsive Adjustments */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  .ticket-header {
    flex-direction: row;
  }
}
/*Complaint End*/
/*Contact Us Start*/
/* Status Bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background: transparent;
}
.time {
  font-weight: bold;
}
.icons {
  display: flex;
  gap: 5px;
}
.signal, .wifi, .battery {
  width: 15px;
  height: 15px;
  background-color: #000;
  border-radius: 2px;
}
/* Container */
 
/* Header */
.header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  width: 100%;
}
.back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  text-decoration: none;
}
.header h1 {
  font-size: 24px;
  font-weight: bold;
}
/* Map Container */
.map-container {
  height: 250px;
  background-image: url('https://maps.googleapis.com/maps/api/staticmap?center=Melbourne,Australia&zoom=13&size=600x200&maptype=roadmap');
  background-color: #f0f0f0;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
}
/* Form Container */
.form-container {
    background-color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 20px;
    width: 100%;
    margin: -10px 0 0 0;
    z-index: 9;
}
/* Form Elements */
.form-group {
  margin-bottom:20px;
}
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.half {
  flex: 1;
}
label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #120D26;
    font-weight: 600;
}
input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}
.select-wrapper {
  position: relative;
}
 
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  cursor: pointer;
}
textarea {
  resize: none;
  min-height: 100px;
}
/* Submit Button */
.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  background-color: #FFD600;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.submit-button svg {
  margin-left: 10px;
}
.submit-button:hover {
  background-color: #E6C200;
}
/* Responsive Adjustments */
@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .half {
    width: 100%;
  }
}
/*Contact Us End*/
/*Event Detail Start*/
/* Header Styles */
/* Status Bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 5px 15px;
  font-size: 14px;
  color: white;
}
.icons {
  display: flex;
  gap: 5px;
}
.signal, .wifi, .battery {
  width: 15px;
  height: 15px;
  background-color: white;
  opacity: 0.8;
}
/* Event Header */
.event-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0 15px 0;
    color: white;
}
.back-button, .favorite-button {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}
/* Event Banner */
.event-banner {
  height: 300px;
  overflow: hidden;
  background-size: cover;
  position: relative;
  text-align: center;
  border-radius: 0 0 30px 30px;
}
.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Attendees Card */
.attendees-card {
    background-color: white;
    border-radius: 50px;
    margin: -30px 50px 20px 50px;
    padding: 15px 15px 15px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 5;
    gap: 15px;
    box-shadow: 0px 20px 20px rgba(90, 90, 90, 0.1);
    backdrop-filter: blur(21.746253967285156px);
}
.attendee-avatars {
  display: flex;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  margin-right: -10px;
}
.attendee-count {
  font-size: 16px;
  color: #500104;
  font-weight: 600;
}
.invite-button {
    background-color: #500104;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 20px;
    font-weight: 600;
    cursor: pointer;
    margin-left: auto;
    display: flex;
    gap: 10px;
}
.share-button {
    background-color: #500104;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 20px;
    font-weight: 600;
    cursor: pointer;
    margin-left: auto;
    display: flex;
    gap: 10px;
}
/* Main Content */
main {
    padding: 0 0 30px;
}
.event-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
  text-align: left;
  line-height: normal;
}
/* Event Info Cards */
.event-info-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    margin-bottom: 15px;
    border-radius: 20px;
    padding: 10px 10px;
}
.event-info-icon {
  width: 50px;
  height: 50px;
  background-color: #fff9e6;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.event-info-details {
  flex: 1;
}
.event-info-title {
  font-weight: 600;
  font-size: 16px;
  color: #2B2849;
}
.event-info-subtitle {
  color: #747688;
  font-size: 14px;
}
/* Organizer Card */
.organizer-card {
    display: flex;
    align-items: center;
    margin: 10px 0 25px 0;
    padding: 15px;
    background-color: #fff;
    border-radius: 15px;
    gap: 15px;
}
.organizer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}
.organizer-info {
  flex: 1;
}
.organizer-name {
  font-weight: 600;
  font-size: 16px;
  color: #2B2849;
}
.organizer-title {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}
.follow-button {
  background-color: #f5e6d8;
  color: #500104;
  border: none;
  border-radius: 10px;
  padding: 8px 15px;
  font-weight: bold;
  cursor: pointer;
}
/* About Section */
.about-section {
  margin-bottom: 30px;
}
.section-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
  text-align: left;
  font-weight: 600;
  padding: 15px 0 10px 0;
}
.about-text {
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}
.read-more {
  color: #6366f1;
  text-decoration: none;
}
/* Buy Tickets Button */
.buy-tickets-button {
  width: 100%;
  background-color: #ffc107;
  border: none;
  border-radius: 30px;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.buy-tickets-button svg {
  position: absolute;
  right: 20px;
  background-color: #000;
  border-radius: 50%;
  padding: 5px;
  width: 30px;
  height: 30px;
}
.buy-tickets-button svg path {
  fill: #fff;
}
/*Event Detail End*/
.verification-container h1 {
    display: flex;
    text-align: left;
    width: 100%;
    font-size: 22px;
    margin-bottom:10px;
    font-weight: 600;
}
button.notification-button {
  width: 36px;
  background-color: #611A1D;
  height: 36px;
  border-radius: 50%;
  position: relative;
}
.favorite-button {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #efefefc9;
  border-radius: 5px;
}
.white-bg {
  background: #fff;
}
 
.event-header button.favorite-button {
    position: static;
    margin-left: auto;
    background-color: #fff;
}
.attendee-avatars img {
  width: 100px;
}
/* Responsive Adjustments */
@media (max-width: 600px) {
  .container {
    padding: 0 10px;
  }
  .event-banner {
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    height: 280px;
  }
}
.about-section h2.section-title {
  padding: 0 0 0px 0;
}
.organizer-card img {
    width: 60px;
}
body.splash-page {
    display: flex;
    align-items: center;
    justify-content: center;
}
.register-form {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.radio-group label {
    margin: 0;
}
.select-wrapper select {
    min-height: 51px;
}
.progress-text {
    font-size: 14px;
    color: #2B2849;
    font-weight: bold;
}
span.cap-1,span.cap-2,span.cap-3 { 
    border-width: 3px 3px 3px 3px;
    border-radius: 50%;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0px;
    border-style: solid;
    border-color: #FFCB12 #fff #fff #fff;
    transform: rotate(-45deg);
}
.register-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 10px 0;
}
.register-header h1 {
    margin: 0;
    margin-right: auto;
    font-weight: 600;
}
span.cap-2 {
    border-color: #FFCB12 #FFCB12 #fff #fff;
}
span.cap-3 {
    border-color: #FFCB12 #FFCB12 #FFCB12 #FFCB12;
}
button.reg-form.sign-in-button {
    width: auto;
    margin-left: auto;
}
button.reg-form.sign-in-button img{
	position: static
}
.checkbox-container label {
    font-weight: 500;
}
label.required-label {
    font-weight: 500;
    color: #2B2849;
}
.scan-btn.event-info-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
button.ticket-page {
    margin-left: auto;
    background-color: #FFCB12;
    border: 0;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
}
button.scan-btn {
    margin-left: auto;
    background-color: #FFCB12;
    border: 0;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}
.form-group label {
    font-weight: 500;
}
.form-group.terms-agreement {
    margin-top: 0;
}
.mb-0 {
    margin: 0;
}
a.nav-link .nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
}
.info-icon {
    display: flex;
    align-items: center;
}
.header-profile {
    width: 100%;
    padding: 10px 0;
}
.map-container {
    width: 100%;
}
.map-container iframe {
    width: 100%;
    border: 0;
    height: 100%;
}
.header-top {
    display: flex;
    width: 100%;
    align-items: center;
}
.header-top h1 {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
}
.header-top {
    display: flex;
    width: 100%;
    align-items: center;
    position: static;
    padding: 9px 0;
}
.form-group.half {
    margin: 0;
}
.black-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    padding: 10px 0;
    gap: 10px;
}
.black-header svg path {
    stroke: black;
}
.black-header h1 {
    width: 100%;
    color: #000;
    text-align: left;
}
.new-complaint-header .black-header {
    padding-bottom: 20px;
}
.new-complaint-header .form-container {
    flex: 1;
}
.success-container {
            text-align: center;
            padding: 50px 20px;
        }
        
        .success-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background-color: #4CAF50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .success-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }
        
        .success-message {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }
        
        .home-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: #f8c52c;
            color: #333;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
        }

/*Live Chat*/
.chat-container {
      width: 100%; 
      padding: 20px;
      text-align: center;
    }

    /* Illustration Placeholder */
    .illustration {
      width: 100%;  
      background-size: contain; 
    }

.title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

    .subtitle {
      font-size: 16px;
      font-weight: 400;
      color: #555;
      margin-bottom: 20px;
    }

    /* Representatives Row */
    .reps {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 35px;
    }

    .rep {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid #fff6e6;
      box-shadow: 0px 3px 6px rgba(0,0,0,0.15);
    }

    .rep img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Button */
.chat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFD400;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    padding: 18px 40px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease-in-out;
    width: 100%;
    gap: 5px;
    box-shadow: 0px 10px 35px rgba(111, 126, 201, 0.25);
}

    .chat-btn:hover {
      background: #ffcc00;
      transform: translateY(-2px);
    }

    .chat-btn i {
      margin-left: 10px;
      font-size: 18px;
    }

    /* Footer Note */
    .footer-note {
      margin-top: 25px;
      font-size: 14px;
      color: #555;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .footer-note i {
      font-size: 16px;
    }
.p-0{
	padding: 0;
}
.reps img {
    width: 280px;
}
/******Chat Box*******/

 

/* Header Styles */
.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #fff8e1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.back-button, .settings-button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

/* Messages Container */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

/* Message Styles */
.message {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-end;
}

.user-message {
    justify-content: flex-end;
}

.support-message {
    justify-content: flex-start;
}

.message-content {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 18px;
    position: relative;
}

.user-message .message-content {
    background-color: #FFCB12; /* Yellow for user messages */
    border-top-right-radius: 4px;
    margin-right: 10px;
}

.support-message .message-content {
    background-color: #ffffff;
    border-top-left-radius: 4px;
    margin-left: 10px;
    border: solid 1px #DFDFDF;
}

.message-content p {
    color: #565754;
    font-size: 14px;
    line-height: 1.4;
}

.message-time {
    font-size: 12px;
    color: #565754;
    text-align: right;
    margin-top: 5px;
}

.message-time i {
    font-size: 10px;
    margin-left: 2px;
}

/* Avatar Styles */
.user-avatar, .support-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: solid 5px #FEF1D6;
}

.user-avatar img, .support-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-avatar img {
    background-color: #ff9800;
    padding: 2px;
}

/* Time Separator */
.time-separator {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.time-separator::before, .time-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.time-separator::before {
    left: 0;
}

.time-separator::after {
    right: 0;
}

.time-separator span {
    background-color: #fff8e1;
    padding: 0 10px;
    font-size: 12px;
    color: #777;
    position: relative;
    z-index: 1;
}

/* Input Area */
.chat-input {
    padding: 15px;
    display: flex;
    align-items: center;
    background-color: #FFE49F;
    width: 100%;
    border-top: 1px solid #FFE49F;
    gap: 15px;
}

.chat-input .input-container {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 25px;
    padding: 5px 15px;
    margin-right: 10px;
}

.voice-button, .attachment-button {
    background: none;
    border: none;
    color: #777;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
}

.chat-input .input-container input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 14px;
}

.send-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: transparent;
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px 15px;
    font-size: 12px;
    color: #777;
}

/* Responsive Design */
@media (max-width: 480px) {
    .chat-container {
        height: 100vh;
        max-width: 100%;
        border-radius: 0;
    }
    
    .message-content {
        max-width: 80%;
    }
    
    .chat-header {
        padding: 10px 15px;
    }
    
    .header-title {
        font-size: 18px;
    }
    
    .chat-messages {
        padding: 10px;
    }
    
    .chat-input {
        padding: 10px;
    }
    
    .input-container input {
        font-size: 13px;
    }
    
    .time-separator span {
        font-size: 11px;
    }
}

/* Status Bar for Mobile */
.status-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px 15px;
    background-color: #fff8e1;
    font-size: 12px;
    color: #333;
    width: 100%;
    max-width: 420px;
    z-index: 10;
}

.status-bar .time {
    font-weight: bold;
}

.status-bar .icons {
    display: flex;
    gap: 5px;
}

/* Additional Animations */
.message {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.message-time img {
    opacity: .5;
}
.chat-input .input-container {
    margin: 0;
    padding: 0 15px;
    border: solid 1px #EF9D00;
}
p{margin: 0;}
.bg-light {
    --bs-bg-opacity: 1;
    background-color: transparent !important;
}
.address-section p {
    margin: 0 0 10px 0;
    font-size: 14px;
}
ul.list-unstyled li a {
    font-size: 14px;
}
.social-media p a svg {
    width: 20px;
    height: auto;
    fill: #313c42;
}
.social-media p {
    display: flex;
    flex-direction: row;
}
ul.navbar-nav a {
    font-size: 14px;
}
button.navbar-toggler {
    padding: 0;
    border: 0;
}
.navbar-toggler:focus {
    box-shadow:none;
}
 
footer.bg-light {
    padding: 30px 0 10px 0;
    background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important;
    margin: 50px 0 0 0;
}
footer.bg-light h5 {
    font-weight: bold;
    font-size: 16px;
}
button.btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
}
.register-form button#add-member {
    background-color: #6b1313;
    border-color: #6b1313;
}
.detail-header .event-header svg {
    fill: red !important;
}
.detail-header .event-header svg path {
    stroke: #010101 !important;
}
.main-header.sticky-top {
    background-color: #fbf2cf;
    box-shadow: 0px 0px 10px 0px #d7cd9f;
}
/****************Desktop View**************/
@media only screen and (min-width: 767px) {
.event-details {
    position: relative;
}
    .event-details { 
    justify-content: flex-start;
}
    .event-card { 
    width: 49%;
}
    .event-main-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
}
/****************Mobile View**************/
@media only screen and (max-width: 767px) {
ul.navbar-nav li a {
    display: block;
    border: solid 1px #e5daae !important;
    padding: 5px 8px;
    font-size: 14px;
    margin: 0 0 3px 0;
    border-radius: 5px;
}
    .navbar-collapse {
    margin: 8px 0 0 0;
}
}
