html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.hero-image {
    position: relative;
    height: 100vh;
    overflow: hidden; /* ensures parallax element stays contained */
    color: white;
}

/* Parallax background element */
.hero-bg {
    background-image: url('/images/DataKeen.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* slightly taller for smooth parallax */
    z-index: -1; /* keep behind content */
}

/* Foreground content */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text-h1 {
    font-size: 4.5rem;
    font-weight: bold;
}

.hero-text-h2 {
    font-size: 3.5rem;
    font-weight: bold;
}

.hero-image-slice-numbers {
    position: relative;
    overflow: hidden;
    color:white;
}

.hero-image-slice-numbers .bg {
    background-image: url('/images/NumbersBackground.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left:0;
    width:100%;
    height:400%;
    z-index: -1;
}

.hero-image-slice-chart {
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-image-slice-chart .bg {
    background-image: url('/images/ChartBackground.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400%;
    z-index: -1;
}

.hero-image-slice-navigation {
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-image-slice-navigation .bg {
    background-image: url('/images/NavigationBackground.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800%;
    z-index: -1;
}

.hero-image-slice-currency {
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-image-slice-currency .bg {
    background-image: url('/images/CurrencyBackground.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1500%;
    z-index: -1;
}

h2 {
    margin-bottom: 0;
}

h5 {
    font-size: 1.5rem;
    font-weight: 600;
}

.banner-color {
    background-color: #636b2f;
}

.banner-text {
    color: #d4de95;
}

.section-dark {
    background-color: #bac095;
}

.section-text {
    color: #3d4127;
}

.section-light {
    background-color: #d0d0d0;
}

.with-line::after {
    content: "";
    display: block;
    width: 16rem;
    height: 4px;
    background: #bac095;
    margin: 6px auto;
}

.myDarkButton {
    background-color: #636b2f;
    color: #d4de95;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem #d4de95;
}

.btn:hover {
    background-color: #d0d0d0;
}

.banner-color a {
    color: #d4de95;
}

.fade-content {
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

.fade-content.show {
    opacity: 1;
}

.fade-item {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-item.show {
    opacity: 1;
}

#moreVisuals > div:nth-child(1) .fade-item {
    transition-delay: 0s;
}

#moreVisuals > div:nth-child(2) .fade-item {
    transition-delay: 0.3s;
}

#moreVisuals > div:nth-child(3) .fade-item {
    transition-delay: 0.6s;
}

#moreVisuals > div:nth-child(4) .fade-item {
    transition-delay: 0.9s;
}

#moreVisuals > div:nth-child(5) .fade-item {
    transition-delay: 1.2s;
}

.modal-content {
    background-color: #bac095; /* Dark blue-gray */
    color: #3d4127; /* Light text */
    border: 2px solid #000; /* solid black outline */
    box-shadow: 0 0 10px rgba(0,0,0,0.7); /* optional shadow for depth */
}

.modal-header {
    background-color: #636b2f;
    color: #ffffff;
}

.modal-footer {
    background-color: #636b2f;
    color: #ffffff;
}
.swiper {
    width: 100%;
    overflow: visible;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}
