@media (min-width: 1200px) {
    .story-container {
        width: 1200px;
    }
}


.hero-slider .slide-inner .slide-content {
background: rgb(0, 87, 184, .5) !important;
}
   
/* Center text content vertically in story timeline section */
.story-timeline .row {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.story-timeline .row .col-md-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Ensure story text containers are centered */
.story-timeline .story-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Prevent buttons from stretching full width */
.story-timeline .story-text .btn {
  align-self: flex-start;
  width: auto;
}

/* Add some spacing between rows */
.story-timeline .row + .row {
  margin-top: 3rem;
}

/* Ensure images remain responsive */
.story-timeline img {
  width: 100%;
  height: auto;
}

.story-timeline p {
margin-bottom: 20px;
}

/* Mobile responsiveness - stack normally on small screens */
@media (max-width: 991px) {
  .story-timeline .row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .story-timeline .row .col-md-6 {
    margin-bottom: 2rem;
  }
  
  /* Reset text alignment on mobile */
  .story-timeline .right-align-text {
    text-align: left !important;
  }
} 

@media (max-width: 767px) {

  /* Row 1: "Discover New Connections" - text is first in DOM, needs to move after image */
  .story-timeline .row:nth-child(1) .col-md-6:first-child {
    order: 2;
  }
  .story-timeline .row:nth-child(1) .col-md-6:last-child {
    order: 1;
  }

  /* Row 3: "Make Yourself At Home" - text is first in DOM, needs to move after image */
  .story-timeline .row:nth-child(3) .col-md-6:first-child {
    order: 2;
  }
  .story-timeline .row:nth-child(3) .col-md-6:last-child {
    order: 1;
  }

  /* Make sure the rows respect flex ordering */
  .story-timeline .row {
    display: flex;
    flex-wrap: wrap;
  }

}
 
.hero-slider.hero-style-3 .slide-inner {
    position: relative;
    width: 100%;
    height: 100vh; /* adjust as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
}

.video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* darken overlay ? adjust opacity */
}

.slide-content {
    position: relative;
    z-index: 1;
}
  
.gta-img {
    max-width: 800px;
    margin: auto;
    margin-top: 20px;
}       