body {
  font-family: "Urbanist";
  background-color: #00262b;
  color: #fff;
}
.mid-section {
  overflow-x: clip;
}
.common-page-space {
  padding: 50px 0;
}

/*==== TNC Page Add Css =====*/
::-webkit-scrollbar {
  width: 3px;
  scrollbar-width: thin;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #02eaac;
  border: 0px solid transparent;
  transition: 0.5s all ease-in-out;
  border-radius: 0;
}
.sticky-sidebar ul::-webkit-scrollbar-thumb {
  background-color: transparent;
}
::-webkit-scrollbar-thumb:hover {
  background: #02eaad;
}
@-moz-document url-prefix() {
  body::-webkit-scrollbar {
    width: 4px; /* Thin scrollbar */
  }
  body::-webkit-scrollbar-thumb:hover {
    background-color: #02eaad; /* On hover */
  }

  /* Scrollbar for Firefox */
  body {
    scrollbar-width: thin;
    scrollbar-color: #02eaad transparent;
  }
}
.btn-explore {
  height: 49px;
  padding: 18px 15px 18px 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  gap: 8px;
  font-size: 16px;
  margin: 30px 0;
  font-weight: bold;
  position: relative;
  z-index: 999;
}
.btn-dark-outline {
  background-color: white;
  color: black;
}
.btn-explore:hover {
  border: 1px solid #fff;
  color: #fff;
}
/* nav */
nav {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links li a {
  text-decoration: none;
  margin: 0 0.7vw;
  color: #e7f5f1;
  font-size: 18px;
  font-family: "Rubik";
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  transition: all 0.7s ease;
  width: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.nav-links li a:hover {
  color: #00d59f;
}

.join-button {
  background: white;
  color: #00262b;
  border-radius: 10px;
  padding: 10px 15px 10px 20px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  border: 1px solid #ffffff;
}

.join-button:hover {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
  transition: all 0.3s ease;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 4;
}

.hamburger div {
  width: 30px;
  height: 3px;
  background: #f2f5f7;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.hero-section {
  background-image: url(../images/bg/banner-bg.png);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #00262b;
  padding-top: 150px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.section-title h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}
.section-title p {
  color: #eafffa;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.2px;
  margin-bottom: 35px;
  transition: 0.5s all ease-in-out;
}

.fa-arrow-right-round {
  border: 1px solid;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
}
.tablist {
  display: flex;
  padding-bottom: 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.tablist span {
  border: 1px solid rgba(3, 255, 188, 0.2);
  padding: 10px 15px;
  border-radius: 60px;
  color: #03ffbc;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 35px;
}
.tablist span:before {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #03ffbc;
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
}
.demo-img-shadow {
  top: -47px;
  position: relative;
}
.land-card {
  position: absolute;
  animation: softScale 6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes softScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* 👈 bas 0.5% */
  }
  100% {
    transform: scale(1);
  }
}
.land-card1 {
  left: 0;
  top: 100px;
}
.land-card2 {
  left: 0;
  top: 50%;
  transform: translateY(-50%) !important;
}
.land-card3 {
  left: 0;
  bottom: 10%; 
}
.land-card4 {
  right: 0;
  top: 100px;
}
.land-card5 {
  right: 0;
  top: 50%;
  transform: translateY(-50%) !important;
}
.land-card6 {
  right: 0;
  bottom: 10%;
}
.land-img {
  animation: softScale 6s ease-in-out infinite;
  transform-origin: center;
}
/*--------------------------------------------------------------
# How it works Section
--------------------------------------------------------------*/
.follow-up-section {
  background: url(../images/bg/follow-bg.png) no-repeat right top;
  position: relative;
}
.follow-img {
  margin-top: 170px;
}
.follow-up-section::after {
  background: url(../images/bg/banner-shadow.png) no-repeat left top;
  content: "";
  position: absolute;
  left: 0;
  bottom: -918px;
  width: 876px;
  height: 1722px;
  z-index: -1;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
  margin-top: 40px;
}
.hero-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: #e6fff8;
  font-size: 18px;
}
.hero-list li::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #03ffbc;
  border: 4px solid #021514;
  z-index: 2;
}

/* VERTICAL LINE */
.hero-list li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: -15px;
  width: 2px;
  height: 35px;
  background: rgba(3, 255, 188, 0.35);
}

.hero-list li:last-child::after {
  height: 55px;
}
.hero-chip {
  background: linear-gradient(
    90deg,
    rgba(3, 255, 188, 0.4) -25.81%,
    rgba(2, 153, 113, 0) 64.72%
  );
  display: flex;
  width: 514px;
  padding: 8px 20px;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 27px; /* 122.727% */
  letter-spacing: 0.22px;
}
.follow-shadow {
  position: absolute;
  z-index: 9999;
  bottom: 0;
  right: 0;
}
/*--------------------------------------------------------------
# Why HomeLead Section
--------------------------------------------------------------*/
.why-section {
  padding: 140px 0 48px 0;
}
.b-card {
  background-color: #031c1c !important;
  border: 1px solid rgba(0, 242, 166, 0.2) !important;
  border-radius: 20px !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 20px;
}
.b-card p {
  color: #eafffa;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.18px;
  margin-bottom: 0;
}
.card-footer-text i {
  color: #03ffbc;
}
.card-footer-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-box i {
  font-size: 20px;
}
.b-card:hover {
  border-color: #00f2a6 !important;
  box-shadow: 0 0 20px rgba(0, 242, 166, 0.15);
}

.text-accent {
  color: #00f2a6 !important;
}

/*--------------------------------------------------------------
# Top Benefits Section
--------------------------------------------------------------*/
.top-benefits-section {
  padding: 100px 0;
  position: relative;
}
.top-benefits-section::after {
  background: url(../images/bg/top-benefits-bg.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 1502px;
  z-index: -1;
}
.list-row-gap {
  grid-row-gap: 20px;
}
.top-benefits-section h4 {
  color: #fff;
  transition: 0.5s all ease-in-out;
  padding-top: 58px;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.22px;
}
.top-benefits-box {
  padding: 20px;
  height: 100%;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.53);
}

.top-benefits-box::before {
  content: "";
  background: linear-gradient(138deg, #88fedf, #f3fffc);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
  transition: 0.5s all ease-in-out;
  z-index: -1;
  border-radius: 30px;
  transform: scale(0);
  top: -81px;
}

.top-benefits-box:hover::before {
  width: 100%;
  opacity: 1;
  transform: scale(1);
  top: 0;
}
.top-benefits-box img {
  transition: 0.5s all ease-in-out;
}

/*--------------------------------------------------------------
# Core Features Section
--------------------------------------------------------------*/
.core-features-section {
  padding: 100px 0;
  position: relative;
}
.core-features-section::after {
  background: url(../images/bg/core-features-bg.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 2026px;
  z-index: -1;
}
/* .core-features-logo {
  position: absolute;
  top: 187px;
  right: 0;
  left: -5px;
  margin: auto;
  width: 169px;
  height: 169px;
  border-radius: 100%;
  background: #001518;
  padding-top: 65px;
}
.core-features-logo img {
  width: 105px;
  animation: softScale 6s ease-in-out infinite;
  transform-origin: center;
} */
.core-features-logo {
  position: absolute;
  top: 144px;
  right: 0;
  left: -5px;
  margin: auto;
  width: 140px;
  height: 140px;
  border-radius: 100%;
  background: #001518;
  padding-top: 56px;
}
.core-features-logo img {
  width: 90px;
  animation: softScale 6s ease-in-out infinite;
  transform-origin: center;
}
/*--------------------------------------------------------------
# How Homelead Works Section
--------------------------------------------------------------*/
.how-it-works {
  position: relative;
}
.how-it-works::after {
  background: url(../images/bg/how-bg.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 800px;
  z-index: -1;
}
.step-card {
  position: relative;
  text-align: center;
  color: #cfdede;
}
.step-badge {
  display: inline-block;
  margin-bottom: 10px;
  color: #001518;
  letter-spacing: 0.5px;
  border-radius: 20px;
  background: #03ffbc;
  padding: 2px 9px;
  font-size: 14px;
  position: absolute;
  left: 20px;
  z-index: 9999;
  top: 10px;
}
.step-circle::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(125, 255, 206, 0.35);
  box-shadow: 0 0 20px rgba(125, 255, 206, 0.25);
}
.step-circle {
  position: relative;
  width: 150px;
  height: 150px;
  margin: auto;
  border-radius: 50%;
  background: radial-gradient(
    circle at top,
    #0f6b5a 0%,
    #063f36 65%,
    #032b25 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 45px rgba(0, 255, 200, 0.25),
    inset 0 0 35px rgba(0, 255, 200, 0.18);
}
.step-circle img {
  width: 56px;
  /*opacity: 1;
  filter: drop-shadow(0 0 6px rgba(0, 255, 200, 0.6)); */
}

.step-card {
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-card:hover .step-circle {
  box-shadow: 0 0 60px rgba(0, 255, 200, 0.45),
    inset 0 0 40px rgba(0, 255, 200, 0.3);
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 200, 0.4);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(0, 255, 200, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 200, 0);
  }
}
.step-card.active .step-circle {
  animation: pulseGlow 2.5s infinite;
}

.step-card.active .step-badge {
  color: #00ffd0;
}

.step-card.active p {
  color: #ffffff;
}
.step-card p {
  margin-top: 25px;
  font-size: 18px;
  line-height: 1.4;
}
.step-wrap {
  position: relative;
}
.step-wrap:last-child:after {
  display: none;
}
.step-wrap::after {
  content: "";
  position: absolute;
  top: 40%;
  right: -28px;
  width: 60px;
  height: 11px;
  background: url(../images/icon/arrow-line.png) no-repeat;
}

.step-wrap.no-line::after {
  display: none;
}

.section-heading-h1 {
  font-size: 60px;
  font-weight: bold;
  color: #ffffff;
}
.section-heading-h1 span {
  color: #03ffbc;
}
.banner-text {
  margin: 16px 0 40px;
}
/*--------------------------------------------------------------
# Trusted by Leading Builders Section
--------------------------------------------------------------*/
.trusted-section {
  position: relative;
}
.trusted-section::after {
  background: url(../images/bg/proven-results-bg.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  left: 0;
  top: -500px;
  right: 0;
  width: 100%;
  height: 2026px;
  z-index: -1;
}
.section-tag {
  font-size: 20px;
  color: #6ff2c2;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stat-card {
  text-align: left;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 22px;
  border-radius: 18px;
  background: #01181b;
  transition: all 0.3s ease;
}
.stat-card:hover {
  background: linear-gradient(180deg, #083b31 0%, #052722 100%);
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6),
    inset 0 0 25px rgba(0, 255, 200, 0.25);
}
.stat-card h3 {
  color: #00ffd0;
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 10px;
}
.stat-card h6 {
  color: #ffffff;
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 6px;
}
.stat-card p {
  font-size: 16px;
  color: #b9d6cf;
  margin: 0;
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 80px 0;
}
.clients p {
  color: #eafffa;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.clients .swiper {
  padding-bottom: 10px;
  padding-top: 10px;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}
.logo-slider {
  padding: 12px 0;
}

.logo-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slider .swiper-slide img {
  object-fit: contain;
}

/*--------------------------------------------------------------
# integration Section
--------------------------------------------------------------*/
.integration-section {
  background: url(../images/bg/hub-bg.png) no-repeat bottom center #001518;
  background-size: cover;
  padding: 96px 0;
  position: relative;
  z-index: 1;
}
.integration-section::after {
  background: url(../images/bg/hub-inner-bg.png) no-repeat right top;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 764px;
  z-index: -1;
}
.integration-hub {
  position: relative;
  width: 420px;
  height: 420px;
}
.hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: linear-gradient(180deg, #062e27, #031c18);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ffd0;
  font-weight: 600;
  box-shadow: 0 0 40px rgba(0, 255, 200, 0.35);
}
.hub-node {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #062e27;
  box-shadow: 0 0 18px rgba(0, 255, 200, 0.3);
}
.center-card {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 275px;
  height: 203px;
  background: #062d2b;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 0 20px rgba(3, 255, 188, 0.4);
  animation: centerPulse 4s ease-in-out infinite;
  z-index: 2;
  left: -4px;
  top: 1px;
}

@keyframes centerPulse {
  0% {
    box-shadow: 0 0 0 rgba(3, 255, 188, 0.25);
  }
  50% {
    box-shadow: 0 0 30px rgba(3, 255, 188, 0.55);
  }
  100% {
    box-shadow: 0 0 0 rgba(3, 255, 188, 0.25);
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing-section {
  padding: 170px 0 100px 0;
}
.text-green {
  color: #03ffbc;
}
.pricing-divider-wrap {
  position: relative;
}
.pricing-divider-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 1px;
  background: rgba(3, 255, 188, 0.35);
}
.divider-label {
  position: relative;
  background: #00262b;
  padding: 0 14px;
  font-size: 18px;
  color: #03ffbc;
  z-index: 2;
}
.pricing-toggle {
  display: inline-flex;
  background: #06362e;
  padding: 5px;
  border-radius: 30px;
}
.pricing-toggle a {
  padding: 6px 18px;
  color: #8fbfb2;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.pricing-toggle .active {
  background: #021f1b;
  color: #fff;
  border-radius: 20px;
}
.pricing-card {
  background: #001518;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  color: #fff;
  box-shadow: 0 0 30px rgba(0, 255, 188, 0.08);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: "Rubik", sans-serif;
}
.pricing-card:hover {
  transform: scale(1.01);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.2);
}
.pricing-card.popular {
  box-shadow: 0 0 34px 10px rgba(3, 255, 188, 0.28);
}
.badge-popular {
  position: absolute;
  top: 0px;
  right: 0;
  background: #03ffbc;
  color: #021312;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 0 16px 0 16px;
}
.plan {
  display: block;
  padding: 8px 16px;
  border: 1px solid rgba(3, 255, 188, 0.4);
  border-radius: 60px;
  font-size: 18px;
  color: #03ffbc;
  width: 165px;
  text-align: center;
  /*margin: auto;*/
  margin-bottom: 15px;
}
.pricing-title {
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 0.38px;
    font-family: "Urbanist";
}
.price {
    margin:5px 0 15px;
    color: #fff;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    justify-content: left;
    align-items: center;
    font-family: "Urbanist";
    gap: 10px;
}
.price span {
  font-size: 16px;
  color: #969696;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 45px 0;
}
.pricing-card ul li {
    margin-bottom: 7px;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    letter-spacing: 0.16px;
}
.pricing-card ul li::before {
    content: "✓";
    color: #03ffbc;
    margin-right: 15px;
    font-size: 13px;
}
.pricing-card small {
  color: #dadada;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.pricing-card p {
  font-size: 16px;
}
.pricing-card .btn {
  border-radius: 10px;
  font-weight: 700;
  padding: 12px 0;
  font-size: 18px;
}
.more-item {
    display: none;        /* hidden by default */
    list-style: none;
}

.more-item.flex-show {
    display: flex;        /* show hone par flex */
}
/*--------------------------------------------------------------
# Client Reviews Section
--------------------------------------------------------------*/
.section-label {
  background-color: #03ffbc;
  color: #00262b;
  padding: 4px 15px;
  border-radius: 10px;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 10px;
}
.slide-image {
  padding: 15px 21px;
  display: flex;
  justify-content: center;
  font-family: "Inter", sans-serif;
}

.marque-card {
  background: rgba(29, 48, 40, 0.1);
  border-radius: 42px;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 10px rgba(0, 255, 170, 0.1);
  max-width: 400px;
  border: 1px solid #03ffbc;
}

.marque-card .card-body {
  padding: 20px;
}

.rounded-circle {
  width: 51px;
  height: 51px;
  object-fit: cover;
  object-position: top;
}

.slider-content {
  font-size: 14px;
}

.login-column-shape {
  top: -20px;
  left: -19px;
}

.login-column-text {
  margin: 24px 0 40px;
}

/* Success Stores section end */
.author-title {
  font-size: 20px;
}

.author-details small {
  font-size: 13px;
}

/*--------------------------------------------------------------
# Demo Section
--------------------------------------------------------------*/
.demo-section {
  position: relative;
  padding: 100px 0 50px;
}
.demo-section::after {
  background: url(../images/bg/personal-demo-bg.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 1150px;
  z-index: -1;
}
.demo-section h6 {
  color: #fff;
  font-size: 22px;
  margin: 0 0 20px 0;
}
.demo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 55px;
}

.demo-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 10px;
  background: rgba(3, 255, 188, 0.1);
  border: 1px solid rgba(3, 255, 188, 0.1);
  padding: 14px 18px;
  margin-bottom: 25px;
  color: #fff;
  font-size: 18px;
}

/* icon circle */
.demo-icon {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #031f1b;
  color: #03ffbc;
}

/* hover (optional) */
.demo-list li:hover {
  background: rgba(3, 255, 188, 0.15);
  transition: 0.3s;
}
ul.trust-list {
  list-style: none;
  padding: 0;
}
.trust-list li {
  position: relative;
  color: #eafffa;
  font-size: 15px;
  margin-bottom: 14px;
}
.trust-list li i {
  margin-right: 10px;
  color: #03f0b1;
  font-size: 16px;
}
/* FORM */
.demo-form {
  width: 100%;
  max-width: 610px;
  padding: 50px 30px;
  border-radius: 18px;
  background: linear-gradient(180deg, #031c19, #021312);
  box-shadow: 0 0 50px rgba(0, 255, 188, 0.2);
}
.demo-form small {
  color: #7a8f8a;
  text-align: center;
  font-size: 14px;
  margin-top: 25px;
}
/* inputs */
.demo-form label {
  font-size: 16px;
  color: #eafffa;
  padding-bottom: 5px;
}
.demo-form .form-control {
  color: rgba(234, 255, 250, 0.4);
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #eafffa;
  background: #001d21;
  padding: 13px 20px;
}
.demo-form .form-control::placeholder {
  color: rgba(234, 255, 250, 0.4);
}
.demo-form .form-control:focus {
  box-shadow: none;
  border-color: #03ffbc;
}

/* button */
.demo-form .btn {
  border-radius: 10px;
  padding: 14px 0;
  font-size: 18px;
  margin-top: 10px;
}
/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
footer {
  background: url(../images/bg/footer-bg.png) no-repeat center top;
  /* padding-top: 50px; */
  padding-bottom: 50px;
}
footer hr {
  border-top: 2px solid #02997166;
}
footer .footer-social-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .footer-social-block li {
  display: inline-block;
  margin-right: 18px;
}

footer .footer-social-block a {
  font-size: 18px;
  color: #000;
  background: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  text-decoration: none;
  border-radius: 50px;
}

footer .footer-social-block a:hover {
  background: #19ae86;
  color: #fff;
  transition-duration: 500ms;
}

.copyright-block {
  color: #fff;
  font-size: 16px;
}

.copyright-block a {
  color: #fff;
  text-decoration: none;
}

.copyright-block a:hover {
  color: #929292;
}
/* -----Modal----- */
.modal-content {
  background: linear-gradient(180deg, #031c19, #021312);
  box-shadow: 0 0 50px rgba(0, 255, 188, 0.2);
}
.modal-body .form-control {
  color: rgba(234, 255, 250, 0.4) !important;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #eafffa;
  background: #001d21;
  padding: 13px 20px;
}
.modal-body .btn {
  border-radius: 10px;
  padding: 14px 0;
  font-size: 18px;
  margin-top: 10px;
}
.modal-body .form-control::placeholder {
  color: rgba(234, 255, 250, 0.4);
}
.modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
.modal-body .btn {
  border-radius: 10px;
  padding: 14px 0;
  font-size: 18px;
  margin-top: 10px;
}
.modal-backdrop {
  opacity: 0.7 !important;
}

.feature-list .more-item {
  display: none;
}
.toggle-more-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  padding: 5px 0;
  text-align: left;
}

/*-------------*/

.headline {
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;    
 
}
.static-text {
  margin-right: 10px;
}

.dynamic-wrapper { 
  position: relative;
}

.word {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  white-space: nowrap;    color: #03ffbc;
}

.word.active {
  opacity: 1;
}

/* LETTERS */
.word span {
  display: inline-block;
  opacity: 0;
  transform: rotateX(90deg);
}

.word.active span {
  animation: swirl 0.6s forwards;
}

/* mobile */
@media (max-width: 1200px) {
  .headline {
    font-size: 30px;
  }
  .dynamic-wrapper{display:block}
  .word{right:0;}
  .banner-text {
    margin-top: 42px;
}
}

@keyframes swirl {
  to {
    opacity: 1;
    transform: rotateX(0);
  }
}
@media (min-width: 1200px) {
	.headline{	 
		width: 1100px;
		margin: auto;
		text-align:left;
	}
}