/*******************/
/** Slider Setup **/
/******************/
:root {
  --primary-color: #ffffff;
  --secondary-color: #000000;
  --btn-color: #ffa623;
  --text-color: #ffa400;
  --blue-color: #207eba;
  /* ... other custom properties */
}
body{
  padding: 0;
  margin: auto;
  max-width: 576px;
  overflow: hidden;
  height: 100%;
  font-family: "Poppins", sans-serif;
}
.story__wrapper {
  /* Add styles for story__wrapper if needed */
}

.slide-heading,
.btn,
h1,
h2,
h3,
p {
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5); /* Adjust shadow properties as needed */
}
p {
  line-height: 1.7rem;
}
h1, h1 span{
  font-size: 2.5rem;
}
h2{
  font-size: 2rem;
}
h3{
  font-size: 1.8rem;
  line-height: 1.5rem;
}
h3{
  font-size: 1.4rem;
  line-height: 1rem;
}
.hidden-box{
  display: none;
}
.primary-colored-text{
  color: var(--text-color);
}
.secondary-colored-text{
  color: var(--blue-color);
}
label, p {
  font-size: 1.5rem;
}
label{
  line-height: 2.8rem;
  display: flex;
  align-items: center;
}
input[type="radio"] {
  width: 2rem;
}
.radio-input {
  display: none;
}

.radio-label {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.radio-input:checked + .radio-label {
  background-color: white;
  border-color: #ffffff;
}

.radio-label::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
}

.radio-input:checked + .radio-label::after {
  background-color: #ffffff;
}
.story__slider {
  /* width: 768px;
  height: 800px;
  border-radius: 6px;
  overflow: hidden ;*/
  height: 100vh;
}
.story__slide {
  position: relative;
}

.story__slide video,
.story__slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.story__pagination {
  bottom: unset !important;
  top: 8px !important;
  display: flex;
  padding: 0 4px;
}

.story__pagination .swiper-pagination-bullet {
  flex-grow: 1;
  border-radius: 100vh;
  height: 10px;
  margin: 0 10px !important;
  background-color: rgba(247, 247, 245, 0.4);
  opacity: 1;
}

.story__pagination .swiper-pagination-bullet .swiper-pagination-progress {
  height: 100% ;
  width: 0% ;
  border-radius: 100vh ;
  background-color: var(--secondary-color) ;
}

.story__prev,
.story__next {
  height: 100% !important;
  width: 10% !important;
  top: 0 !important;
  margin-top: 0 !important;
}

.story__prev::after,
.story__next::after {
  content: none !important;
}

.story__prev {
  left: 0 !important;
}

.story__next {
  right: 0 !important;
}

/** Slide 1 **/

/* .video-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text-box {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes top-to-bottom {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes bottom-to-top {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
} */


.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container video {
  position: absolute; /* Make video fill the container */
  top: -8%;
  left: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; Scale video to fill container while maintaining aspect ratio */
}

.overlay {
  position: absolute; /* Make overlay positioned within container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); Semi-transparent black background (adjust opacity as needed) */
  display: flex; /* Allow vertical alignment of text content */
  justify-content: center; /* Center text content horizontally */
  align-items: center; /* Center text content vertically */
}

.text-container {
  text-align: center; /* Center text within container */
  color: var(--primary-color); /* Text color (adjust as needed) */
}


.animated-text, .animated-btn {
  opacity: 0;
  /* transform: translateY(-20px); */
  position: absolute;
  transition: opacity 0.5s ease, transform 0.5s ease;
}


/* .animated-text.show, .animated-btn.show {
  opacity: 1;
  transform: translateY(0);
} */

/* [data-appear] {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(-20px); 
}
 */

 .d-flex{
  display: flex;
 }
 .flex-column{
  flex-direction: column;
 }
.top-to-bottom{
  bottom: 45%;
  transform: translate(0, 100%);
  margin-left: -100px;
  left: 50%;
}

.bottom-to-top{
  top: 45%;
  transform: translate(0, -100%);
  left: 0;
}
.default{
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
  right: 15%;
}

.slide-heading {
  position: absolute;
  letter-spacing: 0.1rem;
  bottom: 20px;
  left: 0;
  padding: 0 15%;
  /* transform: translateX(-50%); */
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.8s ease;
}

.slide-heading.appear-bottom {
  opacity: 1;
  bottom: 25%; /* Adjust to control where it initially appears */
  /* transform: translateX(0) translateY(-50%); */
}
.slide-heading.appear-center {
  opacity: 1;
  bottom: 50%; /* Adjust to control where it initially appears */
  /* transform: translateX(0) translateY(-50%); */
}

.slide-heading.bottom.move-up {
  transition: transform 1s ease;
  transform: translateX(0) translateY(-40vh);
}
.slide-heading.center.move-up {
  transition: transform 1s ease;
  transform: translateX(0) translateY(-40vh);
}
.third-slider--head{
  top: 28%;
}
.third-slider--head.center.move-up {
  transition: transform 1s ease;
  transform: translateX(0) translateY(-20vh);
}
.show {
  opacity: 1;
}
.hide{
  display: none;
}

/** Footer **/
.footer{
  position: absolute;
  bottom: 0px;
  border-top: 3px solid;
  width: 100%;
  background: var(--primary-color);
  text-align: center;
  padding-top: 25px;
  padding-bottom: 45px;
}
.footer p, .footer a{
  color: gray;
  text-shadow: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: 20px;
}
.footer--container{
  /* padding: 10px 20px; */
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: -25px;
}

/** Header Info Bar **/
.slide-content {
  position: absolute;
  left: 0;
  right: 0;
  padding: 35px 15px 15px;
  background-color: #60757fcc;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 99;
  top: 0;
}

.slide-info {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 5px;
}

.social-container {
  color: var(--primary-color); /* Text color */
  display: flex;
  gap: 30px;
}

.swiper--step{
  color: var(--secondary-color);
  background-color: var(--primary-color);
  padding: 2px 25px;
  border-radius: 5px;
}

i {
  cursor: pointer; /* Add pointer cursor for like icon */
  font-size: 25px;
}

/** Modal **/
.modal--full {
  position: fixed; /* Ensures modal stays above content */
  top: 100vh; /* Initially positioned off-screen (bottom) */
  left: 0;
  width: 100%;
  height: 100vh; /* Adjust height as needed */
  background-color: rgb(255, 255, 255); /* Semi-transparent background */
  display: flex; /* Center content vertically */
  justify-content: center;
  align-items: center;
  opacity: 0; /* Initially invisible */
  transition: all 0.5s ease-in-out; /* Smooth transition effects */
}

.modal--full.show {
  top: 0; /* Animate to top position on modal open */
  opacity: 1; /* Make modal visible */
  z-index: 9;
  /* padding: 100px 0; */
  overflow-y: auto;
}
.full-content {
  height: 100vh;
}
.modal--inner {
  width: 90%;
  background: var(--primary-color);
  box-shadow: 0px 0.5px 0px 0px rgba(255, 255, 255, 0.25);
  color: var(--primary-color);
  position: fixed;
  bottom: 37%;
  left: 5%;
  top: 10%;
  transition: opacity 0.35s, visibility 0.35s;
  overflow: scroll;
  border-top: 5px solid var(--btn-color);
  border-bottom: 5px solid var(--btn-color);
  opacity: 0;
}
.modal--inner.show {
  height: auto;
  z-index: 9;
  opacity: 1;
  min-height: 55vh;
}
.inner-content{
  color: black;
  padding: 35px;
}
/* Initial state of the modal */
.modal-closed {
  height: 0;
}
.full-content img{
  width: 100%;
}
.modal img {
  width: 60%;
  object-fit: inherit;
  display: block;
  margin: auto;
}
.closeModal{
  position: absolute;
  color: rgb(0, 0, 0);
  font-size: 40px;
  margin: 0;
  right: 40px;
  font-weight: inherit;
  cursor: pointer;
  top: 10px;
}
/** Slide 2 **/
/* .second-slider .animated-text {
  position: static !important;
  width: 100% !important;
} */
.auto-scroll-container {
  height: 100px; /* Set your desired height for the container */
  overflow: hidden; /* Hide overflow content */
  /* position: relative; */
}

.content-wrapper {
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    width: 85%;
    animation: scroll-animation 15s linear infinite;
}
.content-wrapper span{
  margin-bottom: 20px;
  display: block;
} 
@keyframes scroll-animation {
  from { transform: translateY(1%); } /* Start at top */
  to { transform: translateY(-100%); } /* Scroll down to the bottom */
}
.text-white{
  color: var(--primary-color);
}
.secondary-text {
  position: absolute;
  bottom: 140px;
  padding: 60px;
  font-size: 26px;
  left: 0;
  width: 90%;
  right: 5%;
  top: auto;
  text-shadow: none;
  height: 100px;
  overflow-y: auto;
}

.see-the-data h1 {
  font-size: 56px;
  color: white;
}

.second-slider img {
  width: 45%;
}
/** Slide 3 **/
.accordion--container {
  width: 80%;
  margin: 30px auto;
  top: 25%;
  left: 10%;
  right: 15%;
}
.accordion{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion.border-bottom{
  border-bottom: 3px solid var(--btn-color);
}
.accordion--text{
  text-align: left;
}
.accordion--button button{
  background-color: var(--btn-color);
  border-radius: 50%;
  color: var(--primary-color);
  text-shadow: 0 0 BLACK;
  border-color: var(--btn-color);
  padding: 5px 8px 5px 6px;
  box-shadow: none;
  text-align: center;
}
.default.btn.bottom{
  bottom: 25%;
  top: auto;
}
.slide-3{
  margin-top: -12rem;
}
.mt--2{
  margin-top: 2rem;
}
.p-0{
  padding: 0;
}
/** Slide 4 **/
.slide-4--content{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.slide-4--content div{
  width: 100%;
  text-align: left;
}

.swiper-hidden{
  display: none;
}
.animated-btn {
  display: inline-block;
  padding: 20px 35px;
  margin-top: 20px;
  background-color: var(--btn-color);
  color: var(--primary-color);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  top: 65%;
}
.blue-bg{
  background-color: var(--blue-color);
}
.col-sm-6 {
  width: 50%;
}
.col-sm-6:first-child{
border-right: 2px solid;
padding-right: 35px;
}
.col-sm-4 {
  width: 33.33%;
}
.col-sm-4:nth-child(2){
  border-left: 2px solid;
  border-right: 2px solid;
/*   padding-left: 35px;
  padding-right: 35px; */
}
button a{
  color: var(--primary-color);
  text-decoration: none;
}
@media (max-width: 1024px) {
  body {
      max-width: 100% !important;
  }
}