@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

@font-face {
  font-family: "P22";
  src: url("font/font.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

nav {
  width: 80%;
  display: flex;
  gap: 50px;
  font-size: 12px;
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 10;
}

nav a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

nav a.active { text-decoration: underline; }
nav a i { font-size: 20px; }

.swiper {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  object-fit: cover;
  height: 100%;
}

.swiper-pagination {
  position: absolute !important;
  top: 50% !important;
  left: 20px !important;
  transform: translateY(-50%) !important;
  right: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 10px !important;
  z-index: 10 !important;
}

.swiper-pagination-bullet {
  /* Remove default dot styling */
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;

  /* Style as large "O"s */
  font-size: 100px !important;      /* Increase size for visibility */
  font-weight: bold !important;    /* Make the O thicker */
  font-family: sans-serif !important;
  line-height: normal !important;
  display: inline-block !important;
  color: rgba(255, 255, 255, 0.3) !important; /* Inactive bullets are semi-transparent */
  transition: color 0.3s ease;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  color: rgba(255, 255, 255, 1) !important; /* Active bullet is fully opaque */
}

.swiper-pagination::before {
  content: "";
  position: absolute;
  left: -10px; /* Position the line slightly to the left of the "O"s */
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0));
}



h2 {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(90deg) translate(45%, 100%);
  font-family: "P22", sans-serif;
  font-size: 115px;
}

.info, .pricing {
  position: absolute;
  font-size: 14px;
}

.info {
  left: 20%;
  bottom: 40%;
  line-height: 2;
}

.pricing {
  right: 10%;
}

.pricing p, .info p {
  font-weight: 600;
  margin-top: 10px;
}

.pricing span, .info span {
  display: block;
  line-height: 1.5;
  font-weight: 200 !important;
}

.pricing span { margin-bottom: 10px; }
.pricing h3 { font-size: 30px; }

.btn-block {
  display: flex;
  margin-top: 10px;
}

.btn, .light-btn {
  padding: 18px 60px;
  font-family: "Poppins", sans-serif;
  background: rgba(0,0,0,0.25);
  border: none;
  color: #fff;
  font-size: 10px;
  cursor: pointer;
}

.light-btn { background: rgba(255,255,255,0.1); }

.swiper-thumbs {
  position: fixed;
  top: 65%;
  right: 30%;
  z-index: 10;
  width: 300px;
  overflow: hidden;
}

.swiper-thumbs .swiper-slide {
  height: 50px;
  cursor: pointer;
}

.scroll, .social {
  position: absolute;
  z-index: 10;
  font-size: 12px;
}

.scroll {
  top: 80%;
  right: 30%;
  font-weight: 200;
}

.social {
  top: 90%;
  left: 20%;
}

.social a i {
  font-family: "Remix Icon";
  color:#fff
}

