.elementor-8 .elementor-element.elementor-element-d307d92{--display:flex;}/* Start custom CSS for html, class: .elementor-element-b710e99 */:root { 
  --accent: #a5c8ff; 
  --speed: 5000ms; 
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  font-family: 'Montserrat', sans-serif; 
}

.hero-section { 
  width: 100%; 
  height:400px;
  position: relative; 
  overflow: hidden;
  background: #000;
}

.swiper { width: 100%; height: 100%; }

.swiper-slide { 
  position: relative;
  display: flex; 
  align-items: center; 
  padding: 0 10%; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0 !important; 
  transition: opacity 1.2s ease-in-out; 
}

.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(3,11,23,0.9) 0%, rgba(3,11,23,0.3) 100%);
  z-index: 1;
}

.swiper-slide-active { opacity: 1 !important; }

.content { 
  flex: 1; 
  z-index: 10; 
  color: white;
  transform: translateY(30px);
  transition: 0.8s ease 0.3s;
}

.swiper-slide-active .content { transform: translateY(0); }

.content h1 { 
  font-size: 3.5rem; 
  font-weight: 300; 
  text-transform: uppercase; 
}

.content h1 span { 
  display: block; 
  font-weight: 900; 
  color: var(--accent); 
}

.btn { 
  margin-top: 35px; 
  display: inline-block; 
  padding: 16px 45px; 
  background: white; 
  color: black; 
  text-decoration: none; 
  font-weight: 700; 
  border-radius: 4px; 
  text-transform: uppercase;
}

.custom-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
  z-index: 100;
}

.nav-item {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
}

.nav-item.active { color: #fff; }

.nav-item svg {
  position: absolute;
  width: 45px; height: 45px;
  transform: rotate(-90deg);
  visibility: hidden;
}

.nav-item.active svg { visibility: visible; }

.nav-item svg circle {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 138;
  stroke-dashoffset: 138;
}

.nav-item.active svg circle {
  animation: progress var(--speed) linear forwards;
}

@keyframes progress { 
  to { stroke-dashoffset: 0; } 
}

@media (max-width: 768px) {
  .swiper-slide { 
    flex-direction: column; 
    text-align: center; 
    justify-content: center; 
    padding: 0 5%; 
  }

  .content h1 { font-size: 2.2rem; }

  .swiper-slide::before { 
    background: rgba(3,11,23,0.7); 
  }
}/* End custom CSS */