body {
  font-family: "Outfit", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: hidden;
}

/* Hero section styles */
.hero {
  display: flex;
  justify-content: center;
  padding: 4rem 2.5rem;
  background: linear-gradient(to right, #f96c85, #faaa5d);
  color: white;
  height: auto;
  margin-top: 5px;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 8vw, 4.25rem);
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  margin-top: 3rem;
}

.hero-text p {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  width: 500px;
}

.qr-code {
  width: clamp(12rem, 20vw, 15.6rem);
  height: clamp(12rem, 20vw, 15.6rem);
  border-radius: 1.25rem;
  margin-bottom: 0.6rem;
}

.qr-image {
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
}

.join-button {
  width: clamp(12rem, 20vw, 15.6rem);
  background: #9071ef;
  color: white;
  border: none;
  font-size: clamp(1rem, 2vw, 1.2rem);
  height: 3.1rem;
  margin: auto 0;
  font-weight: 700;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.join-button:hover {
  background: white;
  color: #9071ef;
}

.hero-image {
  z-index: 100;
}

.ellipse-behind {
  position: absolute;
  width: 710px;
  height: 280px;
  top: 340.57px;
  left: 610px;
  background: #9071EF;
  border-radius: 50%;
  transform: rotate(147.59deg);
  z-index: -2;
  opacity: 1;
}

.ellipse-behind1 {
  position: absolute;
  width: 710px;
  height: 280px;
  top: 525.31px;
  left: 610px;
  background: #9071EF;
  border-radius: 50%;
  transform: rotate(147.59deg);
  z-index: -1;
  opacity: 1;
}

/* The app where happiness is restored section styles */
.happiness {
  padding: 5rem 2rem;
  background: #fff;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: space-around;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.card {
  background: #f0f0f0;
  padding: 1.25rem;
  width: clamp(12rem, 25vw, 16rem);
  border-radius: 1.875rem;
  font-size: 1rem;
  font-weight: 700;
  flex: 1;
  min-width: 12rem;
  max-width: 16rem;
}

.happiness h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  text-align: center;
  margin-top: 3.75rem;
  padding: 0 1.875rem;
  margin-bottom: 2.5rem;
}

.card1 img {
  height: 11rem;
  width: 6.875rem;
  object-fit: cover;
  display: block;
  margin: auto;
}

.card2 img {
  height: 11rem;
  width: 10.625rem;
  object-fit: cover;
  display: block;
  margin: auto;
}

.card3 img {
  height: 11rem;
  width: 10.9375rem;
  object-fit: cover;
  display: block;
  margin: auto;
}

.card4 img {
  height: 9.75rem;
  width: 10.625rem;
  object-fit: cover;
  display: block;
  margin: 0.75rem auto;
}

.card1 {
  background-color: #fad65c;
  box-shadow: 0.25rem 0.5rem 0.125rem rgba(0, 0, 0, 0.4);
}

.card2 {
  background-color: #88e1fd;
  box-shadow: 0.25rem 0.5rem 0.125rem rgba(0, 0, 0, 0.4);
}

.card3 {
  background-color: #eb5fbf;
  box-shadow: 0.25rem 0.5rem 0.125rem rgba(0, 0, 0, 0.4);
}

.card4 {
  background-color: #c4f382;
  box-shadow: 0.25rem 0.5rem 0.125rem rgba(0, 0, 0, 0.4);
}

/* Brand marquee section styles */
.brand-marquee-section {
  background: linear-gradient(to bottom, #9071ef, #ddd6f4, #9071ef);
  padding: 2.5rem 0;
  text-align: center;
  color: white;
  font-family: "Outfit", sans-serif;
  margin-top: 3.75rem;
}

.brand-marquee-section h3 {
  margin-bottom: 1.25rem;
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 3.875rem);
  text-shadow: 0.25rem 0.5rem 1rem rgba(0, 0, 0, 0.6);
}

.brand-marquee-section p {
  margin-bottom: 1.25rem;
  font-weight: 700;
  font-size: clamp(2rem, 7vw, 3.3125rem);
  text-shadow: 0.25rem 0.5rem 1rem rgba(0, 0, 0, 0.6);
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee {
  display: flex;
  gap: 1.875rem;
  padding: 1.25rem 0;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.marquee.right-to-left {
  animation: scroll-right 40s linear infinite;
}

.marquee img {
  width: 8rem;
  height: 8rem;
  border-radius: 30%;
  background-color: #fff;
  padding: 0.625rem;
  object-fit: contain;
  display: block;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.1);
  aspect-ratio: 1/1;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

/* Quote section styles */
.quote-section {
  background: #ffffff;
  padding: 4rem 2rem;
  margin-top: 3.75rem;
}

.quote-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.quote-header h2 {
  font-size: clamp(2.5rem, 8vw, 4.275rem);
  font-weight: 700;
  color: #000;
  padding: 0 2rem;
}

#star1 {
  font-size: clamp(3rem, 8vw, 5.125rem);
  color: #ffd700;
  display: inline-block;
  transform: rotate(-167.87deg);
  transform-origin: left center;
  position: absolute;
  animation: blink 2s infinite alternate;
  right: -2rem;
}

#star2 {
  font-size: clamp(3rem, 8vw, 5.125rem);
  color: #ffd700;
  display: inline-block;
  transform: rotate(167.87deg);
  transform-origin: right center;
  position: absolute;
  animation: blink 2s infinite alternate;
  left: -2rem;
}

/* ✅ Responsive styles (only for tablets & mobile) */
@media (max-width: 991px) {
  .quote-nav {
    display: block;
  }

  .quote-cards {
    width: 100%;
  }

  .quote-card {
    min-width: 100%;
    /* Show one card per view */
  }
}

.quote-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: transform 0.5s ease;
  gap: 1rem;
}

.quote-card {
  background: #ffd79d;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
  width: clamp(16rem, 30vw, 18.125rem);
  flex: 1;
  min-width: 16rem;
  max-width: 18.125rem;
}

.quote-text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #000;
  font-weight: 400;
}

.quote-author {
  margin-top: auto;
  font-weight: 400;
  font-size: clamp(0.875rem, 2vw, 1rem);
  text-align: start;
}

.quote-author1 {
  margin-top: 45px;
  font-weight: 400;
  font-size: clamp(0.875rem, 2vw, 1rem);
  text-align: start;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  60% {
    opacity: 0.3;
  }
}

/* Join Tribe section styles */
.join-tribe-section {
  background-color: #1be68c;
  border-radius: 1.5625rem;
  padding: 3.75rem 2.5rem 6.25rem;
  text-align: center;
  position: relative;
  overflow: visible;
  margin: 3.75rem 5%;
  height: clamp(37rem, 50vh, 35.9375rem);
}

.join-tribe-content .mid-head {
  color: #001233;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.625rem;
}

.join-tribe-content .heading {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  color: white;
  text-shadow: 2px 4px 0px #00000063;
  margin-bottom: 1.25rem;
}

.qr-code1 {
  width: clamp(10rem, 20vw, 12.5rem);
  height: clamp(10rem, 20vw, 12.5rem);
  border-radius: 1.25rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 0.625rem;
}

.qr-image1 {
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
}

.join-button1 {
  width: clamp(10rem, 20vw, 12.5rem);
  background: #9071ef;
  color: white;
  border: none;
  font-size: clamp(0.875rem, 2vw, 1rem);
  padding: 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.join-button1:hover {
  background: white;
  color: #6f4ac7;
}

.tribe-icons {
  position: absolute;
  left: 6.425rem;
  right: 6.725rem;
  display: flex;
  justify-content: center;
  gap: -0.9375rem;
  flex-wrap: nowrap;
  padding: 0 1.25rem;
  pointer-events: none;
}

.icon {
  margin-left: -2.5rem;
}

.guitar {
  z-index: 1;
  transform: rotate(-7deg);
  width: clamp(8rem, 18vw, 13.75rem);
  height: clamp(8.5rem, 19vw, 14.125rem);
}

.translate {
  z-index: 5;
  width: clamp(4rem, 8vw, 6rem);
  height: clamp(4rem, 8vw, 6rem);
}

.chess {
  z-index: 4;
  width: clamp(7rem, 15vw, 11.625rem);
  height: clamp(7rem, 15vw, 11.625rem);
}

.mic {
  z-index: 5;
  transform: rotate(-57deg);
  width: clamp(7rem, 15vw, 11.6875rem);
  height: clamp(8rem, 17vw, 13.375rem);
}

.laptop {
  z-index: 6;
  width: clamp(8rem, 18vw, 13.75rem);
  height: clamp(8rem, 18vw, 13.75rem);
}

.colors {
  z-index: 7;
  width: clamp(5rem, 11vw, 8.3125rem);
  height: clamp(5rem, 11vw, 8.3125rem);
}

.palette {
  z-index: 8;
  width: clamp(6rem, 14vw, 11rem);
  height: clamp(6rem, 14vw, 11rem);
}

.piano {
  z-index: 7;
  transform: rotate(-36deg);
  width: clamp(7rem, 15vw, 11.9375rem);
  height: clamp(8rem, 18vw, 14.625rem);
}

/* Corporates love using Hobby Tribe section styles */
.corporate-section {
  background: #ce82ff;
  border-radius: 1.875rem;
  padding: 3.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: white;
  max-width: 75rem;
  margin: 9.375rem 5% 5.625rem 5%;
}

.content {
  max-width: 31.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 18rem;
}

.content h5 {
  font-size: clamp(2.5rem, 7vw, 3.6875rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  width: 575px;
}

.content h5 span {
  font-weight: 600;
  color: white;
}

.content p {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 1.875rem;
  line-height: 1.5;
}

.buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 1.875rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.primary {
  background: white;
  color: black;
}

.primary:hover {
  background: #f1f1f1;
  color: #d191ff;
}

.secondary {
  border: 0.125rem solid white;
  color: white;
}

.secondary:hover {
  background: white;
  color: #d787f8;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-top: 1.25rem;
  min-width: 18rem;
}

.image-container img {
  width: clamp(15rem, 35vw, 26.875rem);
  height: clamp(10rem, 25vw, 18.75rem);
  margin-top: 3.75rem;
  object-fit: fill;
}

/* Interested in hobby classes section styles */
.hobby-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f57c3a;
  padding: 2.5rem;
  border-radius: 1.875rem;
  flex-wrap: wrap;
  gap: 1.875rem;
  margin: 5.625rem 5%;
}

.hobby-images {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
  min-width: 16.25rem;
}

.hobby-img {
  width: 100%;
  height: clamp(10rem, 25vw, 14.0625rem);
  max-width: 21.25rem;
  border-radius: 1rem;
  border: 0.3125rem solid #000;
  margin-left: 1rem;
}

.hobby-text {
  flex: 1;
  min-width: 16.25rem;
  color: #fff;
  text-align: right;
}

.hobby-text h5 {
  font-size: clamp(2.5rem, 8vw, 3.9375rem);
  margin-bottom: 0.625rem;
  line-height: 1.2;
  font-weight: 700;
}

.hobby-text p {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 400;
  margin-bottom: 1.5625rem;
}

/* .hobby-button {
  text-align: center;
} */

.bottom-img {
  margin-left: clamp(5rem, 15vw, 8.375rem);
}

.hobby-btn {
  display: inline-block;
  width: clamp(10rem, 20vw, 12.5rem);
  background-color: #fff;
  color: #000;
  font-weight: 600;
  padding: 0.75rem 1.5625rem;
  border-radius: 1.875rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0.125rem 0.125rem 0.5rem rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.hobby-btn:hover {
  transform: scale(1.05);
  background-color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: -webkit-center;
    padding: 2rem 1rem;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 20rem;
    margin-bottom: 1rem;
  }

  .quote-cards {
    flex-direction: column;
    align-items: center;
  }

  .quote-card {
    width: 90%;
    max-width: 20rem;
  }

  .quote-author1 {
    margin-top: auto;
    font-weight: 400;
    font-size: clamp(0.875rem, 2vw, 1rem);
    text-align: start;
  }

  .join-tribe-section {
    margin: 2rem 2%;
    padding: 2rem 1rem 4rem;
    height: auto;
  }

  .corporate-section {
    flex-direction: column;
    text-align: center;
    margin: 4rem 2%;
  }

  .content {
    max-width: 100%;
    margin-bottom: 2rem;
    text-align: left;
  }

  .content h5 {
    font-size: 2.25rem;
  }

  .image-container img {
    margin-top: 0rem;
  }

  .hobby-section {
    flex-direction: column;
    text-align: center;
    margin: 3rem 2%;
  }

  .hobby-text {
    text-align: center;
  }

  .hobby-img {
    margin-left: 0;
  }

  .bottom-img {
    margin-left: 0;
  }
}

@media (max-width: 480px) {

  .hero-image {
    display: none;
  }

  .hero {
    padding: 1.5rem 0.5rem;
  }

  .happiness {
    padding: 3rem 1rem;
  }

  .marquee img {
    width: 6rem;
    height: 6rem;
  }

  .quote-header h2 {
    font-size: clamp(1.875rem, 8vw, 1.875rem);
    font-weight: 700;
    color: #000;
    padding: 0 2rem;
  }

  .join-tribe-section {
    margin: 1.5rem 1%;
    padding: 1.5rem 0.5rem 3rem;
  }

  .corporate-section {
    margin: 6rem 1%;
    padding: 2rem 1rem;
  }

  .hobby-section {
    margin: 2rem 1%;
    padding: 1.5rem 1rem;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 12rem;
    text-align: center;
  }

  .qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 100%;

    margin-bottom: 0.6rem;
  }

  .qr-image {
    width: 100%;
    max-width: 250px;
    /* optional: limits max size */
    height: 250px;
    object-fit: cover;
    border-radius: 1.25rem;
  }

}


@media (max-width: 1024px) {
  .icon {
    margin-left: -30px;
  }

  .guitar {
    width: 166px;
    height: 172px;
  }

  .translate {
    width: 76px;
    height: 76px;
  }

  .chess {
    width: 150px;
    height: 150px;
  }

  .mic {
    width: 150px;
    height: 170px;
  }

  .laptop {
    width: 180px;
    height: 180px;
  }

  .colors {
    width: 100px;
    height: 100px;
  }

  .palette {
    width: 140px;
    height: 140px;
  }

  .piano {
    width: 155px;
    height: 135px;
  }
}

@media (max-width: 768px) {
  .icon {
    margin-left: -8px;
  }

  .guitar {
    width: 130px;
    height: 136px;
  }

  .translate {
    width: 60px;
    height: 60px;
  }

  .chess {
    width: 110px;
    height: 110px;
  }

  .mic {
    width: 120px;
    height: 140px;
  }

  .laptop {
    width: 130px;
    height: 130px;
  }

  .colors {
    width: 80px;
    height: 80px;
  }

  .palette {
    width: 110px;
    height: 110px;
  }

  .piano {
    width: 150px;
    height: 130px;
  }
}

@media (max-width: 480px) {
  .hero-text p {
    width: 380px;
  }

  .content h5 {
    width: 345px;
  }

  .icon {
    margin-left: -22px;
  }

  .guitar {
    width: 110px;
    height: 90px;
    transform: rotate(28deg);
  }

  .translate {
    width: 35px;
    height: 35px;
  }

  .chess {
    width: 70px;
    height: 70px;
  }

  .mic {
    width: 65px;
    height: 85px;
    margin-left: 1px;
  }

  .laptop {
    width: 105px;
    height: 105px;
  }

  .colors {
    width: 55px;
    height: 55px;
  }

  .palette {
    width: 60px;
    height: 90px;
  }

  .piano {
    width: 70px;
    height: 80px;
    transform: rotate(348deg) skew(350deg, 11deg) scale(1, 1.00001);
  }
}