@import url("assets/section-css/reset.css");
@import url("assets/section-css/header.css");
@import url("assets/section-css/hero.css");
@import url("assets/section-css/text-move.css");
@import url("assets/section-css/features.css");
@import url("assets/section-css/about.css");
@import url("assets/section-css/latest-project.css");
@import url("assets/section-css/latest-launch.css");
@import url("assets/section-css/feature-highlight.css");
@import url("assets/section-css/partner.css");
@import url("assets/section-css/video.css");
@import url("assets/section-css/portfolio.css");
@import url("assets/section-css/service.css");
@import url("assets/section-css/team.css");
@import url("assets/section-css/testimonial.css");
@import url("assets/section-css/pricing.css");
@import url("assets/section-css/blog.css");
@import url("assets/section-css/call-action.css");
@import url("assets/section-css/contact.css");
@import url("assets/section-css/faq.css");
@import url("assets/section-css/404.css");
@import url("assets/section-css/footer.css");
@import url("assets/section-css/sidebar-popup.css");
@import url("assets/section-css/page-title.css");


.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.382);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 960px;
  padding: 20px;
}

.hero-content h1 {
 
  color: #e7c954 !important;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: var(--white-color);
}
.hero-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: var(--white-color);
}


.swiper-new {
  width: 100%;
  height: 100vh !important;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  overflow: hidden !important;
  position: relative;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
.swiper-new .swiper-wrapper {
  display: flex !important;
  flex-direction: column !important;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: transform;
  /* Let Swiper calculate height automatically - don't force it */
}
.swiper-slide-new {
  display: flex !important;
  align-items: stretch;
  justify-content: center;
  padding: 0 16px;
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  width: 100% !important;
  background: transparent;
  box-sizing: border-box;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  transform: translate3d(0, 0, 0); /* Hardware acceleration */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.swiper-slide-active {
  z-index: 1;
}
.swiper-slide-new .tc-latest-project__item.compact {
  width: 100%;
  height: 100%;
  max-height: 100%;
  border-radius: 36px;
  overflow: hidden;
}
.swiper-slide-new .tc-latest-project__content {
  padding: 32px;
}
/* Mobile optimizations */
@media only screen and (max-width: 991px) {
  .swiper-new {
    height: 100dvh !important; /* Use dynamic viewport height on mobile */
    min-height: 100dvh;
    padding: 0;
    overflow: hidden !important;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }
  .swiper-new .swiper-wrapper {
    /* Ensure wrapper can grow to accommodate all slides */
    min-height: auto !important;
  }
  .swiper-slide-new {
    padding: 0 12px;
    height: 100dvh !important; /* Dynamic viewport height */
    min-height: 100dvh !important;
    max-height: 100dvh !important;
  }
  .swiper-slide-new .tc-latest-project__item.compact {
    width: 100%;
    height: 100%;
    max-height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .mobile-row {
    text-align: center;
  }
  .swiper-new {
    height: 100dvh !important; /* Dynamic viewport height for mobile */
    min-height: 100dvh;
    padding: 0;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    overflow: hidden !important;
  }
  .swiper-new .swiper-wrapper {
    /* Ensure wrapper can accommodate all slides */
    min-height: auto !important;
  }
  .swiper-slide-new {
    padding: 0 8px;
    height: 100dvh !important; /* Dynamic viewport height */
    min-height: 100dvh !important;
    max-height: 100dvh !important;
  }
  .swiper-slide-new .tc-latest-project__item.compact {
    border-radius: 24px;
    height: 100%;
    max-height: 100%;
  }
  .swiper-slide-new .tc-latest-project__content {
    padding: 20px;
  }
}
