/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* scroll-behavior: smooth; */
}

html {
  scroll-behavior: smooth;
}


:root {
  --theme-color: #4B0082;
  --bg-color: #FFF7FF;
  --bg-color-dark-mode: #121212;
  --bg-color-azure: #F0FFFF;
  --bg-color-cyan: #F7FFFE;
  --radius: 10px;
  --white-color:#FFFFFF;
  --grey-color:#707070;
  --dark-mode-card-color: #212121;
  --white-text-color: #FFF7FF;
  --bg-dark-color: #231F20;

  --font-size-h1: clamp(2.5rem, 3vw + 0.5rem, 3.5rem);
  --font-size-h2: 2rem;
  --font-size-h3: 1.6rem;
  --font-size-body: 1.2rem;

  --content-width: 1050px;

  --padding-top: clamp(4rem, 7vw, 6rem);
  --padding-bottom: clamp(4rem, 7vw, 6rem);
  --button-padding: 0.9rem 1.5rem;
  --spacing-btw-header: 2rem;
  --space: 1rem;
}

body {
  font-family: 'ClashGrotesk-Regular', Arial, sans-serif;
  /* line-height: 1.6; */
  min-height: 100dvh;
  background-color: var(--bg-color);
}

h1 {
  font-family: 'ClashGrotesk-Semibold', Arial, sans-serif;
  font-size: var(--font-size-h1); 
}
h2 { 
  font-family: 'ClashGrotesk-Semibold', Arial, sans-serif;
  font-size: var(--font-size-h2); 
  line-height: 1.2;
}
h3 {
  font-family: 'ClashGrotesk-Semibold', Arial, sans-serif;
  font-size: var(--font-size-h3); 
  line-height: 1.3;
}

p {
  font-size: var(--font-size-body); 
  line-height: 1.4;
}

/* Nav */
nav {
  background: var(--bg-color);
  /* box-shadow: 3px 3px 5px rgba(0,0,0,0.1); */
  color: var(--bg-dark-color);
  padding-block: 10px;
}

nav ul{
  width: 100%;
  gap: 20px;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-block: 0.8rem;
  margin: 0;
}

/* nav li{
  height: 50px;
} */

nav a{
  height: 100%;
  /* padding-right: 20px; */
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
  font-family: 'ClashGrotesk-Medium', Arial, sans-serif;
  font-size: .9rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle{
  align-items: center;
}

nav a:hover{
  background-color: #f0f0f0;
}

.logo img {
  height: 1.4rem; 
  width: auto;
}

.sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 1000;
  /* background-color: var(--bg-dark-color); */
  background: #111;
  box-shadow: -10px 0 10px rgba(0,0,0,0.1);
  display: flex;
  transform: translateX(100%); 
  transition: transform 0.3s ease-in-out;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-inline: 2rem;
}

.sidebar.show {
  transform: translateX(0); /* slide into view */
}

.sidebar li{
  width: 100%;
  margin-bottom: 1rem;
}


.sidebar li a{
  width: 100%;
  color: var(--bg-color);
  font-size: var(--font-size-h2);
}


.sidebar li:first-child a {
  display: block;  
  width: 100%;  
  text-align: right; 
  /* padding: 1rem;       */
}


#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  z-index: 999;
}

#menu-overlay.active {
  opacity: 1;
  pointer-events: all; 
}

#menu-toggle{
  display: none;
}

.dark-background{
  /* background-color: #150322; */
  background-color: var(--bg-color-dark-mode);
}

.dark-background-text * {
  color: white;
}

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

.light-background-text * {
  color: black;
}

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

/* Hero */
#hero {
  padding-top: clamp(4rem, 7vw, 8rem);
  background: var(--bg-color);
  margin: 0 auto;
  /* height: 100dvh; */
  text-align: center;
  justify-content: center;
  align-items: center
}

.container {
  max-width: var(--content-width);
  margin: 0 auto; 
  padding-inline: 2rem;
}

.header-texts {
  max-width: 800px; 
  margin: 0 auto; 
  text-align: center; 
}
/* 
.header-texts h1,
.header-texts h2,
.header-texts h3 {
} */

.header-texts p {
  padding-block: clamp(1.5rem, 2vw, 2rem);
}

.spacer{
    padding-top: var(--space);
}

.icon_text{
  display: flex;
  gap: 0.5rem;
  justify-content: center; /* center horizontally */
  margin-top: 1.5rem;
}

.icon_text p{
  font-size: 1rem;
}

.material-symbols-outlined {
  font-size: 1rem;
  vertical-align: middle;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, max-content));
  /* padding: 2rem; */
}

#prototype{
  margin-top: var(--padding-top);
}

#prototype .grid {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

#prototype .grid img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 300px;
}

.intro-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  padding-bottom: var(--padding-bottom);
  padding-top: var(--padding-top);
}

#services {
  text-align: center;
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  background: var(--bg-color-azure);
  overflow: visible;
}

.features-scroll {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  padding-top: var(--padding-top);
  padding-left: 4rem;
  padding-right: 4rem;
  scroll-padding-left: 4rem; 
  scroll-padding-right: 4rem;
  overflow-x: auto;           /* enables horizontal scroll */
  overflow-y: hidden;         /* prevent vertical overflow */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE/Edge (old) */
}

.features-scroll::-webkit-scrollbar {
  display: none;              /* Chrome, Safari */
}

.feature-card {
  flex: 0 0 clamp(260px, 28%, 340px);
  aspect-ratio: 3 / 5;    
  scroll-snap-align: start;
  border-radius: var(--radius);
  
  color: white;     
  position: relative;
  overflow: hidden;   
  /* transition: transform 0.3s ease; */
}

.feature-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  object-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.feature-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1; /* Ensure overlay is above image but below content */
}


/* text content */
.feature-card .content {
  position: relative;
  padding: 2rem;
  text-align: start;
  z-index: 2;
}

.feature-card button{
  padding: .8rem .8rem;
  font-size: .8rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.3rem, 2vw + 0.2rem, 1.5rem);
  /* font-weight: bold; */
}

.feature-card p {
  margin: 0 0 1rem;
  font-size: clamp(0.9rem, 1vw + 0.25rem, 1.1rem);
  line-height: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* exactly 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 
.feature-card .app {
  background-image: url('assets/Photos/app-mockup.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}

.feature-card .fod {
  background-image: url('assets/Photos/fod-features.webp');
}

.feature-card .safety {
  background-image: url('assets/Photos/safety-first-feature.webp');
}

.feature-card .schedule {
  background-image: url('assets/Photos/schedule-feature.webp');
}

.feature-card .travel {
  background-image: url('assets/Photos/travel-feature.webp');
}

.feature-card .recurring {
  background-image: url('assets/Photos/recurring-feature.webp');
} */


.scroll-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-right: 4rem;
}

.scroll-btn {
  height: 50px;
  width: 50px;
  background: #fff;
  border: none;
  border-radius: 50%;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  cursor: pointer;
  /* transition: background 0.3s ease; */
}


.scroll-btn svg{
  transform: translate(-30%, 10%);
}

.scroll-btn:hover {
  background: #fff;
}

#hero-info { 
    background-color: white;
    padding-top: var(--padding-top);
}

#hero-info .grid-info {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 4rem;
    padding-top: var(--spacing-btw-header);
    padding-bottom: var(--padding-bottom);
}

#hero-info .card .title {
    font-size: 1.5em; /* Card title size */
    margin-bottom: 15px;
}

#hero-info .card .info {
    /* font-size: 1.1em; */
    line-height: 1.6; /* Good readability */
}

#hero-info .hero-image {
    display: block;
    width: 100%;
    height: 500px; 
    object-fit:cover; 
}

#waitlist {
    background: linear-gradient(180deg, #150322, #260041);
    color: var(--bg-color);
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    text-align: center;
}

#waitlist h1 {
    margin-bottom: var(--space);
    color: var(--bg-color);
}

#waitlist p {
    font-size: 1.2em;
    /* max-width: 800px; */
    margin: auto;
    line-height: 1.5;
    color: var(--bg-color);
    /* opacity: 0.9; */
}

#waitlistForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
    padding-top: var(--spacing-btw-header);
    margin: 0 auto;
}

  #waitlistForm button {
    width: 100%;
  }
  
.input-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  /* margin: 1rem auto; */
}

.input-container .material-icons {
  position: absolute;
  left: 0.75rem; 
  color: #666;
  font-size: 20px;
  pointer-events: none;
}

.input-container .country-icon {
  position: absolute;
  left: 0.75rem; 
  color: #666;
  width: 20px;
  pointer-events: none;
}

.input-container input {
  width: 100%;
  padding: var(--button-padding);
  padding-left: 3rem;
  border-radius: var(--radius);
  border: none;
  font-size: 0.8rem;
  font-family: 'ClashGrotesk-Regular', Arial, sans-serif;
  outline: none;
  transition: border 0.2s ease;
}


input:focus, select:focus, textarea:focus {
  border-color: var(--theme-color);
}


#waitlist .privacy-note {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7em;
    margin-top: 2rem;
}

#service-partner-cta {
    text-align: center;
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
}

.cta-content-wrapper {
    margin: 0 auto;
    margin-bottom: 8rem;
    display: flex;
    align-items: center;
    gap: 4rem; 
}

.image-box {
    /* max-width: 450px; */
    max-width: 50%;

    aspect-ratio: 1 / 1; 
}

.image-box img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius); 
    /* display: block; */
    object-fit: cover;
}

.text-box {
    /* flex: 1; */
    padding: 20px 0; 
    color: #1a1a1a;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.text-box button{
  align-self: start;
}

.overline {
    font-size: 1em;
    font-family: 'ClashGrotesk-Medium', Arial, sans-serif;
    color: var(--grey-color);
}

.earn-cta{
    margin-top: var(--padding-top);
    margin-bottom: var(--padding-bottom);
}

#latest-feature {
    background-color: var(--bg-dark-color); 
    text-align: center;
    padding-top: var(--padding-top);
}

#latest-feature .text-content {
    /* max-width: 900px;  */
    margin: 0 auto;
    padding-bottom: var(--padding-bottom);
}

#latest-feature .overline {
    /* font-size: 1em; */
    font-weight: 700;
    color: var(--bg-color); 
    margin-bottom: 5px;
}

#latest-feature h1 {
    color: var(--bg-color); 
    padding-bottom: var(--space);
}

#latest-feature .description {
    color: var(--bg-color);
}

#latest-feature .image-container {
    width: 100%;
}

#latest-feature .image-container img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover; 
}

button {
  background: var(--theme-color);
  color: white;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  padding: var(--button-padding);
  font-size: 0.9rem;
  font-family: 'ClashGrotesk-Medium', Arial, sans-serif;
  transition: background 0.3s, color 0.3s;
}

button:hover {
  background-color: #5900d9;
  color: #fff;
}

.cta {
  background: var(--theme-color);
  color: var(--white-color);
  border: none;
}

.cta_outline {
  background: transparent;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
}

.cta-text-button {
  display: inline-block;
  background: var(--theme-color);
  align-self: flex-start;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: background 0.3s, color 0.3s;
}

.cta-text-button a {
  color: white;
  text-decoration: none;
  display: block;
  padding: var(--button-padding);
  font-size: 0.9rem;
  font-family: 'ClashGrotesk-Medium', Arial, sans-serif;
  margin: 0;
}


.cta-text-button:hover {
  background-color: #5900d9;
  color: #fff;
}

.button-row {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  /* margin-top: var(--space); */
}


.fade-edges {
  mask-image: linear-gradient(to right, transparent, var(--bg-color) 10%, var(--bg-color) 90%, transparent);
}

.partners-section{
  padding-top: var(--padding-top);
}

.logos-slider{
  overflow-x: hidden;
}

.overflow{
  display: flex;
  overflow: hidden;
}

.logos-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-around;
  animation: logoLoop 30s linear infinite;
}

.logo-item{
  /* margin-left: 1rem; */
  /* padding: 1rem; */
  padding-top: 1rem;
  padding-bottom: 1rem;
  aspect-ratio: 30 / 9;
  background: var(--bg-color);
  display: grid;
  place-items: center;
  border-radius: var(--radius);
}

.logo-item img{
  height: 1.5rem;
  width: 7em;
  margin-inline: 2rem;
}

@keyframes logoLoop {
    from{
      transform: translateX(0);
    }
    to{
      transform: translateX(-100%);
    }
}

.footer {
  background: #111;
  color: #fff;
  /* padding: 4rem 1rem 1.5rem; */
  padding-top: var(--padding-top);
  padding-bottom: 2rem;
  font-size: 0.9rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  /* max-width: 1050px; */
  margin: 0 auto;
}

.footer-brand {
  max-width: 250px;
}

.footer-brand p{
  margin-top: 1rem;
  font-size: .9rem;
  line-height: 1.3rem;
  color: #ccc;
}

.footer-logo {
  height: 25px;
  margin-bottom: 1.5rem;
}

.footer h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #f3f3f3;
}

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

.footer ul li {
  margin-bottom: 1rem;
}

.footer ul a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer ul a:hover {
  color: #fff;
}

.footer-socials .social-icons {
  display: flex;
  gap: 0.8rem;
}

.footer-socials img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.footer-socials img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 2rem;
  margin-top: 2rem;
  color: #aaa;
}

.footer-bottom p{
  font-size: 0.9rem;
}


/* ===========================
   FAQ PAGE STYLES STARTS
   =========================== */
.faq-section {
  max-width: 800px;
  background-color: var(--bg-color);
  padding-block: var(--padding-top);
  /* margin: 5rem auto; */
  /* padding: 0 1.5rem; */
}

.faq-section h1 {
  text-align: center;
  /* margin-bottom: 2rem; */
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  font-family: 'ClashGrotesk-Medium', Arial, sans-serif;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.2rem;
  font-size: 1rem;
  /* font-weight: 600; */
  cursor: pointer;
  color: #222;
  position: relative;
  display: flex;
  justify-content: space-between; 
  transition: transform 0.3s ease;
}

.faq-question::after {
  content: '+';
  /* position: absolute; */
  right: 1.5rem;
  font-size: 1.2rem;
  flex-shrink: 0; 
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1);

}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover{
  background-color: transparent;
  /* background-color: #ececec; */
  color: #222
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-inline: 2rem;
  /* padding-block: 1rem; */
  color: #222;
  line-height: 1.6;
  transition: max-height 800ms cubic-bezier(.2,.9,.2,1), padding 800ms ease, opacity 800ms ease;
}

.faq-answer p{
    padding-block: 1rem;
    font-size: 1.1rem;
}

.faq-item.open .faq-answer {
  opacity: 1;
  /* padding: 1rem 1.25rem 1.25rem; */
}

.faq-container{
  padding-block: 2rem;
}
/* ===========================
   FAQ PAGE STYLES ENDS
   =========================== */
   
/* ===========================
   ARTICLE PAGE STYLES STARTS
   =========================== */
   #article .container{
    max-width: 750px;
    padding-block: 4rem;
   }
   #article{
    background-color: #150322;
    color: var(--bg-color);
    display: block;
    justify-content: flex-start;
   }

  .article-nav-bar{
    background-color: #150322;
  }

  .article-nav-bar-text a{
    color: var(--bg-color);
   }

   #article .article-header{
    text-align: left;
    max-width: fit-content;
    margin-block: 2rem;
   }

   #article .article-header p{
      /* font-family: 'ClashGrotesk-Semibold', Arial, sans-serif; */
      /* color: var(--bg-color); */
      font-size: 1rem;
      /* letter-spacing: 1.2px; */
      /* text-transform: uppercase; */
      /* font-weight: 600; */
   }

   #article .article-paragraph{
    padding-block: 0.7rem;
    font-size: var(--font-size-body);
   }

  #article ol {
    font-size: var(--font-size-body);
    list-style-type: decimal; 
    padding-left: 20px;
  }

  #article ol ul {
    padding-block: 0.7rem;
    list-style-type: disc; 
    padding-left: 20px;
    margin-top: 6px;
  }

   #article li{
    padding-left: 1rem;
    padding-block: 0.7rem;
   }

   #article ol > li h3 {
      font-size: var(--font-size-body);
      font-weight: 700; 
      /* margin-bottom: 8px; */
    }

  #article .post-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--bg-color); 
    font-size: 0.95rem;
    margin-block: 1rem;
  }

  #article .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  #article .tags span {
    border: 1px solid #8A2BE2;
    color: #C084FC;
    border-radius: 9999px;
    padding: 6px 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  #article .info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #a1a1aa;
    margin-top: 0.5rem;
  }

  #article .info i {
    font-size: 14px;
  }

  .cover-image {
    width: 100%;             
    height: 60vh;          
    object-fit: cover;       
    object-position: center; 
    display: block; 
  }

  .blog-image {
    width: 100%;
    height: 400px;
    object-fit: cover; 
    border-radius: var(--radius); 
    display: block; 
    margin-block: 2rem;
  }

/* ===========================
   ARTICLE PAGE STYLES ENDS
   =========================== */

/* ===========================
   CONTACT PAGE STYLES STARTS
   =========================== */

.contact-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-block: var(--padding-top);
}

.contact-container {
  border-radius: 20px;
  max-width: 750px;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-header{
  margin-bottom: 3rem;
}

.form-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
}

.contact-section label {
  margin-bottom: 1rem;
  /* font-weight: 500; */
  color: black;
}

.contact-section input, select, textarea {
  color: black;
  border: 1px solid #d0d0d0;
  border-radius: var(--radius);
  padding: var(--button-padding);
  padding-left: 1rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: 'ClashGrotesk-Regular', Arial, sans-serif;
}

.contact-section select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23C084FC' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 1rem;
  background-color: white;
}

/* ===========================
   CONTACT PAGE STYLES ENDS
   =========================== */

/* ===========================
   INVESTORS PAGE STYLES STARTS
   =========================== */

.investor-section-hero {
    background-color: var(--bg-color-dark-mode);
    color: white;
    display: flex;
    justify-content: flex-start;
    padding-top: var(--padding-top);
    padding-bottom: 2rem;
}

.investor-header-texts {
  /* max-width: 800px;  */
  text-align: start;
}

.center-text {
  /* max-width: 800px;  */
  text-align: center;
}

.investor-header-texts p {
  padding-block: clamp(1.5rem, 2vw, 2rem);
}

.investor-section-hero .button-row{
  justify-content: center;
}

.investor-section-hero .grid {
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 4rem;
}

.investor-section-hero .investor-hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  display: block; 
  margin-left: auto; 
  margin-right: auto;
  margin: 3rem auto 0 auto;
}

.investor-section-hero .right {
  display: flex;
  justify-content: flex-end; 
  align-items: center;
}

.investor-section{
    background-color: var(--bg-color-dark-mode);
    color: white;
    /* display: flex;
    justify-content: flex-start; */
    padding-block: 3rem;
}

.investor-section-hero .button-row .cta_outline{
  color: white;
  border: 1px solid #5900d9;
}
 
#investor-cta .button-row .cta_outline {
  color: white;
  border: 1px solid #5900d9;
}

.investor-section .button-row{
  justify-content: start;
  padding-top: 1rem;
}

.stats-card-container {
    display: grid;
    justify-content: start;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding-block: 2rem;
}

.stats-card {
    padding-block: 2rem;
    background-color: var(--dark-mode-card-color); 
    border-radius: var(--radius);
    border: 1px solid rgb(39, 39, 39);
    text-align: center; 
    align-items: center;
}

#revenue-stream .stats-card {
    padding: 2rem;
    height: 100%;
}


#revenue-stream .stats-card p {
    font-size: 1em;
    margin-block: 1rem;
}

#revenue-stream .stats-card h4 {
  font-family: 'ClashGrotesk-Semibold', Arial, sans-serif;
  margin-bottom: 1rem;
  color: white;
}

.stats-card p {
    font-size: 1em;
    margin-block: 0.2rem;
    color: rgb(200, 200, 200);
}

.stats-card h3 {
    color: white;
}

.step {
    border-radius: var(--border-radius);
    width: 100%;
    height: 200px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

#how-it-works .step-icon {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.step-icon img {
    width: 100px;
}

.step h3 {
    font-size: 1.3rem;
    text-align: left;
    margin-bottom: 1rem;
}

.step p {
  font-size: 1rem;
  color: rgb(200, 200, 200);
  text-align: left;
}


#how-it-works .stats-card-container{
  margin-top: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}


.error-page {
    display: flex;
    justify-content: center; 
    align-items: center; 
    margin: 0 auto;   
    height: 100dvh; 
    text-align: center;          
    width: 100%;
    background-color: #121212;
}

.error-page h1{
  font-size: 6rem;
  margin-bottom: 0.5rem;
  color: white;
}
.error-page h3{
  color: white;
  margin-bottom: 0.5rem;
}
.error-page p{
  color: white;
  margin-bottom: 2rem;
}


/* ===========================
   PROMO MEDIA PAGE STYLES STARTS
   =========================== */
.margin-block{
  padding-block: var(--padding-top);
}
.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-block: 2rem;
  align-items: start;
}

.masonry .card {
  break-inside: avoid;
  /* background: #fff; */
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(12, 12, 12, 0.06);
}

.imgwrap {
  width: 100%;
  /* height: 240px; */
  overflow: hidden;
  background: transparentz;
}

.imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.masonry .card:hover img {
  transform: scale(1.04);
}

/* Overlay text */
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-inline: 1rem;
  padding-block: 1.5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .9) 100%);
  color: #fff;
}

.day {
  font-size: 1.3rem;
  font-family: 'ClashGrotesk-Semibold', Arial, sans-serif;
  margin: 0;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.caption {
  margin-top: 0.2rem;
  color: #fff;
  font-size: 1rem;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 0.8rem;
}

.dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.dot:hover {
  background: #fff;
}

.slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  display: block;
  opacity: 1;
}

.blurred img {
  filter: blur(15px);
  opacity: 0.5;
}

.blurred{
  border-radius: var(--radius);
  background: #ddd;
}

.locked-indicator {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.swal2-html-container {
  overflow-x: hidden !important; /* Hide horizontal scrollbar */
}

.swiper-container {
  width: 100%;
  max-width: 500px;
}

.swiper-pagination-bullet {
  background-color: #ccc; /* default color */
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #4B0082; /* active bullet color */
}

.caption-p{
  margin-block:1rem; font-weight:500;
  max-width: 500px;
}

.shimmer {
   height: 150px;
   width: 300px;
   background: linear-gradient(-45deg, #353535 40%, #4a4a4a 50%, #393939 60%);
   background-size: 300%;
   background-position-x: 100%;
   animation: shimmerAnimation 1s infinite linear;
}
@keyframes shimmerAnimation {
   to {
      background-position-x: 0%
   }
}
/* ===========================
   PROMO MEDIA PAGE STYLES ENDS
   =========================== */



/*Tablet*/
@media (max-width: 900px) {
 .hideOnMobile{
  display: none;
 }
 
  nav a:hover{
   background-color: transparent;
  }

 #menu-toggle{
    display: block;
  }

  .feature-card {
    flex: 0 0 clamp(260px, 28%, 340px);
    aspect-ratio: 3 / 5.5;    
  }

  .features-scroll {
    display: flex;
    gap: 0.5rem;
  }

  #waitlistForm {
    width: 50%;
    /* gap: 1.5rem; */
    max-width: none;
  }

  .input-container {
    width: 100%;
    max-width: none; 
    /* margin: 1rem auto; */
  }

  .swiper-container {
    max-width: 300px;
  }

  .caption-p{
    max-width: 300px;
  }

  /* .sidebar li a{
      font-size: 2rem;
    } */

}

@media (max-width: 768px) {
  :root{
    --radius: 15px;
  }

  #service-partner-cta .header-texts h2 {
    text-align: start;
  }
  #service-partner-cta .header-texts p {
    text-align: start;
  }

  .cta-content-wrapper {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 4rem;
  }

  .image-box {
      max-width: 100%; 
      width: 100%;
      order: -1;
    }
    
  /* .image-box img {
    height: auto; 
    } */

  .cta-content-wrapper button{
    /* width: 100%; */
    align-self: unset;
  }

  .text-box{
    gap: 0.35rem;
  }

  .features-scroll {
    display: flex;
    padding-left: 2rem;
    padding-right: 2rem;
    scroll-padding-left: 2rem; 
    scroll-padding-right: 2rem;
  }

  .scroll-arrows {
    justify-content: space-between;
    margin: 1rem 1.5rem 0 1.5rem;
  }

  .blog-image {
      height: 40vh;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-section {
    margin-block: 2rem;
  }
}

/*Phone*/
@media (max-width: 450px) {
  .sidebar{
    width: 100%;
  }

  .button-row {
    flex-direction: column;
    align-items: center; 
  }

  .button-row button {
    width: 100%;   
    border-radius: 30px;
  }

  .icon_text p{
    text-align: start;
  }

  .logo-item img{
    height: 1.5rem;
    width: 7em;
    margin-inline: 1rem;
  }

  .icon_text{
    margin-top: 2rem;
  }

   #waitlistForm {
      width: 100%;
      /* gap: 1.5rem; */
      max-width: none;
    }
  
    #waitlistForm button{
      border-radius: 30px;
    }

    #waitlist h1{
      width: 80%;
      /* align-self: center; */
      margin: 0 auto;
      padding-bottom: var(--space);
    }

    .material-symbols-outlined {
      margin-top: 10px;
    }

    .blog-image {
      height: 30vh;
  }

  .feature-card .content button{
    border-radius: 8px;
  }

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

/*Animations*/
.autoShow{
  animation: text-appear both;
  animation-timeline: view();
  animation-range: entry 20% cover 100vh; 
}

@keyframes text-appear{
  from{
    opacity: 0;
    transform: translateY(100px);
  }

  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.imageReveal{
  animation: imageReveal both;
  animation-timeline: view(80% 20%);
  /* animation-timeline: view(10% 5%); */
}

@keyframes imageReveal {
  from{
    filter: saturate(0) contrast(4) brightness(.1);
    opacity: 0;
    scale: .95;
    translate: 0 4rem;
  }

  to{
    filter: none;
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}


.fade-in{
  animation: fadeIn 1.5s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}


.fade-up-intro{
  animation: fadeUpIntro 0.5s;
}

@keyframes fadeUpIntro{
  0%{
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

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

.fade-down-intro{
  animation: fadeDownIntro 0.5s;
}

@keyframes fadeDownIntro{
  0%{
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }

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

.fadeUp{
  animation: fadeUp both;
  animation-timeline: view();
}

.earn-cta:nth-child(1){
  animation-range: entry 20% cover 40%;
}

.earn-cta:nth-child(2){
  animation-range: entry 40% cover 60%;
}

.earn-cta:nth-child(3){
  animation-range: entry 60% cover 80%;
}

.earn-cta:nth-child(4){
  animation-range: entry 80% cover 100%;
}

@keyframes fadeUp {
  from{
    opacity: 0.5;
    transform: translateY(10px) scale(0.6);
    /* opacity: 0; */
    /* transform: translateY(10px) scale(0.4); */

  }

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

@keyframes slide {
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(100%);
  }
}

.hidden{
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 1s;
} 

.show{
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
/* 
@media (prefers-reduced-motion) {
  .hidden{
    transition: none;
  }
  .show{
    transition: none;
  }
} */