@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  border-color: hsl(200 20% 90%);
}
html {
  scroll-behavior: smooth;
}

/* Body text – everywhere */
/* Body text – default everywhere */
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/* Headings only */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
}

/* Optional – form & small text safe */
p,
span,
label,
input,
textarea,
select,
button {
  font-family: "Inter", sans-serif;
}

.section-padding {
  padding: 4rem 1rem;
}
@media (min-width: 640px) {
  .section-padding {
    padding: 4rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section-padding {
    padding: 6rem 2rem;
  }
}

.container-custom {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.card-shadow {
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
}

.card-hover {
  transition: all 0.3s ease-out;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.12);
}

.gradient-overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.animate-fade-up {
  animation: fade-up 0.6s ease-out forwards;
}
.animate-slide-in-right {
  animation: slide-in-right 0.5s ease-out forwards;
}

html {
  scroll-behavior: smooth;
}
/* কার্ডগুলো শুরুতে অদৃশ্য রাখার জন্য ছোট ক্লাস */
.property-card-hidden {
  opacity: 0;
  transform: translateY(20px);
}

/* house detail page slide স্লাইডার স্টাইল কাস্টমাইজেশন */
.thumbSlider .swiper-slide-thumb-active {
  opacity: 1 !important;
  border-color: #94c8ca !important;
}
.swiper-pagination-bullet-active {
  background: #94c8ca !important;
  width: 25px !important;
  border-radius: 5px !important;
}
