.gallery-section {
  margin-top: 0;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .gallery-section {
    margin-top: 5.5rem;
  }
}
.gallery-section .card-stack {
  position: relative;
  width: 100%;
  height: 350px;
}
@media (min-width: 768px) {
  .gallery-section .card-stack {
    max-width: 500px;
    margin: 0 auto;
  }
}
.gallery-section .card-stack .stack-card {
  position: absolute;
  width: 100%;
  height: 300px;
  cursor: grab;
  transition: transform 0.3s ease;
  will-change: transform;
}
.gallery-section .card-stack .stack-card:active {
  cursor: grabbing;
}
.gallery-section .card-stack .stack-card[data-index="0"] {
  z-index: 4;
  transform: translateY(0) scale(1) rotate(0deg);
}
.gallery-section .card-stack .stack-card[data-index="1"] {
  z-index: 3;
  transform: translateY(15px) scale(0.95) rotate(-2deg);
  pointer-events: none;
}
.gallery-section .card-stack .stack-card[data-index="2"] {
  z-index: 2;
  transform: translateY(30px) scale(0.9) rotate(3deg);
  pointer-events: none;
}
.gallery-section .card-stack .stack-card[data-index="3"] {
  z-index: 1;
  transform: translateY(45px) scale(0.85) rotate(-1deg);
  pointer-events: none;
}
.gallery-section .card-stack .stack-card.swiping {
  transition: none;
}
.gallery-section .card-stack .stack-card.swiped-left {
  transform: translateX(-150%) rotate(-30deg) !important;
  opacity: 0 !important;
  transition: all 0.25s ease;
}
.gallery-section .card-stack .stack-card.swiped-right {
  transform: translateX(150%) rotate(30deg) !important;
  opacity: 0 !important;
  transition: all 0.25s ease;
}
.gallery-section .card-stack .stack-card[data-index="4"], .gallery-section .card-stack .stack-card[data-index="5"], .gallery-section .card-stack .stack-card[data-index="6"], .gallery-section .card-stack .stack-card[data-index="7"], .gallery-section .card-stack .stack-card[data-index="8"], .gallery-section .card-stack .stack-card[data-index="9"], .gallery-section .card-stack .stack-card[data-index="10"] {
  z-index: 0;
  transform: translateY(45px) scale(0.85) rotate(-1deg);
  pointer-events: none;
  opacity: 0;
}
.gallery-section .card-stack .stack-card[data-index="-1"], .gallery-section .card-stack .stack-card[data-index="-2"], .gallery-section .card-stack .stack-card[data-index="-3"] {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}
.gallery-section .card-stack .stack-card .card-background {
  width: 100%;
  height: 300px;
  border-radius: 1.5rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.gallery-section .card-stack .stack-card .card-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}
.gallery-section .card-stack .stack-card .card-background .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  z-index: 2;
  color: white;
}
.gallery-section .card-stack .stack-card .card-background .card-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.gallery-section .card-stack .stack-card .card-background .card-content .card-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.95;
}
.gallery-section .card-stack .stack-card .card-background .card-content .card-stats i {
  font-size: 1.2rem;
}
.gallery-section .desktop-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.gallery-section .desktop-slider .slider-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 1.5rem;
}
.gallery-section .desktop-slider .slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.gallery-section .desktop-slider .slider-card {
  min-width: 100%;
  height: 100%;
  position: relative;
  opacity: 0.4;
  transform: scale(0.95);
  transition: all 0.5s ease;
}
.gallery-section .desktop-slider .slider-card.active {
  opacity: 1;
  transform: scale(1);
}
.gallery-section .desktop-slider .slider-card .slider-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.gallery-section .desktop-slider .slider-card .slider-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}
.gallery-section .desktop-slider .slider-card .slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  z-index: 2;
  color: white;
}
.gallery-section .desktop-slider .slider-card .slider-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}
.gallery-section .desktop-slider .slider-card .slider-content .card-stats {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.95;
}
.gallery-section .desktop-slider .slider-card .slider-content .card-stats i {
  font-size: 1.5rem;
}
.gallery-section .desktop-slider .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.gallery-section .desktop-slider .slider-nav:hover {
  background-color: rgb(255, 255, 255);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.gallery-section .desktop-slider .slider-nav:active {
  transform: translateY(-50%) scale(0.95);
}
.gallery-section .desktop-slider .slider-nav i {
  font-size: 1.5rem;
  color: #33997C;
}
.gallery-section .desktop-slider .slider-nav.prev {
  left: 2rem;
}
.gallery-section .desktop-slider .slider-nav.next {
  right: 2rem;
}
.gallery-section .desktop-slider .slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
  z-index: 10;
}
.gallery-section .desktop-slider .slider-dots .dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-section .desktop-slider .slider-dots .dot.active {
  background-color: white;
  width: 2rem;
  border-radius: 0.35rem;
}
.gallery-section .desktop-slider .slider-dots .dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}/*# sourceMappingURL=home-carousel.css.map */