@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Inter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:-ms-input-placeholder {
  color: #6b7280;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

::-moz-placeholder {
  color: #6b7280;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

::placeholder {
  color: #6b7280;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #03658c, #2897b0);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  cursor: -webkit-grab;
  cursor: grab;
  background: linear-gradient(180deg, #2897b0, #5fb3d4);
  transform: scale(1.1);
}

::-webkit-scrollbar-thumb:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  background: linear-gradient(180deg, #024d6b, #03658c);
}

body {
  --testiwidth: 35vw;
  --testiheight: 800px;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-position: top;
  background-size: contain;
  background-image: url("../assets/frame.png"), linear-gradient(#d7f1fc, white);
  background-repeat: no-repeat;
  overflow-x: hidden;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

/* Loading Screen Styles */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d7f1fc 0%, #ffffff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.8s ease-in-out;
}

#loading-screen.slide-up {
  transform: translateY(-100%);
  opacity: 0;
}

.loading-container {
  text-align: center;
  animation: fadeInScale 1s ease-out forwards;
}

.loading-logo {
  width: 95px;
  height: 112px;
  margin-bottom: 2rem;
  animation: logoFloat 2s ease-in-out infinite, logoGlow 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(3, 101, 140, 0.3));
}

.loading-text {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #03658c;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  animation: textPulse 2s ease-in-out infinite;
}

.loading-span-text {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #03658c;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(3, 101, 140, 0.1);
  border-left: 4px solid #03658c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

/* Loading Animations */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 10px 20px rgba(3, 101, 140, 0.3));
  }
  50% {
    filter: drop-shadow(0 15px 30px rgba(3, 101, 140, 0.5));
  }
}

@keyframes textPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.03);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0.8;
    transform: translateY(0);
  }
}

@keyframes textShine {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hide main content during loading */
body.loading {
  overflow: hidden;
}

body.loading > *:not(#loading-screen) {
  opacity: 0;
  visibility: hidden;
}

body.loaded > *:not(#loading-screen) {
  opacity: 1;
  visibility: visible;
  animation: mainContentFadeIn 0.8s ease-out forwards;
}

@keyframes mainContentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body aside {
  height: 100vh;
  width: 55vw;
  background-color: white;
  gap: 2rem;
  justify-content: space-between;
  position: fixed;
  border-left: 1px solid darkblue;
  display: flex;
  top: 0;
  flex-direction: column;
  align-items: center;
  z-index: 101;
  right: -55vw;
  justify-content: center;
}

body aside .fa-x {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  color: #106d92;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0px;
}

body aside .fa-x:hover {
  transform: translateX(10px);
  transition: transform 0.4s;
  color: #479fc2;
}

body aside .q-ham {
  height: 5rem;
  margin-bottom: 3rem;
}

body aside .ham-elements {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

body aside .ham-elements .aside-logos {
  display: flex;
  gap: 0.6rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

body aside .ham-elements .aside-logos i,
body aside .ham-elements .ham-link {
  text-decoration: none;
  cursor: pointer;
  color: #106d92;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0px;
}

body aside .ham-elements .aside-logos i {
  font-size: 1.5rem !important;
}

body aside .ham-elements .ham-link:hover {
  color: #479fc2;
}

@-webkit-keyframes ham-in {
  from {
    right: -55vw;
  }

  to {
    right: 0;
  }
}

@keyframes ham-in {
  from {
    right: -55vw;
  }

  to {
    right: 0;
  }
}

@-webkit-keyframes ham-out {
  from {
    right: 0;
  }

  to {
    right: -55vw;
  }
}

@keyframes ham-out {
  from {
    right: 0;
  }

  to {
    right: -55vw;
  }
}

body header nav {
  display: flex;
  flex-direction: "row";
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
}

body header nav .q-sign,
body header nav .menu-sign,
body header nav a {
  cursor: pointer;
  transition: 0.3s;
}

body header nav .q-sign {
  height: 5rem;
}

body header nav .menu-sign {
  height: 2rem;
}

body header nav .nav-elements {
  display: flex;
  flex-direction: "row";
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

body header nav .nav-elements a {
  color: #03658c;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-decoration: none;
  word-spacing: -2px;
  font-family: "Open Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: color 0.3s ease;
  position: relative;
}

body header nav .nav-elements a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: #2897b0;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

body header nav .nav-elements a:hover {
  color: #2897b0;
}

body header nav .nav-elements a:hover::after {
  width: 100%;
}

body main #page-1 {
  display: flex;
  flex-direction: "row";
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  /* width: 100vw;
  overflow-x: hidden; */
}

body main #page-1 img {
  transform: rotate(2deg) translateX(8px);
  width: 48vw;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

body main #page-1 #home {
  padding: 4rem 0 0 10rem;
  float: left;
  text-align: left;
}

body main #page-1 #home .home-title {
  color: #03658c;
  font-weight: 500;
  font-size: 3.35rem;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  align-items: flex-start;
  margin-bottom: 1rem;
}

body main #page-1 #home .home-title span {
  margin-top: -1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

body main #page-1 #home .home-title span:first-child {
  animation-delay: 0.2s;
}

body main #page-1 #home .home-title span:nth-child(2) {
  animation-delay: 0.5s;
}

body main #page-1 #home .home-title span:last-child {
  animation-delay: 0.8s;
}

body main #page-1 #home .home-content {
  color: #2897b0;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 1px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

body main .get-vybe {
  --shadow: 0 4px 15px -3px rgba(3, 101, 140, 0.35);
  margin: 2rem auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 1.2rem 2.5rem;
  color: white;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 2px;
  border-radius: 50px;
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, #03658c, #2897b0, #5fb3d4);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  scale: 1;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

body main .get-vybe::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

body main .get-vybe::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%) skewX(-25deg);
  transition: transform 0.8s ease;
}

body main .get-vybe:hover::before {
  left: 100%;
}

body main .get-vybe:hover::after {
  transform: translateX(100%) skewX(-25deg);
}

body main .get-vybe:hover {
  transform: translateY(-5px) scaleX(1.1) scaleY(1);
  background: linear-gradient(135deg, #2897b0, #5fb3d4, #03658c);
  border-color: rgba(255, 255, 255, 0.4);
}

body main .get-vybe:active {
  transform: translateY(-2px) scaleX(1.05) scaleY(1);
  transition: all 0.1s ease;
}

body main .vybe-extra-one {
  color: #03658c;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 75vw;
  margin: 6rem auto;
  margin-bottom: 3rem !important;
  text-align: center;
}

body main .page-2 {
  display: flex;
  flex-direction: "row";
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
}

body main .page-2 #how-it-works {
  padding: 0 0 4rem 4rem;
  width: 45vw;
}

body main .page-2 #how-it-works .hiw-title {
  color: #03658c;
  font-weight: 500;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body main .page-2 #how-it-works .hiw-content {
  margin: 2rem 0 3rem 0;
  color: #0389a6;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0px;
}

body main .page-2 #how-it-works .hiw-bullets {
  color: #03658c;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3rem auto;
  grid-template-columns: 3rem auto;
  gap: 1rem;
}

body main .page-2 #how-it-works .hiw-bullets img {
  width: 2.2rem;
  height: 2.2rem;
}

body main .page-2 .ear-band-group {
  margin: auto;
  position: relative;
}

body main .page-2 .ear-band-group img {
  width: 30vw;
}

body main .page-2 .ear-band-group .ear-band {
  -webkit-animation: ear-band 4s ease-in-out infinite;
  animation: ear-band 4s ease-in-out infinite;
}

body main .page-2 .ear-band-group .circle {
  border-radius: 100%;
  background-color: white;
  position: absolute;
  z-index: -2;
  top: calc(100% - 30vw);
  left: calc(50% - 17vw);
  width: 30vw;
  height: 30vw;
}

body main .page-2 .ear-band-group .ear-frame {
  position: absolute;
  top: 8%;
  left: 0;
  z-index: -1;
}

body main .page-3 {
  background-color: #cff0fe;
  position: relative;
  top: -5rem;
  z-index: -3;
}

body main .page-3 #about-vybe {
  display: -ms-grid;
  display: grid;
  margin: 7rem 4rem 0 0;
  width: 40vw;
  align-items: baseline;
  float: right;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  gap: 1rem;
}

body main .page-3 #about-vybe .feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #015a58;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0px;
  gap: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 10px;
}

body main .page-3 #about-vybe .feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body main .page-3 .hand-band,
body main .page-3 .vybe-extra-two,
body main .page-3 .vybe-band {
  width: 100%;
  position: relative;
  top: -24rem;
}

body main .page-3 .mini-band,
body main .page-3 .mini-vybe-band {
  display: none;
}

.nav-logos {
  gap: 0.4rem;
  right: 4rem;
  top: 2rem;
  display: flex;
  position: absolute;
  flex-direction: column;
}

.nav-logos i {
  color: #03658c;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-logos i:hover {
  color: #2897b0;
  transform: scale(1.2) rotate(10deg);
}

body main .page-3 .vybe-extra-two {
  color: #03658c;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin: 5rem 0;
  text-align: center;
}

body main .page-4 {
  margin-top: -24rem;
}

body main .page-4 .vybe-data {
  background-color: #cff0fe;
}

body main .page-4 .vybe-data .vb-title {
  color: #03658c;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0px;
  width: 80vw;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  margin: 0 auto;
}

body main .page-4 .vybe-data .vb-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  gap: 2rem;
  padding: 2rem 4rem;
}

body main .page-4 .vybe-data .vb-grid div {
  text-align: center;
}

body main .page-4 .vybe-data .vb-grid div div {
  color: #03658c;
  font-weight: 600;
  font-size: 8rem;
  letter-spacing: -5px;
  font-family: "Source Sans 3", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: all 0.3s ease;
}

.vb-grid-item:hover {
  transform: scale(1.1);
  color: #2897b0;
  text-shadow: 0 2px 8px rgba(3, 101, 140, 0.3);
}

body main .page-4 .vybe-data .vb-grid div span {
  color: #002649;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 1px;
}

body main .page-4 #testimonials {
  display: flex;
  flex-direction: "row";
  justify-content: space-between;
  align-items: center;
}

body main .page-4 #testimonials .testimonial {
  position: relative;
  top: 5rem;
  margin-left: calc(50vw - var(--testiwidth) / 2);
}

body main .page-4 #testimonials .testimonial .box {
  width: var(--testiwidth);
  height: var(--testiheight);
  border-radius: 50px;
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.17));
  padding: 3rem 2rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  justify-content: start;
  background-color: #daf4ff;
}

body main .page-4 #testimonials .testimonial .box .doctor-image {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.17));
  padding: 1rem;
  background-color: #daf4ff;
}

body main .page-4 #testimonials .testimonial .box .doctor-name {
  color: #03658c;
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: 1px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 2rem 0 0.5rem 0;
}

body main .page-4 #testimonials .testimonial .box .doctor-clinic {
  color: #00354a;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0px;
  margin-top: 0.5rem;
}

body main .page-4 #testimonials .testimonial .box .doctor-id {
  text-decoration: none;
  margin-bottom: 0.5rem;
  color: #004c6a;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0px;
}

body main .page-4 #testimonials .testimonial .box .doctor-remarks {
  color: #00354a;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0px;
  border-top: 2px solid #004c6a;
  padding: 1rem 0;
  text-align: center;
}

body main .page-4 #testimonials .testimonial .box .doctor-stars {
  display: flex;
  flex-direction: "row";
  justify-content: space-between;
  align-items: center;
  gap: 0.2rem;
  margin: 1.5rem 0 -0.5rem 0;
}

body main .page-4 #testimonials .testimonial .box .doctor-stars img {
  height: 35px;
}

body main .page-4 #testimonials .testimonial .left {
  top: 0;
  position: absolute;
  left: calc(-1 * var(--testiwidth) / 2);
}

body main .page-4 #testimonials .testimonial .middle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

body main .page-4 #testimonials .testimonial .right {
  z-index: 1;
  top: 0;
  position: absolute;
  left: calc(var(--testiwidth) / 2);
}

body main .page-4 #testimonials .testimonial #move-left,
body main .page-4 #testimonials .testimonial #move-right {
  position: absolute;
  top: calc(2rem + var(--testiheight) / 2);
  color: #03658c;
  left: calc(-50vw + var(--testiwidth) / 2 + 4rem);
}

body main .page-4 #testimonials .testimonial #move-left:hover,
body main .page-4 #testimonials .testimonial #move-right:hover {
  color: #00354a;
  cursor: pointer;
}

body main .page-4 #testimonials .testimonial #move-right {
  left: calc(50vw + var(--testiwidth) / 2 - 4rem);
}

body main #contact-us {
  margin-top: calc(10rem + var(--testiheight));
  background-color: #106d92;
  color: #e6edea;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: "row";
  justify-content: space-between;
  align-items: center;
  padding: 4rem 10rem;
}

body main #contact-us .contact-form #sheetdb-form-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

body main #contact-us .contact-form #sheetdb-form-1 .form-input,
body main #contact-us .contact-form #sheetdb-form-1 .input-btn {
  width: 100%;
  height: 3.2rem;
  text-transform: none;
  color: #2c3e50;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.5px;
  background: #ffffff;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 1rem 1.5rem;
  transition: all 0.2s ease;
  position: relative;
}

body main #contact-us .contact-form #sheetdb-form-1 .form-input:focus {
  border-color: #03658c;
  box-shadow: 0 0 0 3px rgba(3, 101, 140, 0.1);
}

body main #contact-us .contact-form #sheetdb-form-1 .form-input:hover {
  border-color: #9ca3af;
}

body main #contact-us .contact-form #sheetdb-form-1 div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

body main #contact-us .contact-form #sheetdb-form-1 div .input-btn {
  flex: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  background: #03658c;
  border: 1px solid #03658c;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

body main #contact-us .contact-form #sheetdb-form-1 div .input-btn:hover {
  background: #024d6b;
  border-color: #024d6b;
}

body main #contact-us .contact-form #sheetdb-form-1 div .input-btn:active {
  background: #013a52;
  transform: translateY(1px);
}

body main #contact-us .contact-form .form-2 {
  display: none;
  max-width: 40vw;
}

body main #contact-us .contact-form .form-2 .contact-form-title {
  color: #e6edea;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 1px;
}

body main #contact-us .contact-form .form-2 .contact-form-message {
  color: #e6edea;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0px;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  margin: 1rem 0 3rem 0;
}

body main #contact-us .contact-form .form-2 .contact-form-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
}

body main #contact-us .contact-form .form-2 .contact-form-content a {
  color: #e6edea;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-decoration: none;
}

body main #contact-us .contact-form .form-2 .contact-form-content a:hover {
  color: cyan;
  transition: all 0.3s;
}

body main #contact-us .contact-form .form-2 .contact-form-content a {
  margin-bottom: 1rem !important;
}

body main #contact-us .contact-form .form-2 .contact-form-extra {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  margin: 0.5rem;
}

body main #contact-us .contact-message {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #5094ac;
  font-weight: 400;
  font-size: 5rem;
  letter-spacing: 2px;
  align-items: flex-end;
}

body main #contact-us .contact-message span {
  margin-top: -1rem;
}

body main #contact-us .contact-form-logos {
  display: flex;
  flex-direction: "row";
  justify-content: space-between;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 1rem;
}

body main #contact-us .contact-form-logos a {
  color: white;
  transition: all 0.3s;
  cursor: pointer;
}

body main #contact-us .contact-form-logos a:hover {
  color: cyan;
}

body main footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 1rem 0;
  gap: 1rem;
}

body main footer span {
  color: #293642;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0px;
}

body main footer div img {
  height: 80px;
}

.show-after{
  display: none;
}

@-webkit-keyframes ear-band {
  0% {
    transform: none;
  }

  50% {
    transform: translateY(-1rem);
  }

  100% {
    transform: none;
  }
}

@keyframes ear-band {
  0% {
    transform: none;
  }

  50% {
    transform: translateY(-1rem);
  }

  100% {
    transform: none;
  }
}

@-webkit-keyframes shake {
  1% {
    transform: translateX(1px);
  }

  5% {
    transform: translateX(-1px);
  }

  11% {
    transform: translateX(1px);
  }

  15% {
    transform: translateX(-1px);
  }

  21% {
    transform: translateX(2px);
  }

  26% {
    transform: translateX(1px);
  }

  27% {
    transform: translateX(0px);
  }
}

@keyframes shake {
  1% {
    transform: translateX(1px);
  }

  5% {
    transform: translateX(-1px);
  }

  11% {
    transform: translateX(1px);
  }

  15% {
    transform: translateX(-1px);
  }

  21% {
    transform: translateX(2px);
  }

  26% {
    transform: translateX(1px);
  }

  27% {
    transform: translateX(0px);
  }
}

@media screen and (min-width: 1300px) {
  .ham {
    gap: 3rem !important;
  }

  .hiw-title {
    transform: translateY(-3rem);
  }

  .hiw-content {
    transform: translateY(-1.5rem);
  }

  .q-ham {
    height: 7rem !important;
  }

  .ham-link {
    font-size: 1.7rem !important;
  }

  .vybe-extra-two {
    font-size: 1.5rem !important;
    margin: 4rem auto !important;
    width: 90vw !important;
  }

  .hiw-bullets img {
    height: 2.5rem !important;
    width: 2.5rem !important;
  }

  .q-sign {
    height: 6rem !important;
  }

  .scroll {
    font-size: 1.4rem !important;
  }

  .menu-sign {
    height: 2.4rem !important;
  }

  .hand-band {
    top: -26rem !important;
  }

  .feature {
    font-size: 1.1rem !important;
  }

  footer span {
    font-size: 1.4rem !important;
  }
}

@media screen and (min-width: 1600px) {
  .nav-elements {
    gap: 3rem !important;
  }

  .form-input,
  .input-btn {
    height: 3rem !important;
    font-size: 1.4rem !important;
  }

  :-ms-input-placeholder {
    font-size: 1.3rem !important;
  }

  ::-moz-placeholder {
    font-size: 1.3rem !important;
  }

  ::placeholder {
    font-size: 1.3rem !important;
  }

  .cfc-two,
  .cfc-one {
    margin: 0 !important;
    font-size: 1.7rem !important;
  }

  .contact-form-extra {
    font-size: 1.5rem !important;
  }

  .contact-form-message {
    margin: 1rem 0 !important;
    font-size: 1.6rem !important;
  }

  .contact-message {
    font-size: 6rem !important;
    line-height: 6rem !important;
  }

  .contact-message span {
    margin-bottom: 0.6rem !important;
  }

  .doctor-name {
    font-size: 1.8rem !important;
  }

  .doctor-clinic {
    font-size: 1.2rem !important;
  }

  .doctor-id {
    font-size: 1.1rem !important;
  }

  .doctor-remarks {
    font-size: 1.35rem !important;
  }

  .contact-form-title {
    font-size: 2.2rem !important;
  }

  .vb-title {
    font-size: 1.7rem !important;
  }

  .vb-grid span {
    font-size: 1.4rem !important;
  }

  .contact-form-content {
    padding: 2rem 0 !important;
  }

  .vybe-extra-two {
    font-size: 1.7rem !important;
    margin-top: 2rem !important;
  }

  #about-vybe {
    width: 44vw !important;
  }

  #about-vybe img {
    transform: scale(1.25) !important;
  }

  .feature {
    font-size: 1.5rem !important;
  }

  .hand-band {
    top: -30rem !important;
  }

  .hiw-title {
    font-size: 4rem !important;
    font-weight: 600 !important;
  }

  .hiw-content {
    font-size: 1.5rem !important;
    letter-spacing: 1px !important;
  }

  .hiw-bullets {
    font-size: 1.4rem !important;
  }

  .hiw-bullets img {
    height: 2.8rem !important;
    width: 2.8rem !important;
  }

  .get-vybe {
    font-size: 1.5rem !important;
  }

  .home-title {
    font-size: 4.2rem !important;
  }

  .scroll {
    font-size: 1.6rem !important;
  }

  footer span {
    font-size: 1.6rem !important;
  }

  #page-1 {
    margin-top: 3rem !important;
  }

  .home-content {
    font-size: 2rem !important;
  }

  .vybe-extra-one {
    margin: 5rem auto !important;
    margin-bottom: 2rem !important;
  }
}

@media screen and (min-width: 2100px) {
  .contact-form-extra {
    margin-bottom: 1.5rem !important;
  }

  .scroll {
    font-size: 1.8rem !important;
  }

  #home {
    padding-left: 20rem !important;
  }

  .home-title {
    font-size: 5.4rem !important;
  }

  .home-content {
    font-size: 2.2rem !important;
  }

  #how-it-works {
    padding-left: 8rem !important;
  }

  #how-it-works .hiw-title {
    font-size: 4.4rem !important;
  }

  #how-it-works .hiw-content,
  #how-it-works .hiw-bullets {
    font-size: 1.8rem !important;
    line-height: normal !important;
  }

  #how-it-works .hiw-content {
    margin: 4rem 0 5rem 0 !important;
  }

  #how-it-works .hiw-bullets {
    gap: 2rem 3rem !important;
  }

  #contact-us {
    padding: 5rem 15rem !important;
    padding-right: 20rem !important;
  }

  #contact-us .contact-message {
    display: -ms-grid !important;
    display: grid !important;
    gap: 1rem 2rem !important;
    align-items: center !important;
    justify-items: center !important;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }

  #contact-us .input-btn,
  #contact-us .form-input {
    width: 40vw !important;
  }

  #contact-us div .input-btn {
    width: calc(20vw - 2.5px) !important;
  }

  .page-3 {
    margin-top: -1rem !important;
    padding-top: 3rem !important;
  }

  .page-3 .feature {
    font-size: 1.6rem !important;
    margin: 3rem;
    gap: 2rem !important;
  }

  .page-3 .hand-band {
    top: -50rem !important;
  }

  .page-3 .vybe-extra-two {
    margin-top: -15rem !important;
    font-size: 2rem !important;
  }

  .vb-title {
    font-size: 2rem !important;
  }
}

@media screen and (max-width: 1160px) {
  body {
    --testiwidth: 45vw;
  }

  .scroll {
    font-size: 1rem !important;
  }

  .left {
    left: calc(-1 * var(--testiwidth) / 3) !important;
  }

  .right {
    left: calc(var(--testiwidth) / 3) !important;
  }

  #home {
    padding-left: 2rem !important;
  }

  .home-title {
    font-size: 3.2rem !important;
  }

  .home-content {
    font-size: 1.2rem !important;
  }

  .hand-band {
    top: -18rem !important;
  }

  .vybe-extra-two {
    width: 80vw !important;
    margin: 10rem auto 3rem auto !important;
  }

  .ear-band-group {
    top: 3rem !important;
  }

  .page-3 {
    top: -2rem !important;
  }
}

@media screen and (max-width: 990px) {
  body {
    --testiwidth: 60vw;
  }

  nav {
    padding: 1rem 2rem !important;
  }

  .left {
    left: calc(-1 * var(--testiwidth) / 7) !important;
  }

  .right {
    left: calc(var(--testiwidth) / 7) !important;
  }

  .vb-grid-item {
    font-size: 6rem !important;
  }

  body main #contact-us {
    padding: 4rem !important;
  }

  body main #contact-us .form-input {
    width: 40vw !important;
  }

  body main #contact-us .input-btn {
    width: calc(20vw - 2.5px) !important;
  }
}

@media screen and (max-width: 950px) {
  .nav-elements {
    gap: 1.2rem !important;
  }

  .nav-elements a {
    font-size: 1.1rem !important;
    letter-spacing: 0 !important;
  }
}

@media screen and (min-width: 860px) {
  .menu-sign {
    visibility: hidden !important;
  }

  #page-1 {
    flex-direction: row !important;
  }
}

@media screen and (max-width: 860px) {
  body {
    --testiwidth: 70vw;
    background-image: url("../assets/frame2.png"),
      linear-gradient(#d7f1fc, white);
  }

  .nav-logos {
    display: none !important;
  }

  .contact-form-message {
    margin-bottom: 1.8rem !important;
  }

  body main #contact-us {
    flex-direction: column-reverse;
    padding: 3rem 0.5rem !important;
    gap: 3rem;
  }

  body main #contact-us .contact-form {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  body main #contact-us .contact-form #sheetdb-form-1 {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 2.5rem 1rem;
  }

  body main #contact-us .contact-form #sheetdb-form-1 .form-input {
    height: 3.5rem;
  }

  body main #contact-us .contact-form #sheetdb-form-1 div .input-btn {
    height: 3.5rem;
  }

  .page-3 {
    position: initial !important;
  }

  .left,
  .right {
    left: 0 !important;
  }

  #move-left,
  #move-right {
    display: none !important;
  }

  .nav-elements {
    display: none !important;
  }

  .q-sign,
  .menu-sign {
    margin: 0rem 3rem;
    height: 5rem !important;
  }

  .menu-sign {
    height: 2.4rem !important;
  }

  #page-1 {
    flex-direction: column;
    height: 50rem;
    margin-top: 0 !important;
  }

  #page-1 img {
    width: 70vw !important;
    transform: translateY(-4rem) scaleY(-1) rotate(-90deg) !important;
    -webkit-mask-image: linear-gradient(to right, black 55%, rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to right, black 55%, rgba(0, 0, 0, 0));
  }

  #page-1 #home {
    width: 80vw !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center !important;
  }

  #page-1 #home .home-title {
    flex-direction: row !important;
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 1rem !important;
  }

  .get-vybe {
    font-size: 1.1rem !important;
    padding: 0.5rem 0.8rem !important;
    transform: translateY(2rem) !important;
  }

  .vybe-extra-one {
    font-size: 1.6rem !important;
    margin-bottom: 0 !important;
    width: 90vw !important;
    letter-spacing: 0 !important;
  }

  .page-2 {
    flex-direction: column-reverse;
  }

  .page-2 .ear-band-group .ear-band {
    z-index: 1 !important;
    width: 50vw !important;
    position: relative !important;
  }

  .page-2 .ear-band-group .circle {
    z-index: 0 !important;
    width: 50vw !important;
    height: 50vw !important;
    top: calc(100% - 50vw) !important;
    left: calc(50% - 30vw) !important;
  }

  .page-2 #how-it-works {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 0 !important;
    margin-bottom: 5rem;
    width: 80vw !important;
  }

  .page-2 #how-it-works .hiw-title {
    font-weight: bold;
  }

  .page-2 #how-it-works .hiw-bullets {
    -ms-grid-columns: auto !important;
    grid-template-columns: auto !important;
    justify-items: center;
  }

  .page-2 #how-it-works .hiw-bullets span {
    color: #0389a6;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0px;
  }

  .page-3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .page-3 .mini-band,
  .page-3 .mini-vybe-band {
    display: block !important;
    position: relative !important;
    width: 100vw;
  }

  .page-3 .mini-band {
    margin-top: 1rem;
  }

  .page-3 .mini-vybe-band {
    margin: -1rem 0 5rem 0;
  }

  .page-3 #about-vybe {
    margin-right: 0 !important;
    width: 90vw !important;
  }

  .page-3 #about-vybe .feature {
    font-size: 1.2rem !important;
  }

  .page-3 .hand-band,
  .page-3 .vybe-band {
    display: none;
  }

  .page-3 .vybe-extra-two {
    top: 0rem !important;
    font-size: 1.4rem !important;
    width: 70vw !important;
    margin: 5rem auto !important;
  }

  .page-4 {
    margin-top: -3rem !important;
  }

  .page-4 .vb-grid {
    -ms-grid-columns: auto !important;
    grid-template-columns: auto !important;
    max-width: 500px !important;
    margin: 0 auto;
  }

  .page-4 .vb-grid .vb-grid-item {
    font-size: 8rem !important;
  }

  .page-4 .vb-grid span {
    font-size: 1.5rem !important;
  }
}

@media screen and (max-width: 800px) {
  #page-1 img {
    width: 80vw !important;
  }

  #page-1 {
    scale: 0.9;
    transform: translateY(-4rem);
  }

  .get-vybe {
    transform: translateY(-2rem) !important;
    margin-bottom: -10rem;
  }
}

@media screen and (max-width: 770px) {
  .contact-form-title {
    font-size: 1.6rem !important;
  }

  .contact-form-message {
    font-size: 1rem !important;
  }

  .contact-form-content a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: 1.3rem !important;
  }
}

@media screen and (max-width: 700px) {
  #page-1 {
    height: 45rem !important;
  }

  footer div {
    flex-direction: column;
  }

  .hide-after {
    display: none;
  }

  .show-after {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }

  footer div img {
    height: fit-content;
    min-width: 20vw !important;
    max-width: 50vw !important;
  }

  #home {
    padding-left: 0 !important;
  }

  .q-sign {
    height: 4rem !important;
  }

  .menu-sign {
    height: 2rem !important;
  }

  .home-title {
    width: 80vw !important;
    font-size: 3rem !important;
  }

  nav {
    padding: 1rem !important;
  }

  .page-3 #about-vybe .feature {
    font-size: 1rem !important;
  }
}

@media screen and (max-width: 640px) {
  #page-1 img {
    width: 90vw !important;
  }

  .hiw-title {
    font-size: 2.6rem !important;
  }

  .hiw-content,
  .hiw-bullets span {
    font-size: 1rem !important;
  }

  .contact-form-title {
    font-size: 1.4rem !important;
  }

  .contact-form-message {
    font-size: 0.9rem !important;
    margin: 1rem 0 !important;
  }

  .contact-form-content a {
    font-size: 1rem !important;
  }

  .contact-message {
    font-size: 4rem !important;
  }
}

@media screen and (max-width: 602px) {
  body {
    --testiheight: 830px;
  }

  footer span {
    font-size: 1rem !important;
  }

  body main footer div img {
    max-width: 20vw;
  }
}

@media screen and (max-width: 540px) {
  .doctor-image {
    width: 250px !important;
    height: 250px !important;
  }

  body {
    --testiheight: 750px;
  }

  .home-title {
    width: 90vw !important;
    font-size: 2.6rem !important;
  }

  .home-content {
    font-size: 1rem !important;
  }

  .q-sign,
  .menu-sign {
    margin: 0 !important;
  }

  #page-1 {
    height: 40rem !important;
  }

  .doctor-name {
    font-size: 1.5rem !important;
  }

  .doctor-clinic,
  .doctor-id {
    font-size: 0.85rem !important;
  }

  .doctor-remarks {
    font-size: 1rem !important;
  }

  .doctor-stars {
    margin: 0 !important;
  }

  .doctor-stars img {
    width: 1.5rem !important;
    height: 1.5rem !important;
  }

  body main #contact-us {
    padding: 3rem 0.25rem !important;
  }

  body main #contact-us .contact-form {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  body main #contact-us .contact-form #sheetdb-form-1 {
    padding: 2rem 0.75rem !important;
    max-width: none !important;
    margin: 0 !important;
  }

  body main #contact-us .contact-form #sheetdb-form-1 .form-input {
    height: 3.5rem !important;
    font-size: 1rem !important;
  }

  body main #contact-us .contact-form #sheetdb-form-1 div .input-btn {
    height: 3.5rem !important;
    font-size: 1rem !important;
  }

  .form-2 {
    max-width: none !important;
    width: 100% !important;
  }

  nav {
    padding: 1rem 2rem !important;
  }
}

@media screen and (max-width: 480px) {
  #page-1 img {
    width: 100vw !important;
  }

  body {
    background-image: url("../assets/frame3.png"),
      linear-gradient(#d7f1fc, white);
    --testiwidth: 75vw;
  }
}

@media screen and (max-width: 450px) {
  body {
    --testiheight: 700px;
    --testiwidth: 88vw;
  }

  .home-title {
    font-size: 2.2rem !important;
    font-weight: 600 !important;
  }

  .home-content {
    width: 80vw !important;
  }

  body main #contact-us {
    flex-direction: column-reverse;
    text-align: center !important;
    gap: 2rem;
    padding: 2rem 0.25rem !important;
  }

  body main #contact-us .contact-message {
    align-items: center !important;
    margin-bottom: 1rem;
  }

  body main #contact-us .contact-form {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  body main #contact-us .contact-form #sheetdb-form-1 {
    width: 100% !important;
    max-width: none !important;
    padding: 2rem 0.75rem !important;
    margin: 0;
    align-items: stretch !important;
  }

  body main #contact-us .contact-form #sheetdb-form-1 .form-input {
    width: 100% !important;
    height: 3.5rem !important;
    font-size: 1rem !important;
    padding: 1rem !important;
  }

  body main #contact-us .contact-form #sheetdb-form-1 div {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  body main #contact-us .contact-form #sheetdb-form-1 div .input-btn {
    width: 100% !important;
    height: 3.5rem !important;
    flex: none !important;
  }

  body main #contact-us .form-2 {
    width: 100% !important;
    max-width: none !important;
    text-align: center !important;
  }

  body main #contact-us .contact-form-content {
    align-items: center !important;
  }

  body main #contact-us .contact-form-logos {
    width: 100%;
    gap: 1rem;
    justify-content: center;
  }

  footer span {
    width: 80vw;
    text-align: center;
  }

  .doctor-name {
    font-size: 1.3rem !important;
  }

  .doctor-clinic,
  .doctor-id {
    font-size: 0.75rem !important;
  }

  .doctor-remarks {
    font-size: 0.9rem !important;
  }
}

@media screen and (max-width: 400px) {
  #page-1 {
    transform: translateY(-2rem);
    height: 35rem !important;
  }

  #home {
    transform: none !important;
  }

  body {
    --testiheight: 630px;
  }

  .doctor-name {
    font-size: 1.15rem !important;
    margin: 0.5rem 0 !important;
  }

  .doctor-clinic {
    margin: 0 !important;
  }

  .doctor-clinic,
  .doctor-id {
    font-size: 0.65rem !important;
  }

  .doctor-remarks {
    font-size: 0.75rem !important;
  }

  .page-3 #about-vybe .feature {
    font-size: 0.85rem !important;
  }

  .page-4 .vb-grid .vb-grid-item {
    font-size: 5rem !important;
  }

  .page-4 .vb-grid span {
    font-size: 1.2rem !important;
  }

  .q-sign {
    height: 3rem !important;
  }

  .menu-sign {
    height: 1.8rem !important;
  }
}

@media screen and (max-width: 400px) and (max-height: 700px) {
  .get-vybe {
    transform: scale(0.9) translateY(-3rem) !important;
  }
}

@media screen and (max-width: 365px) {
  nav {
    padding: 1rem 1.5rem !important;
  }

  #page-1 {
    height: 32rem !important;
  }

  #home {
    padding-top: 2rem !important;
  }

  #home .home-title {
    font-size: 2rem !important;
  }

  .vybe-extra-one {
    margin: 2rem auto !important;
  }
}

@media screen and (max-width: 350px) {
  body {
    --testiheight: 660px;
  }
}
/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 2px 8px -1px rgba(3, 101, 140, 0.32); }
  50% { box-shadow: 0 8px 30px -2px rgba(3, 101, 140, 0.6); }
}

/* Bidirectional Scroll Animation Classes */
.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade.out-view {
  opacity: 0;
  transform: translateY(-15px);
}

.scroll-fade-up {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-up.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scroll-fade-up.out-view {
  opacity: 0;
  transform: translate3d(0, -20px, 0);
}

.scroll-fade-left {
  opacity: 0;
  transform: translate3d(-40px, 0, 0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-left.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scroll-fade-left.out-view {
  opacity: 0;
  transform: translate3d(-20px, 0, 0);
}

.scroll-fade-right {
  opacity: 0;
  transform: translate3d(40px, 0, 0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-right.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scroll-fade-right.out-view {
  opacity: 0;
  transform: translate3d(20px, 0, 0);
}

.scroll-fade-scale {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-scale.in-view {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.scroll-fade-scale.out-view {
  opacity: 0;
  transform: scale(0.95) translateY(-10px);
}

/* Stagger delays for multiple elements */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Smooth animation for text elements */
h1, h2, h3, h4, h5, h6, p, span:not(.loading-text), div:not(.loading-container):not(.loading-spinner) {
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/*# sourceMappingURL=index.css.map */
