/* 
* Rallyvite - Main Stylesheet
* Version: 1.0
*/

/* =========================================
   Base styles and font imports 
   ========================================= */
@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('Assets/font/Poppins-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
}

/* Ensure proper responsive behavior */
img {
  max-width: 100%;
  height: auto;
}

/* =========================================
   Header Styles
   ========================================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header img {
  height: 50px;
  transition: transform 0.3s ease;
}

.header img:hover {
  transform: scale(1.05);
}

.whats-special {
  font-weight: 500;
  font-size: 28px;
  color: #0083ff;
  text-decoration: none;
  transition: color 0.3s ease;
  flex-grow: 1;
  text-align: right;
  padding: 0 20px;
}

.fun-things-to-do {
  font-weight: 500;
  font-size: 28px;
  color: #0083ff;
  text-decoration: none;
  transition: color 0.3s ease;
  flex-grow: 1;
  text-align: middle;
  padding: 0px 20px;
}

.whats-special:hover {
  color: #0066cc;
}

.profile-button {
  border: 1px solid #0083ff;
  background: white;
  color: #0083ff;
  padding: 8px 25px 7px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease;
  white-space: nowrap;
  animation: borderPulse 1.5s infinite;
}

a.profile-button:hover {
  background: #0083ff;
  color: #fff;
  animation: borderPulse 1.5s infinite;
}

/* =========================================
   Main Content Styles
   ========================================= */
main {
  text-align: center;
  padding-top: 60px;
  overflow: hidden;
}

/* Hero section */
.main-heading {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-style: normal !important;
}

.sub-heading {
  font-size: 35px;
  font-weight: 300;
  color: #333;
  line-height: 1.4;
  margin-bottom: 38px;
  font-family: 'Poppins';
}

.highlight {
  background-color: #0083ff;
  color: #fff;
  padding: 0px 9px;
  border-radius: 4px;
}

/* Waitlist section */
.waitlist-section {
  text-align: center;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.waitlist-section .main-heading {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-style: normal !important;
  padding: 0 20px;
}

.waitlist-section .sub-heading {
  font-size: 28px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  margin-bottom: 38px;
  font-family: 'Inter', sans-serif;
  padding: 0 20px;
}

.launchlist-widget {
  margin: 0 auto;
  max-width: 500px;
  padding: 0 20px;
  margin-bottom: 90px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: yellow;
  color: black;
  font-weight: bold;
  padding: 12px 20px;
  font-size: 18px;
  border-radius: 25px;
  text-decoration: none;
  border: 2px solid black;
  box-shadow: 3px 3px 0px black;
  transition: 0.3s ease-in-out;
  animation: bounce 2s infinite;
}

.cta-button:hover {
  background: black;

  color: yellow;
  transform: translateY(-3px);
  box-shadow: 5px 5px 0px black;
}

/* =========================================
   Chat Preview Section
   ========================================= */
.chat-preview {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}

.chat-messages {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.message {
  position: absolute;
  max-width: 316px;
  opacity: 0;
  animation: moveIntoPosition 0.8s ease-in-out forwards,
    subtleFloat 4s ease-in-out infinite;
}

/* Individual message positioning */
.message:nth-child(1) {
  top: -9%;
  left: -20%;
  animation-delay: 0.5s;
  transform: translate(-20px, 10px);
}

.message:nth-child(2) {
  top: 29%;
  left: -22%;
  animation-delay: 1s;
  transform: translate(-15px, 5px);
}

.message:nth-child(3) {
  top: 47%;
  left: -1%;
  animation-delay: 1.5s;
  transform: translate(-10px, 15px);
}

.message:nth-child(4) {
  top: -14%;
  right: 27%;
  border-radius: 22px;
  animation-delay: 2s;
  transform: translate(15px, -10px);
}

.message:nth-child(5) {
  top: -4%;
  right: -15%;
  border-radius: 38px;
  max-width: 380px;
  width: 380px;
  padding: 11px 30px;
  animation-delay: 2.5s;
  transform: translate(20px, 5px);
}

.message:nth-child(6) {
  top: 29%;
  right: -11%;
  animation-delay: 3s;
  transform: translate(15px, 10px);
}

.message:nth-child(7) {
  bottom: 12%;
  right: 3%;
  animation-delay: 3.5s;
  transform: translate(10px, 15px);
}

.phone-frame {
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 100%;
  background: white;
  overflow: hidden;
  margin: 0px -81px 0px 0px;
  animation: subtleFloat 4s ease-in-out infinite;
}

.phone-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: phoneSlideIn 0.8s ease-in-out forwards;
  transition: transform 0.3s ease;
}

.phone-img:hover {
  transform: scale(0.95);
}

/* =========================================
   Less and More Section
   ========================================= */
.less-more-section {
  padding: 80px 0px 0px 0;
  text-align: center;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}

span.arrow-top {
  width: 108px;
  margin-top: -40px;
  display: inline-block;
  animation: floatUp 3s ease-in-out infinite;
  vertical-align: middle;
}

span.down-arrow {
  width: 108px;
  margin-bottom: -40px;
  display: inline-block;
  animation: floatDown 3s ease-in-out infinite;
  vertical-align: middle;
}

span.arrow-top img,
span.down-arrow img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

span.arrow-top img:hover,
span.down-arrow img:hover {
  transform: scale(1.1);
}

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

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

/* .up-arrow, .down-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #0083FF;
    color: white;
    border-radius: 8px;
    font-size: 20px;
} */

.gallery-image img {
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
}

/* Image hover effects */
.image-content img,
.image-content-bottom img {
  transition: transform 0.3s ease;
}

.image-content img:hover,
.image-content-bottom img:hover {
  transform: scale(0.95);
}

.gallery-image img {
  transition: transform 0.3s ease;
}

.gallery-image img:hover {
  transform: scale(0.95);
}

/* =========================================
   Auto Schedule Section
   ========================================= */
.auto-schedule {
  margin: 0 auto;
  padding: 40px 0;
}

.auto-schedule h3 {
  font-size: 28px;
  font-weight: 400;
  color: #333;
  line-height: 39px;
  margin-bottom: 60px;
  padding: 0 20px;
  font-family: poppins;
  letter-spacing: 1px;
  width: 70%;
  margin: 0 auto;
}

.schedule-preview {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 10px;
}

.iphone-frame {
  width: 40%;
}

.container-bubbles {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60%;
  height: 100%;
}

.bubble {
  background: yellow;
  padding: 15px;
  border-radius: 20px;
  max-width: 200px;
  font-family: poppins, sans-serif;
  font-size: 18px;
  position: absolute;
}

.bubble1 {
  left: 10px;
  top: -43px;
  border-radius: 0px 41px 41px 48px;
  padding: 10px 23px 13px 23px;
  max-width: 38%;
  z-index: 1;
}

.bubble2 {
  top: 91px;
  left: 94px;
  border-radius: 39px 41px 0px 48px;
  padding: 10px 23px 14px 23px;
  max-width: 38%;
  z-index: 7;
}

.bubble3 {
  right: 25px;
  top: -30px;
  border-radius: 0px 41px 41px 48px;
  padding: 10px 23px 13px 23px;
  max-width: 38%;
  z-index: 9;
}

.chat-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

h4.last-small-text {
  font-size: 28px;
  font-weight: 400;
  width: 69%;
  margin: 0 auto;
  font-family: poppins;
  padding: 10px 0px;
  line-height: 36px;
}

h2.last-big-text {
  font-size: 36px;
  font-weight: 400;
  margin: 0 auto;
  font-family: poppins;
  padding: 10px 0px;
  line-height: 42px;
  width: 91%;
}

/* =========================================
   About Page Styles
   ========================================= */
.about-main {
  padding-bottom: 30px;
}

.image-content-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* gap: 10px; */
  width: 50%;
}

.image-content-bottom img {
  max-width: 58%;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards, moveIntoPosition 0.8s ease-in-out forwards,
    subtleFloat 4s ease-in-out infinite;
}

.image-content-bottom img:nth-child(1) {
  animation-delay: 0.5s;
  max-width: 58%;
}
.image-content-bottom img:nth-child(3) {
  animation-delay: 1.5s;
  max-width: 50%;
}
.image-content-bottom img:nth-child(4) {
  max-width: 58%;
  margin-top: -19px;
}

.image-content-bottom img:nth-child(2) {
  opacity: 1 !important;
  transform: none !important;
  align-self: end;
}

.image-content-bottom img:last-child {
  align-self: flex-end;
}

.aboutcontainer {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1160px;
  padding: 20px;
}

.text-content {
  flex: 1;
  padding-right: 30px;
  text-align: left;
}

.text-content-right {
  flex: 1;
  padding-left: 30px;
  text-align: left;
}

.text-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 20px;
}

.text-content-right h2 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 25px;
  color: #333;
  line-height: 32px;
  margin-bottom: 20px;
}

.text-content-right p {
  font-size: 25px;
  color: #333;
  line-height: 32px;
  margin-bottom: 20px;
}

.image-content {
  flex: 1;
  text-align: right;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

h3.subheading-about {
  color: grey;
  font-size: 32px;
  letter-spacing: 6px;
  font-weight: 300;
  font-family: 'Poppins';
}

img.button-line {
  width: 50%;
  margin: 0 auto;
  display: flex;
}

.underline-text {
  display: inline;
  position: relative;
  background-image: url('Assets/54.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  padding-bottom: 14px;
}

/* =========================================
   Animation Keyframes
   ========================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes colorChange {
  0% {
    color: #000;
  }
  50% {
    color: #0083ff;
  }
  100% {
    color: #000;
  }
}

@keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 131, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 131, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 131, 255, 0);
  }
}

@keyframes moveIntoPosition {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes subtleFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
  .revert {
    flex-direction: column-reverse !important;
  }
  .container-bubbles {
    width: 100%;
  }
  .chat-preview {
    width: 65%;
  }

  .message {
    max-width: 250px;
  }

  .schedule-preview {
    flex-direction: column;
    gap: 40px;
  }

  .image-content-bottom {
    width: 100%;
  }

  .aboutcontainer {
    flex-direction: column;
    text-align: center;
  }

  .text-content-right {
    flex: 1;
    padding-left: 0px;
    text-align: center;
    padding-top: 20px;
  }
  .text-content {
    padding-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }

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

  .main-heading {
    font-size: 40px;
  }

  .sub-heading {
    font-size: 28px;
  }

  .section-title {
    font-size: 38px;
  }

  .auto-schedule h3 {
    font-size: 24px;
    width: 90%;
  }

  h4.last-small-text {
    font-size: 24px;
    width: 90%;
  }

  h2.last-big-text {
    font-size: 30px;
  }

  span.arrow-top,
  span.down-arrow {
    width: 80px;
    margin-top: -30px;
    margin-bottom: -30px;
  }
}

@media (max-width: 768px) {
  .less-more-section {
    padding: 40px 0px 0px 0;
  }

  .chat-messages {
    width: 83%;
  }
  .message {
    max-width: 150px;
  }

  .chat-preview {
    width: 80%;
  }

  .header {
    padding: 10px 15px;
  }

  .header img {
    height: 40px;
  }

  .whats-special {
    font-size: 16px;
    padding: 0 10px;
  }

  .profile-button {
    font-size: 16px;
    padding: 6px 20px;
  }

  main {
    padding-top: 30px;
  }

  .main-heading {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .sub-heading {
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 1.4;
  }

  .cta-button {
    font-size: 16px;
    padding: 8px 14px;
    margin-bottom: 30px !important;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .auto-schedule {
    margin: 0 auto;
    padding: 15px 0;
  }

  .auto-schedule h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 10px;
    width: 100%;
  }

  h4.last-small-text {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
  }

  h2.last-big-text {
    font-size: 24px;
    line-height: 32px;
  }

  .text-content h1 {
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
  }

  .text-content p,
  .text-content-right p {
    font-size: 18px;
    line-height: 28px;
  }

  .text-content-right h2 {
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
  }

  h3.subheading-about {
    font-size: 24px;
    text-align: center;
  }

  .aboutcontainer {
    padding: 15px;
  }

  .message:nth-child(1) {
    top: -5%;
    left: -15%;
  }

  .message:nth-child(2) {
    top: 25%;
    left: -15%;
  }

  .message:nth-child(3) {
    top: 45%;
    left: 0%;
  }

  .message:nth-child(4) {
    top: -10%;
    right: 20%;
  }

  .message:nth-child(5) {
    top: 0%;
    right: -10%;
    max-width: 320px;
    width: 249px;
  }

  .message:nth-child(6) {
    top: 25%;
    right: -5%;
  }
}

@media (max-width: 480px) {
  .chat-messages {
    width: 100%;
  }

  .header {
    padding: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header .logo {
    order: 1;
    margin-right: auto;
  }

  .profile-button {
    order: 2;
    font-size: 14px;
    padding: 6px 15px;
  }

  .whats-special {
    order: 3;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    padding: 0;
  }

  .header img {
    height: 40px;
  }

  main {
    padding-top: 30px;
  }

  .main-heading {
    font-size: 24px;
    text-align: center;
    line-height: 1.3;
  }

  .sub-heading {
    font-size: 18px;
    text-align: center;
    line-height: 1.4;
  }

  .schedule-preview {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .iphone-frame {
    width: 100%;
    max-width: 350px;
  }

  .text-content-right {
    flex: 1;
    padding-left: 0px;
    text-align: left;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 15px;
  }

  .text-content {
    text-align: center;
  }

  .cta-button {
    font-size: 16px;
    padding: 10px 16px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.3;
    text-align: center;
  }

  span.arrow-top,
  span.down-arrow {
    width: 60px;
    margin-top: -10px;
    margin-bottom: -10px;
    display: inline-block;
    vertical-align: middle;
  }

  .auto-schedule h3 {
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
  }

  .text-content h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .text-content p,
  .text-content-right p {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  .text-content-right h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  h3.subheading-about {
    font-size: 24px;
  }

  .aboutcontainer {
    padding: 15px;
  }

  .message:nth-child(1) {
    top: -5%;
    left: -8%;
  }

  .message:nth-child(2) {
    top: 25%;
    left: -15%;
  }

  .message:nth-child(3) {
    top: 45%;
    left: 0%;
  }

  .message:nth-child(4) {
    top: -10%;
    right: 20%;
  }

  .message:nth-child(5) {
    top: 0%;
    right: -10%;
    max-width: 320px;
    width: 249px;
  }

  .message:nth-child(6) {
    top: 25%;
    right: -5%;
  }

  span.arrow-top,
  span.down-arrow {
    width: 60px;
    margin-top: -20px;
    margin-bottom: -20px;
  }

  .last-small-text {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  .last-big-text {
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
  }

  p,
  .message-text {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }
}

@media (max-width: 375px) {
  .chat-preview {
    width: 100% !important;
  }
  .header {
    padding: 8px;
  }

  .header img {
    height: 35px;
  }

  .whats-special {
    font-size: 18px;
  }

  .profile-button {
    font-size: 13px;
    padding: 5px 12px;
  }

  .main-heading {
    font-size: 22px;
  }

  .sub-heading {
    font-size: 16px;
  }

  .chat-preview {
    transform: scale(0.7);
    margin-bottom: -60px;
  }

  .message {
    max-width: 140px;
  }

  span.arrow-top,
  span.down-arrow {
    width: 50px;
    margin-top: -15px;
    margin-bottom: -15px;
  }
}

@media (max-width: 375px) {
  .section-title {
    font-size: 20px;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  span.arrow-top,
  span.down-arrow {
    width: 40px;
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
  }
}

@media (max-width: 380px) {
  .header {
    padding: 8px;
  }

  .logo-section {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .whats-special {
    margin-left: 0;
    text-align: center;
    font-size: 18px;
  }

  .profile-button {
    font-size: 13px;
    padding: 5px 12px;
  }
}

footer {
  text-align: center;
  padding: 20px 0;
}
