@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;
}
.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: 357.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;
}