/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}



.tabs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  position: relative;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* Tabs Container */
.tabs {
  display: flex;
  flex-direction: row;
  list-style: none;
  position: absolute;
  padding: 0;
  margin-top: 1.38vw;
  width: 80%;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  z-index: 104;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

/* Individual Tab Styling */
.tab {
  cursor: pointer;
  margin-top: -1.38vw;
  text-transform: capitalize;
  color: #fff;
  font-size: 1.388888888888889vw;
  background-color: transparent;
  border: none;
  transition: color 0.3s ease;
  flex: 1;
  text-align: left;
}

.tab:hover {
  color: #D1DAA9;
}

.tab.active {
  color: #D1DAA9;
}

.tab-content {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.active-tab {
  display: block;
}

video, iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 103;
}

/* Hide controls by default */
video::-webkit-media-controls {
  display: none;
}

/* Progress Bar Container */
.progress-container-row {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 50vh;
  width: 80%;
  justify-content: flex-start;
  align-items: center;
  z-index: 104;
}

/* Individual Progress Bars */
.progress-container {
  flex: 1;
  height: 0.0694444444444444vw;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  cursor: pointer;
  align-items: center;
  text-align: center;
}

/* Active progress container */
.progress-container.active {
  height: 2px;
}

.progress-bar-played {
  height: 100%;
  width: 0%;
  background-color: #D1DAA9;
  border-radius: 0px;
  position: absolute;
  top: 0;
  left: 0;
}

/* Arrow Styles */
.tab-arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 115;
}

.arrow-left {
  left: 30px;
}

.arrow-right {
  right: 30px;
}

/* Align Play and Next Buttons */
.play-btn, .next-btn {
  width: 1px;
  height: 1px;
  position: absolute;
  bottom: 50vh;
  font-size: 2.1vw;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 105;
}

/* Remove hover effect */
.play-btn, .next-btn {
  transition: none;
}

.play-btn:hover, .next-btn:hover {
  transform: none;
  background-color: inherit;
}

/* Positioning the buttons */
.play-btn {
  position: absolute;
  top: 20vh;
  left: 94.09722222222222vw;
}

.next-btn {
  position: absolute;
  top: 20vh;
  left: 1355px;
}

/* Tab Title Styling */
.tab-title {
  position: absolute;
  top: 72vh !important;
  left: 2.569444444444444vw;
  transform: translateX(0%);
  color: #fff;
  font-size: 3.125vw;
  text-transform: capitalize;
  font-weight: 300;
  text-align: left;
  z-index: 115;
  width: 20.83333333333333vw;
  white-space: nowrap;
}

/* Gradient Background Under Tabs */
.video-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  z-index: 104;
}

.icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 50%;
  padding: 1.2vw;
  width: 0.7vw;
  height: 0.7vw;
}

.fa-play {
  font-size: 1.4vw;
}

.fa-stop {
  font-size: 1.4vw;
}

/* Prevent color and icon change when button is clicked */
button:focus,
[type=submit]:focus,
[type=button]:focus,
button:active,
[type=submit]:active,
[type=button]:active {
  background-color: inherit;
  text-decoration: inherit;
  outline: none;
  box-shadow: none;
}

/* Prevent hover effect */
button:hover,
[type=submit]:hover,
[type=button]:hover {
  transform: none;
}

/* Tabs Container */
.tabs {
  display: flex;
  top: 88vh;
  list-style: none;
  padding: 0;
  margin-top: -1.38vw;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}

/* Progress Bar Container */
.progress-container-row {
  display: flex;
  flex-direction: row;
  top: 91vh;
  width: 65vw;
  justify-content: flex-start;
  align-items: left;
}

/* Individual Tab Positioning */
.tab:nth-child(1) {
  position: absolute;
  left: 2.569444444444444vw;
  width: 100%;
}

.tab:nth-child(2) {
  position: absolute;
  left: 23.54166666666667vw;
  width: 100%;
}

.tab:nth-child(3) {
  position: absolute;
  left: 42.70833333333333vw;
  width: 100%;
}

.tab:nth-child(4) {
  position: absolute;
  left: 66.875vw;
  width: 100%;
}

/* Individual Progress Bar Positioning */
.progress-container:nth-child(1) {
  position: absolute;
  left: 2.569444444444444vw;
  height: 1px;
  width: 15.90277777777778vw;
}

.progress-container:nth-child(2) {
  position: absolute;
  left: 23.54166666666667vw;
  height: 1px;
  width: 14.09722222222222vw;
}

.progress-container:nth-child(3) {
  position: absolute;
  left: 42.70833333333333vw;
  height: 1px;
  width: 19.09722222222222vw;
}

.progress-container:nth-child(4) {
  position: absolute;
  left: 66.875vw;
  height: 1px;
  width: 14.30555555555556vw;
}

/* Positioning the buttons */
.play-btn {
  position: absolute;
  top: 57.4vw;
  left: 94.09vw;
}

.next-btn {
  position: absolute;
  top: 49vw;
  left: 94.09vw;
}

@media (min-width: 2040px) {
.next-btn {
  top: 90vh !important;
}

.tabs {
  top: 87vh;
}

.tab-title {
  top: 78vh !important
}

.progress-container-row {
  top: 90vh ;
}
.tabs-container {
  height: 100vh !important;
}

.video-container {
  height: 100vh !important;
}
}
@media (min-width: 1370px) and (max-width: 1441px) {
.elementor-50512 .elementor-element.elementor-element-bf1e49e > .elementor-widget-container {
    margin: -27vh 0 0 0 !important;
}
}

@media (min-width: 1442px) and (max-width: 2040px) {
.elementor-50512 .elementor-element.elementor-element-bf1e49e > .elementor-widget-container {
    margin: -30.5vh 0 0 0 !important;
}
}

@media (width: 1202px) and (height: 800px) {
    .elementor-50512 .elementor-element.elementor-element-bf1e49e > .elementor-widget-container {
    margin: -26vh 0 0 0 !important;
}
}
@media (min-width: 1279px) and (max-width: 1281px) {
    .elementor-22583 .elementor-element.elementor-element-32dbbae > .elementor-widget-container
 {
        margin: -32.5vh 0 0 0 !important;
    }
}
@media (min-width: 1202px) and (max-width: 1279px) {
.elementor-50512 .elementor-element.elementor-element-bf1e49e > .elementor-widget-container {
    margin: -30vh 0 0 0 !important;
}
}

@media (min-width: 1281px) and (max-width: 2040px) {

.next-btn {
  top: 84vh !important;
}

.tabs {
  top: 88vh !important;
}

.tab-title {
  top: 71vh !important;
}

.progress-container-row {
  top: 91vh !important;
}
.tabs-container {
  height: 100.2vh !important;
}

.video-container {
  height: 100vh !important;
}
}

@media (min-width: 1026px) and (max-width: 1281px) {
.next-btn {
  top: 85vh !important;
}

.tabs {
  top: 89vh;
}

.tab-title {
  top: 72vh !important;
}

.progress-container-row {
  top: 92vh ;
}
.tabs-container {
  height: 100.2vh !important;
}

.video-container {
  height: 100vh !important;
}
}

@media (max-width: 1026px) {
    .elementor-40662 .elementor-element.elementor-element-9ab8902 {
        --margin-top: 0px;
        --margin-bottom: 0px;
        --margin-left: 0px;
        --margin-right: 0px;
    }
}

@media (min-width: 767px) and (max-width: 769px) {
    .video-container {
    height: 118.75vw !important;
    top: 0px !important;
  }

  .tabs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 118.75vw !important;
    position: relative;
  }
  
  /* Hide desktop tab title */
  .tab-title {
    display: none;
  }
  
  /* Mobile tabs navigation */
  .tabs {
    display: flex;
    top: 100vw;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100vw !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    justify-content: flex-start;
    align-items: left;
    height: 60px;
  }
  
  /* Mobile tab items */
  .tab {
    display: inline-block;
    flex: 0 0 24.6% !important;
    scroll-snap-align: start;
    text-align: center !important;
    font-size: 1.953125vw;
    padding: 0 30px;
    white-space: normal;
    position: relative !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 !important;
  }
  
  /* Mobile carousel dots pagination */
  .mobile-dots {
    display: flex;
    position: absolute;
    top: 112vw !important;
    left: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 300 !important;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border: 1px solid white;
    border-radius: 50%;
    background-color: transparent;
    margin: 0 5px;
    cursor: pointer;
  }
  
  .dot.active {
    background-color: white;
  }
  
  .progress-container-row {
    display: flex;
    flex-direction: row;tab
    top: 108vw;
    justify-content: flex-start;
    align-items: left;
  }
  
 
  
  /* Mobile play button positioning */
  .next-btn {
    top: auto;
    left: auto;
    bottom: 100px;
    right: 20px;
  }
  
  /* Adjust icon container for mobile */
  .icon-container {
    padding: 12px;
    width: 20px !important;
    height: 20px;
    display: none !important;
  }
  
  .fa-play,
  .fa-stop {
    display: none !important;
  }
  
  /* Mobile arrows for swiping */
  .mobile-arrows {
    display: flex;
    position: fixed;
    top: 50%;
    width: 100%;
    z-index: 25;
    justify-content: space-between;
    padding: 0 15px;
    transform: translateY(-50%);
  }
  
  .mobile-arrow {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  /* Individual Progress Bar Positioning */
   .progress-container:nth-child(1) {
    position: absolute;
    left: 5%;
    height: 1px;
    width: 50%;
  }

  .progress-container:nth-child(2) {
    position: absolute;
    left: 57%;
    height: 1px;
    width: 50%;
  }

  .progress-container:nth-child(3) {
    position: absolute;
    left: 107%;
    height: 1px;
    width: 50%;
  }

  .progress-container:nth-child(4) {
    position: absolute;
    left: 158%;
    height: 1px;
    width: 35%;
  }
  
  /* Hide scrollbar for tabs */
  .tabs::-webkit-scrollbar {
    display: none;
  }
  
  .tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

/* MOBILE STYLES - UPDATED FOR SMOOTH SCROLLING */
@media (min-width: 750px) and (max-width: 740px) {
   .video-container {
    height: 100% !important;
    top: -100 !important;
  }

  .tabs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vw !important;
    position: relative;
  }
  
  /* Hide desktop tab title */
  .tab-title {
    display: none;
  }
  
  /* Mobile tabs navigation */
  .tabs {
    display: flex;
    top: 80vw;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    justify-content: flex-start;
    align-items: left;
    height: 60px;
  }
  
  /* Mobile tab items */
  .tab {
    display: inline-block;
    flex: 0 30 30%;
    scroll-snap-align: start;
    text-align: center !important;
    font-size: 1.53125vw;
    padding: 0 30px;
    white-space: normal;
    position: relative !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 !important;
  }
  
  /* Mobile carousel dots pagination */
  .mobile-dots {
    display: flex;
    position: absolute;
    top: 80vw !important;
    left: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 300 !important;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border: 1px solid white;
    border-radius: 50%;
    background-color: transparent;
    margin: 0 5px;
    cursor: pointer;
  }
  
  .dot.active {
    background-color: white;
  }
  
  .progress-container-row {
    display: flex;
    flex-direction: row;
    top: 88vw;
    justify-content: flex-start;
    align-items: left;
    width: 100% !important;
  }
  
  /* Adjust video size for mobile */
  video, iframe {
    height: 100vw;
  }
  
  /* Mobile play button positioning */
  .next-btn {
    top: auto;
    left: auto;
    bottom: 100px;
    right: 20px;
  }
  
  /* Adjust icon container for mobile */
  .icon-container {
    padding: 12px;
    width: 20px !important;
    height: 20px;
    display: none !important;
  }
  
  .fa-play,
  .fa-stop {
    display: none !important;
  }
  
  /* Mobile arrows for swiping */
  .mobile-arrows {
    display: flex;
    position: fixed;
    top: 50%;
    width: 100%;
    z-index: 25;
    justify-content: space-between;
    padding: 0 15px;
    transform: translateY(-50%);
  }
  
  .mobile-arrow {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  /* Individual Progress Bar Positioning */
  .progress-container:nth-child(1) {
    position: absolute;
    left: 5%;
    height: 1px;
    width: 50%;
  }

  .progress-container:nth-child(2) {
    position: absolute;
    left: 57%;
    height: 1px;
    width: 50%;
  }

  .progress-container:nth-child(3) {
    position: absolute;
    left: 107%;
    height: 1px;
    width: 50%;
  }

  .progress-container:nth-child(4) {
    position: absolute;
    left: 158%;
    height: 1px;
    width: 35%;
  }
  
  /* Hide scrollbar for tabs */
  .tabs::-webkit-scrollbar {
    display: none;
  }
  
  .tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
@media screen and (max-width: 600px) {
 .tabs {
    top: 80vh !important;
    height: 20vw !important;
  }
  
  .tab {
    font-size: 18px !important;
  }
  
  .progress-container-row {
    top: 89vh !important;
  }
  
  /* Mobile carousel dots pagination */
  .mobile-dots {
    display: flex;
    position: absolute;
    bottom: 4vh !important;
    left: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 3000 !important;
    color: white;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border: 1px solid white !important;
    border-radius: 50%;
    background-color: transparent;
    margin: 0 5px;
        z-index: 300;
    cursor: pointer;
  }
  
  .next-btn {
  position: absolute;
  top: 75vh !important;
  left: 94.09vw;
}
}

@media screen and (max-width: 767px) {
  .video-container {
    height: 100.1vh !important;
    top: -100px !important;
  }

  .tabs-container {
    height: 152vh !important;
  }
  
  /* Hide desktop tab title */
  .tab-title {
    display: none;
  }
  
  /* Mobile tabs navigation - Updated for smooth scrolling */
  .tabs {
    display: flex;
    top: 72vh;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    justify-content: flex-start;
    height: 18vw;
    position: absolute;
    left: 0;
  }
  
  /* Mobile tab items - Updated for smooth scrolling */
  .tab {
    display: inline-block;
    flex: 0 0 50%;
    scroll-snap-align: start;
    text-align: center !important;
    font-size: 4.143126177024482vw;
    padding: 0px 10px;
    white-space: normal;
    position: relative !important;
    left: 0 !important;
    width: 50% !important;
    margin: 0 !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Mobile progress bars - Updated for smooth scrolling */
  .progress-container-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    top: 82vh;
    width: 100%;
    padding: 0 10px;
    height: 20px;
    position: absolute;
    left: 0;
  }
  
  .progress-container {
    flex: 0 0 50%;
    scroll-snap-align: start;
    margin: 0 5px;
    width: auto !important;
    left: 0 !important;
    height: 2px;
  }
  
  /* Mobile carousel dots pagination */
  .mobile-dots {
    display: flex;
    position: absolute;
    bottom: 10vh;
    left: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 30;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border: 1px solid white;
    border-radius: 50%;
    background-color: transparent;
    margin: 0 5px;
    cursor: pointer;
  }
  
  .dot.active {
    background-color: white;
  }
  
  /* Adjust video size for mobile */
  video, iframe {
    height: 100.1vh;
  }
  
  /* Mobile play button positioning */
  .next-btn {
    top: auto;
    left: auto;
    bottom: 100px;
    right: 20px;
  }
  
  /* Adjust icon container for mobile */
  .icon-container {
    padding: 12px;
    width: 20px !important;
    height: 20px;
    display: visible !important;
  }
  
  .fa-play,
  .fa-stop {
    display: visible !important;
  }
  
  .fa-play {
  font-size: 10px;
}

.fa-stop {
  font-size: 10px;
}
  
  /* Hide scrollbars but keep functionality */
  .tabs::-webkit-scrollbar,
  .progress-container-row::-webkit-scrollbar {
    display: none;
  }

  .tabs,
  .progress-container-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  /* Reset individual positioning for mobile */
  .tab:nth-child(1),
  .tab:nth-child(2),
  .tab:nth-child(3),
  .tab:nth-child(4) {
    position: relative !important;
    left: 0 !important;
    width: 50% !important;
  }
  
  .progress-container:nth-child(1),
  .progress-container:nth-child(2),
  .progress-container:nth-child(3),
  .progress-container:nth-child(4) {
    position: relative !important;
    left: 0 !important;
    width: 50% !important;
    margin: 0 5px;
  }
}

@media (min-width: 750px) and (max-width: 1025px) {
  .video-container {
    height: 118.75vw !important;
    top: -100 !important;
  }

  .tabs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 118.75vw !important;
    position: relative;
  }
  
  /* Hide desktop tab title */
  .tab-title {
    display: none;
  }
  
  /* Mobile tabs navigation */
  .tabs {
    display: flex;
    top: 100vw;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    justify-content: flex-start;
    align-items: left;
    height: 60px;
  }
  
  /* Mobile tab items */
  .tab {
    display: inline-block;
    flex: 0 30 30%;
    scroll-snap-align: start;
    text-align: center !important;
    font-size: 1.953125vw;
    padding: 0 30px;
    white-space: normal;
    position: relative !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 !important;
  }
  
  /* Mobile carousel dots pagination */
  .mobile-dots {
    display: flex;
    position: absolute;
    top: 112vw !important;
    left: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 300 !important;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border: 1px solid white;
    border-radius: 50%;
    background-color: transparent;
    margin: 0 5px;
    cursor: pointer;
  }
  
  .dot.active {
    background-color: white;
  }
  
  .progress-container-row {
    display: flex;
    flex-direction: row;
    top: 108vw;
    justify-content: flex-start;
    align-items: left;
    width: 50% ;
  }
  
  /* Adjust video size for mobile */
  video, iframe {
    height: 118.75vw !Important;
  }
  
  /* Mobile play button positioning */
  .next-btn {
    top: auto;
    left: auto;
    bottom: 35vh;
    right: 20px;
  }
  
  /* Adjust icon container for mobile */
  .icon-container {
    padding: 12px;
    width: 20px !important;
    height: 20px;
    display: visible !important;
  }
  
  .fa-play,
  .fa-stop {
    display: visible !important;
  }
  
  /* Mobile arrows for swiping */
  .mobile-arrows {
    display: flex;
    position: fixed;
    top: 50%;
    width: 100%;
    z-index: 25;
    justify-content: space-between;
    padding: 0 15px;
    transform: translateY(-50%);
  }
  
  .mobile-arrow {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  /* Individual Progress Bar Positioning */
  .progress-container:nth-child(1) {
    position: absolute;
    left: 5%;
    height: 1px;
    width: 40%;
  }

  .progress-container:nth-child(2) {
    position: absolute;
    left: 57%;
    height: 1px;
    width: 40%;
  }

  .progress-container:nth-child(3) {
    position: absolute;
    left: 107%;
    height: 1px;
    width: 40%;
  }

  .progress-container:nth-child(4) {
    position: absolute;
    left: 158%;
    height: 1px;
    width: 35%;
  }
  
  /* Hide scrollbar for tabs */
  .tabs::-webkit-scrollbar {
    display: none;
  }
  
  .tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}