@import url("https://p.typekit.net/p.css?s=1&k=cws0rdf&ht=tk&f=29410.29412&a=281586158&app=typekit&e=css");

@font-face {
  font-family: "Miller Text";
  src: url("https://use.typekit.net/af/d700b8/00000000000000007736b597/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3")
      format("woff2"),
    url("https://use.typekit.net/af/d700b8/00000000000000007736b597/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3")
      format("woff"),
    url("https://use.typekit.net/af/d700b8/00000000000000007736b597/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3")
      format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}

@font-face {
  font-family: "Miller Banner";
  src: url("https://use.typekit.net/af/9d3237/00000000000000007757c7b4/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3")
      format("woff2"),
    url("https://use.typekit.net/af/9d3237/00000000000000007757c7b4/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3")
      format("woff"),
    url("https://use.typekit.net/af/9d3237/00000000000000007757c7b4/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3")
      format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
}

.tk-miller-text {
  font-family: "Miller Banner", serif;
}

.tk-miller-banner {
  font-family: "Miller Banner", serif;
}

/* ✅ General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Montserrat;
  background-color: #fff9f5;
  color: #222222;
}

.main_bodycontainer {
  margin: 6rem 3rem;
  background-color: #fff9f5;
}

@media (max-width: 820px) {
  .main_bodycontainer {
    margin: 3rem 2rem;
  }
}

@media (max-width: 541px) {
  .main_bodycontainer {
    margin: 3rem 1rem;
  }
}

:root {
  --transition-speed: 0.3s;
  --bg-overlay: rgba(0, 0, 0, 0.5);
}

/* ✅ Full-Width Navbar */
.navbar {
  width: 100%;
  padding: 1.75rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;

  white-space: nowrap;
  /* overflow-x: auto; */
}

.container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

/* ✅ Logo */
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.logo span {
  font-style: italic;
}

/* ✅ Desktop Navigation */
.desktop-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.dropdown:hover .dropdown-menu {
  display: block;
  padding-top: 1rem;
}

.desktop-menu a {
  text-decoration: none;
  font-size: 1rem;
  color: #fff9f5;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  /* transition: 0.5s ease-in-out; */
}

.desktop-menu a:hover {
  color: #f66;
}

.desktop-menu .cta {
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 100px;
}

.desktop-menu .cta:hover {
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--Light-Pink, #ffe1d7);
  color: var(--Coral-Pink, #f66);
  text-align: center;
  /* Navigation */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.desktop-menu .sign-in {
  display: flex;
  align-items: center;
  color: #ffe1d7;
}

.desktop-menu .sign-in:hover {
  display: flex;
  align-items: center;
  color: var(--Coral-Pink, #f66);
  text-align: right;
  /* Navigation */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 12px */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.desktop-menu .sign-in img {
  width: 20px;
  margin-right: 5px;
}

.mobile-menu .mobile-header .sign-in-mobile {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* ✅ Hamburger Icon */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: #fff9f5;
  margin: 4px 0;
  transition: 0.3s;
}

/* ✅ Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50vw;
  height: 100vh;
  background: #ffe1d7;
  padding: 2rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease-in-out;
  overflow-x: hidden;
}

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

.mobile-menu .dropdown-arrow {
  transition: transform 0.3s ease;
}

.mobile-menu .dropdown-arrow.rotated {
  transform: rotate(180deg);
}

/* ✅ Move "About Us" Down */
/* .mobile-menu a[href="#about-us"] {
  margin-top: 10px;
  padding-top: 15px;
  display: block;
} */

/* ✅ Hero Content */
.mobile-hero-content h1 {
  font-family: "Miller Text";
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 400;
  line-height: 120%;
  color: #fff9f5;
  white-space: pre-line;
}

/* ✅ Hero CTA Button */
.mobile-hero .hero-cta {
  display: inline-block;
  font-family: "Montserrat";
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: bold;
  line-height: 150%;
  color: #ffe1d7;
  background: transparent;
  border: 2px solid #fff9f5;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: auto;
  padding: 10px 20px;
}

/* ✅ Mobile Menu Buttons */
.sign-in-container {
  display: none;
}

/* #navbar-container
  > div.mobile-menu.show.active
  > div.mobile-header
  > div
  > a.sign-in-mobile-small {
  display: none;
} */

#navbar-container
  .mobile-menu
  .mobile-header
  .mobile-nav-actions
  .sign-in-mobile-small {
  display: none;
}

#navbar-container
  .mobile-menu
  .mobile-header
  .mobile-nav-actions
  .sign-in-mobile {
  display: flex;
}

.close-menu {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #222222;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 22px;
  color: #222222;
  display: block;
  border-bottom: 2px solid #fff9f5;
  padding: 1rem 0;
  font-family: "Miller Text";
}

/* .mobile-menu a:hover {
  color: #ff6666;
}

.mobile-menu a:active {
  color: #ff6666;
}

.mobile-hero .hero-cta a:hover {
  color: #ffe1d7;
} */

#navbar-container .mobile-menu .sign-in-container a {
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #222222;
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
}

/* ✅ Dropdown Container */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  text-decoration: none;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  display: block;
}

/* ✅ Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  /* background: white;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
  width: 180px;
}

.dropdown-menu a {
  display: block;
  padding: 10px;
  color: #fff9f5;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.dropdown-menu a:hover {
  background: #fff9f5;
  border-radius: 20px;
}

/* ✅ Mobile Dropdown */
.mobile-menu .dropdown {
  position: relative;
  width: 100%;
  border-bottom: 2px solid #fff9f5;
}

.mobile-menu .dropdown-toggle {
  width: auto;
  display: flex;
  justify-content: center;
  align-self: center;
  font-size: 1.2rem;
}

.mobile-menu .dropdown-menu {
  display: none;
  flex-direction: column;
  background: none;
}

/* ✅ NavBar Media Queries*/
@media (max-width: 1090px) {
  /* .navbar {
    padding: 1.5rem 1%;
  } */

  .desktop-menu {
    gap: 1rem;
  }
}

@media (max-width: 995px) {
  /* Use hamburger menu for tablets */
  .desktop-menu {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .navbar {
    padding: 2rem;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(71, 43, 37, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visability 0.4s ease-in-out;
    z-index: 1000;
  }

  .overlay.active {
    visibility: visible;
    opacity: 0.8;
    transition: opacity 0.4s ease-in-out, visability 0.4s ease-in-out;
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  .mobile-nav-actions {
    display: flex;
    gap: 1rem;
  }

  .dropdown-menu {
    position: static;
    top: 100%;
    left: 0;
    background: none;
  }

  .mobile-menu .dropdown-menu {
    display: flex;
    flex-direction: column;
    background: none;
    overflow: hidden;
    transition: opacity 0.4s ease;
    height: 0;
    opacity: 0;
    padding-top: 1rem;
  }

  .mobile-menu.show {
    right: 0;
  }

  .mobile-menu .dropdown-menu.show {
    display: flex;
    height: auto;
    opacity: 1;
    background: none;
    padding: 0;
  }

  .mobile-menu .dropdown-menu a {
    width: 100%;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: none;
    letter-spacing: 1px;
    color: #222222;
    padding: 1rem;
  }

  .mobile-menu .dropdown-menu a:hover {
    color: #ff6666;
    background: unset;
  }

  .mobile-menu .how-it-works-link {
    display: flex;
    gap: 1rem;
    border-style: none;
    padding-bottom: 0;
  }

  .mobile-hero {
    background: url(../assets/images/mobile-hero.jpg) no-repeat center center /
      cover;
    background-color: #fff9f5;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
    width: auto;
    padding: 3rem;
    margin: 3rem 0;
  }

  .mobile-hero .hero-cta {
    display: inline-block;
    font-family: "Montserrat";
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: bold;
    line-height: 150%;
    color: #ffe1d7;
    background: transparent;
    border: 2px solid #fff9f5;
    border-radius: 100px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: auto;
    padding: 10px 20px;
    margin-top: 2rem;
  }

  .mobile-hero .hero-cta:hover {
    margin-top: 2rem;
  }
}

/* ✅ Mobile Responsive Design */
@media (max-width: 695px) {
  body.nav-open {
    overflow: hidden;
    height: 100%;
  }

  .desktop-menu {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .mobile-menu {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 80vw;
  }
  #navbar-container
    .mobile-menu
    .mobile-header
    .mobile-nav-actions
    .sign-in-mobile {
    display: none;
  }

  .mobile-menu.show {
    right: 0;
    height: 100dvh;
  }

  .mobile-hero {
    padding: 2rem;
    width: 320px;
  }

  .dropdown-menu {
    position: static;
    top: 100%;
    left: 0;
    background: white;
  }

  .mobile-menu .dropdown-menu a {
    width: 100%;
    display: block;
    font-size: 1rem;
  }

  .slideshow-container {
    display: none;
  }

  #navbar-container
    .mobile-menu
    .mobile-header
    .mobile-nav-actions
    .sign-in-mobile-small {
    display: flex;
  }
}

@media (max-width: 430px) {
  .mobile-hero {
    width: auto;
  }

  .mobile-hero-content h1 {
    white-space: unset;
    max-width: 181px;
  }
}

@media (max-width: 376px) {
  /* #navbar-container
    .mobile-menu
    .mobile-header
    .mobile-nav-actions
    .sign-in-mobile-small {
    display: flex;
  } */

  /* .sign-in-container {
    display: none;
  } */

  .mobile-hero {
    padding: 1rem;
  }

  .mobile-hero .hero-cta {
    margin-top: 1rem;
  }

  .mobile-hero .hero-cta:hover {
    margin-top: 1rem;
  }
}

@media (max-width: 345px) {
  .mobile-menu {
    width: 100vw;
  }
}

/* ✅ Hero Section */
.hero {
  height: 100vh;
  background: url("../assets/images/home-hero-section.jpg") no-repeat center
    center/cover;
  background-color: #fff9f5;
  display: flex;
  align-items: center;
  /* text-align: center; */
  color: white;
}

.home-hero-content {
  display: inline-flex;
  padding: 3rem;
  padding-top: 8rem;
  flex-direction: column;
  align-items: flex-start;
}

.home-hero-content h1 {
  font-family: "Miller Banner";
  color: #fff9f5;
  font-size: 180px;
  font-style: normal;
  font-weight: 600;
  line-height: 90%;
  max-width: 90%;
  padding-bottom: 2rem;
}

.home-hero-content p {
  font-family: "Miller Text";
  color: #fff9f5;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 55%;
}

sup {
  color: #fff9f5;
  font-family: "Montserrat";
  font-size: 0.25em;
  font-weight: normal;
  position: relative;
  top: -0.65em;
  padding-left: 1rem;
  text-transform: uppercase;
}

.hero-cta {
  color: #222222;
  padding: 10px 20px;
  border-radius: 100px;
  display: inline-block;
  margin-top: 3rem;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f66;
  background: #ffe1d7;
  cursor: pointer;
  transition: border-color 0.6s ease, background-color 0.6s ease;
}

.hero-cta:hover {
  color: #222222;
  padding: 10px 20px;
  border-radius: 100px;
  display: inline-block;
  margin-top: 3rem;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--Light-Pink, #ffe1d7);
  background: var(--Coral-Pink, #f66);
  animation: fade-out-light;
  animation-duration: 1s;
}

@keyframes fade-out-light {
  from {
    background-color: #ffe1d7;
  }
  to {
    background-color: #ff6666;
  }

  from {
    color: #ff6666;
  }

  to {
    color: #ffe1d7;
  }
}

@media (max-width: 1025px) {
  .hero {
    background-position: 70% center;
  }
}

@media (max-width: 913px) {
  .home-hero-content {
    padding: 0 2rem;
  }

  .home-hero-content h1 {
    font-size: 144px;
    padding-bottom: 1rem;
  }

  .home-hero-content p {
    font-size: 22px;
    max-width: 391px;
  }
}

@media (max-width: 600px) {
  .hero {
    background-position: 73% center;
  }

  .home-hero-content {
    text-align: center;
    align-items: center;
    padding: 0 1rem;
  }

  .home-hero-content h1 {
    font-size: 108px;
    padding-bottom: 1rem;
  }

  .home-hero-content p {
    font-size: 20px;
    max-width: 69%;
  }

  .hero-cta {
    margin-top: 2rem;
    width: 75%;
  }

  .hero-cta:hover {
    margin-top: 2rem;
  }
}

@media (max-width: 481px) {
  .home-hero-content p {
    max-width: 79%;
  }

  .hero-cta {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .home-hero-content p {
    max-width: 95%;
  }
}

@media (max-width: 330px) {
  .home-hero-content {
    padding: 0;
  }

  .home-hero-content h1 {
    font-size: 95px;
  }

  .hero-cta {
    width: 90%;
  }
}

/* ✅ Hero Media Queries */
/* @media (max-width: 1025px) {
  .hero {
    height: 110vh;
    background-position: 65% center;
  }

  .home-hero-content h1 {
    padding-top: 4rem;
    max-width: 70%;
  }
}
@media (max-width: 821px) {
  .hero {
    background-position: 72% center;
  }
}

@media (max-width: 912px) {
  .hero {
    height: 100vh;
    background-position: 72% center;
  }

  .home-hero-content p {
    max-width: 70%;
  }
}

@media (max-width: 769px) {
  .hero {
    background: url("../assets/images/home-ui.jpg") no-repeat center center /
      cover;
    background-position: 40% center;
    height: 100vh;
    display: flex;
    justify-content: center;
  }

  .home-hero-content h1 {
    font-size: 144px;
    max-width: 100%;
  }

  .home-hero-content p {
    font-size: 24px;
    line-height: 130%;
    max-width: 100%;
  }

  sup {
    top: -1.5rem;
  }
}

@media (max-width: 541px) {
  .home-hero-content {
    padding: 0 2rem;
  }
}

@media (max-width: 450px) {
  .hero {
    height: 100vh;
    background: url(../assets/images/home-hero.jpg) no-repeat center center /
      cover;
    background-color: #fff9f5;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home-hero-content {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    padding-top: 8rem;
  }

  .home-hero-content h1 {
    font-size: 108px;
    text-align: center;
    margin: 0;
  }

  .hero .home-hero-content p {
    font-size: 22px;
    text-align: center;
    max-width: 85%;
  }

  sup {
    top: -0.5625rem;
  }

  .hero-cta {
    text-align: center;
    width: 72%;
  }
}

@media (max-width: 376px) {
  .hero .home-hero-content p {
    max-width: 100%;
  }
}

@media (max-width: 321px) {
  .home-hero-content h1 {
    font-size: 100px;
  }
  .hero .home-hero-content p {
    font-size: 18px;
    max-width: 99%;
  }
} */

/* ✅ Slideshow Section */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 6rem 0;
  padding: 0 3rem;
}

.mobile-container {
  display: none;
}

.dots-container {
  position: absolute;
  top: 5%;
  left: 7%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 16px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #ffaf99;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-height: 85vh;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
}

#slide-1,
#slide-2,
#slide-3 {
  background-image: url("../assets/images/Steps.jpg");
  background-position: 40% center;
}

.content {
  position: absolute;
  top: 10%;
  left: 8%;
  color: #222222;
  text-align: left;
  font-family: "Miller Banner", serif;
}

.content h2 {
  font-family: "Miller Text";
  font-size: 42px;
  margin: 0;
  color: #222222;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 120%;
}

.content h3 {
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ff6666;
  padding: 1rem 0;
}

.content p {
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.content .content-assessment-p {
  max-width: 31%;
}

.content .content-treatment-p {
  max-width: 35%;
}

.content .content-management-p {
  max-width: 30%;
}

/* ✅ Slideshow Media Queries */
@media (min-width: 900px) and (max-width: 1025px) and (max-height: 700px) {
  /* Styles specific to Nest Hub */
  .slideshow-container {
    height: 100vh;
  }

  .slide {
    min-height: 100vh;
  }

  #slide-1,
  #slide-2,
  #slide-3 {
    background-image: url(../assets/images/Steps-tablet.jpg);
  }
}

@media (max-width: 1025px) {
  .slideshow-container {
    display: none;
  }

  .steps-navigation-smallestvp {
    display: none;
  }

  .mobile-container {
    display: block;
    background-color: #ffe1d7;
    padding: 3rem 2rem;
  }

  .product-image {
    display: flex;
    justify-content: center;
    max-width: 100%;
    height: auto;
  }

  .product-image img {
    width: 100vw;
    margin-right: -2rem;
  }

  .steps-navigation {
    display: flex;
    justify-content: space-between;
    border-radius: 100px;
    background: #ffe1d7;
    border: 2px solid white;
    width: 55%;
    padding: 0.5rem;
    margin: 2rem auto;
  }

  .step-btn {
    background: none;
    border: none;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 30px;
    cursor: pointer;
    color: #222222;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 100px;
    text-transform: uppercase;
    font-family: "Montserrat";
    letter-spacing: 1px;
  }

  .step-btn.active {
    background: #fff9f5;
    color: #ff6666;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }

  .step-btn.active:first-child {
    background: #fff9f5;
    color: #ff6666;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }

  .step-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
    padding: 20px;
  }

  .step-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    background: #fff9f5;
    border-radius: 20px;
  }

  .step-content.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #fff9f5;
    border-radius: 20px;
    padding: 2rem;
    transform: translateY(0);
  }

  .step-content:not(.active) {
    display: none;
  }

  .step-content h2 {
    font-family: "Miller Text";
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0;
  }

  .step-content h3 {
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: bold;
    line-height: 150%;
    color: #ff6666;
    text-transform: uppercase;
    margin-top: 10px;
  }

  .step-content p {
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: #222222;
    max-width: 90%;
    margin: 1rem 0;
  }
}

@media (max-width: 769px) {
  .product-image img {
    margin-right: 0;
  }

  .steps-navigation {
    width: 100%;
  }
}

@media (max-width: 541px) {
  .mobile-container {
    padding: 3rem 1rem;
  }

  .steps-navigation {
    width: 100%;
    margin: 0 auto;
    margin: 2rem 0;
  }

  .step-content.active {
    display: flex;
    flex-direction: column;
    background: #fff9f5;
    border-radius: 20px;
    padding: 2rem;
    transform: translateY(0);
  }

  .step-content h2 {
    font-size: 28px;
  }

  .step-content p {
    max-width: 89%;
  }
}

@media (max-width: 481px) {
  .step-btn {
    padding: 15px 20px;
  }
}

@media (max-width: 375px) {
  .step-content p {
    max-width: 100%;
  }
}

@media (max-width: 345px) {
  .step-btn {
    padding: 15px 14px;
  }
}

/* @media (max-width: 1350px) {
  .content .content-assessment-p {
    max-width: 34%;
  }
}

@media (max-width: 1250px) {
  .content .content-assessment-p {
    max-width: 38%;
  }

  #slide-1,
  #slide-2,
  #slide-3 {
    background-position: 75% center;
  }
}

@media (max-width: 1150px) {
  .content .content-assessment-p {
    max-width: 40%;
  }

  #slide-1,
  #slide-2,
  #slide-3 {
    background-position: 18% center;
  }
}

@media (max-width: 1025px) {
  .mobile-container {
    display: block;
    background-color: #ffe1d7;
    padding: 3rem;
  }

  .slideshow-container {
    display: none;
  }

  .steps-navigation-smallestvp,
  .slideshow-container {
    display: none;
  }

  .product-image {
    text-align: center;
  }

  .product-image img {
    max-width: 100%;
    height: auto;
    transform: scale(135%);
    padding: 4rem 0;
  }

  .steps-navigation {
    display: flex;
    justify-content: space-between;
    border-radius: 100px;
    background: #ffe1d7;
    border: 2px solid white;
    width: 55%;
    padding: 0.5rem;
    margin: 0 auto;
    margin-bottom: 2rem;
  }

  .step-btn {
    background: none;
    border: none;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 30px;
    cursor: pointer;
    color: #222222;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 100px;
    text-transform: uppercase;
    font-family: Montserrat;
    letter-spacing: 1px;
  }

  .step-btn.active {
    background: #fff9f5;
    color: #ff6666;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }

  .step-btn.active:first-child {
    background: #fff9f5;
    color: #ff6666;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }

  .step-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
    padding: 20px;
  }

  .step-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    background: #fff9f5;
    border-radius: 20px;
  }

  .step-content.active {
    display: grid;
    flex-wrap: wrap;
    background: #fff9f5;
    border-radius: 20px;
    padding: 2rem;
    transform: translateY(0);
    grid-template-columns: 1fr 1fr;
  }

  .step-content:not(.active) {
    display: none;
  }

  .step-content h2 {
    font-family: "Miller Text";
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0;
  }

  .step-content h3 {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: bold;
    line-height: 150%;
    color: #ff6666;
    text-transform: uppercase;
    margin-top: 10px;
  }

  .step-content p {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: #222222;
    max-width: 100%;
    margin: 1rem 0;
  }

  .left-align,
  .right-align {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

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

  .right-align {
    text-align: left;
    align-items: flex-start;
  }

  .right-align a {
    display: inline-block;
  }
}

@media (max-width: 912px) {
  .product-image img {
    transform: scale(122%);
  }
}

@media (max-width: 853px) {
  .product-image img {
    transform: scale(113%);
  }
}

@media (max-width: 821px) {
  .steps-navigation {
    width: 60%;
  }

  #slide-1,
  #slide-2,
  #slide-3 {
    background-position: 34% center;
  }

  .product-image img {
    transform: scale(108%);
  }
}

@media (max-width: 541px) {
  .mobile-container {
    padding: 1rem;
  }

  .steps-navigation {
    width: 100%;
  }

  .step-content.active {
    grid-template-columns: 1fr;
    margin: 0;
  }

  .step-content h2 {
    font-family: 28px;
  }

  .step-content h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .steps-content p {
    max-width: 99%;
  }

  .left-align,
  .right-align {
    width: 100%;
  }

  .right-align {
    margin: 0;
  }

  .product-image img {
    transform: scale(106%);
    padding-top: 1rem;
  }

  .step-btn {
    padding: 10px 20px;
  }
}

@media (max-width: 413px) {
  .product-image img {
    transform: scale(108%);
  }
}

@media (max-width: 376px) {
  .step-btn {
    font-size: 14px;
  }
}

@media (max-width: 321px) {
  .steps-navigation-smallestvp {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    border-radius: 100px;
    background: #ffe1d7;
    border: 2px solid white;
    width: 100%;
    padding: 0.5rem;
    margin: 0 auto;
    margin-bottom: 2rem;
  }

  .product-image img {
    transform: scale(124%);
  }

  .steps-navigation {
    display: none;
  }

  .step-btn {
    font-size: 16px;
    padding: 20px 28px;
  }

  .steps-navigation-smallestvp .step-btn.active:first-child {
    background: #fff9f5;
    color: #ff6666;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }
} */

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffe1d7;
  color: #ff6666;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 100px;
  border: 2px solid var(--Off-white, #fff9f5);
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 3rem;
  font-family: Montserrat;
  transition: border-color 0.6s ease, background-color 0.6s ease;
}

.btn:hover {
  border: 2px solid var(--Coral-Pink, #f66);
}

.arrow-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.arrow {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.arrow:hover {
  color: #ff6666;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

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

/* Learn More Button */
.learn-more {
  border: 2px solid var(--Light-Pink, #ffe1d7);
  color: var(--Coral-Pink, #f66);
  font-family: Montserrat;
  font-size: 1rem;
  background-color: transparent;
  border-radius: 100px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  margin: 1rem 0;
  padding: 10px 20px;
}

.learn-more:hover {
  background-color: white;
  border: 2px solid #ff6666;
}

/* ✅ Icon Section */
.iconSection {
  margin-bottom: 6rem;
}

.iconSection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.iconSection-item {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.iconSection-item img {
  height: 60px;
  padding-bottom: 1rem;
}

.iconSection-title {
  font-family: "Miller Banner";
  font-size: 90px;
  font-weight: 600;
  line-height: 110%;
  color: #222222;
  padding-bottom: 4rem;
  max-width: 73%;
}

.iconSection-text h3 {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: Montserrat;
  line-height: 150%;
  letter-spacing: 1px;
  padding-bottom: 1rem;
  max-width: 60%;
}

.iconSection .iconSection-increased-h3 {
  max-width: 70%;
}

.iconSection-text p {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0;
  max-width: 78%;
}

.iconSection .iconSection-grid .iconSection-text .sub-1 {
  font-size: 1rem;
  padding-left: 5px;
  vertical-align: text-top;
}

/* Responsive Styles */
@media (min-width: 1026px) and (max-width: 1300px) and (max-height: 850px) {
  /* Styles specific to Nest Hub Max */
  .iconSection-title {
    max-width: 83%;
  }

  .iconSection-text h3 {
    max-width: 71%;
  }

  .iconSection .iconSection-increased-h3 {
    max-width: 100%;
  }

  .iconSection-text p {
    max-width: 87%;
  }
}

@media (max-width: 1025px) {
  .iconSection-grid {
    gap: 2rem;
  }

  .iconSection-title {
    max-width: 100%;
  }

  .iconSection-text h3 {
    max-width: 90%;
  }

  .iconSection .iconSection-increased-h3 {
    max-width: 100%;
  }

  .iconSection-text p {
    max-width: 100%;
  }
}

@media (max-width: 913px) {
  .iconSection {
    margin: 3rem 0;
  }

  .iconSection-title {
    font-size: 70px;
    padding-bottom: 3rem;
    max-width: 93%;
  }

  .iconSection-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .iconSection-text h3 {
    font-size: 14px;
    max-width: 90%;
  }

  .iconSection .iconSection-muscle-h3 {
    max-width: 81%;
  }

  .iconSection .iconSection-healthier-h3 {
    max-width: 92%;
  }

  .iconSection-text p {
    font-size: 16px;
  }
}

@media (max-width: 769px) {
  .iconSection-title {
    max-width: 100%;
  }
}

@media (max-width: 541px) {
  .iconSection {
    margin: 3rem 0;
  }

  .iconSection-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }

  .iconSection-item {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    gap: 2rem;
  }

  .iconSection-item img {
    width: 50px;
    height: 50px;
    padding: 0;
  }

  .iconSection-title {
    font-size: 42px;
  }

  .iconSection-text h3,
  .iconSection .iconSection-muscle-h3,
  .iconSection .iconSection-healthier-h3 {
    max-width: 100%;
  }

  .iconSection-text p {
    max-width: 100%;
  }

  .iconSection-item {
    max-width: 100%;
  }
}

@media (max-width: 481px) {
}

@media (max-width: 321px) {
}

/* @media (max-width: 1281px) {
  .iconSection-title {
    max-width: 75%;
  }

  .iconSection-item h3,
  .iconSection .iconSection-increased-h3 {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .iconSection-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .iconSection-title {
    font-size: 70px;
    max-width: 90%;
  }

  .iconSection-item h3,
  .iconSection .iconSection-increased-h3 {
    max-width: 100%;
  }

  .iconSection-item .iconSection-muscle-h3 {
    max-width: 70%;
  }

  .iconSection .iconSection-healthier-h3 {
    max-width: 80%;
  }

  .iconSection-item p {
    max-width: 82%;
  }
}

@media (max-width: 769px) {
  .iconSection {
    margin-bottom: 5rem;
  }

  .iconSection-grid {
    gap: 1.75rem;
  }

  .iconSection-title {
    font-size: 70px;
    padding-bottom: 3rem;
  }

  .iconSection-item h3 {
    font-size: 14px;
  }

  .iconSection-item p {
    font-size: 16px;
    max-width: 100%;
  }

  .iconSection .iconSection-muscle {
    max-width: 80%;
  }

  .iconSection .iconSection-grid .iconSection-item .sub-1 {
    vertical-align: sub;
  }
}

@media (max-width: 541px) {
  .iconSection {
    padding: 0 1rem;
    padding-top: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 541px) {
  .iconSection-title {
    font-size: 42px;
    padding-bottom: 3rem;
  }

  .iconSection-item .iconSection-muscle-h3 {
    max-width: 100%;
  }

  .iconSection-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .iconSection-item {
    flex-direction: row;
    gap: 2rem;
  }

  .iconSection-item img {
    width: 50px;
    height: 50px;
    padding: 0;
  }
}

@media (max-width: 426px) {
  .iconSection .iconSection-revitalized-h3,
  .iconSection .iconSection-revitalized-p,
  .iconSection .iconSection-increased-h3,
  .iconSection .iconSection-increased-p,
  .iconSection .iconSection-muscle {
    padding-left: 1rem;
  }
}

@media (max-width: 376px) {
  .iconSection-title {
    font-size: 39px;
    padding-bottom: 2rem;
  }

  .iconSection-item {
    gap: 2rem;
  }
}

@media (max-width: 321px) {
  .iconSection-title {
    font-size: 38px;
  }
} */

/* ✅ New Approach Section  */
.smart-hrt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background-color: #ffe1d7;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 6rem;
}

/* Left Side: Image */
.smart-hrt__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.smart-hrt__phone-frame {
  width: 20rem;
}

.smart-hrt__app-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Right Side: Text & Button */
.smart-hrt__text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 100%;
}

.smart-hrt__text-title {
  font-family: "Miller Text";
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  color: #222222;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0;
  max-width: 83%;
}

.smart-hrt__cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #f7a7a0;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.smart-hrt__cta-button:hover {
  background-color: #f5887a;
}

.smart-hrt__text-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #222;
}

/* Drop-In Animation */
@keyframes smart-hrt-drop-in {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ✅ New Approach Section Media Queries */
@media (min-width: 1026px) and (max-width: 1300px) and (max-height: 850px) {
  /* Styles specific to Nest Hub Max */
  .smart-hrt__text-title {
    max-width: 95%;
  }
}

@media (max-width: 1025px) {
  .smart-hrt__text-title {
    max-width: 100%;
  }
}

@media (max-width: 913px) {
  .smart-hrt__text-title h3 {
    max-width: 90%;
  }
}

@media (max-width: 769px) {
  .smart-hrt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
  }

  .smart-hrt__text-container {
    justify-content: center;
    align-items: center;
  }

  .smart-hrt__text-title {
    text-align: center;
    max-width: 50%;
  }

  .btn {
    margin-top: 2rem;
  }
}

@media (max-width: 690px) {
  .smart-hrt__text-title {
    max-width: 75%;
  }
}

@media (max-width: 541px) {
  .smart-hrt {
    border-radius: 0;
    margin: -1rem;
  }

  .smart-hrt__text-title {
    max-width: 100%;
  }
}

/* @media (max-width: 481px) {
  .smart-hrt__text-title {
    max-width: 86%;
  }
} */

/* @media (max-width: 431px) {
  .smart-hrt__text-title {
    max-width: 100%;
  }
} */

/* @media (max-width: 1025px) {
  .smart-hrt {
    grid-template-columns: 1fr 2fr;
  }

  .smart-hrt__text-container {
    padding-left: 2rem;
  }
}

@media (max-width: 950px) {
  .smart-hrt__text-title {
    font-size: 32px;
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .smart-hrt {
    grid-template-columns: 1fr 1fr;
    text-align: start;
  }

  .smart-hrt__phone-frame {
    width: 250px;
  }

  .smart-hrt__text-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0rem;
    padding-left: 1rem;
  }
}

@media (max-width: 600px) {
  .smart-hrt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 0;
    margin-bottom: 2rem;
  }

  .smart-hrt__text-container {
    text-align: center;
    justify-content: center;
    padding: 0;
  }

  .smart-hrt__text-title {
    font-size: 28px;
    max-width: 100%;
    width: auto;
    margin-top: 1rem;
  }

  .btn {
    margin-top: 2rem;
  }
} */

.journey_section {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 6rem;
}

.journey_card {
  position: relative;
  flex: 1;
  height: 85vh;
  width: 54vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-speed), filter var(--transition-speed);
  background-position: 10% center;
}

.journey_card .journey_title {
  font-family: "Miller Text";
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 42px;
  font-weight: 400;
  line-height: 120%;
  color: #fff9f5;
  transition: bottom var(--transition-speed), top var(--transition-speed);
  padding: 1rem;
}

.journey_details .journey-title-hidden {
  font-family: "Miller Text";
  font-size: 42px;
  font-weight: 400;
  line-height: 120%;
  color: #fff9f5;
  max-width: fit-content;
  padding: 1rem;
}

.journey_card .journey_button {
  position: absolute;
  font-size: 2rem;
  font-weight: 100;
  transform: scale(1.5);
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #fff9f5;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform var(--transition-speed);
}

.journey_card .journey_details {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--Image-Overlay, #472b2580);
  color: white;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  text-align: left;
  border-radius: 22px;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  transition: transform var(--transition-speed);
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.journey_card .close-btn-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--Image-Overlay, #472b2580);
  color: white;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px;
  text-align: left;
  border-radius: 22px;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  transition: transform var(--transition-speed);
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.5s;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.journey_card .journey_details h3 {
  font-family: "Miller Text";
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  padding: 0 2rem;
}

.journey_card .journey_details p {
  font-family: "Montserrat";
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  padding: 2rem;
}

.journey_card .journey_close-btn {
  position: absolute;
  font-size: 1rem;
  position: absolute;
  font-weight: 100;
  transform: scale(1.5);
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: none;
}

.journey_card.open .journey_details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.spacer {
  flex: 1;
}

.journey_mobile_view {
  display: none;
}

@media (max-width: 1281px) {
  .journey_card .journey_title {
    max-width: 75%;
  }

  .journey_section {
    gap: 1rem;
  }

  .journey_card {
    background-position: 35% center;
    height: 75vh;
  }

  .journey_card .journey_title {
    font-size: 35px;
    left: 0;
  }

  .journey_details .journey-title-hidden {
    font-size: 35px;
    max-width: 80%;
    padding-left: 0;
  }

  .journey_card .journey_details h3 {
    padding: 0 2rem;
    padding: 0;
  }

  .journey_card .journey_details p {
    padding: 2rem 0;
  }
}

@media (max-width: 1025px) {
  .journey_section {
    display: flex;
    gap: 2rem;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .journey_card {
    flex: 0 0 50%;
    scroll-snap-align: center;
    height: 70vh;
  }

  .journey_card .journey_title {
    left: 1rem;
  }

  .journey_details .journey-title-hidden {
    padding: 1rem;
  }

  .journey_card .journey_details h3 {
    padding: 0 1rem;
  }

  .journey_card .journey_details p {
    padding: 2rem 1rem;
  }

  .progress-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 5px;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
  }

  .progress-bar-fill {
    height: 100%;
    width: 0;
    background: #ff5722;
    transition: width 0.3s ease;
  }
}

@media screen and (max-width: 1025px) and (max-height: 601px) {
  .journey_card {
    height: 100vh;
  }
}

@media (max-width: 541px) {
  .journey_section {
    display: none;
  }

  .journey_mobile_view {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
  }

  .journey_mobile_container {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    max-width: 100%;
    margin-top: 4rem;
  }

  .journey_mobile_card {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
  }

  .journey_mobile_container::-webkit-scrollbar {
    width: 3px;
    height: 3px;
  }

  .journey_mobile_container::-webkit-scrollbar-track {
    background: #ffe1d7;
  }

  .journey_mobile_container::-webkit-scrollbar-thumb {
    background: #ff6666;
  }

  .journey_mobile_card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .mobile_nav_buttons {
    bottom: 60px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    z-index: 10;
    gap: 1rem;
    padding: 1rem;
  }

  .mobile_nav_buttons button {
    width: 50px;
    height: 50px;
    background: var(--Off-white, #fff9f5);
    border: #ffe1d7 solid;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffaf99;
  }

  .mobile_nav_buttons button.grey {
    width: 50px;
    height: 50px;
    background: transparent;
    border: #ffe1d7 solid;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffe1d7;
  }

  .mobile_navigation {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .journey_mobile_card h2 {
    font-family: "Montserrat";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 1rem;
  }

  .journey_mobile_card h3 {
    font-family: "Miller Text";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    padding-bottom: 1rem;
  }

  .journey_mobile_card p {
    font-family: "Montserrat";
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
    color: var(--Charcoal, #222);
    padding-bottom: 1rem;
  }
}

/* ✅ Thrive Section */
.thrive-section-mobile {
  display: none;
}

.thrive-section-title {
  font-family: "Miller Banner";
  font-size: 90px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0;
}

.thrive-section-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.thrive-section-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 150%;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
}

.thrive-section-btn-primary {
  background: var(--Light-Pink, #ffe1d7);
  color: var(--Coral-Pink, #f66);
}

.thrive-section-btn-secondary {
  border: 2px solid var(--Light-Pink, #ffe1d7);
  color: var(--Coral-Pink, #f66);
  background-color: transparent;
}

.thrive-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* Sidebar (Left Section) */
.thrive-sidebar {
  height: 100%;
}

.thrive-title {
  font-family: "Miller Banner";
  font-size: 90px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0;
  color: #222222;
  max-width: 80%;
}

.thrive-section-text {
  color: var(--Charcoal, #222);
  font-family: "Miller Text";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  max-width: 75%;
  margin: 1rem 0;
}

.thrive-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 100px;
  font-weight: bold;
  cursor: pointer;
}

.thrive-button-primary {
  border-radius: 100px;
  background: var(--Light-Pink, #ffe1d7);
  color: var(--Coral-Pink, #f66);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background-color 0.6s ease;
}

.thrive-button-primary:hover {
  border-radius: 100px;
  background: var(--Coral-Pink, #f66);
  color: var(--Light-Pink, #ffe1d7);
  text-align: center;
  /* Buttons */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fade-out-light;
  animation-duration: 1s;
}

.thrive-button-secondary {
  border-radius: 100px;
  border: 2px solid var(--Light-Pink, #ffe1d7);
  background: transparent;
  color: var(--Coral-Pink, #f66);
  text-align: center;
  /* Buttons */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: border-color 0.6s ease, background-color 0.6s ease;
}

.thrive-button-secondary:hover {
  border-radius: 100px;
  border: 2px solid var(--Coral-Pink, #f66);
  color: var(--Coral-Pink, #f66);
  text-align: center;
  /* Buttons */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Content (Right Section) */
.thrive-content {
  overflow-y: auto;
  height: 80vh;
}

.testimonial-card {
  max-width: fit-content;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote {
  font-size: 8rem;
  color: #ff645a;
  margin-right: 0.5rem;
  vertical-align: top;
}

.testimonial-text {
  font-family: "Miller Text";
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  color: #222222;
  max-width: 80%;
  margin: 0.5rem 0;
}

.testimonial-author {
  color: var(--Charcoal, #222);
  /* H4 */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 1.5rem;
}

/* Scrollbar Styling */
.thrive-content::-webkit-scrollbar {
  width: 8px;
}

.thrive-content::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 4px;
}

.thrive-content::-webkit-scrollbar-track {
  background: transparent;
}

@media (max-width: 1025px) {
  .thrive-section-mobile {
    display: none;
  }

  .thrive-container {
    grid-template-columns: 2fr 1.5fr;
  }

  .thrive-title {
    font-size: 70px;
    max-width: 87%;
  }

  .testimonial-text {
    font-size: 22px;
    max-width: 100%;
  }
}

@media (max-width: 913px) {
  .thrive-container {
    display: none;
  }

  .thrive-section-mobile {
    display: block;
  }

  .thrive-section-carousel {
    display: flex;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* height: 30vh; */
  }

  .thrive-section-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .thrive-section-quote {
    font-family: "Miller Text";
    font-size: 100px;
    color: #ffe1d7;
    max-width: fit-content;
    height: 22%;
  }

  .thrive-section-title {
    font-size: 70px;
    max-width: 100%;
  }

  .thrive-section-text {
    font-size: 22px;
    max-width: 85%;
  }

  .thrive-section-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .thrive-section-author-img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
  }

  .thrive-section-author-name {
    font-family: "Montserrat";
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* Navigation buttons */
  .thrive-section-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .thrive-section-nav-btn {
    width: 50px;
    height: 50px;
    background: var(--Off-white, #fff9f5);
    border: #ffe1d7 solid;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffaf99;
  }

  .thrive-section-nav-btn-prev.grey-thr,
  .thrive-section-nav-btn-next.grey-thr {
    background: var(--Off-white, #fff9f5);
    border: 2px solid #ffe1d7;
    cursor: not-allowed;
    color: #ffe1d7;
    opacity: 0.5;
  }

  /* Progress indicators */
  .thrive-section-progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }

  .thrive-section-progress-indicator {
    width: 190px;
    height: 3px;
    background: #ddd;
    transition: background 0.3s ease;
  }

  .thrive-section-progress-indicator.active {
    background: #ff645a;
  }
}

@media (max-width: 541px) {
  .thrive-section-mobile {
    padding: 3rem 0;
  }

  .thrive-section-carousel {
    height: 43vh;
  }

  .thrive-section-title {
    font-size: 42px;
  }

  .thrive-section-text {
    font-size: 20px;
  }

  .thrive-section-author-name {
    font-size: 14px;
  }
}

@media (max-width: 391px) {
  .thrive-section-carousel {
    height: 47vh;
  }
}

@media (max-width: 376px) {
  .thrive-section-carousel {
    height: 60vh;
  }
}

@media (max-width: 361px) {
  .thrive-section-carousel {
    height: 55vh;
  }
}

@media (max-width: 345px) {
  .thrive-section-carousel {
    height: 45vh;
  }
}

/* ✅ Footer Image Styling */
.responsive-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

/* Default image for larger screens */
.responsive-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 6rem;
}

/* Mobile image is hidden by default */
.responsive-image-mobile {
  display: none;
  width: 100%;
  height: auto;
}

/* Media query for mobile */
@media (max-width: 913px) {
  .responsive-image {
    display: block;
    margin-top: 3rem;
  }

  .responsive-image-mobile {
    display: none;
  }
}

@media (max-width: 541px) {
  .responsive-image {
    display: none;
  }

  .responsive-image-mobile {
    display: block;
  }
}

.pageSectionAnimation {
  animation: smart-hrt-drop-in 3s ease forwards;
}
