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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

:root {
  --black: #1a1d1f;
  --black-2: #353535;
  --black-3: #111827;
  --purple: #8f75ec;
  --light-purple: #f9f7fe;
  --purple-bg: #E3DCFB;
}

.nav-text {
  color: var(--black);
}

.black-2 {
  color: var(--black-2);
}

.black-3 {
  color: var(--black-3);
}

.purple-text {
  color: var(--purple);
}

.light-purple {
  background-color: var(--light-purple);
}

.purple-bg {
  background-color: var(--purple-bg);
}

/* font-family */
.mulish-bold {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.mulish-medium {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.mulish-regular {
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.outfit-bold {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.outfit-semibold {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.outfit-medium {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.navbar {
  background-color: transparent;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease;
}

.navbar-scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.nav-link {
  line-height: 20.6px;
}

.nav-link.active {
  color: #f0af09;
  /* Set the active link color */
}

.curtain-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  height: 100%;
  background-color: #ffffff;
  z-index: 200;
  transition: left 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.curtain-menu ul {
  list-style: none;
  padding: 0;
}

.curtain-menu ul .nav-link {
  font-size: 18px;
  text-align: center;
}

.curtain-menu.active {
  left: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 150;
  backdrop-filter: blur(0.8px);
  display: none;
  transition: opacity 0.3s ease;
}

.overlay.active {
  display: block;
}

.close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
}

.navbar-toggler,
.navbar-toggler:focus {
  border: none !important;
  box-shadow: none !important;
}

.nav-link.active,
.nav-link:hover {
  color: #f0af09;
}

.navbar-nav .nav-link {
  color: var(--black);
}

.navbar-brand {
  height: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.nav-item {
  margin: auto 30px;
}

.sticky-top {
  transition: background-color 0.3s ease;
}

.sticky-top .navbar-scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
  .curtain-menu {
    display: none;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }
}

/* hero-banner */
.location-banner {
  height: 100vh;
}

.location-banner h1 {
  background: linear-gradient(90deg, #ff9085 0%, #fb6fbb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 74px;
  line-height: 90px;
}

.location-banner-content p {
  line-height: 48.33px;
  font-size: 26px;
}

/* explore banner */
.scroll-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.scroll-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.scroll-overlay {
  background: rgba(0, 0, 0, 0.22);
  bottom: 0;
  z-index: 2;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .scroll-section:hover .scroll-overlay {
  transform: translateY(0);
  height: 100vh;
} */
.scroll-overlay.active{
  transform: translateY(0);
  height: 100vh;
}

.scroll-overlay h2 {
  margin: 0;
  font-size: 96px;
  line-height: 105px;
}

/* discover sec */
.discover {
  background-image: url("../assets/AboutAnimationBg.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.discover h2 {
  background: linear-gradient(172deg, #e38ddd 32.37%, #9571f6 100.06%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  line-height: 70px;
}

.discover p {
  line-height: 44.33px;
  font-size: 19px;
}

/* .feature-sec img{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    max-width: 24%;
}
.feature-sec:hover img{
    max-width: 100%;
    transition: 3s ease-in;
}
.featureimg-2{
    position: relative;
    bottom:56px;
}
.feature-sec:hover .featureimg-2{
    bottom: 0;
} */
/* feature sec */
/* .feature-sec img{
    transform: scale(0.7);
} */
/* .feature-sec:hover img{
    transform: scale(1);
} */

/* .feature-sec {
  position: relative;
  height: 100vh;
}

.feature-sec .feature-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-sec img {
  transition: transform 0.9s ease, width 0.9s ease, height 0.9s ease;
  position: relative;
}

.feature-sec img.featureimg-2 {
  transform: translateY(-50px);
}

.feature-sec:hover img {
  transform: translateY(0) scale(1);
}

.feature-sec:hover img.featureimg-2 {
  transform: scale(1);
}
.feature-sec img {
  width: 20%;
  height: auto;
}
.feature-sec:hover img {
  width: 100%;
  right: auto;
  left: auto;
}
.featureimg-1 {
  right: -25px;
}
.featureimg-3 {
  left: -25px;
}
.feature-sec:hover .featureimg-1,
.feature-sec:hover .featureimg-2,
.feature-sec:hover .featureimg-3 {
    animation: zoomInOut 10s linear infinite alternate; 
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
        width:20%;
    }
    50% {
        transform: scale(1);
        width:50%;
    }
    100% {
        transform: scale(1);
        width:100%;
    }
} */
.feature-sec {
  position: relative;
  height: 100vh;
}

.feature-sec .feature-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-sec img {
  transition: transform 0.9s ease, width 0.9s ease, height 0.9s ease;
  position: relative;
  width: 20%;
  /* Set initial width */
  height: auto;
}

.feature-sec img.featureimg-1 {
  transform: translateX(-25px);
  right: -4%;
}

.feature-sec img.featureimg-2 {
  transform: translateY(-50px);
  /* Keeps the second image offset */
}

.feature-sec img.featureimg-3 {
  transform: translateX(25px);
  left: -4%;
}

/* On hover, apply zoom animation */
.feature-sec:hover .featureimg-1,
.feature-sec:hover .featureimg-2,
.feature-sec:hover .featureimg-3 {
  animation: zoomInOut 6s linear infinite alternate;
  right: 0;
  left: 0;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
    width: 20%;
  }

  50% {
    transform: scale(1);
    width: 60%;
  }

  100% {
    transform: scale(1);
    width: 100%;
  }
}
/* faqs section */
.support-heading p {
  font-size: 20px;
  line-height: 28px;
}

.faq-bg,
.contact-bg {
  border-radius: 14.14px;
}

/* Accordion Icon Styles */
.accordion-button::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f068" !important;
  /* Plus icon */
  background-image: none;
  color: var(--purple);
  margin-left: auto;
  font-size: 0.8rem;
  transform: scale(0.9);/
}

.accordion-button.collapsed::after {
  content: "\f067" !important;
  /* Minus icon */
  background-image: none;
  color: var(--purple);
  font-size: 0.8rem;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  color: var(--purple);
  padding: 0 10px;
}

.accordion-button {
  border: none;
}

.nav-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}


.nav-tabs .nav-link.active {
  background: linear-gradient(90deg, #ff9085 0%, #fb6fbb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: none;
  position: relative;
}


.nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 6px;
  background-color: #ff9085;
  border-radius: 16px;
}

.nav-tabs .nav-link {
  color: var(--purple);
  border: none;
  margin-right: 5px;
  font-size: 40px;
  line-height: 74px;
}

.accordion,
.accordion-item {
  --bs-accordion-bg: var(--light-purple);
}

.accordion-button,
.accordion-button.collapsed {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #1118271A;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  border-bottom: 1px solid #1118271A;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #1118271A;
}

.accordion-body {
  border-top: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
  color: var(--black-3);
}

.accordion-button:focus {
  box-shadow: none !important;
  background-color: transparent !important;
  border-bottom: none !important;
}

.accordion-button {
  background-color: transparent;
  box-shadow: none;
  border-bottom: 1px solid #1118271A;
  border-radius: 0;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0 !important;
}

.accordion-body {
  font-size: 14px;
  line-height: 28px;
  padding: 0px 0px 10px 0px;
  width: 75%;
}

.accordion-button {
  padding: 18px 0px;
}

.accordion {
  max-height: 39vh;
  overflow-y: auto;
}

.accordion-item:last-child,
.accordion-button:last-child {
  border-bottom: none;
  /* Removes the bottom border */
}

.support .nav-item {
  margin: auto 10px;
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
  /* Width of the scrollbar */
  height: 8px;
  /* Height of the scrollbar */
}

::-webkit-scrollbar-thumb {
  background-color: var(--purple);
  border-radius: 13.25px;
}

::-webkit-scrollbar-track {
  background: #E8E8E8;
  /* Background color of the scrollbar track */
  border-radius: 13.25px;
  /* Border radius for the scrollbar track */
}

/* Optional: Add a hover effect */
::-webkit-scrollbar-thumb:hover {
  background-color: #7A5EB4;
  /* Darker shade on hover */
}


.form-group {
  --pad: .5rem;
  position: relative;
}

input,
textarea {
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 0.91px solid var(--purple);
  color: inherit;
  width: 100%;
  outline: none;
  display: grid;
  place-content: center;
}

label {
  position: absolute;
  left: var(--pad);
  top: var(--pad);
  padding-inline: .2em;
  transition: transform 200ms;
  pointer-events: none;
  transform-origin: left;
  translate: 0em;
  font-size: 15px;
  color: var(--purple);
  line-height: 27px;
}

input::placeholder,
textarea::placeholder {
  color: transparent;
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: #CFCFCF;
  opacity: 1;
}

input:focus+label,
input:not(:placeholder-shown)+label,
textarea:focus+label,
textarea:not(:placeholder-shown)+label {
  transform: translateY(calc(-50% - 0.75rem)) scale(.8);
  color: var(--purple);
  background: #f9f7fe;
  font-size: 18px;

}

input:focus,
textarea:focus {
  border: 0.91px solid var(--purple);
  background: #f9f7fe;
  font-size: 15px;
}

.btn-primary {
  background-color: var(--purple);
  border: 1px solid var(--purple);
  box-shadow: 0.91px 3.64px 13.64px 0px #0000001A;
  width: 100%;
  height: 50px;
  font-size: 15px;
  line-height: 16px;
  transition: 0.3s ease-in-out;
  border-radius: 11px;
}

.btn-primary:hover {
  background-color: transparent;
  border: 1px solid var(--purple);
  color: var(--purple);
}

/* Default background */
.support.t1-active {
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease-in-out;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: end;
  background-image: url('../assets/FaqsBanner.png');
  background-size: cover;
  background-position: center;
}

.support.t2-active {
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease-in-out;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: end;
  background-image: url('../assets/ContactBanner.png');
  background-size: cover;
  background-position: center;
}

.download-sec {
  height: 100vh;
  position: relative;
  background-image: url('../assets/Download.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .nav-item:active , .nav-item.active{
  background: #8f75ec;
  border-radius: 15px;
  padding: 0px 5px;
  transition: 0.2s ease-in-out;
}
.nav-item:active a{
  color: #ffffff;
} */
.content-wrapper {
  text-align: center;
  color: white;
  /* Adjust as needed based on background */
}

.app-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
  position: absolute;
  bottom: 37%;
}

/* .store-icon {
  width: 100px; 
  height: auto;
} */

.download-title {
  font-size: 40px;
  line-height: 74px;
}

.footer {
  width: 100%;
  position: absolute;
  bottom: 20px;
  /* Adjust the distance from the bottom as needed */
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  /* Add padding for spacing */
  color: #000000;
  z-index: 1;
  width: 90%;
  font-size: 17px;
  line-height: 72px;
}

.footer a {
  color: #000000;
  margin-left: 10px;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.banner-animation {
  position: relative;
}

.overlay-image {
  top: 60%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.center-overlay-image {
  top: 25%;
  /* Center on the previous overlay */
  left: 60%;
  /* transform: translate(-50%, -50%); */
  width: 45%;
  /* Adjust size as needed */
  /* animation: flip-horizontal 4s ease-in-out infinite;  */
  /* animation: continuous-rotation 4s linear infinite; */
  /* animation: quaternion-rotation 2s ease-out infinite;
    transform-style: preserve-3d;  */
  animation: rotateY-anim 2s linear infinite;
}

@keyframes rotateY-anim {
  0% {
    transform: translate(-50%, -50%) rotateY(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateY(360deg);
  }
}

/* media query */

@media only screen and (max-width:1366px) {

  .support.t2-active,
  .support.t1-active {
    background-size: contain !important;
  }

  .accordion {
    max-height: 56vh;
  }
}

/* slider */
.scroll-container {
  display: flex;
  height: 85vh;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
}

.image-section,
.content-section {
  flex: 1;
  position: relative;
}

.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-frame {
  position: sticky;
  top: 50px;
  /* width: 250px; */
  height: 90vh;
  /* border: 10px solid black; */
  border-radius: 20px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
  overflow: hidden;
}

.mobile-frame img {
  width: 100%;
  height: auto;
}

.mobile-images {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease;
}

.mobile-images img {
  width: 92%;
  height: 92%;
  display: block;
  margin: 28px auto;
}

.content-section {
  padding: 50px;
  overflow-y: scroll;
}

/* Fix the heading to the top */
.fixed-heading {
  position: sticky;
  top: 34%;
  /* background: white; */
  z-index: 10;
  /* padding-bottom: 10px; */
  font-size: 36px;
  /* Adjust font size if necessary */
  font-weight: bold;
  /* Adjust as needed */
  /* margin-bottom: 20px; */
  /* Adds spacing from content */
  text-align: center;
  /* Center the title */
  /* position: fixed;
  top: 35%;
  left: 58%; */
}

.content-section {
  scroll-behavior: smooth;
}

/* Slow down the mobile images transition */
.mobile-images {
  transition: transform 1.5s ease-in-out;
  /* Slow down the image transition */
}

.content {
  display: flex;
  flex-direction: column;
  height: 600vh;
  justify-content: center;
  align-items: center;
  /* 6 slides worth of scrolling */
}

.slide {
  /* flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; */
  height: 100vh;
  display: block;
  margin: 50% auto;
}

.next-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  scroll-snap-align: start;
}

/* Slider dots styles */
.slider-dots {
  position: sticky;
  left: 0;
  top: 50%;
  /* transform: translateX(-50%); */
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
}

.slider-dots div {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #8f75ec;
}

.slider-dots .active {
  background-color: #000;
}

/* Hide scrollbar */
.content-section {
  padding: 0 50px;
  /* overflow-y: scroll; */
  /* scrollbar-width: none; */
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.content-section::-webkit-scrollbar {
  display: none;
  /* For Chrome, Safari, and Opera */
}

/* Smooth scroll behavior for scrolling */
html {
  scroll-behavior: smooth;
}

/* Add smooth scrolling inside content */
.content-section {
  scroll-behavior: smooth;
}

.slide h3 {
  background: linear-gradient(90deg, #FF9085 0%, #FB6FBB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  line-height: 74px;
}

.slide p {
  font-size: 24px;
  line-height: 45px;
}

/* Animation for images coming into the mobile frame */
@keyframes slide-in {
  0% {
      transform: scale(0.8) translateY(50%);
      opacity: 0;
  }

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

.mobile-frame img {
  animation: slide-in 1s forwards;
  z-index: 1;
  position: relative;
}

@media only screen and (min-width:1650px) {
  .mobile-frame {
    top: 0px;
    width: 68%;
height: 80vh;
  }
  .mobile-images img {
    width: 92%;
    height: 92%;
    display: block;
    margin: 26px auto;
}
}
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #9747FF;
}

/* media query */

@media only screen and (max-width:1850px){
  .feature-sec{
    height: min-content;
  }
  .content{
    height: 635vh;
  }
  .scroll-container{
    height: 100vh;
  }
  .mobile-frame{
    height: 83vh;
  }
  .navbar-brand img{
    width: 90%;
  }
}
@media only screen and (max-width:1440px){
  .footer{
    font-size: 15px;
  }
  .accordion-body {
    font-size: 16px;
    width: 80%;
  }
  .accordion-button{
    font-size: 18px;
  }
  .download-sec{
    background-size: auto;
    background-position: bottom;
  }
  .navbar-brand img{
    width: 80%;
  }
}
@media only screen and (max-width:1366px){
  .location-banner h1 {
    font-size: 66px;
    line-height: 80px;
}
.location-banner-content p {
  line-height: 44.33px;
  font-size: 23px;
}
.scroll-overlay h2 {
  font-size: 88px;
  line-height: 90px;
}
.discover{
  height: 100vh;
}
.support.t1-active , .support.t2-active{
  height: 120vh;
}
.download-sec {
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.app-icons{
  bottom: 33%;
}
.footer{
  bottom: 0;
}
}
@media only screen and (max-width:1300px){
  .download-sec {
    background-size: contain;
    background-position: bottom;
    height: 88vh;
  }
}
@media only screen and (max-width:1024px){
  .location-banner h1 {
    font-size: 56px;
    line-height: 70px;
}
.location-banner-content p {
  line-height: 40.33px;
  font-size: 20px;
}
.overlay-image {
  top: 70%;
  width: 80%;
}
.center-overlay-image{
  top: 32%;
}
.scroll-overlay h2 {
  font-size: 70px;
  line-height: 75px;
}
.discover h2 {
  font-size: 40px;
  line-height: 58px;
}
.discover p {
  line-height: 40.33px;
  font-size: 18px;
}
.download-sec{
  height: 100vh;
}
.navbar-brand img{
  width: 80%;
}
}
@media only screen and (max-width:991px){
  .support.t1-active, .support.t2-active {
    height: 100vh;
}
.location-banner h1 {
  font-size: 50px;
  line-height: 60px;
}
.overlay-image {
  top: 73%;
  width: 90%;
  left: 56%;
}
.scroll-overlay h2 {
  font-size: 60px;
  line-height: 70px;
}
.location-banner ,.discover{
  height: 70vh;
}
/* .scroll-section:hover .scroll-overlay, .scroll-section{
  height: 80vh;
} */
.feature-img .img-fluid{
  max-width: 40%;
}
.feature-sec img.featureimg-1{
  right: -6%;
}
.feature-sec img.featureimg-3{
  left: -6%;
}
}
@media only screen and (max-width:991px){
  .support.t1-active, .support.t2-active {
    height: 77vh;
}
.accordion {
  max-height: 33vh;
}
.accordion-body{
  width: 84%;
}
.support.t2-active, .support.t1-active{
  background-position: top !important;
}
.download-sec {
  height: 50vh;
}
.footer{
  line-height: 20px;
  width: 88%;
  margin-bottom: 20px;
}
.footer a{
  margin-left: 0;
}
.app-icons {
  bottom: 23%;
}
.download-title{
  position: relative;
  top:20px;
}
.nav-item {
  margin: 15px;
}
}
@media only screen and (max-width:550px){
  .support.t1-active, .support.t2-active, .discover {
    height: 100vh;
}
.location-banner{
  height: 120vh;
}
.center-overlay-image{
  left: 50%;
  top: 44%;
  width: 40%;
}
.overlay-image{
  left: 50%;
}
.feature-img .img-fluid{
  max-width: 100%;
}
.accordion {
  max-height: 50vh;
}
.download-sec {
  height: 60vh;
  background-size: cover;
}
.download-title {
  top: -23px;
}
.app-icons {
  bottom: 30%;
}
.footer {
  line-height: 27px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.bottom-tags a{
  margin: 0 20px;
}
.feature-sec img{
  width: 100%;
}
.feat-img{
  flex-direction: column !important;
}
}
@media only screen and (max-width:440px){
  .location-banner {
    height: 100vh;
}
.location-banner h1 {
  font-size: 44px;
  line-height: 54px;
}
.nav-tabs .nav-link{
  font-size: 30px;
  line-height: 60px;
}
.support.t1-active, .support.t2-active, .discover {
  height: 90vh;
}
.footer, .bottom-line p{
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
  text-align: center;
}
.bottom-line p{
  margin-bottom:14px !important;
}
.navbar-brand{
  width: 75%;
}
.navbar-brand img {
  width: 90%;
}
.footer{
  padding: 0 10px;
  width: 92%;
  margin-bottom: 20px;
}
.feature-img .img-fluid {
  max-width: 100% !important;
}
.feature-sec img.featureimg-2{
  right: 0 !important;
}
}
@media only screen and (max-width:400px){
  .support-heading p {
    font-size: 17px;
    line-height: 24px;
}
.discover p {
  line-height: 34.33px;
  font-size: 15px;
}
.location-banner-content p {
  line-height: 40.33px;
  font-size: 18px;
}
.overlay-image {
  top: 85%;
  width: 100%;
}
.scroll-overlay h2 {
  font-size: 50px;
  line-height: 60px;
}
.support.t1-active, .support.t2-active{
  height: 94vh;
}
.footer{
  width: 100%;
}
}
@media only screen and (max-width:375px){
  .footer{
    width: 100%;
    padding: 0 !important;
  }
  .location-banner {
    height: 110vh;
}
.discover h2 {
  font-size: 35px;
  line-height: 45px;
}
.nav-tabs .nav-link {
  font-size: 26px;
  line-height: 56px;
}
.support.t1-active, .support.t2-active {
  height: 100vh;
}
.support-heading p {
  font-size: 17px;
  line-height: 24px;
}
.accordion-button {
  font-size: 16px;
}
.accordion-button {
  padding: 16px 0px;
}
.accordion-body {
  font-size: 15px;
}
.accordion{
  max-height: 68vh;
}
.support.t1-active, .support.t2-active {
  height: 120vh;
}
.download-sec {
  height: 70vh;
}
.location-banner h1 {
  font-size: 35px;
  line-height: 44px;
}
.location-banner-content p {
  line-height: 33.33px;
  font-size: 17px;
}
.location-banner-content{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
}
.error { color: red; }
#privacy-policy, #terms-conditions{
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #353535;
}
#privacy-policy strong , #terms-conditions strong{
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #1a1d1f;
  line-height: 34px;
}
#privacy-policy h4, #terms-conditions h4{
  margin-top: 2rem;
}
#privacy-policy p, #terms-conditions p{
  margin-bottom: 1rem;
  margin-top: 10px;
  font-size: 17px;
  line-height: 24px;
}
#privacy-policy li , #terms-conditions li {
  margin: 10px 0;
  font-size: 17px;
  line-height: 24px;
}
#privacy-policy h3 , #terms-conditions h3{
  margin: 2rem 0;
  font-size: 2rem;
}
@media only screen and (max-width:1366px){
  #privacy-policy p,  #privacy-policy li {
    font-size: 16px;
  }
}
@media only screen and (max-width:768px){
  #privacy-policy p,  #privacy-policy li {
    font-size: 15.2px;
    line-height: 26px;
  }
  .privacy-section, .condition-section{
    padding: 10px 20px;
  }
  .footer a {
    margin-left: 12px;
}
.feat-img{
  flex-wrap: wrap;
}
.feature-img .img-fluid {
  max-width: 50%;
}
.feature-sec img{
  width: 100%;
}
.feature-sec img.featureimg-2 {
  transform: translateY(0px);
  right: -12px;
}
}
/* Stroke Animation for Navbar Links */
.nav-link {
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #9747FF;
  font-weight: 600;
}
.nav-link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #9747FF;
  height: 2px;
  transition: width 0.4s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%; 
}

.curtain-menu .nav-link:after {
  background: #9747FF; 
}
.nav-link.active {
  color: #9747FF !important; 
}
.dots-scroll-section {
  display: flex;
  flex-direction: column; 
  width: 100%;
  height: 90vh;
  position: relative;
  scroll-snap-align: start;
}

.phone {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1rem;
}

.phone img {
  max-width: 100%; 
  height: auto; 
  border-radius: 20px;
}

.description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: black;
  padding: 0 1rem;
}

.scrollable-container {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}

.slider-dots {
  position: absolute; 
  top: 50%;
  left:15%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #8f75ec;
}

.slider-dots .dot.active {
  background-color: #8f75ec;
}

.description h3 {
  background: linear-gradient(90deg, #FF9085 0%, #FB6FBB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 1rem;
}

.description p {
  font-size: 1rem;
  line-height: 1.5rem;
}

/* Media Queries */
@media (min-width: 768px) {
  .dots-scroll-section {
      flex-direction: row; 
  }

  .description {
      padding: 0 2rem;
  }

  .fixed-heading {
      font-size: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .dots-scroll-section {
      flex-direction: row;
  }

  .description h3 {
      font-size: 2rem;
      line-height: 3rem;
  }

  .description p {
      font-size: 1.25rem;
      line-height: 2rem;
  }
}
.phone-container {
  position: relative;
  width: 100%;
  max-width: 390px; 
  margin: auto; 
  height: auto; 
  padding: 25px;
}

/* Mobile frame styling */
.phone-frame {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  z-index: 1; 
}

/* Phone image styling */
.phone-image {
  position: relative;
  width: 100%; 
  height: auto; 
}
@media only screen and (max-width:1650px){
.phone-container { 
  max-width: 320px; 
  padding: 20px;
}
.slider-dots{
  left: 10%;
}
}
@media only screen and (max-width:1366px){
  .phone-container {
      max-width: 290px;
      padding: 20px;
      left: 5%;
  }
}
@media only screen and (max-width:991px){
  .phone-container {
      max-width: 240px;
      left: 7%;
  }
}
@media only screen and (max-width:576px){
  .scrollable-container {
      scroll-snap-type: x mandatory;
      display: flex;
      flex-direction: row;
      overflow-x: scroll;
      overflow-y: hidden; /* Prevent vertical scrolling */
      height: auto; /* Adjust height for horizontal layout */
      scrollbar-width: none; /* Hide the scrollbar */
  }

  .dots-scroll-section {
      flex: 0 0 100vw;
      height: 100vh;
      margin: auto;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  /* .slider-dots {
      display: none; 
  } */
  .phone-container {
      max-width: 300px;
      left: 0;
      margin: 10px auto;
  }
  .slider-dots {
      left: 31%;
      top: 10%;
      flex-direction: row;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
  }
}
@media only screen and (max-width: 400px){
  .phone-container {
      max-width: 220px;
      left: 0;
      margin: 10px auto;
      padding: 10px;
  }
  .slider-dots {
      left: 27%;
      top: 5%;
  }
}