.swiper-container {
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px; /* Added margin below slider */
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 700px;
}

/* content */
.slider-content {
  position: relative;
  /* display: flex;
	flex-direction: column; */
  /* align-items: center; */
  justify-content: flex-start;
  /* top: 30%;
	left: 4%;
	width: 30%;
	height: max-content; */
}

.content {
  position: absolute;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: flex-start;
  background-color: rgba(19, 27, 85, 0.3);
  top: 30%;
  left: 6%;
  width: 30%;
  height: max-content;
  color: #fff;
  text-align: left;
  padding: 30px 30px 40px 30px !important;
  opacity: 1;
  z-index: 2;
}

.content h1 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 20px;
  text-transform: uppercase;
  opacity: 1;
}

.content p {
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 1;
}

.swiper-slide-active .content {
  opacity: 1;
}

.swiper-slide-active .content h1 {
  animation: moveDown 0.8s ease-in forwards;
}

.swiper-slide-active .content p {
  animation: moveDown 1s ease-in forwards;
  animation-delay: 1s;
}

/* @keyframes moveDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
} */

/* background */

.background[data-item="one"] {
  background: url(../assets/images/slider-2.png);
  background-size: cover;
  background-position: 50% 40%;
}

.background[data-item="two"] {
  background: url(../assets/images/slider-1.png);
  background-size: cover;
  background-position: 50% 50%;
}

.background[data-item="three"] {
  background: url(../assets/images/slider-3.png);
  background-size: cover;
  background-position: 50% 40%;
}

/* .background[data-item="four"] {
	background: url(https://github.com/ecemgo/mini-samples-great-tricks/assets/13468728/b772933f-6340-4c95-8d06-d809c4c9b739);
	background-size: cover;
	background-position: 50% 60%;
  }
  
  .background[data-item="five"] {
	background: url(https://github.com/ecemgo/mini-samples-great-tricks/assets/13468728/9f0fab6b-c28d-47e9-80f0-868e00562c3f);
	background-size: cover;
	background-position: 50% 40%;
  } */

.background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important; /* Ensure cover is always used */
  background-position: center center !important;
  filter: brightness(90%);
  overflow: hidden;
  /* clip-path: circle(5%); */
  /* opacity: 0; */
  /* z-index: 1; */
}

/* .animation {
  animation: resizeClipPath 3s ease-in-out forwards;
} */

/* @keyframes resizeClipPath {
  0% {
    clip-path: circle(5%);
    opacity: 0;
  }

  100% {
    clip-path: circle(71%);
    opacity: 1;
  }
} */

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.6s ease-in-out;
}

.swiper-pagination-bullet-active {
  height: 28px;
  background-image: linear-gradient(180deg, #FF9932 0%, #FF9932 100%);
  border-radius: 14px;
}

/* btn bullet */
.btn-style {
  position: relative;
}

.btn-1 {
  position: relative;
  padding: 12px 40px;
  margin: 30px 0;
  font-weight: 700;
}

.btn-swap {
  background-color: transparent;
  border: 2px solid #fff;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
  color: #fff;
  text-transform: capitalize;
}

.btn-swap span {
  position: relative;
  z-index: 1;
}

.btn-swap:hover {
  color: #0071BC;
}

.btn-swap:hover:after {
  width: 100%;
  z-index: 0;
}

.btn-swap:after {
  content: '';
  position: absolute;
  transition: all 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
}

/* CTA Buttons Section */
.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-2 {
  position: relative;
  padding: 12px 40px;
  margin: 30px 0;
  font-weight: 700;
}

.btn-secondary {
  background-color: #FF9932;
  border: 2px solid #FF9932;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
  color: #fff;
  text-transform: capitalize;
}

.btn-secondary span {
  position: relative;
  z-index: 1;
}

.btn-secondary:hover {
  color: #FF9932;
  background-color: transparent;
}

.btn-secondary:hover:after {
  width: 100%;
  z-index: 0;
}

.btn-secondary:after {
  content: '';
  position: absolute;
  transition: all 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
}

/* Responsive CTA Buttons */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-1, .btn-2 {
    padding: 10px 30px;
    margin: 15px 0;
    font-size: 14px;
  }
  
  .content {
    width: 90%;
    left: 5%;
    padding: 20px !important;
  }
  
  .content h1 {
    font-size: 28px;
  }
}