@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary-bg: #fff;
  --navbar-link: #000000;
  --navbar-link-hover: #33AEAF;
  --btn-started: #33AEAF;
  --heading: #131313;
  --body-text: #828282;
  ---text-color: #64748B;
  --main-color: #33AEAF;
  --register-bg: #f7f7f7;
  --register-input-bg: #fff;
  --register-input-text: #222;
  --register-input-radius: 12px;
  --register-form-radius: 24px;
  --register-form-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --register-link: var(--main-color);
  --register-link-hover: #249b9b;
  --register-terms: #555;
}

.bg-white {
  background-color: var(--primary-bg) !important;
}

.bg-seashell {
  background-color: #FDF7EC !important;
}

/*==============================================
   Base Css
===============================================*/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}

html,
body {
  height: 100%;
}

body {
  color: var(--body-text);
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden !important;
}

button:focus {
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading);
  font-weight: 700;
  font-family: 'Bai Jamjuree', sans-serif;
  margin: 0;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
  border: none;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* Navbar Styles */
.custom-navbar {
  position: relative;
  transition: box-shadow 0.3s, background 0.3s;
  border-bottom: 1px solid #DDDDDD;
}

.custom-navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  background: var(--primary-bg);
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
  position: fixed;
}

.navbar-brand img {
  max-width: 150px;
}

.navbar-nav .nav-link {
  color: var(--heading);
  font-weight: 600;
  font-size: 16px;
  margin: 0 0.7rem;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--navbar-link-hover);
}

.btn-started {
  background: var(--btn-started);
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
  padding: 12px 25px;
  font-size: 16px;
  transition: background 0.2s;
  border: 1px solid transparent;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.btn-started:hover {
  background: var(--navbar-link);
  color: #fff;
  border: 1px solid transparent;
}

.btn-started-outline {
  background: var(--primary-bg);
  color: var(--btn-started);
  font-weight: 500;
  border-radius: 5px;
  padding: 12px 25px;
  font-size: 16px;
  transition: background 0.2s;
  border: 1px solid var(--btn-started);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.btn-started-outline:hover {
  background: var(--btn-started);
  color: #fff;
  border: 1px solid var(--btn-started);
}

.btn-started svg {
  width: 17px;
  height: 17px;
  fill: var(--primary-bg);
}

.btn-started svg {
  width: 17px;
  height: 17px;
  fill: var(--primary-bg);
}

.btn-started:hover svg {
  width: 17px;
  height: 17px;
  fill: var(--primary-bg);
}

.btn-started-outline svg {
  width: 17px;
  height: 17px;
  fill: var(--btn-started);
}

.btn-started-outline:hover svg {
  width: 17px;
  height: 17px;
  fill: var(--primary-bg);
}

.navbar .btn-started {
  padding: 9px 20px;
  font-size: 16px;
  text-transform: capitalize;
}

.navbar .btn-started:hover {
  background: var(--navbar-link);
  color: #fff;
  border: 1px solid transparent;
}

.btn.btn-started.dropdown-toggle {
  padding: 9px 20px;
  font-size: 16px;
  text-transform: capitalize;
  background: var(--btn-started) !important;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: background 0.2s;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.navbar .dropdown .dropdown-menu[data-bs-popper] {
  top: 100%;
  left: auto;
  margin-top: var(--bs-dropdown-spacer);
  right: 0;
}

.dropdown-menu .dropdown-item.profile-dropdown-item {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-menu .dropdown-item.profile-dropdown-item svg {
  width: 24px;
  height: 24px;
  fill: var(--navbar-link-hover);
}

.dropdown-menu .dropdown-item.profile-dropdown-item.text-danger svg {
  fill: rgb(220 53 69);
}

.dropdown-menu .dropdown-item.profile-dropdown-item:active {
  background: var(--primary-bg);
  color: var(--main-color);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 40px !important;
  height: 40px !important;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;

}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  /* box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width); */
  background: #f3f3f3;
  box-shadow: none !important;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -371px;
  width: 320px;
  height: 100vh;
  background: var(--heading);
  z-index: 2000;
  transition: left 0.3s cubic-bezier(.4, 0, .2, 1);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu .close-btn {
  background: none;
  border: none;
  color: var(--primary-bg);
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 20px;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 1.2rem;
}

.mobile-nav a {
  color: var(--primary-bg);
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 0px;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--btn-started);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1500;
}

.overlay.active {
  display: block;
}

.mobile-menu-btn {
  display: none;
}

.mobile-menu-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hide mobile menu and toggler on desktop */
@media (min-width: 992px) {

  .mobile-menu,
  .overlay,
  .navbar-toggler {
    display: none !important;
  }

  .navbar-collapse {
    display: flex !important;
  }

}

/* Show mobile menu and toggler on mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }

  .navbar-toggler {
    display: block !important;
    border: none;
    background: #f3f3f3;
    color: var(--heading);
    font-size: 2rem;
    margin-left: auto;
  }

  .mobile-menu-btn {
    display: block;
  }
}

.title {
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 10px;
  font-weight: 800;
}

.sub-title {
  font-size: 16px;
  font-weight: 400;
  color: var(---text-color);
}

/* Hero Section Styles */
.hero-section {
  background: url(../images/hero-bg.png);
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-subtitle {
  color: #000;
  ;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  display: inline-block;
  border-left: 4px solid var(--btn-started);
  border-radius: 3px;
  padding: 5px 20px;
}

.hero-title {
  font-size: 55px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 0.7rem;
  line-height: 65px;
}

.highlight {
  color: var(--btn-started);
}

.hero-btn {
  font-size: 1.1rem;
  padding: 0.7rem 2.2rem;
  border-radius: 8px;
}

.hero-features {
  gap: 15px;
  display: flex;
  list-style-type: none;
  padding: 0;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-features li svg {
  width: 16px;
  height: 16px;
  fill: var(--btn-started);
}

.hero-features li span {
  white-space: nowrap;
  font-size: 16px;
  color: var(---text-color);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.main-hero-img {
  max-width: 100%;
  animation: floatY 3s ease-in-out infinite alternate;
}

.hero-button {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

/* Zoom-in animation */
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal.fade .modal-dialog {
  transform: scale(0.7);
  transition: transform 0.3s ease-out;
}

.modal.fade.show .modal-dialog {
  animation: zoomIn 0.3s ease-out forwards;
}

.label {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--btn-started);
  margin-bottom: 15px;
  display: block;
}

/* Relationships Section Styles */
.relationships-section {
  background: #EEF1F6;
  padding: 45px 0px;
  position: relative;
}

.relationships-card {
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #ECEBEB;
  text-align: center;
  display: grid;
  justify-content: center;
  margin: auto;
  gap: 10px;
}

.relationships-card img {
  margin: auto;
}

.relationships-card p {
  min-height: 100px;
  font-size: 14px;
}

.relationships-card h3 {
  font-size: 19px;
  font-weight: 700;
}

/* Relationships Section Styles */

.plans {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #EDEDED;
  margin-top: 30px;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 0px;
  padding: 20px;
  box-shadow: 0 0 0 1px #ddd;
  text-align: left;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-circle h5 {
  font-size: 16px;
  color: var(--primary-bg);
  font-weight: 600;
}

.icon-circle img {
  width: 40px;
  height: 40px;
}

.tier-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 24px;
}

.tier-subtitle {
  color: var(---text-color);
  font-size: 14px;
  margin-bottom: 24px;
}

.pricing-card hr {
  margin: 1.8rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) Dashed;
  opacity: .25;
}

.price {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  color: #28b4b4;
}

.unit {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin-left: 4px;
}

.popular-badge {
  font-weight: bold;
}

.billed-info {
  font-size: 14px;
  color: #7886a0;
  margin-bottom: 24px;
}

.popular-badge {
  font-weight: bold;

}

.features {
  min-height: 384.59px;
}

.features h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: left;
}

.features ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
}

.features li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 0px;
  font-size: 14px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features li svg {
  width: 20px;
  height: 20px;
  fill: var(--btn-started);
}

.pricing-card.action {
  background-color: var(--btn-started);
  color: var(--primary-bg);
  border-color: var(--btn-started);
}

.pricing-card.action .price {
  color: var(--primary-bg);
}

.pricing-card.action .billed-info,
.pricing-card.action .unit,
.pricing-card.action .tier-title,
.pricing-card.action .tier-subtitle,
.pricing-card.action .features h3,
.pricing-card.action .features li svg {
  color: var(--primary-bg);
  fill: var(--primary-bg);
}

.pricing-card.action .btn-started {
  background-color: var(--primary-bg);
  color: var(--btn-started);
}

.bg-img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
}

.features-cards {
  display: grid;
  gap: 15px;
}

.features-card {
  display: grid;
  align-items: flex-start;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #d0e6ea;
  padding: 20px;
  max-width: 380px;
  gap: 10px;
}

.features-card .icon {
  color: #0c8f89;
  display: flex;
  align-items: center;
}

.feature-list p {
  list-style-type: none !important;
  display: flex;
  align-items: center;
}

.feature-list li {
  list-style-type: none !important;
  display: flex;
  align-items: center;
}

.feature-list p:last-child {
  margin-bottom: 0;
}

.feature-list p::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%2333aeaf" d="M437.019 74.98C388.667 26.629 324.38 0 256 0 187.619 0 123.331 26.629 74.98 74.98 26.628 123.332 0 187.62 0 256s26.628 132.667 74.98 181.019C123.332 485.371 187.619 512 256 512c68.38 0 132.667-26.629 181.019-74.981C485.371 388.667 512 324.38 512 256s-26.629-132.667-74.981-181.02zM256 482C131.383 482 30 380.617 30 256S131.383 30 256 30s226 101.383 226 226-101.383 226-226 226z"/><path fill="%2333aeaf" d="M378.305 173.859c-5.857-5.856-15.355-5.856-21.212.001L224.634 306.319l-69.727-69.727c-5.857-5.857-15.355-5.857-21.213 0-5.858 5.857-5.858 15.355 0 21.213l80.333 80.333a14.953 14.953 0 0 0 10.606 4.393c3.838 0 7.678-1.465 10.606-4.393l143.066-143.066c5.858-5.857 5.858-15.355 0-21.213z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.pricing-card.action .feature-list p::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23ffffff" d="M437.019 74.98C388.667 26.629 324.38 0 256 0 187.619 0 123.331 26.629 74.98 74.98 26.628 123.332 0 187.62 0 256s26.628 132.667 74.98 181.019C123.332 485.371 187.619 512 256 512c68.38 0 132.667-26.629 181.019-74.981C485.371 388.667 512 324.38 512 256s-26.629-132.667-74.981-181.02zM256 482C131.383 482 30 380.617 30 256S131.383 30 256 30s226 101.383 226 226-101.383 226-226 226z"/><path fill="%23ffffff" d="M378.305 173.859c-5.857-5.856-15.355-5.856-21.212.001L224.634 306.319l-69.727-69.727c-5.857-5.857-15.355-5.857-21.213 0-5.858 5.857-5.858 15.355 0 21.213l80.333 80.333a14.953 14.953 0 0 0 10.606 4.393c3.838 0 7.678-1.465 10.606-4.393l143.066-143.066c5.858-5.857 5.858-15.355 0-21.213z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.feature-list li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%2333aeaf" d="M437.019 74.98C388.667 26.629 324.38 0 256 0 187.619 0 123.331 26.629 74.98 74.98 26.628 123.332 0 187.62 0 256s26.628 132.667 74.98 181.019C123.332 485.371 187.619 512 256 512c68.38 0 132.667-26.629 181.019-74.981C485.371 388.667 512 324.38 512 256s-26.629-132.667-74.981-181.02zM256 482C131.383 482 30 380.617 30 256S131.383 30 256 30s226 101.383 226 226-101.383 226-226 226z"/><path fill="%2333aeaf" d="M378.305 173.859c-5.857-5.856-15.355-5.856-21.212.001L224.634 306.319l-69.727-69.727c-5.857-5.857-15.355-5.857-21.213 0-5.858 5.857-5.858 15.355 0 21.213l80.333 80.333a14.953 14.953 0 0 0 10.606 4.393c3.838 0 7.678-1.465 10.606-4.393l143.066-143.066c5.858-5.857 5.858-15.355 0-21.213z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.pricing-card.action .feature-list li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23ffffff" d="M437.019 74.98C388.667 26.629 324.38 0 256 0 187.619 0 123.331 26.629 74.98 74.98 26.628 123.332 0 187.62 0 256s26.628 132.667 74.98 181.019C123.332 485.371 187.619 512 256 512c68.38 0 132.667-26.629 181.019-74.981C485.371 388.667 512 324.38 512 256s-26.629-132.667-74.981-181.02zM256 482C131.383 482 30 380.617 30 256S131.383 30 256 30s226 101.383 226 226-101.383 226-226 226z"/><path fill="%23ffffff" d="M378.305 173.859c-5.857-5.856-15.355-5.856-21.212.001L224.634 306.319l-69.727-69.727c-5.857-5.857-15.355-5.857-21.213 0-5.858 5.857-5.858 15.355 0 21.213l80.333 80.333a14.953 14.953 0 0 0 10.606 4.393c3.838 0 7.678-1.465 10.606-4.393l143.066-143.066c5.858-5.857 5.858-15.355 0-21.213z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.features-card .icon svg {
  width: 24px;
  height: 24px;
}

.features-card .text h3 {
  margin: 0 0 3px;
  font-size: 20px;
  font-weight: 600;
  color: var(--navbar-link);
}

.features-card .text p {
  margin: 0;
  font-size: 14px;
  color: var(---text-color);
  line-height: 20px;
}


.icon-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 25px;
}

.icon-card .icon {
  width: 60px;
  height: 60px;
  display: flex;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navbar-link-hover);
  align-items: center;
  justify-content: center;
}

.icon-card .icon svg {
  width: 23px;
  height: 23px;
  color: var(--primary-bg);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.icon-card .content {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.icon-card .content .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--navbar-link);
  margin-bottom: 0;
}

.icon-card .content .desc {
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  color: var(---text-color);
  margin-bottom: 0;
}

.faq {
  background-color: #f2f2f7;
  padding: 80px 0px;
}


/* Download App Section */
.download-app-section {
  background-color: var(--primary-bg);
  padding: 60px 0;
  color: var(--primary-bg);
  position: relative;
}

.download-app-section .container {
  background: var(--navbar-link);
  border-radius: 15px;
  padding: 0px 60px;
}

.download-content {
  padding: 46px 0px;
  display: grid;
  justify-content: left;
  gap: 26px;
}

.download-content p {
  text-align: left;
  margin-bottom: 0;
}

.btn-started.download-button {
  background-color: var(--primary-bg);
  color: var(--btn-started);
}

.download-image {
  position: absolute;
  bottom: 0;
  max-width: 320px;
  left: auto;
  right: 0;
}

.download-content .btn.btn-started {
  background-color: var(--btn-started);
}

.light-img {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* FAQ Section */
.faq .accordion {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.accordion .accordion-item {
  border-bottom: 0px !important;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #DDDDDD !important;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 0px;
  color: #000 !important;
  font-size: 25px;
  font-weight: 500;
  border: none;
  background: none;
  outline: none;
}

.accordion .accordion-title span {
  font-size: 39px;
  font-weight: bold;
  line-height: 39px;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 0px;
  display: flex;
  align-items: center;
  gap: 26px;
  line-height: 30px;
  font-size: 20px;
  width: 95%;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 26px;
  height: 26px;
  border: 1px solid #191a23;
  border-radius: 22px;
  transform: translateY(-50%);
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 11px;
  left: 7px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 7px;
  left: 11px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded="true"] {
  color: #03b5d2;
}

.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

.accordion button[aria-expanded="true"]+.accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 16px;
  font-weight: 300;
  margin: 20px 0 0px;
  padding-top: 20px;
  border-top: 2px dashed #8F8F8F;
  color: #64748B;
  font-weight: 400;
}

/* How It Works Section */
.how-it-works-section {
  padding: 0px 0;
  position: relative;
}

.how-it-works-section .container {
  padding: 50px;
  border-radius: 15px;
}

.step-card {
  background: white;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ECEBEB;
}

.step-icon {
  background: white;
  /* border: 2px solid #33AEAF; */
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 16px;
}

.step-card h3 {
  font-size: 25px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 15px;
}

.step-card p {
  color: var(---text-color);
  font-size: 16px;
  margin-bottom: 36px;
}

.step-card .small-text {
  font-size: 12px;
  color: #999;
  margin-bottom: 20px;
}

.platform-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.step-number {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px dashed #9599AB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  background: #fff;
  z-index: 2;
}

.step-connector {
  position: absolute;
  right: -178px;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #9599AB 0, #9599AB 5px, transparent 5px, transparent 10px);
  transform: translateY(-50%);
  z-index: 1;
  bottom: 33px;
}

/* Feedback Section */
.feedback-section {
  background-color: #FDF7EC;
  padding: 60px 0 0px;
  position: relative;
}

.feedback-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='1440' height='492' viewBox='0 0 1440 492' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M67 52C164.667 115.5 402.483 209.236 594.5 178.5C885 132 1198.5 187.5 1521.5 491' stroke='%23EAEFF3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M63 15C160.667 78.5 398.483 172.236 590.5 141.5C881 95 1194.5 150.5 1517.5 454' stroke='%23EAEFF3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M107 1C204.667 64.5 442.483 158.236 634.5 127.5C925 81 1238.5 136.5 1561.5 440' stroke='%23EAEFF3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M-337 90C-214.343 187.523 94 245.499 273 177.499C452 109.499 513.5 104 579.5 103.999C737.516 103.996 965 124 1300 351.5' stroke='%23EAEFF3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M140 52C262.657 149.523 571 207.499 750 139.499C929 71.4986 990.5 66.0004 1056.5 65.999C1214.52 65.9957 1442 86 1777 313.5' stroke='%23EAEFF3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center top;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}


.feedback-swiper {
  padding: 30px 0 0px;
}

.feedback-card {
  background-image: url(../images/hero-bg.png);
  border-radius: 15px;
  padding: 30px 25px;
  height: 100%;
  position: relative;
  border: 1px solid #EDEDED;
  background-position-x: center;
  /* background-origin: content-box; */
  background-size: cover;
  background-position: right;
}

.quote-icon {
  position: absolute;
  top: -30px;
  left: 20px;
  z-index: 4;
}

.stars {
  display: flex;
  gap: 5px;
  margin: 20px 0 15px 0;
}

.feedback-text {
  color: var(--heading);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 80px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  margin: 0;
}

/* Swiper Pagination Customization */
.swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: white;
  border: 2px solid #33AEAF;
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #33AEAF;
  transform: scale(1.2);
}



/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.footer {
  background: url(../images/hero-bg.png);
  position: relative;
  overflow: hidden;
  padding: 50px 0 0px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer .logo-footer {
  max-width: 180px;
  height: auto;
  object-fit: cover;
}

.footer-menu li {
  list-style-type: none;
}

.social-icons a {
  width: 30px;
  height: 30px;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-icons a svg {
  fill: #fff;
  width: 15px;
}

.social-icons {
  display: flex;
  justify-content: start;
  gap: 15px;
  margin: 0px 0px;
}

.call {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #000;
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.call-price {
  /* display: flex; */
  align-items: center;
  gap: 20px;
  color: #000;
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 25px;
}

.call a img {
  max-width: 120px;
}

.footer-menu {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0px;
  gap: 40px;
}

.footer-menu li h2 {

  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
  color: #000;
  margin-bottom: 10px;
}

.footer-menu li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 29px;
  text-align: left;
  margin-bottom: 0px;
  display: block;
  color: var(---text-color);
  max-width: 300px;
  transition: color 0.2s;
}

.footer-menu li a:hover {
  color: var(--btn-started);

}

.footer-menu li a span {
  color: #3b474a;
  font-size: 16px;
  font-weight: 500;
}

.copyright {
  color: #000000;
  text-align: end;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 30px;
}

.copyright .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #c9cecc;
  padding: 15px 0px 15px;
}

/* inner-pages css */
.inner-pages {
  background: url(../images/register-section.png);
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--primary-bg);
}

.inner-pages .title {
  color: var(--primary-bg);
}

.register-form-container {
  background: var(--register-bg);
  border-radius: var(--register-form-radius);
  margin: 0px auto;
  padding: 32px 24px 32px 24px;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"],
.register-form select {
  width: 100%;
  padding: 14px 20px;
  margin-bottom: 20px;
  border: none;
  border-radius: var(--register-input-radius);
  background: var(--register-input-bg);
  font-size: 15px;
  color: #817d7d;
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
  transition: box-shadow 0.2s;
}

.register-form input:focus {
  box-shadow: 0 0 0 2px var(--main-color)33;
}

.register-form select:focus {
  box-shadow: 0 0 0 2px var(--main-color)33;
}

.password-field {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
}

.terms {
  font-size: 15px;
  color: var(--register-terms);
  margin-bottom: 18px;
  margin-top: -8px;
}

.terms a {
  color: var(--main-color);
  text-decoration: underline;
}

.login-link {
  text-align: center;
  font-size: 16px;
  color: var(--register-input-text);
  margin-bottom: 0;
}

.login-link a {
  color: var(--main-color);
  font-weight: 600;
  text-decoration: none;
}

.inner-pages.contact-section {
  background-image: url(../images/contact-bg.png);
  padding-bottom: 0;
}

.contact-img {
  position: absolute;
  bottom: -2px;
  left: auto;
  right: 0;
  max-width: 250px;
}

.inner-pages.contact-section .contact-contant {
  padding-bottom: 35px;
}

.inner-pages.contact-section .contact-contant .sub-title {
  color: var(--primary-bg);
}

/* contact Section Styles */
.contact-form,
.contact-info {
  background: var(--primary-bg);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(163, 163, 163, 0.14);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.subtitle {
  color: var(--btn-started);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  margin-bottom: 25px;
  padding: 14px 20px;
  font-size: 15px;
  background: #f3f3f3a6;
  transition: background 0.3s;
  outline: none;
  resize: none;
  font-weight: 500;
  color: #767676;
  font-weight: 400;
}

.contact-form textarea {
  height: 150px;
}

.info-item {
  display: flex;
  align-items: start;
  margin-bottom: 24px;
}

.info-item .svg-icon {
  margin-right: 15px;
  margin-top: 2px;
  background: #F7F7F7;
  border-radius: 10px;
  padding: 15px;
}

.info-item .svg-icon svg {
  width: 40px;
  height: 40px;
}

.info-label {
  font-weight: 700;
  color: var(--navbar-link-hover);
  margin-bottom: 4px;
  font-size: 20px;
}

.info-text,
.info-label {
  display: block;
  font-size: 1rem;
}

.info-text {
  display: block;
  font-size: 1rem;
  margin-top: 10px;
  color: var(--navbar-link);

}

.social-list {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  justify-content: center;
}

.social-list a {
  background: var(--btn-started);
  border-radius: 6px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
}

.social-list a svg {
  width: 24px;
  height: 24px;
}

.social-list a:hover {
  background: var(--navbar-link);
}

.follow-us {
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 2px;
  text-align: center;
  color: #000;
}

.pricing-plan .pricing-card {
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 10px;
}

.pricing-plan .pricing-card.action {
  border-color: var(--btn-started) !important;
}

.contact-section.about-section {
  background-image: url(../images/contact-section.png);
}

.stats-section {
  padding-top: 50px;
  margin: auto;
}

.stats-container {
  background: #F0F4FB;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  box-shadow: 0px 2px 10px rgba(80, 122, 204, 0.07);
  width: 590px;
  max-width: 95vw;
}

.stats-inner {
  background: #44A2B7;
  border-radius: 10px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 30px;
  position: relative;
  overflow: hidden;
}

/* Decorative gradient wave effect at the bottom */
.stats-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(89, 187, 200, 0.23) 65%, transparent 100%);
  opacity: 0.65;
  pointer-events: none;
}

.stat-block {
  text-align: center;
  color: #FFF;
  z-index: 2;
}

.stat-main {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 3px;
}

.stat-desc {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.92;
  margin: 0;
}

.about-section .card {
  background: #ffffffc9 !important;
  border: 2px dashed #33aeaf;
  padding: 30px;
}

.terms-header {
  padding: 20px 0px;
}

.terms-header p {
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 400;
  color: var(---text-color);
  line-height: 25px;
}

.terms-header h1,
.terms-header h2,
.terms-header h3,
.terms-header h4,
.terms-header h5,
.terms-header h6 {
  font-size: 22px;
  margin-top: 20px;
  color: var(--heading);
  font-weight: 600;
  margin-bottom: 10px;
}

.terms-header ul {
  margin: 0px;
  list-style-type: disc;
  line-height: 30px;
}

.terms-header ul li {
  color: var(---text-color);
}

.inner-pages.verify-section {
  padding: 80px 0;
}

.gorw-right-content {
  padding-bottom: 50px;
}

.register-form-container h6 {
  font-weight: 500;
  line-height: 30px;
  font-size: 21px;
}

.label-text-color {
  /* color: var(--navbar-link); */
  color: #000000;
  font-weight: 500;
  font-size: 16px;
}

.profile_section {
  padding: 70px 0px;
  background: #fefefe;
}

.profile_section .card-header {
  border-bottom: 2px solid #f0f0f0;
  border-radius: 15px 15px 0 0 !important;
  padding: 25px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.10) 0px 0px 8px;
  border-radius: 15px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0px;
  margin-top: 0px;
}

.profile_section .user_info_card {
  background: #fff;
  padding: 25px;
  border-radius: 0px 0px 15px 15px;
  box-shadow: rgba(0, 0, 0, 0.10) 0px 0px 8px;
}

.profile_section .user_info_card .img_flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile_section .user_info_card .image_container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 15px;
}

.profile_section .user_info_card .image_container .status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  bottom: 4px;
  right: 4px;
  border: 2px solid #fff;
  background-color: var(--btn-started) !important;
}

.profile_section .user_info_card .info_flex {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.profile_section .user_info_card .info_flex .name_title {
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0px;
  color: var(--btn-started);
}

.profile_section .user_info_card .info_flex .form_label {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.profile_section .user_info_card .info_flex .form_label svg {
  width: 20px;
  height: 20px;
  fill: var(--btn-started);
}

.profile_section .user_info_card .image_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile_section .user_info_card .image_container .rounded-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  font-size: 34px;
  font-weight: 600;
}

.profile_section .user_info_card .user_info_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 30px;
}

.profile_section .user_info_card .user_info_item {
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 2px dashed #ECEBEB;
  padding-bottom: 15px;
}

.profile_section .user_info_card .user_info_item .info_label {
  font-size: 18px;
  color: #767676;
  font-weight: 400;
  white-space: nowrap;
  min-width: 159px;
}

.profile_section .user_info_card .user_info_item .form_label {
  display: block;
  font-size: 18px;
  color: #373737;
  margin-bottom: 0px;
  font-weight: 500;
}

.profile_section .user_info_card .image_container .rounded-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Profile Section - Subscription Card Styles
   ============================================ */

.profile_section .card {
  border: none;
  border-radius: 15px;
}

.profile_section .card-header {
  /* border-bottom: 2px solid #f0f0f0; */
  border-radius: 15px 15px 0 0 !important;
}

.profile_section .bg-light {
  background-color: #f8f9fa !important;
}

.profile_section .btn {
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 500;
}

.profile_section .btn-lg {
  padding: 12px 32px;
}

/* Modern Subscription Status Card */
.profile_section .subscription-status-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
  position: relative;
  overflow: hidden;
}

.profile_section .subscription-status-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: profile-pulse 3s ease-in-out infinite;
}

.profile_section .status-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.profile_section .status-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.profile_section .status-icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.profile_section .status-content {
  flex: 1;
}

.profile_section .status-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile_section .status-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0;
}

.profile_section .status-indicator {
  position: relative;
  flex-shrink: 0;
}

.profile_section .pulse-dot {
  display: block;
  width: 12px;
  height: 12px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: profile-pulse-animation 2s ease-out infinite;
}

@keyframes profile-pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

@keyframes profile-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Package Features Section */
.profile_section .package-features-section {
  margin-top: 24px;
}

.profile_section .features-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.profile_section .title-icon {
  width: 24px;
  height: 24px;
  color: #667eea;
}


.profile_section .feature-content {
  flex: 1;
}

.profile_section .feature-description {
  display: flex;
  /* flex-direction: column; */
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.profile_section .feature-description P {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 0px;
  color: #374151;
  width: 49%;
}

.profile_section .feature-description P::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #33AEAF;
  border-radius: 50%;
}

/* Subscription Action Buttons */
.profile_section .subscription-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.profile_section .action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 2px solid;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.profile_section .action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.profile_section .action-btn:hover::before {
  left: 100%;
}

.profile_section .btn-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.profile_section .btn-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.profile_section .btn-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.profile_section .btn-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.profile_section .btn-sublabel {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.2;
}

/* Cancel Button */
.profile_section .cancel-btn {
  border-color: #fee2e2;
  color: #dc2626;
}

.profile_section .cancel-btn .btn-icon {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #dc2626;
}

.profile_section .cancel-btn:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-color: #dc2626;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.profile_section .cancel-btn:hover .btn-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: rotate(-10deg) scale(1.1);
}

.profile_section .cancel-btn:hover .btn-icon svg {
  transform: rotate(90deg);
}

/* Upgrade Button */
.profile_section .upgrade-btn {
  border-color: #dbeafe;
  color: #2563eb;
}

.profile_section .upgrade-btn .btn-icon {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2563eb;
}

.profile_section .upgrade-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-color: #2563eb;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.profile_section .upgrade-btn:hover .btn-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: rotate(10deg) scale(1.1);
}

.profile_section .upgrade-btn:hover .btn-icon svg {
  transform: translateX(4px) translateY(-4px);
}

/* No Subscription Empty State */
.profile_section .no-subscription-wrapper {
  padding: 60px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.profile_section .empty-state-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.profile_section .empty-state-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  opacity: 0.3;
  z-index: -1;
}

.profile_section .empty-state-icon svg {
  width: 56px;
  height: 56px;
  color: #d97706;
  filter: drop-shadow(0 2px 4px rgba(217, 119, 6, 0.2));
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.profile_section .empty-state-content {
  max-width: 480px;
}

.profile_section .empty-state-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.profile_section .empty-state-text {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 0;
}

.profile_section .empty-state-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.profile_section .empty-state-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.profile_section .empty-state-btn:hover::before {
  left: 100%;
}

.profile_section .empty-state-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

.profile_section .empty-btn-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile_section .empty-btn-icon svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.profile_section .empty-btn-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  flex: 1;
}

.profile_section .empty-btn-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.profile_section .empty-btn-sublabel {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.2;
}

.profile_section .empty-btn-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.profile_section .empty-btn-arrow svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.profile_section .empty-state-btn:hover .empty-btn-arrow {
  transform: translateX(4px);
}

.profile_section .empty-state-btn:hover .empty-btn-icon {
  transform: scale(1.1);
}

/* Responsive adjustments for Profile Section */
@media (max-width: 576px) {
  .profile_section .subscription-status-card {
    padding: 16px;
  }

  .profile_section .status-badge-wrapper {
    gap: 12px;
  }

  .profile_section .status-icon {
    width: 48px;
    height: 48px;
  }

  .profile_section .status-icon svg {
    width: 28px;
    height: 28px;
  }

  .profile_section .status-title {
    font-size: 18px;
  }

  .profile_section .status-text {
    font-size: 13px;
  }

  .profile_section .features-title {
    font-size: 16px;
  }

  .profile_section .title-icon {
    width: 20px;
    height: 20px;
  }

  .profile_section .feature-icon-wrapper {
    width: 42px;
    height: 42px;
  }

  .profile_section .feature-icon {
    width: 24px;
    height: 24px;
  }

  .profile_section .feature-description {
    font-size: 14px;
  }

  .profile_section .subscription-actions {
    flex-direction: column;
    gap: 12px;
  }

  .profile_section .action-btn {
    padding: 14px 16px;
    gap: 12px;
  }

  .profile_section .btn-icon {
    width: 42px;
    height: 42px;
  }

  .profile_section .btn-icon svg {
    width: 20px;
    height: 20px;
  }

  .profile_section .btn-label {
    font-size: 15px;
  }

  .profile_section .btn-sublabel {
    font-size: 12px;
  }

  .profile_section .no-subscription-wrapper {
    padding: 0px;
    gap: 20px;
  }

  .profile_section .empty-state-icon {
    width: 100px;
    height: 100px;
  }

  .profile_section .empty-state-icon svg {
    width: 48px;
    height: 48px;
  }

  .profile_section .empty-state-title {
    font-size: 20px;
  }

  .profile_section .empty-state-text {
    font-size: 14px;
  }

  .profile_section .empty-state-btn {
    padding: 16px 24px;
    gap: 12px;
    width: 100%;
  }

  .profile_section .empty-btn-icon {
    width: 40px;
    height: 40px;
  }

  .profile_section .empty-btn-icon svg {
    width: 20px;
    height: 20px;
  }

  .profile_section .empty-btn-label {
    font-size: 15px;
  }

  .profile_section .empty-btn-sublabel {
    font-size: 11px;
  }
}

/* Download App Modal */
.download-app-modal,
.store-qr-popup {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1200;
}

.store-qr-popup {
  z-index: 1210;
}

.download-app-modal.open,
.store-qr-popup.open {
  opacity: 1;
  pointer-events: auto;
}

.download-modal-panel,
.qr-popup-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  width: min(520px, 95vw);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
  position: relative;
  text-align: center;
}

.qr-popup-card {
  width: min(420px, 92vw);
}

.download-modal-close,
.qr-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.05);
  color: #0f172a;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.download-modal-close:hover,
.qr-popup-close:hover {
  background: rgba(15, 23, 42, 0.12);
  transform: scale(1.05);
}

.download-modal-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.download-modal-header p {
  color: #64748b;
  margin-bottom: 24px;
  font-size: 15px;
}

.store-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.store-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-align: left;
}

.store-card:hover {
  border-color: #33AEAF;
  box-shadow: 0 15px 40px rgba(51, 174, 175, 0.15);
  background: #ffffff;
}

.store-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(51, 174, 175, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-icon svg {
  width: 28px;
  height: 28px;
  fill: #33AEAF;
}

.store-content small {
  display: block;
  font-size: 13px;
  color: #94a3b8;
}

.store-content strong {
  display: block;
  font-size: 17px;
  color: #0f172a;
  margin-top: 4px;
}

.qr-image {
  width: 240px;
  height: 240px;
  border-radius: 16px;
  border: 1px dashed #cbd5f5;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

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

.qr-image.empty::after {
  content: "Link coming soon";
  position: absolute;
  color: #94a3b8;
  font-size: 14px;
  text-align: center;
  padding: 0 12px;
}

.qr-primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #33AEAF;
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
  min-width: 200px;
}

.qr-primary-link:hover {
  background: #29999a;
}

.qr-primary-link.disabled {
  pointer-events: none;
  opacity: 0.6;
}

.qr-helper-text {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 14px;
}

body.download-modal-open {
  overflow: hidden;
}

@media (max-width: 575px) {
  .download-modal-panel,
  .qr-popup-card {
    padding: 22px;
  }

  .store-card {
    flex-direction: row;
  }

  .download-modal-header h3 {
    font-size: 21px;
  }
}

/* QR Scanner Container Styles */
.qr-scanner-container {
  /* margin-top: 15px;
  padding-top: 15px; */
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* justify-content: center; */
}

.qr-scanner-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.qr-scanner-link {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.qr-scanner-link:hover {
  transform: scale(1.05);
}

.qr-scanner-image {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-platform-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #33AEAF;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

@media (max-width: 575px) {
  .qr-scanner-container {
    align-items: center;
  }

  .qr-scanner-wrapper {
    gap: 10px;
    justify-content: center;
  }

  .qr-scanner-image {
    width: 140px;
    height: 140px;
  }

  .qr-platform-badge {
    font-size: 10px;
    padding: 2px 6px;
  }
}