/* @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@font-face {
  font-family: "bold";
  src: url('../fonts/bold-regular.woff2') format('woff2'),
  url('fonts/bold-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "brook";
  src: url('../fonts/brook.woff2') format('woff2'),
  url('../fonts/brook.woff') format('woff');
  font-weight: normal;
  font-style: normal;
} */
.dark-select {
    width: 100%;
    padding: 8px 16px;
    background-color: #3a4046; /* dark background */
    color: #f3f4f6; /* light text */
    border: 1px solid #374151;
    border-radius: 6px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    cursor: pointer;
}

.dark-select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.dark-select option {
    background-color: #3a4046;
    color: #f3f4f6;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  user-select: none;
  background: #050505;
}

html {
  background: #050505;
}

#home {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.parallax-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.parallax-slider .img-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-position: center;
  background-size: cover;
}

.slider-controls {
  position: absolute;
  right: 5%;
  bottom: 10%;
  height: auto;
  width: auto;
  display: flex;
  flex-direction: row;
  background: rgb(0,0,0,.4);
  z-index: 10;
  margin-left: 10px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 8px;
}

.slide-text{
    font-family: 'Teshrin-AR+ LT-medium' !important;

}
.prev-ctrl, .next-ctrl {
  height: auto;
  width: auto;
  text-align: center;
  padding: 10px;
  background: transparent;
  outline: none;
  position: relative;
  left: auto;
  right: auto;
  cursor: pointer;
}

.parallax-slider {
  height: 100vh;
  width: 100%;
}

/* Background images for slides */
.parallax-slider .img-container.one {
  background: url('../images/newSlider3.jpeg');
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.parallax-slider .img-container.two {
  background: url('../images/newSlider2.jpeg');
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.parallax-slider .img-container.three {
  background: url('../images/newSlider1.jpeg');
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.parallax-slider .img-container.four {
  background: url('../images/004.webp');
  background-position: center;
  background-size: cover;
}

/* Text styles */
.slide-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(245, 245, 245);
  font-size: 90px;
  text-align: center;
  font-family: bold;
  font-weight: 900;
}

/* Links */
#home .slider a {
  color: inherit;
  text-decoration: none;
  outline: none;
}

#home .slider a:hover {
  color: inherit;
  text-decoration: none;
  outline: none;
}

/* Cursor styles */
.cursor {
  height: 50px;
  width: 50px;
  background: transparent;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgb(245, 245, 245);
  position: fixed;
  z-index: 10;
  top: -25px;
  left: -25px;
  opacity: 1;
  overflow: hidden;
  font-family: brook;
  text-align: center;
  color: black;
  font-size: 16px;
}

.cursor-two {
  height: 8px;
  width: 8px;
  background: rgb(245, 245, 245);
  border-radius: 50%;
  pointer-events: none;
  position: fixed;
  z-index: 10;
  opacity: 1;
  top: -4px;
  left: -4px;
  transition: all .05s ease;
}

/* Pagination styles */
.swiper-pagination-container {
  position: relative;
  width: 100px;
  height: 70px;
  z-index: 10;
  padding: 10px;
}

.swiper-pagination {
  width: 100px;
  height: 2px;
  background: rgb(245, 245, 245,.2);
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.slider-control-image {
  height: 50px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: rgb(245, 245, 245);
}

.view-project {
  font-size: 18px;
  font-weight: 200;
  font-family: brook;
  margin-top: -10px;
  opacity: .9;
  padding: 0;
}

/* Preloader styles */
#breaker {
  background: #000000;
  position: fixed;
  height: 150vh;
  display: none;
  width: 100%;
  z-index: 11;
  transform: translateY(-100%);
  animation: breaker 2.5s;
}

@keyframes breaker {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.pace {
  pointer-events: none;
  user-select: none;
  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  border: 0px;
  height: 1px;
  overflow: hidden;
  background: #1b1b1b;
}

.pace .pace-progress {
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
  max-width: 400px;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: grey;
}

.pace.pace-inactive {
  display: none;
}

#preloader {
  width: 100%;
  height: 100vh;
  background: #050505;
  overflow: hidden;
  z-index: 1000;
  position: fixed;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.p {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: bold;
  font-size: 30px;
  color: rgb(245, 245, 245);
}

/* Mouse scroll icon */
.scroll-icon {
  position: absolute;
  left: 50%;
  bottom: 10%;
  z-index: 2;
}

.gg-mouse {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs,1));
  width: 16px;
  height: 24px;
  border: 2px solid rgb(245, 245, 245);
  border-radius: 10px;
}

.gg-mouse::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-radius: 3px;
  width: 2px;
  height: 6px;
  background: rgb(245, 245, 245);
  top: 3px;
  animation: mouse 0.5s linear infinite;
  left: 5px;
}

@keyframes mouse {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(0%);
  }
}

/* Mobile Responsive Styles */
@media all and (max-width: 576px) {
  .cursor, .cursor-two {
    display: none;
  }

  .slide-text {
    font-size: 70px;
  }

  .slider-controls {
    right: 15%;
    bottom: 10%;
  }

  .pace {
    width: 200px;
  }

  .gg-mouse {
    display: none;
  }
}


@media (max-width: 600px) {
  #home {
    height: 60vh;
  }

  .parallax-slider {
    height: 60vh;
  }

}
