* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

.logo-area {
  height: 60px;
}
.page-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 50px;
  position: fixed;
  left: 0;
  top: 0;
  background-color: white;
  width: 100%;
  z-index: 9999999;
}

.page-content {
  display: flex;
  justify-content: center;
  margin-top: 85px;
}

.page-tutle {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  margin-top: 50px;
}

.page-tutle h2 {
  text-align: center;
  width: 100%;
  font-size: 20px;
  margin-left: -50px;
}

.registration-box {
  width: 100%;
  max-width: 550px;
}

.page-tutle a {
  display: inline-block;
  width: 30px;
  background-color: #ffffff;
  border-radius: 50px;
  border: 1px solid #eaeaea;
  height: 30px;
  text-align: center;
  line-height: 30px;
  text-decoration: none;
  color: black;
  transition: 200ms;
  position: relative;
  z-index: 99;
}

.page-tutle a:hover {
  background-color: #f34f4f;
  color: white;
  border: 1px solid #f34f4f;
}

.love-images {
  text-align: center;
}

.text-block {
  text-align: center;
  margin: 20px 0px;
}
.text-block h2 {
  font-size: 20px;
}

.accordion-header i {
  display: none;
}

.btn-group button {
  width: 100%;
  margin-bottom: 10px;
  display: block;
  padding: 12px 20px;
  cursor: pointer;
}
.btn-group button:nth-child(1) {
  background-color: #f34f4f;
  border-radius: 50px;
  border: 1px solid #f34f4f;
  color: white;
  font-size: 16px;
  transition: 200ms;
  font-weight: 600;
}
.btn-group button:nth-child(2) {
  background-color: #fff;
  border-radius: 50px;
  border: 1px solid #000;
  font-size: 16px;
  font-weight: 600;
  transition: 200ms;
}
.btn-group button:nth-child(2) a {
  color: black;
  transition: 200ms;
}

.btn-group button:nth-child(2):hover a {
  color: #fff;
}

.btn-group button:hover {
  background-color: #000;
  color: white;
  border: 1px solid #000;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: white;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #eaeaea;
  margin-top: 20px;
  font-size: 14px;
  color: #777777;
  width: 100%;
  z-index: 99999;
}

.gender {
  margin-top: 10px;
}

.gender ul {
  list-style-type: none;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.gender li {
  display: inline-block;
  text-align: center;
}

.gender input[type="radio"][id^="cb"] {
  display: none;
}

.gender label {
  border: 1px solid #fff;

  display: block;
  position: relative;

  cursor: pointer;
}

.sub-heading {
  text-align: left;
}

.gender label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid #f34f4f;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

.gender label img {
  height: 100px;
  width: 100px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}

.gender :checked + label:before {
  content: "✓";
  background-color: #f34f4f;
  transform: scale(1);
}

.gender :checked + label img {
  transform: scale(0.9);
  box-shadow: 0 0 5px #f34f4f;
  z-index: -1;
}

.checkboxes {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.checkboxes__row {
  display: flex;
}
.checkboxes__row:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.checkboxes__item {
  padding: 15px 0px;
  width: 100%;
}

/* STYLE A */

.checkbox.style-a {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-a input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-a input:checked ~ .checkbox__checkmark {
  background-color: #fff;
}
.checkbox.style-a input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-a:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-a:hover input:checked ~ .checkbox__checkmark {
  background-color: #fff;
}
.checkbox.style-a .checkbox__checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid #333;
  transition: background-color 0.25s ease;
  border-radius: 3px;
}
.checkbox.style-a .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.checkbox.style-a .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
}

/* STYLE B */

.checkbox.style-b {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-b input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-b input:checked ~ .checkbox__checkmark {
  background-color: #fff;
}
.checkbox.style-b input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-b:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-b:hover input:checked ~ .checkbox__checkmark {
  background-color: #fff;
}
.checkbox.style-b .checkbox__checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 2px solid #333;
  transition: background-color 0.25s ease;
  border-radius: 4px;
}
.checkbox.style-b .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.checkbox.style-b .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  font-weight: bold;
}

/* STYLE C */

.checkbox.style-c {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-c input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-c input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-c input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-c:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-c:hover input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-c .checkbox__checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 4px;
}
.checkbox.style-c .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.checkbox.style-c .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
}

/* STYLE D */

.checkbox.style-d {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-d input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-d input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-d input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-d:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-d:hover input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-d:hover input ~ .checkbox__body {
  color: #f7cb15;
}
.checkbox.style-d .checkbox__checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 11px;
}
.checkbox.style-d .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.checkbox.style-d .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: color 0.25s ease;
}

/* STYLE E */

.checkbox.style-e {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-e input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-e input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-e input:checked ~ .checkbox__checkmark:after {
  left: 21px;
}
.checkbox.style-e:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-e:hover input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-e .checkbox__checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 22px;
  width: 40px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 11px;
}
.checkbox.style-e .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  display: block;
  background-color: #fff;
  border-radius: 50%;
  transition: left 0.25s ease;
}
.checkbox.style-e .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: color 0.25s ease;
}

/* STYLE F */

.checkbox.style-f {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-f input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-f input:checked ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-f input:checked ~ .checkbox__checkmark:after {
  transform: scale(1);
}
.checkbox.style-f input:checked ~ .checkbox__body {
  font-weight: bold;
}
.checkbox.style-f:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-f:hover input:checked ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-f .checkbox__checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 11px;
}
.checkbox.style-f .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 22px;
  height: 22px;
  display: block;
  background-color: #f7cb15;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.25s ease;
}
.checkbox.style-f .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: font-weight 0.25s ease;
}

/* STYLE G */

.checkbox.style-g {
  display: inline-block;
  position: relative;
  padding-right: 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-g input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-g input:checked ~ .checkbox__checkmark {
  background-color: #fff;
}
.checkbox.style-g input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
  left: 8px;
}
.checkbox.style-g input:checked ~ .checkbox__body {
  font-weight: bold;
}
.checkbox.style-g:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-g:hover input:checked ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-g .checkbox__checkmark {
  position: absolute;
  top: 1px;
  right: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 4px;
}
.checkbox.style-g .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: -20px;
  top: -8px;
  width: 15px;
  height: 25px;
  border: solid #f7cb15;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease, left 0.25s ease;
}
.checkbox.style-g .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: font-weight 0.25s ease;
}

/* STYLE H */

.checkbox.style-h {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-h input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-h input:checked ~ .checkbox__checkmark {
  background-color: #ff0070;
}
.checkbox.style-h input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
  top: -3px;
}
.checkbox.style-h input:checked ~ .checkbox__body {
  background-position: 0 0;
  color: #fff;
  background: linear-gradient(
    215deg,
    rgba(218, 90, 118, 1) 40%,
    rgba(249, 28, 45, 1) 100%
  );
}
.checkbox.style-h:hover input ~ .checkbox__checkmark {
  background-color: #ff0070;
}
.checkbox.style-h:hover input:checked ~ .checkbox__checkmark {
  background-color: #ff0070;
}
.checkbox.style-h:hover .checkbox__body {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
.checkbox.style-h .checkbox__checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  height: 22px;
  width: 22px;
  background-color: #f4f4f4;
  transition: background-color 0.25s ease;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.1),
    inset -2px -2px 4px rgba(255, 255, 255, 0.4);
}

.checkbox.style-h .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: font-weight 0.25s ease;
  font-weight: bold;
  color: #333;
  background: white;
  background-size: 200% 100%;
  background-position: 100% 0;
  padding: 15px;
  padding-left: 20px;
  border-radius: 50px;

  border: 1px solid #eaeaea;
  transition: box-shadow 0.25s ease, background 1s ease, color 0.25s ease;
  margin-bottom: 10px;
}

/* STYLE I */

.checkbox.style-i {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 65px;
}
.checkbox.style-i input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-i input:checked ~ .checkbox__checkmark {
  background-color: #49db44;
}
.checkbox.style-i input:checked ~ .checkbox__checkmark:after {
  transform: rotate(90deg) translateY(-50%) translateX(-50%);
  background-color: #49db44;
}
.checkbox.style-i .checkbox__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  background-color: #ff0070;
  transition: background-color 0.25s ease;
  border-radius: 50%;
}
.checkbox.style-i .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 12px;
  border-radius: 6px;
  transform: rotate(0deg) translateY(-50%) translateX(-50%);
  transform-origin: left top;
  background-color: #ff0070;
  transition: transform 0.25s ease, background-color 0.25s ease;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2),
    -2px -2px 4px rgba(255, 255, 255, 0.6);
}
.checkbox.style-i .checkbox__body {
  font-weight: bold;
  font-size: 30px;
}

/* THANKS */
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #eee;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top: 60px;
}
.thanks > *:not(:last-child) {
  margin-right: 30px;
}

.slider-container {
  border-radius: 15px;

  text-align: center;
  width: 100%;
}

.slider-container h2 {
  margin-bottom: 20px;
  color: #333;
}

.range-input {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 5px;
  background: #ddd;
  outline: none;
  transition: background 0.3s;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f84c59;
  cursor: pointer;

  transition: background 0.3s;
}

.range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f84c59;
  cursor: pointer;
}

.height-value {
  font-size: 16px;
  color: #4a4a4a;
}

@media (max-width: 400px) {
  .love-images img {
    width: auto;
    object-fit: contain;
    height: 300px;
  }

  .text-block h4 {
    font-size: 20px;
  }

  .btn-group button {
    padding: 10px;
  }
}

.registration-box form label {
  text-align: left m !important;
}

.registration-box form label p {
  display: block;
  width: 100%;
  font-size: 18px;
  color: black;
  font-weight: normal;
  text-align: left;
}
.custom-lable {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.registration-box form input {
  padding: 15px;
  width: 100%;
  border-radius: 15px;
  border: 1px solid #ccc;
  box-shadow: 0px 5px 5px #eaeaea;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 18px;
}

.registration-box form select {
  padding: 15px;
  width: 100%;
  border-radius: 15px;
  border: 1px solid #ccc;
  box-shadow: 0px 5px 5px #eaeaea;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 18px;
}

.range-input {
  padding: 0px !important;

  background-color: #f84c59;
}

/* Fancy checkbox styling */
.fancy-checkbox {
  position: relative;
  display: block;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  user-select: none;
  color: #333;
  left: 20px;
}

.fancy-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.fancy-checkbox .checkmark {
  position: absolute;
  top: 1px;
  left: -15px;
  height: 25px;
  width: 25px;
  background-color: white;
  border-radius: 0px;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: 1px solid #000;
  margin-right: 20px;
}

.fancy-checkbox:hover input ~ .checkmark {
}

.fancy-checkbox input:checked ~ .checkmark {
  background-color: #f84c59;
  border: 1px solid #f84c59;
}

.fancy-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.fancy-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.fancy-checkbox .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.fancy-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-btn {
  padding: 15px;
  width: 100%;
  border-radius: 15px;
  border: 1px solid #ccc;
  box-shadow: 0px 5px 5px #eaeaea;
  margin-top: 10px;

  font-size: 18px;
  transition: 200ms;
  cursor: pointer;
}

.dropdown-btn:hover {
  background-color: #f0f0f0;
}

.arrow {
  float: right;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  margin-top: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 12px;
  z-index: 10;
  animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.registration-box textarea {
  width: 100%;
  height: 150px;
  border-radius: 15px;
  border: 1px solid #ccc;
  padding: 20px;
}

.bio-field textarea {
  margin: 20px 0px;
  display: block;
  margin-bottom: 50px;
}

.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.tag {
  padding: 5px 20px;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: white;
  box-shadow: 0px 5px 5px #eaeaea;
}

.tag.selected {
  background: #f34f4f;
  color: white;
  font-size: 14px;
  border-color: #f34f4f;
}

.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.selected-tag {
  display: flex;
  align-items: center;
  background-color: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
}

.selected-tag span {
  margin-right: 8px;
}

.selected-tag .remove-btn {
  background: none;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
}

.checkbox-list {
  margin: auto;
}
.checkbox-list label {
  font-weight: 400 !important;
  font-size: 16px !important;
}

.checkbox-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  user-select: none;
}

/* Hide the native checkbox */
.checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Custom checkbox box */
.checkmark {
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* When checked, show the red check */
.checkbox-item input:checked ~ .checkmark {
  background-color: rgba(249, 28, 45, 1);
  border-color: #b71c1c;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Checkmark icon */
.checkbox-item input:checked ~ .checkmark:after {
  display: block;
  left: 7px;
  top: 1px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Hover effect */
.checkbox-item:hover .checkmark {
  box-shadow: 0 0 5px rgba(211, 47, 47, 0.5);
}

.welcome-txt {
  padding: 50px 50px 50px 50px;
  margin-top: -30px;
  position: relative;
  z-index: 9;
  text-align: center;
}

.welcome-txt h2 {
  margin-bottom: 10px;
}

.welcome-txt p {
  text-align: center;
}

.welcome-img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.welcome-img img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}

.welcome-img::before {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 40%;
  content: "";
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(255, 255, 255, 1)
  );
}

.item1 {
  display: grid;
  grid-template-columns: 70% 30%;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  padding: 15px 30px;
  transition: 200ms;
}
.item1:hover {
  box-shadow: 0px 5px 5px #00000030;
  background-color: #eaeaea;
}

.chat-list {
  padding: 20px 5px;
}

.user-dp {
  display: flex;
  align-items: center;
}

.user-dp img {
  border-radius: 50px;
  border: 1px solid #fff;
  box-shadow: 0px 5px 5px #00000010;
  margin-right: 10px;
}

.chat-timer {
  text-align: right;
}
.chat-timer p {
  font-size: 12px;
  margin-bottom: 5px;
}

.chat-timer span {
  width: 20px;
  display: block;
  text-align: center;
  height: 20px;
  color: white;
  background-color: orangered;
  border-radius: 50%;
  float: right;
  line-height: 20px;
  box-shadow: 0px 5px 5px #f0263f66;
}
/* Style the tab content */
.tabcontent {
  display: none;

  border-top: none;
}

.about-user ul li {
  list-style-type: none;
  display: inline-block;
  padding: 8px 20px;
  margin-right: 10px;
  margin-bottom: 15px;
  background-color: #ff000020;
  border-radius: 50px;
  border: 1px solid #ff000050;
}

.chat-profile {
  background-color: #ffffff;
  position: fixed;
  width: 500px;
  top: 0;
  right: -100%;
  height: 100vh;
  overflow-y: scroll;
  transition: 500ms;
  cursor: pointer;
}
.chat-active-user {
  display: block;
  cursor: pointer;
}
.closer-chat-profile {
  position: absolute;
  top: 10px;
  left: 15px;
  z-index: 9;
}
.closer-chat-profile i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
  border: 1px solid #fff;
  background-color: orangered;
  color: #fff;
}
.closer-chat-profile i:hover {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
  border: 1px solid #fff;
  background-color: #000;
  color: #fff;
}

.welcome-txt li {
  text-align: left;
  font-size: 14px;
}

.set-preference p {
  margin: 30px 0px;
}

.set-preference {
  text-align: center;
}
.set-preference img {
  margin-top: 30px;
}

.rules-list {
  padding: 0px 30px;
}

.profile-container-secion {
  padding: 20px;
  border: 1px solid #00000020;
  border-radius: 10px;
  margin-top: 20px;
}
.profile-row {
  display: flex;

  align-items: center;
}
.profil-col h3 {
  margin-bottom: 5px;
}
.profil-col h4 {
  color: #555;
  margin-bottom: 5px;
  font-weight: 500;
}
.profil-col p {
  color: #999;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;

  width: 80%;
}
.edit-btn-right {
  float: right;
}
.edit-btn-right p {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid #ccc;
  border-radius: 50px;
  color: black;
  transition: 200ms;
  cursor: pointer;
  width: auto;
}
.edit-btn-right p:hover {
  color: white;
  background-color: black;
}

.profile-container-secion h2 {
  font-size: 18px;
}

.progress-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin-right: 20px;
}

.profile-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border: 4px solid white;
}

.profile-row h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.progress-ring circle {
  fill: none;
  stroke-width: 10;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.progress-ring .bg {
  stroke: #e6e6e6;
}

.progress-ring .progress {
  stroke: #ef4444;
  stroke-dasharray: 408; /* circumference of circle: 2πr = 2 * 3.14 * 65 */
  stroke-dashoffset: 408;
  transition: stroke-dashoffset 1s ease;
}

.welcome-txt {
  padding: 30px;
}

.welcome-txt h2 {
  text-align: center;
}
.percentage-text {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-align: center;
  position: relative;
  z-index: 99;
  background: white;
  display: inline-block;
  top: -30px;
  left: 50%;
  transform: translate(-50%, 0px);
  padding: 5px 10px;
  border-radius: 50px;
  box-shadow: 0px 2px 2px #00000020;
}

.usernmae {
  margin-top: 30px;
}

.usernmae p {
  font-size: 25px;
  color: black;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
}
.usernmae img {
  vertical-align: middle;
  width: 28px;
  height: 30px;
  object-fit: cover;
  margin-top: -5px;
}

.profile-option {
  margin-top: 30px;
}

.profile-option ul {
  padding: 0px !important;
  margin: 0px;
}

.profile-option ul li {
  list-style-type: none;
  padding: 0px;
  margin-bottom: 10px;
}
.profile-option ul li a {
  font-size: 18px;
  border: 1px solid #eaeaea;
  box-shadow: 0px 2px 2px #00000020;
}
.profile-option ul li a i {
  color: #f84c59;
  margin-right: 20px;
  font-size: 20px;
}
.profile-option ul li a span {
  float: right;
}
.profile-option ul li a span i {
  font-size: 16px;
  color: black;
  margin-right: 0;
}

.profile-box ul {
  padding: 0px !important;
  margin: 0px !important;
  height: auto;
}
.profile-box li {
  padding: 0px !important;
  margin: 5px;
  text-align: left;
  list-style-type: disc;
  font-size: 16px;
}

.profile-box ul li a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  width: 100%;
  background-color: #ffffff30;
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 15px;
  z-index: 2;
  position: relative;
}

/* Prevent text selection during swipe */
.profile-card {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  width: 400px;
  margin: auto !important;
}

.action-btn-heart i {
  font-size: 20px;
}

.profile-box ul li {
  list-style-type: none;
  margin: 10px 0px;
  width: 100%;
  text-align: left;
  position: relative;
}

.usernmae p span i {
  color: dodgerblue;
  font-size: 19px;
}

.range-input {
  padding: 0px !important;

  background-color: #f84c59;
}

.slider-container {
  border-radius: 15px;

  text-align: left;
  width: 100%;
}

.slider-container h2 {
  margin-bottom: 20px;
  color: #333;
}

.range-input {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 5px;
  background: #ddd;
  outline: none;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f84c59;
  cursor: pointer;
}

.range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f84c59;
  cursor: pointer;
}

.height-value {
  font-size: 16px;
  color: #4a4a4a;
}

button a {
  text-decoration: none;
  color: white;
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
}

.gender .selection label {
  display: inline-block;
  width: 100%;
  height: 70px;
  background-color: #ffffff;
  border-radius: 6px;
  color: #000;
  padding: 0.5em;
  cursor: pointer;
  border-radius: 15px;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0px 10px 10px #eaeaea;
  border: 1px solid #eaeaea;
}
.gender .selection input[type="radio"] {
  display: none;
}
.gender .selection {
  margin-bottom: 1em;
  width: 100%;
}
.gender .selection label:hover {
  background: linear-gradient(
    215deg,
    rgba(218, 90, 118, 1) 40%,
    rgba(249, 28, 45, 1) 100%
  );
  color: white;
}
.gender {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}
.gender .selection input[type="radio"]:checked ~ label {
  background: linear-gradient(
    215deg,
    rgba(218, 90, 118, 1) 40%,
    rgba(249, 28, 45, 1) 100%
  );
  color: white;
}

.gender .selection label i {
  display: inline-block;
  margin-right: 10px;
}

.toggle {
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.toggle-switch {
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 58px;
  height: 32px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle-switch:before,
.toggle-switch:after {
  content: "";
}
.toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox:checked + .toggle-switch {
  background: #f54b58;
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 30px;
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.toggle-label {
  margin-left: 5px;
  position: relative;
  top: 2px;
}

.big-img {
  border-radius: 5px;
  width: 100%;
  margin-bottom: 20px;
  border: 1px dashed #ccc;
}
.big-img img {
  border-radius: 5px;
  width: 100%;
  max-width: 100%;
  border: 1px dashed #ccc;
  vertical-align: middle;
}

.phot-gallery ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.phot-gallery ul li {
  list-style-type: none;
  width: 100%;
  text-align: center;
  line-height: 110px;
  height: 110px;
  margin-bottom: 5px;
  border-radius: 5px;
}

.phot-gallery ul li img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  border-radius: 5px;
  border: 1px dashed #ccc;
}

.tips {
  margin-top: 20px;
  margin-bottom: 20px;
}
.tips h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
}

.modal {
  background: #ffffff;
  padding: 2em;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  animation: popIn 0.4s ease forwards;
  transform: scale(0.8);
  opacity: 0;
}

.accordion {
  width: 100%;
  max-width: 100%;
  margin: auto;

  border-radius: 5px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  cursor: pointer;
  padding: 20px 15px;
  justify-content: space-between;
  display: flex;

  align-items: center;
  transition: background 0.3s;
}

.accordion-header span {
  float: right;
}

.accordion-header:hover {
  background: #f1f3f6;
}

/* Highlight open header */
.accordion-header.active {
  background: #f1f3f6; /* Light green background for active section */
  color: #000;
  font-weight: bold;
  border-bottom: 1px solid #00000015;
}

.accordion-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  padding: 0 15px;
  text-align: left;
}

.accordion-content.open {
  padding: 20px 50px 40px 50px;
  background-color: #f1f3f6;
  /* no fixed height */
}

.radio-group {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: auto;
  margin-top: 20px;
}

.radio-button {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
}

.radio-button input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px 20px;
  background-color: white;
  border: 1px solid #333;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  position: relative;
}

/* Glowing effect when selected */
.radio-button input[type="radio"]:checked + .radio-label {
  background: linear-gradient(
    215deg,
    rgba(218, 90, 118, 1) 40%,
    rgba(249, 28, 45, 1) 100%
  );
  color: #fff;
  border: 0px;
}

/* Right-side radio circle */
.radio-circle {
  width: 18px;
  height: 18px;
  border: 2px solid #666;
  border-radius: 50%;
  position: relative;
  transition: 0.3s ease;
}

.radio-button input[type="radio"]:checked + .radio-label .radio-circle {
  border-color: #fff;
  box-shadow: 0 0 5px #00f0ff;
  background: radial-gradient(circle, #00f0ff 40%, transparent 41%);
}
.radio-button input[type="radio"] {
  position: absolute;
  opacity: 40;
  pointer-events: none;
  right: 15px;
  top: 50%;
  z-index: 99;
  transform: translate(0px, -50%);
  width: 20px;
  margin: unset;
  height: 20px;
}

.datepicker {
  width: 120px;
  height: 250px;
  border: 1px solid #ccc;
  overflow-y: scroll;
  scroll-behavior: smooth;
  border-radius: 6px;
}
.date-item {
  padding: 12px;
  text-align: center;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  user-select: none;
}
.date-item:hover {
  background-color: #f0f0f0;
}
.date-item.selected {
  background-color: #f34f4f;
  color: white;
  font-weight: bold;
}
.month-label {
  font-weight: bold;
  padding: 10px;
  text-align: center;
  background: #f9f9f9;
  position: sticky;
  top: 0;
  border-bottom: 1px solid #ccc;
  z-index: 1;
}

.language-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.language-list li {
  position: relative;
  padding-left: 30px;
  background-color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  border: 1px solid #333;
  width: 100%;
}
.language-list li:hover {
  background-color: #ddd;
}

/* Circle (radio-like) */
.language-list li::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #333;
  border-radius: 50%;
  background-color: white;
  box-sizing: border-box;
}
/* Filled circle for active */
.language-list li.active::before {
  background-color: #f34f4f;
  border-color: #f34f4f;
}

.tags {
  margin-top: 25px;
}
#tagsContainer .tag {
  display: inline-block;
  background-color: #f34f4f;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  cursor: default;
  border: 0px;
  user-select: none;
}
.tag .remove-btn {
  margin-left: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.tag .remove-btn:hover {
  color: #ccc;
}

.small-radio .radio-button input[type="radio"] {
  display: none;
}

.small-radio .radio-label {
  width: auto;
  border: 0px;
}
.small-radio .radio-button {
  width: auto;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}
.small-radio .radio-group {
  width: 100%;
  display: block;
  text-align: left;
  max-width: 100%;
}
.small-radio .radio-group {
  width: 100%;
  display: block;
}

.radio-group input {
  box-shadow: none !important;
}

@keyframes popIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal h2 {
  margin-bottom: 5px;
  font-size: 1.8em;
  color: #ff4081;
}

.modal p {
  font-size: 1.1em;
  color: #000;
  margin-bottom: 20px;
}

.modal button.close-btn {
  cursor: pointer;
}

.glow-ring {
  position: absolute;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  top: -25%;
  left: -25%;

  filter: blur(30px);
  z-index: -1;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.close-btn2 {
  cursor: pointer;
}

.modal i {
  color: #f84c59;
  font-size: 50px;
}
.my-profile-box h3 {
  margin-bottom: 20px;
  font-size: 16px;
}

.info a {
  margin-top: 20px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: blue;
  font-size: 14px;
}
.my-profile-box ul li {
  display: inline-block;
  margin-right: 10px;
  padding: 8px 25px;
  background-color: white;
  border: 1px solid #eaeaea;
  margin-bottom: 10px;
  border-radius: 50px;
  font-size: 14px;
  background-color: #f1f3f6;
}

.my-profile-box ul li a {
  font-size: 16px;
}

.tips-tag ul {
  padding: 0px;
  margin: 0px;

  display: block;
  margin-top: 20px;
}

.tips-tag ul li {
  padding: 5px 20px;
  width: auto;
  display: inline-block;

  height: auto;
  align-items: center;
  margin: auto;
  line-height: normal;
  background-color: #49db4438;
  font-size: 14px;
  border-radius: 50px;
  text-align: left;
  clear: both;
  margin-right: 10px;
  margin-bottom: 8px;
}

.tips p i {
  margin-right: 10px;
  color: #ef4444;
  font-size: 20px;
}

.accordion-header i {
  margin-right: 10px;
}

.profile-container-secion .accordion {
  background-color: #fff;
  color: #444;
  cursor: pointer;

  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  transition: background-color 0.4s;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  width: 100%;
  max-width: 100%;
  font-weight: bold !important;
  background-color: #f1f3f5;
  padding: 20px;
}

.profile-container-secion .accordion .icon {
  font-weight: bold;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.profile-container-secion .panel {
  max-height: 0;
  overflow: hidden;
  background-color: white;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 18px;
}

.heading-edit-btn {
  display: flex;
  justify-content: space-between;
}

.personal-infor-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.column-info p {
  color: #999;
  margin-bottom: 5px;
  font-size: 16px;
}

.modal-full {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-full .modal-content {
  background-color: #fff;
  margin: 3% auto;
  padding: 20px;
  border-radius: 8px;
  width: 800px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow-y: auto;
  max-height: 85vh;
}

.modal-full .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal-full .close:hover {
  color: #000;
}

/* Flex container for profile + gallery */
.edit-profile .container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap; /* for responsiveness */
  align-items: flex-start;
  max-width: 900px;
  margin: auto;
}

/* Profile image container */
.edit-profile .profile-container {
  position: relative;
  flex: 0 0 150px; /* fixed width */
}

.edit-profile .profile-photo {
  width: 250px;
  height: 250px;
  border-radius: 8px; /* square with slightly rounded corners */

  object-fit: cover;
  background: #ddd;
  cursor: pointer;
  display: block;

  transition: box-shadow 0.3s ease;
}

.edit-profile .upload-btn {
  width: 70%;
  height: auto;
  background-color: #f1f3f6;
  position: relative;
  padding: 20px;
  text-align: center;
  border: 1px dashed #ccc;
  border-radius: 5px;
  cursor: pointer;
}
.edit-profile .upload-btn:hover {
  width: 70%;
  height: auto;
  background-color: #f4f4f4;
  position: relative;
  padding: 20px;
  text-align: center;
  border: 1px dashed #ccc;
  border-radius: 5px;
  cursor: pointer;
}
.modal-content.edit-profile h3 {
  margin-bottom: 20px;
}

.edit-profile .upload-btn i {
  color: black;
  font-size: 20px;
}
.edit-profile input[type="file"] {
  display: none;
}
.uplod-box {
  width: 100%;
  display: flex;
  height: 280px;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

/* Gallery container takes remaining space */
.edit-profile .gallery-container {
  flex: 1 1 300px; /* grow, shrink, base width */
  min-width: 200px;
}

/* Gallery grid styling */
.edit-profile .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
}
.edit-profile .gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  background: white;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.edit-profile .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
}

.edit-profile .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.edit-profile .gallery-item:hover img {
  transform: scale(1.05);
}

/* Delete button */
.edit-profile .delete-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.edit-profile .delete-btn:hover {
  background-color: red;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
  .profile-container {
    flex: none;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .gallery-container {
    width: 100%;
    min-width: auto;
  }
}

.edit-profile-row .profile-container {
  display: flex;
}

.edit-profile .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}
.edit-profile .form-group {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}
.edit-profile label {
  font-weight: bold;
  margin-bottom: 6px;
}
.edit-profile input,
select,
textarea {
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
}
.edit-profile .phone-wrapper {
  display: flex;
  gap: 10px;
}
.edit-profile .phone-wrapper select {
  width: 100px;
  flex-shrink: 0;
}
.edit-profile .phone-wrapper input {
  flex-grow: 1;
}
.edit-profile textarea {
  resize: vertical;
}

ul.edit-tag li {
  display: inline-block;
  padding: 5px 15px;
  background-color: #49db442e;
  border-radius: 50px;
  margin-bottom: 10px;
  font-size: 14px;
}
ul.edit-tag {
  margin-top: 11px;
}

.column-info h5 {
  font-weight: 500;
  font-size: 16px;
}

.main-section {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  justify-content: center;
  height: 80vh;
  position: relative;
  /* align-items: center; */
}

/* Left tab container */
.main-section .tab-container {
  width: 330px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.main-section button.tab i {
  width: 30px;
  text-align: left;
}

.main-section .tab:hover {
  background-color: #f34f4f20;
  color: #f34f4f;
}

.main-section .tab.active {
  background-color: #f34f4f20;
  color: #f34f4f;
}

/* Right content container */
.main-section .content-container {
  flex: 1;
  padding: 20px 30px;
  overflow: hidden;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 1px;
}

.main-section .tab-content {
  display: none;
}

.main-section .tab-content.active {
  display: block;
}

/* Profile form styling */

.main-section form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.main-section form input,
form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.main-section form textarea {
  resize: vertical;
}

/* Edit button */
.main-section #edit-btn {
  margin-top: 20px;
  padding: 10px 16px;
  background-color: #1abc9c;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.main-section #edit-btn:hover {
  background-color: #16a085;
}

.edit-profile .radio-label {
  background-color: #f1f3f6 !important;
  font-size: 14px;
  border: 1px solid #ccc !important;
  padding: 10px 20px !important;
}

.profession-col {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.profession-col p {
  font-size: 14px;
}

.quotes-form .quote-option {
  display: inline-block;
  background: #f1f3f6;
  border-radius: 8px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease, border 0.3s ease;
  position: relative;
  font-weight: normal;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 50px;
}

.quotes-form .quote-option:hover {
  background: #f34f4f50;
}

/* Hide radio buttons */
.quotes-form .quote-option input[type="radio"] {
  display: none;
}

/* Selected style */
.quotes-form .quote-option input[type="radio"]:checked + span {
  background: #f34f4f;
  color: white;
}

.quotes-form .quote-option span {
  display: block;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.quotes-form textarea {
  width: 100%;
  resize: vertical;
  min-height: 120px;
  padding: 15px 50px;
  font-size: 16px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border: 2px solid #1a73e8;
  border-radius: 10px;
  transition: border-color 0.3s ease;
  box-shadow: inset 0 2px 6px rgba(26, 115, 232, 0.1);
}

.quotes-form textarea:focus {
  outline: none;
  border-color: #155ab6;
  box-shadow: 0 0 8px rgba(21, 90, 182, 0.4);
}

.quote-icon {
  position: relative;
}
.quote-icon i {
  position: absolute;
  left: 20px;
  top: 20px;
  color: #ef4444;
  font-size: 20px;
}

.edit-profile .accordion {
  max-width: 100%;
}

.profile-verify {
  height: 100%;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
  text-align: center;
}
.verify-row img {
  border-radius: 10px;
  height: 250px;
  width: 250px;
  object-fit: cover;
  margin: auto;
}

.verify-row p {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}
.verify-row p b {
  text-transform: capitalize;
  color: #f34f4f;
}
.text-center {
  text-align: center;
  display: block;
}

.custom-pricing {
  padding: 90px 20px;
  background: linear-gradient(to top right, #f7faff, #e0e7ff);
  font-family: "Segoe UI", sans-serif;
  text-align: center;
}

.custom-heading {
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
  color: #1e1e2f;
}

.custom-subheading {
  font-size: 1.15rem;
  margin-bottom: 3rem;
  color: #555;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.custom-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  text-align: left;
  backdrop-filter: blur(6px);
  position: relative;
}

.card-1 {
  background-image: linear-gradient(5deg, #ffb71b, #ffe783);
}
.card-2 {
  background-image: linear-gradient(5deg, #ff0000, #f87171);
}
.card-3 {
  background-image: linear-gradient(5deg, #00dd1c, #8dff89);
}
.card-4 {
  background-image: linear-gradient(5deg, #0076ff, #89e3ff);
}

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.highlighted {
  border: 2px solid #f34f4f;
  background: linear-gradient(to right, #f34f4f, #6d28d9);
  color: #fff;
}

.highlighted .btn-filled {
  background: #fff;
  color: #f34f4f;
}

.custom-icon {
  margin-bottom: 1.2rem;
  color: #fff;
}

.highlighted .custom-icon {
  color: #fff;
}

.custom-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #000;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin: 1rem 0;
  color: #333;
}

.highlighted .price {
  color: #fff;
}

.price span {
  font-size: 1rem;
  color: #000;
}

.highlighted .price span {
  color: #e0e0e0;
}

.features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}

.features li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  list-style-type: disclosure-closed;
  color: #000;
}

.highlighted .features li {
  color: #eaeaea;
}

.btn-outline,
.btn-filled {
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #000;
}

.btn-outline {
  background: #000;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
}

.btn-filled {
  background: #fff;
  color: #f34f4f;
  border: none;
}

.btn-filled:hover {
  background: #e6e6ff;
}

@media (max-width: 768px) {
  .custom-heading {
    font-size: 2rem;
  }
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  padding: 50px 0px;
}

.Compatibility-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  margin: auto;
  height: 70vh;
}

.Compatibility-box form {
  width: 100%;
}
.Compatibility-box h3 {
  text-align: left;
}
.Compatibility-box label {
  text-align: left;
}
.checkbox-list label {
  text-align: left;
}

.go-backbtn {
  position: absolute;
  left: 0;
  top: -40px;
  display: inline-block;
  width: 30px;
  background-color: #ffffff;
  border-radius: 50px;
  border: 1px solid #eaeaea;
  height: 30px;
  text-align: center;
  line-height: 30px;
  text-decoration: none;
  color: black;
  cursor: pointer;
  transition: 200ms;
}

.go-backbtn:hover a i {
  color: white;
  margin-top: 7px;
}
.go-backbtn:hover {
  color: white;
  background-color: #f34f4f;
}
.main-section .tab-container button a {
  color: #333;
  display: block;
  width: 100%;
  font-weight: 400;
}
.main-section .tab-container button:hover a {
  color: #f34f4f;
}

.add-on-features {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 100%;
  margin: auto;
  margin-top: 50px;
}

.addon-list ul {
  padding: 0px;
  margin: 0px;
}

.addon-list ul {
  padding: 0px;
  margin: 0px;
}
.addon-list {
  width: 100%;
}
.addon-list ul li {
  padding: 20px 15px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #00000020;
  transition: 200ms;
  cursor: pointer;
}
.addon-list ul li:hover {
  background-color: #f1f3f6;
}

.booster-box-row {
  width: 400px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
.boost-plan {
  padding: 30px;

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  border: 2px solid #ff0000;
  border-radius: 20px;
  background-size: 100px;
  position: relative;
  overflow: hidden;
}

.boost-plan::before {
  border-radius: 20px;
  position: absolute;
  background-color: #f34f4f10;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  content: "";
  left: 0;
  top: 0;
  z-index: 1;
}

.boost-plan h3 {
  color: #000;
  font-size: 16px;
  position: relative;
  z-index: 2;
}

.boost-plan a {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 12px 30px;
  color: #fff;
  text-decoration: none;
  border: 1px solid;
  border-radius: 50px;
  transition: 200ms;
  background-color: #f34f4f;
}

.boost-plan a:hover {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 12px 30px;
  color: #fff;
  text-decoration: none;
  border: 1px solid;
  border-radius: 50px;
  background-color: #000;
}

.booster-box-row .owl-dots {
  margin-top: -40px;
  position: relative;
  z-index: 99;
}

.booster-box {
  text-align: center;
}
.booster-box-row .owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: #ccc !important;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50px;
}

.booster-box-row .owl-nav {
  display: none;
}
.booster-box-row .owl-dots {
  margin-top: -40px;
}

button.owl-dot.active {
  background-color: red !important;
}

.tab-content .container {
  margin-top: 50px;
}

.tab-content .card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.tab-content .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.tab-content .left {
  flex: 1;
}

.tab-content .title {
  font-size: 18px;
  font-weight: 600;
  color: #3b3b98;
  margin-bottom: 6px;
}

.tab-content .date {
  font-size: 14px;
  color: #777;
  margin-bottom: 4px;
}

.tab-content .txn-id {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.tab-content .method {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-content .method img {
  width: 30px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.tab-content .right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.tab-content .amount {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
}

.tab-content .status {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.tab-content .paid {
  background: #d4f8d4;
  color: #218838;
}

.tab-content .pending {
  background: #fff3cd;
  color: #856404;
}

.tab-content .failed {
  background: #f8d7da;
  color: #721c24;
}

.feedback-container {
  background: #fff;
  margin-top: 10px;
  border-radius: 16px;
  margin-top: 50px;
  width: 100%;
}

.feedback-container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  font-weight: 600;
}

.feedback-container label {
  font-weight: 600;
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #444;
}

.feedback-container input,
.feedback-container textarea,
.feedback-container select {
  width: 100%;
  padding: 12px 14px;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  background: #fafafa;
}

.feedback-container input:focus,
.feedback-container textarea:focus,
.feedback-container select:focus {
  border-color: #4caf50;
  background: #fff;
  box-shadow: 0 0 6px rgba(76, 175, 80, 0.3);
}

.feedback-container input::placeholder,
.feedback-container textarea::placeholder {
  color: #aaa;
}

.feedback-container textarea {
  resize: none;
  height: 110px;
}

.feedback-container button {
  width: 100%;
  padding: 12px 20px;
  margin-top: 22px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  background: #ef4444;
  color: white;
  cursor: pointer;
  transition: 200ms;
}

.feedback-container button:hover {
  background: black;
}

.setting-contact .contact-container {
  background: #fff;
  margin-top: 50px;

  width: 100%;
  max-width: 100%;
}

.setting-contact .contact-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.setting-contact .form-group {
  margin-bottom: 15px;
}

.setting-contact label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #444;
}

.setting-contact input,
.setting-contact textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border 0.3s;
}

.setting-contact input:focus,
.setting-contact textarea:focus {
  background: linear-gradient(135deg, #ef4444, #ef4444);
}

.setting-contact textarea {
  resize: none;
  height: 100px;
}

.setting-contact button {
  width: 100%;
  padding: 12px 20px;
  background: #ef4444;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: 200ms;
  font-weight: 600;
}

.setting-contact button:hover {
  background: #000;
}

.private-profile .toggle {
  cursor: pointer;
  display: inline-block !important;
}
.private-profile {
  margin-top: 50px;
  align-items: center;
  justify-content: center;
  height: 60vh;
}

.private-profile .toggle-switch {
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 58px;
  height: 32px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}

.private-profile .toggle-switch:before,
.toggle-switch:after {
  content: "";
}
.private-profile .toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.25s;
}

.private-profile .toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.private-profile .toggle-checkbox:checked + .toggle-switch {
  background: #56c080;
}

.private-profile .toggle-checkbox:checked + .toggle-switch:before {
  left: 30px;
}

.private-profile .toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.private-profile .toggle-label {
  margin-left: 5px;
  position: relative;
  top: 2px;
}

#faqs .accordion {
  max-width: 100%;
  margin-top: 50px;
}
#faqs .accordion-content.faq.open {
  padding: 15px;
}
#faqs .accordion-content.faq.open p {
  font-size: 15px;
  line-height: 25px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .main-section .tab-container {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    background-color: #f1f3f5;
    border-bottom: 1px solid #34495e;
  }

  .main-section .tab {
    flex: 1 0 auto;
    text-align: center;
    white-space: nowrap;
    padding: 20px;
    font-size: 14px;
    border-right: 1px solid #34495e;
  }

  .main-section .tab:last-child {
    border-right: none;
  }

  .main-section .content-container {
    padding: 30px 10px;
    height: auto;
  }

  .main-section form {
    max-width: 100%;
  }
  body {
    background-color: white !important;
  }
  .main-section {
    height: 100vh;
  }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .edit-profile .form-row {
    flex-direction: column;
  }
  .edit-profile .form-group {
    flex: 1 1 100%;
  }
  .edit-profile .phone-wrapper {
    flex-direction: column;
  }
  .edit-profile .phone-wrapper select {
    width: 100%;
  }
}

/* Home css */

.app-container {
  min-height: 100vh;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #ccc;

  width: 100%;
  z-index: 9;
  background-color: white;
}

.header-btn {
  padding: 0.5rem;
  background: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: #374151;
}

.header-btn:hover {
  background-color: #f3f4f6;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Main content */
.main-content {
  padding-top: 50px;
}

/* Profile Card */
.profile-card {
  position: relative;
  margin: 0 1rem 1.5rem;
}

.profile-card-inner {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-color: white;
}

.profile-image-container {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    transparent,
    transparent
  );
}

.profile-info {
  position: absolute;
  bottom: 95px;
  text-align: center;
  color: white;
  z-index: 9;
  width: 100%;
}

.profile-name {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.profile-location {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.5;
}

.photo-thumbnails-section {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.photo-thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.photo-thumbnail {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.photo-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.view-details-btn {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

.view-details-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Action Buttons */
.action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0px);
}

.action-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.action-btn:hover {
  transform: scale(1.05);
}

.action-btn-pass {
  background-color: #ffffff50;
  color: #fff;
  border: 1px solid #e5e7eb;
}
.action-btn-pass:hover {
  background-color: #ffffff;
  color: #000;
  border: 1px solid #e5e7eb;
}

.action-btn-star {
  background: linear-gradient(135deg, #fbbf2490, #f59e0b90);
  color: white;
}
.action-btn-star:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
}

.action-btn-message {
  background: linear-gradient(135deg, #60a5fa90, #3b82f690);
  color: white;
}
.action-btn-message:hover {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: white;
}

.action-btn-heart {
  background: linear-gradient(135deg, #f8717190, #ef444490);
  color: white;
}
.action-btn-heart:hover {
  background: linear-gradient(135deg, #f87171, #ef4444);
}

/* Animation for smoother interactions */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  to {
    transform: translateX(-100%) rotate(-15deg);
    opacity: 0;
  }
}

@keyframes slideRight {
  to {
    transform: translateX(100%) rotate(15deg);
    opacity: 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.profile-card {
  animation: fadeIn 0.5s ease-out;
}

.profile-card.swipe-left {
  animation: slideLeft 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.profile-card.swipe-right {
  animation: slideRight 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.action-btn.pulse {
  animation: pulse 0.3s ease-in-out;
}

/* Touch-friendly buttons */
@media (pointer: coarse) {
  .action-btn,
  .nav-btn,
  .center-heart-btn,
  .header-btn {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Notification styles */
.notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.notification.show {
  opacity: 1;
}

.notification.info {
  background-color: #3b82f6;
}

.notification.success {
  background-color: #10b981;
}

.notification.warning {
  background-color: #f59e0b;
}

.notification.error {
  background-color: #ef4444;
}

/* Prevent text selection during swipe */
.profile-card {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.action-btn-heart i {
  font-size: 20px;
}

.sidenavigation ul li a i {
  font-size: 24px;
  width: 40px;
  text-align: left;
  align-items: center;
}

.sidenavigation {
  width: 100%;
  height: 100vh;
  z-index: 1;
  background-color: #ffffff50;
  border: 1px solid #fff;
  transition: 200ms;
  border-right: 1px solid #ccc;
  padding-top: 30px;
}
.sidenavigation ul {
  justify-content: center;
  position: relative;

  flex-direction: column;
  width: 100%;

  padding: 0px 20px;
}

.sidenavigation ul li {
  list-style-type: none;
  margin: 10px 0px;
  width: 100%;
  text-align: left;
  position: relative;
}

.sidenavigation ul li a {
  color: black;
  text-decoration: none;
  font-size: 20px;
  display: inline-block;
  width: 100%;
  background-color: #ffffff30;
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 15px;
  z-index: 2;
  position: relative;
}

.nav-btn-icon i {
  font-size: 20px;
  margin-bottom: 10px;
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  transition: 500ms;
  left: 20px;
}

.hamburger span {
  background: #333;
  position: absolute;
  height: 3px;
  width: 100%;
  left: 0;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 50%;
}

.side-hamburger {
  transition: 500ms;
}

.nav-btn a {
  text-decoration: none;
  color: white;
  text-align: center;
}

#openSearchBtn {
  font-size: 1.2rem;
  padding: 10px 20px;
  cursor: pointer;
}

/* Overlay Styling */
#searchOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
}

#searchOverlay.active {
  display: flex;
}

#closeBtn {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.overlay-content {
  text-align: center;
}

#searchInput {
  width: 600px;
  max-width: 600px;
  padding: 15px 20px;
  font-size: 1.5rem;
  border: none;
  border-radius: 5px;
  outline: none;
}

.search-container {
  position: relative;
  width: 700px;
  max-width: 90%;
}

.search-input {
  width: 100%;
  padding: 20px 30px;
  border: 1px solid #ffffff;
  border-radius: 100px;
  outline: none;
  transition: 0.4s ease;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #ffffff01;
  font-size: 30px;
  color: white;
}

.search-input:focus {
  border-color: #007bff;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.2);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #aaa;
  pointer-events: none;
}

.search-button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to right, #f87171, #ec4899);
  border: none;
  color: white;
  padding: 10px 40px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.search-button:hover {
  background: linear-gradient(to right, #ec4899, #f87171);
}

/* Sidebar styles */
.sidebar {
  position: fixed;
  right: -100%;
  top: 0;
  width: 20%;
  height: 100%;
  z-index: 99;
  background-color: #ffffff;
  border: 1px solid #fff;
  transition: 200ms;
  padding: 30px;
}

.sidebar.open {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-header h2 {
  margin: 0;
}

.sidebar-header button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.notification-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: unset;
}

.notification-list li {
  background: #fff;
  margin: unset;
  margin-bottom: 10px;
  font-size: 18px;
  padding: 20px 10px;
  border-radius: 5px;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.page-section {
  display: grid;

  grid-template-columns: 20% 50% 30%;
}

.my-profile {
  /* overflow-x: scroll; */
  padding: 0px 30px;
  padding-top: 50px;
  height: 90vh;
}

.my-bio h3 {
  font-size: 20px;
  color: black;
  margin-bottom: 10px;
}
.my-bio {
  margin-bottom: 30px;
}

.my-bio img {
  width: 100%;
  margin-bottom: 20px;
}

.my-profile {
  padding: 0px 30px;
  padding-top: 50px;
}
p.tag-list {
  padding: 5px 20px;
  border: 1px solid #999999;
  display: inline-block;
  border-radius: 50px;
  color: black;
}

.highligh-tag {
  margin-bottom: 30px;
}

.highligh-tag li {
  display: inline-block;
  list-style-type: none;
  margin-right: 5px;
  padding: 8px 20px;
  color: white;
  border: 1px solid #fff;
  background-color: #333;
  font-size: 14px;
  border-radius: 50px;
  box-shadow: 0px 5px 5px #00000020;
}
.highligh-tag li img {
  width: 20px;
  vertical-align: middle;
  align-items: center;
  margin-bottom: 0px;
  margin-left: 10px;
}

.my-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.my-data li {
  list-style-type: none;
  margin-right: 5px;

  color: #000;

  font-size: 16px;

  margin-bottom: 20px;
}

.my-data img {
  color: #555;
  margin-right: 10px;
  width: 30px;
  align-items: center;
  margin-bottom: 0px;
  vertical-align: middle;
}

@media only screen and (max-width: 1024px) {
  .page-section {
    display: grid;
    padding-top: 0px;
    grid-template-columns: 25% 45% 40%;
  }
  .sidebar {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: #ffffff;
    border: 1px solid #fff;
    transition: 200ms;
    padding: 30px;
  }
}
@media only screen and (max-width: 850px) {
  .page-section {
    display: block;
    padding-top: 0px;
    grid-template-columns: 25% 45% 40%;
  }
  .sidenavigation {
    position: fixed;
    left: -100%;
  }
  .profile-summary {
  }
  .my-profile {
    height: auto;
    overflow: unset;
  }

  .search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ffffff;
    border-radius: 100px;
    outline: none;
    transition: 0.4s ease;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #ffffff01;
    font-size: 18px;
    color: white;
  }
  .search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, #f87171, #ec4899);
    border: none;
    color: white;
    padding: 10px 30px;
    border-radius: 100px;
    cursor: pointer;
    font-size: 10px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
}

.side-left {
  left: 0px;
  transition: 500ms;
  background-color: #fff;
}
button#toggleButton i {
  font-size: 20px;
}

@media only screen and (max-width: 1024px) {
  body {
    color: #111827;
    min-height: auto;
    font-size: 14px;
    overflow: auto;
  }
}

.chat-screen {
  display: grid;
  grid-template-columns: 30% 70%;
}
div#allchat {
  border-right: 1px solid #ccc;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(30px, 20px);
  }
  100% {
    transform: translate(-20px, -30px);
  }
}

/* Chat UI */
.chat-container {
  width: 100%;
  max-width: 100%;
  height: 96vh;
  display: flex;
  flex-direction: column;
  background: white;

  overflow: hidden;
}

.chat-header {
  border-bottom: 1px solid #ccc;
  color: black;
  text-align: left;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  height: 90px;
}
.chat-header p {
  font-size: 13px;
  font-weight: normal;
}

.chat-box {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #f5f5f5;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 80%;
}

.bot-message {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bot-message img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.user-message {
  background: #fbc8c8;
  color: black;
  padding: 15px 25px;
  border-radius: 20px 20px 0px 19px;
  align-self: flex-end;
}

.chat-input-area {
  display: flex;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.chat-input-area input {
  outline: none;
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 25px;
  background: #eee;
  font-size: 16px;
  margin-right: 10px;
}

.chat-input-area button {
  padding: 12px 16px;
  border: none;
  border-radius: 25px;
  background: black;
  color: white;
  cursor: pointer;
  font-size: 16px;
  background: linear-gradient(
    215deg,
    rgba(218, 90, 118, 1) 40%,
    rgba(249, 28, 45, 1) 100%
  );
  width: 5%;
  margin-top: 0px;
}

.chat-input-area button:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-message {
  color: grey;
  font-size: 14px;
  padding: 10px 15px;
  text-align: center;
  max-width: 80%;
  align-self: center;
  opacity: 0.8;
}

.chat-message.bot-message div {
  background: #fbdbbe;
  padding: 15px 25px;
  border-radius: 0px 30px 30px 30px;
}

.meeting-user {
  padding: 30px;
  border-bottom: 1px solid #ccc;
}

.meeting-user ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
  margin-top: 15px;
  border-radius: 50px;
  overflow: hidden;
  background-color: red;
  box-shadow: 0px 0px 10px red;
}

.meeting-user ul li img {
  border-radius: 50px;
  vertical-align: middle;
  padding: 3px;
  background-color: white;
}

.category-heading {
  padding: 0px 30px;
}

.page-tutle {
  margin-bottom: 50px;
  margin-left: 30px;
  margin-top: 20px;
}
.page-tutle i {
  line-height: 30px;
}

header.chat-header ul {
  display: flex;
  align-items: center;
  height: 107%;
}
header.chat-header ul li {
  list-style-type: none;
  height: 100%;
  width: 8%;
}

header.chat-header ul li img {
  border-radius: 50px;
  vertical-align: middle;
  border: 2px solid yellowgreen;
  overflow: hidden;
  /* padding: 2px; */
  margin-right: 15px;
  height: 100%;
  width: 100%;
  object-fit: inherit;
}
header.chat-header ul li h3 {
  font-size: 18px;
}

.user-images {
  position: relative;
}

.user-images img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}
.user-images::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  content: "";
}

.user-namer-bio {
  position: absolute;
  bottom: 0;
  padding: 30px;
  z-index: 9;
}
.user-namer-bio h2 {
  color: white;
}

.user-namer-bio h2 span {
  color: white;
  display: inline-block;
  margin-left: 10px;
  font-weight: 400;
}

.user-namer-bio p {
  color: white;
}
.meeting-user {
  padding: 30px;
  border-bottom: 1px solid #ccc;
  background: #ff000010;
}

.about-user {
  padding: 30px;
}
.about-user h4 {
  margin-bottom: 15px;
  font-size: 25px;
}

/* Chat Screen */

.tab-content .privacy-policy-text {
  margin-top: 30px;
}

.info-1 h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.info-1 p {
  font-size: 15px;
  margin-bottom: 30px;
}
.info-1 ul {
  margin: 20px 0px;
}
.info-1 ul li {
  margin: 5px 0px;
  list-style: 20px;
  font-size: 15px;
}

#subscription .owl-dots {
  display: none;
}

div#terms .text {
  margin-top: 30px;
}
div#terms h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
div#terms .text p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 25px;
}

div#terms .text ul {
  margin-top: 20px;
}
div#terms .text ul li {
  margin-bottom: 5px;
  list-style: 25px;
  font-size: 15px;
}
.go-backbtn a i {
  color: black;
  margin-top: 7px;
}

.main {
  padding: 0px 30px;
}
.main.dark {
  background: #2f3136;
}
.tabs {
  text-align: center;
  display: inline-flex;
  border-radius: 12px;
  padding: 0 4px;
  background: #eee;
  position: relative;
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.tab {
  width: 33%;
}
.dark .tabs {
  background: #26282c;
}
.tabs input {
  display: none;
}
.tabs label {
  display: block;
  padding: 10px 24px;
  line-height: 45px;
  font-weight: 500;
  font-size: 18px;
  color: #777;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.dark .tabs label {
  color: #72767d;
}
.tabs input:checked + label {
  color: white;
  transition: all 0.33s ease-in-out;
}
.dark .tabs input:checked + label {
  color: #dcddde;
}

.tabs::before {
  content: "";
  background: linear-gradient(
    215deg,
    rgba(218, 90, 118, 1) 40%,
    rgba(249, 28, 45, 1) 100%
  );
  border-radius: 10px;
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: var(--left);
  width: var(--width);
  z-index: 1;
  transition: left 400ms cubic-bezier(0.05, 1, 0.4, 1);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0.6px 0.6px -1.25px,
    rgba(0, 0, 0, 0.2) 0px 2px 2px -2.5px,
    rgba(0, 0, 0, 0.075) 0px 10px 10px -3.75px;
}
.dark .tabs::before {
  background: #3d4148;
}

@media only screen and (max-width: 600px) {
  .tab {
    width: 100%;
  }

  .tabs input:checked + label {
    color: white;
    transition: all 0.33s ease-in-out;
    background: linear-gradient(
      215deg,
      rgba(218, 90, 118, 1) 40%,
      rgba(249, 28, 45, 1) 100%
    );
  }
  .tabs::before {
    display: none;
  }
}

.love-images img {
  height: 400px;
}

.profile {
  padding: 0px;
  margin: 0px;
}

.profile li {
  list-style-type: none;
  margin: 10px 0px;
  text-align: center;
}

.profile li a {
  display: block;
  padding: 15px;

  border-radius: 15px;
  font-size: 18px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}

.redd a {
  background-color: rgb(255 41 87);
}
.redd a:hover {
  background-color: rgb(226 32 73);
}

.greenn a {
  background-color: #5acb5a;
}

.greenn a:hover {
  background-color: #49a649;
}

.bluee a {
  background-color: dodgerblue;
}

.bluee a:hover {
  background-color: #1776d2;
}

.yelloww a {
  background-color: #e6e612;
}

.yelloww a:hover {
  background-color: #bcbc0f;
}

@media only screen and (max-width: 1024px) {
  .chat-screen {
    display: grid;
    grid-template-columns: 35% 65%;
  }
  .meeting-user ul li img {
    border-radius: 50px;
    vertical-align: middle;
    padding: 3px;
    width: 50px;
    background-color: white;
  }
  .user-dp img {
    border-radius: 50px;
    border: 1px solid #fff;
    box-shadow: 0px 5px 5px #00000010;
    margin-right: 10px;
    width: 50px;
  }
  header.chat-header ul li img {
    border-radius: 50px;
    vertical-align: middle;
    border: 2px solid yellowgreen;
    overflow: hidden;
    padding: 2px;
    width: 50px;
    margin-right: 15px;
  }
  .chat-container {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: white;
    overflow: hidden;
  }
}

@media only screen and (max-width: 768px) {
  .registration-box {
    width: 100%;
    max-width: 100%;
    padding: 0px 20px;
  }

  .page-tutle a {
    position: fixed;
    top: 22px;
    left: 20px;
    z-index: 9999999999999999999;
  }
  .chat-screen {
    display: block !important;
  }

  .page-content {
    display: block !important;
  }
  .toggle p {
    font-size: 14px !important;
    text-align: left;
  }
  .gender .selection span {
    font-size: 14px;
  }
  .page-content {
    display: block !important;
    margin-top: 100px;
  }

  .private-profile {
    display: block;
    align-items: center;
    justify-content: center;
    height: 60vh;
  }
  .main-section {
    display: block;
  }
  .add-on-features {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    margin-top: 50px;
  }
  .modal-full .modal-content {
    width: 100%;
  }
  .booster-box-row {
    width: 100%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .tab-content h2 {
    text-align: center;
  }
  .feedback-container {
    background: #fff;
    padding: 5px;
    border-radius: 16px;
    width: 100%;
    margin-top: 50px;
  }
  .setting-contact .contact-container {
    max-width: 100%;
  }
  .private-profile {
    text-align: center;
  }
  .go-backbtn {
    left: 5%;

    top: 30px;
    z-index: 999;
    border: 1px solid #ccc;
  }

  .edit-profile .profile-photo {
    width: 200px;
    height: 200px;
  }
  .uplod-box {
    height: auto;
  }
  .edit-profile .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 15px;
  }
  .modal-full .modal-content {
    min-height: 100vh;
  }
  .edit-profile .upload-btn {
    width: 90%;
  }
  .personal-infor-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .owl-carousel .owl-stage-outer {
    padding: 10px 0px;
  }

  h2 {
    font-size: 20px !important;
  }
  .profile-img {
    width: 100px;
    height: 100px;
  }
  .accordion-content.open {
    padding: 15px !important;
  }
  .progress-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border: 5px solid #ef4444;
    border-radius: 50%;
  }
  svg.progress-ring {
    width: 100px;
    height: 100px;
    display: none;
  }
  .percentage-text {
    top: 70px;
  }
  .sidenavigation ul li a i {
    font-size: 17px;
    width: 40px;
    text-align: left;
    align-items: center;
  }
  .sidenavigation ul li a {
    font-size: 18px !important;
  }
  .my-bio h3 {
    font-size: 20px;
    color: black;
    margin-bottom: 10px;
  }
  h4 {
    font-size: 20px;
  }

  i {
    font-size: 18px;
  }
  .main-section .tab-container {
    border-radius: 0px;
    position: fixed;
    bottom: 0;
  }
  .profil-col h3 {
    margin-bottom: 5px;
    font-size: 18px;
  }
  .profil-col h4 {
    font-size: 16px;
  }
  .main-section .tab.active {
    background-color: #f34f4f;
    color: #fff;
    border: 0px;
  }

  body {
    overflow: auto !important;
  }
  .page-tutle h2 {
    text-align: center;
    width: 100%;
    font-size: 20px;
    margin-left: 0px;
  }
  .page-tutle {
    margin-bottom: 20px;
    margin-left: 0px;
    margin-top: 20px;
  }

  .gender ul {
    list-style-type: none;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
  }
  .sub-heading {
    text-align: center;
  }
  .main-section .tab-content {
    display: none;
    margin-bottom: 100px !important;
  }
  .main-section .tab {
    padding: 20px 20px;
    cursor: pointer;
    color: #333;
    border: none;
    background: none;
    text-align: left;
    font-size: 16px;
    width: auto !important;
    transition: background-color 0.3s;
    white-space: normal; /* allow line wrap */
  }
  .edit-profile-row .profile-container {
    display: flex;
    margin-bottom: 30px;
  }
  .profile-verify {
    margin-top: 60px;
  }
  .nonloop.owl-carousel.owl-loaded.owl-drag {
    margin-top: 50px;
  }
  #subscription .owl-dots {
    display: block;
  }
  #connected p {
    text-align: center;
  }
  .booster-box-row .owl-dots {
    margin-top: 0px;
  }
  .booster-box-row .nonloop.owl-carousel.owl-loaded.owl-drag {
    margin-top: 20px;
  }
  .Compatibility-box {
    width: 100%;
  }
  .edit-profile .gallery-item {
    height: 90px;
  }
}

/* Each tab button */
.main-section .tab {
  padding: 20px 20px;
  cursor: pointer;
  color: #333;
  border: none;
  background: none;
  text-align: left;
  font-size: 16px;
  width: 100%;
  transition: background-color 0.3s;
  white-space: normal; /* allow line wrap */
}

@media only screen and (max-width: 600px) {
  .personal-infor-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .tabs label {
    display: block;
    padding: 0px;
    line-height: 45px;
    font-weight: 500;
    font-size: 14px;
    color: #777;
    position: relative;
    z-index: 2;
    cursor: pointer;
  }
  .main {
    padding: 0px 0px;
  }
  .gender .selection label {
    padding: 5px;
    height: 60px;
  }
  .toggle-switch {
    height: 27px;
  }
  .toggle-switch:before {
    height: 19px;
    width: 19px;
  }
  .phot-gallery ul li {
    list-style-type: none;
    width: 100%;
    text-align: center;
    line-height: 110px;
    height: 70px;
    margin-bottom: 5px;
    border-radius: 5px;
  }
  .profile-card {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    width: 100%;
    margin: auto !important;
    padding: 20px;
    margin-top: -30px !important;
  } /* Each tab button */
  .main-section .tab {
    padding: 20px 20px;
    cursor: pointer;
    color: #333;
    border: none;
    background: none;
    text-align: left;
    font-size: 16px;
    width: auto;
    transition: background-color 0.3s;
    white-space: normal; /* allow line wrap */
  }
  .chat-profile {
    width: 100% !important;
  }
}

.chat-profile-open {
  right: 0;
  transition: 500ms;
}

.slick-prev,
.slick-next {
  background: red !important;
}

.chat-list {
  padding: 20px;
}

.user-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.user-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 280px;
  cursor: pointer;
}

.user-card:hover img {
  transform: scale(1.05);
}

.user-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Name + age */
.user-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Heart icon */
.heart-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 22px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.heart-icon:hover {
  transform: scale(1.2);
}
.intros-item {
  display: flex;
  align-items: flex-start;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.intros-item:hover {
  background: #f0f0f0;
}

.intros-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}

.intros-details {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.intros-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.intros-username {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.intros-age {
  font-size: 14px;
  color: #777;
}

.intros-message {
  font-size: 14px;
  color: #555;
  margin-top: 4px;
}
