/* ==== ARCH PROJECTS SLIDER ==== */

.arch-slider-wrapper {
  position: relative;
  width: 100%;
  padding: 80px 0 0px;
  overflow: hidden;
  font-family: Inter, sans-serif;
}

/* ===== FILTER PILL ===== */
.arch-filter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 26px;
  display: flex;
  gap: 18px;
  z-index: 20;
}

.filter-btn {
  background: transparent;
  border: none;
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 30px;
  color: #000;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #94C83D;
  color: #fff;
  opacity: 1;
}

/* ===== NAV ARROWS ===== */
.arch-nav {
  position: absolute;
  left: 60px;
  top: 20%;
  transform: translateY(-50%);
  display: flex;
  gap: 15px;
  z-index: 20;
}
.arch-nav svg{
	fill:#d5d5d5;
	width:30px;
}
.arch-nav .arch-prev:hover svg,.arch-nav .arch-next:hover svg{
	fill:#fff;
}
.arch-btn:hover{
	color:#fff;
}

.arch-prev,
.arch-next {
  width: 45px;
  height: 45px;
  border: 1px solid #d5d5d5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94C83D;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.3s ease;
	background:rgba(255,255,255,.15);
}

.arch-prev:hover,
.arch-next:hover {
  background: #94C83D;
  color: #fff;
}

/* ===== SWIPER CORE ===== */
.arch-slider {
  width: 100%;
  padding-left: 60px;
}

.arch-slider .swiper-wrapper {
  align-items: stretch;
}

/* Show partial next slide */
.arch-slider .swiper-slide {
  width: 85%;
  height: 700px; /* unified height */
  display: flex;
}

/* ===== SLIDE LAYOUT ===== */
.arch-slide {
  background: #000;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  height: 100%;
}

/* LEFT CONTENT */
.arch-content {
  flex: 0 0 45%;
  padding: 60px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.arch-location {
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 15px;
}

.arch-content h2 {
  font-size: 30px;
  margin: 0 0 20px;
}

.arch-content p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 90%;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Learn More button */
.arch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50px;
  color: #d5d5d5!important;
  text-decoration: none;
  font-size: 14px;
  width: fit-content;
  transition: background 0.3s ease;
	background:rgba(255,255,255,.15);
}

.arch-btn .plus {
  width: 22px;
  height: 22px;
  
  color: #d5d5d5!important;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.arch-btn:hover {
  background: #94C83D;
	color:#fff!important;
}
.arch-btn:hover .plus{
	color:#fff!important;
}

/* RIGHT IMAGE */
.arch-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 100%;
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.arch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== ACTIVE / DEPTH EFFECT ===== */
.swiper-slide-prev,
.swiper-slide-next {
  opacity: 0.55;
  transform: scale(0.96);
  transition: all 0.6s ease;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

  .arch-slider {
    padding-left: 20px;
  }

  .arch-slider .swiper-slide {
    width: 92%;
    height: auto;
  }

  .arch-slide {
    flex-direction: column;
  }

  .arch-content {
    padding: 40px;
  }

  .arch-image {
    height: 320px;
  }

  .arch-nav {
    left: 20px;
  }
}
