.navbar {
  width: 90%;
  margin: 0 auto;
  border-bottom: 3px solid #1ce783;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem; 
}

.navbar-logo {
  width: 17vh;
}

.navbar-logo:hover {
  cursor: pointer;
}

.bg-image {
  background-image: url('../assets/bg-header.jpg');
  background-size: cover;     
  background-position: center; 
  background-repeat: no-repeat;
}

.phone-mockup {
  background-image: url('../assets/phone-header.png');
  background-size: contain;     
  background-position: center bottom; 
  background-repeat: no-repeat; 
  width: 100%;
  min-height: 400px; 
}

.discover-mockup {
  background-image: url('../assets/discover-bottom.png');
  background-size: contain;     
  background-position: center bottom; 
  background-repeat: no-repeat; 
  width: 100%;
  min-height: 400px; 
}

.future-image {
  background-image: url('../assets/future.jpg');
  background-size: cover;     
  background-position: center bottom; 
  background-repeat: no-repeat; 
  width: 100%;
  min-height: 400px; 
}


@media (max-width: 991px) {
  .future-image {
    background-position: center 30%; 
    min-height: 300px; 
  }
  .py-lg-7 {
    padding-bottom: 0;
  }
  .phone-mockup {
    margin-top: -3rem; 
    min-height: 300px; 
  }
}

.py-lg-7 {
  padding-top: 3rem;  
  padding-bottom: 3rem; 
}


.us-text {
  color: transparent; 
  margin-top: -2.5rem;
  -webkit-text-stroke: 5px #1ce783; 
  -webkit-text-fill-color: transparent;
}

.download-now-button {
  margin-top: -2.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  background: linear-gradient(0.25turn, #1ce783, #00b570);
  font-weight: 900;
  border: transparent !important;
  color: #00011D !important;           
  text-decoration: none;
}

.download-now-button:hover {
  background: linear-gradient(0.25turn, #00b570, #1ce783); /* invert gradient */
  transform: scale(1.02); 
}

.download-now-button:active {
  transform: scale(0.97); 
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.2); 
}

.news-ticker {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  height: 8vh;
  background: linear-gradient(0.25turn, #1ce783, #00b570);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin-bottom: 10vh;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker 30s linear infinite;
}

.ticker-text {
  display: inline-block;
  color: #00011d;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  padding-right: 4rem;
}

@keyframes ticker {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.win-smart-title {
  color: white;
  justify-self: center;
}

.win-smart-sub {
  color: white;
}

.text-ltgray {
  color: #AEB7B9;
}

.border-green {
  border: 3px solid #1ce783;
  border-radius: 5px;
}

.border-gray {
  border: 3px solid #404356;
  border-radius: 5px;
}

.text-white-border {
    color: transparent; 
    margin-top: -2.5rem;
    -webkit-text-stroke: 3px #ffffff; 
    -webkit-text-fill-color: transparent;
}

.text-darkblue {
  color: #00011D;
}

.text-green-border {
  color: transparent; 
  margin-top: -2.5rem;
  -webkit-text-stroke: 3px #1ce783; 
  -webkit-text-fill-color: transparent;
}

.text-right-align {
  text-align: end;
}

.green-line {
  border-top: 5px solid #1ce783;
}

.bg-green {
  background-color: #1ce783;
}

.border-green-left {
  border-left: 5px solid #1ce783;
  padding-left: 1.5rem;
  margin-left: 2rem;
  display: flex;           
  flex-direction: column;  
  justify-content: center;
}

.border-green-mobile {
  border-left: 5px solid #1ce783;
  margin-left: 1rem;
  display: flex;           
  flex-direction: column;  
  justify-content: center;
}

.border-gray-right {
  border-right: 5px solid #AEB7B9;
  padding-right: 1.5rem;
  margin-right: 2rem;
  display: flex;           
  flex-direction: column;  
  justify-content: center;
}

.border-gray-mobile {
  border-left: 5px solid #AEB7B9;
  margin-left: 1rem;
  display: flex;           
  flex-direction: column;  
  justify-content: center;
}


.desktop-layout {
  display: block;
}

.mobile-layout {
  display: none;
}

@media (max-width: 1199px) { /* lg breakpoint is 1200px in Bootstrap */
  .desktop-layout h1.text-center span.text-white-border,
  .desktop-layout h1.text-center span.text-green-border {
    font-size: 4rem !important; /* smaller than 5rem, adjust as needed */
  }
  .desktop-layout h1.text-center.pl-9 {
    padding-left: 0 !important;
  }
}

@media (max-width: 768px) {
  .desktop-layout {
    display: none;
  }
  .mobile-layout {
    display: block;
  }
}