* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  color: #1a1a1a;
  overflow-x: hidden;
  line-height: 1.4;
}

.both_css .gharsetu-wrapper {
  width: 100%;
  overflow: hidden;
}

.heighlight-gs-text {
  color: #f97316;
  font-weight: 600;
}

.gharsetu-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Modern Header */
.gharsetu-header-modern {
  background-color: #ffffff;
  padding: 15px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gharsetu-header-modern.scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gharsetu-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gharsetu-logo-modern img {
  max-width: 160px;
  height: auto;
}

/* Mobile Menu Toggle - 993px se niche dikhega */
.gharsetu-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  font-size: 20px;
  color: #18365b;
}

/* Mobile Search Icon - 993px se niche dikhega */
.gharsetu-mobile-search-icon {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  font-size: 18px;
  color: #18365b;
  margin-left: 15px;
}

/* Navigation */
.gharsetu-nav-modern {
  display: flex;
  align-items: center;
}

.gharsetu-nav-menu {
  display: flex;
  list-style: none;
  margin-right: 30px;
}

.gharsetu-nav-item {
  margin: 0 15px;
  position: relative;
}

.gharsetu-nav-link {
  color: #18365b;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.gharsetu-nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #f97316;
  bottom: 0;
  left: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gharsetu-nav-link:hover::after,
.gharsetu-nav-link.active::after {
  width: 100%;
}

.gharsetu-nav-link:hover,
.gharsetu-nav-link.active {
  color: #f97316;
}

.gharsetu-header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.gharsetu-btn-modern {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  font-family: "Jost", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gharsetu-btn-outline {
  background-color: transparent;
  color: #18365b;
  border: 2px solid #18365b;
}

.gharsetu-btn-outline:hover {
  background-color: #18365b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gharsetu-btn-filled {
  background: linear-gradient(135deg, #f97316, #ff8c42);
  color: white;
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.gharsetu-btn-filled:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

/* Mobile Search Bar */
.gharsetu-mobile-search {
  display: none;
  width: 100%;
  padding: 15px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e9ecef;
  margin-top: 10px;
}

.gharsetu-mobile-search.active {
  display: block;
}

.gharsetu-mobile-search-form {
  display: flex;
  gap: 10px;
}

.gharsetu-mobile-search-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Jost", sans-serif;
}

.gharsetu-mobile-search-btn {
  background: #f97316;
  color: white;
  border: none;
  border-radius: 8px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Mobile Menu */
.gharsetu-mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: white;
  z-index: 1002;
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  padding: 20px 0 30px 0;
}

.gharsetu-mobile-menu.active {
  left: 0;
}

.gharsetu-mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gharsetu-mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.gharsetu-mobile-logo {
  padding: 0 25px 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
  text-align: center;
}

.gharsetu-mobile-logo img {
  max-width: 100px;
}

.gharsetu-mobile-nav {
  list-style: none;
  padding: 0 25px;
}

.gharsetu-mobile-nav-item {
  margin-bottom: 12px;
}

.gharsetu-mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  color: #18365b;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.gharsetu-mobile-nav-link i {
  width: 24px;
  color: #f97316;
  font-size: 18px;
}

.gharsetu-mobile-nav-link:hover,
.gharsetu-mobile-nav-link.active {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.1),
    rgba(255, 140, 66, 0.1)
  );
  color: #f97316;
  transform: translateX(5px);
}

.gharsetu-mobile-buttons {
  padding: 25px;
  margin-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gharsetu-mobile-btn {
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: "Jost", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gharsetu-mobile-btn-filled {
  background: linear-gradient(135deg, #f97316, #ff8c42);
  color: white;
}

.gharsetu-mobile-btn-outline {
  background-color: transparent;
  color: #18365b;
  border: 2px solid #18365b;
}

/* Modern Hero Section */
.gharsetu-hero-modern {
  padding: 160px 0 100px;
  background: linear-gradient(
    135deg,
    rgba(24, 54, 91, 0.03) 0%,
    rgba(249, 115, 22, 0.03) 100%
  );
  position: relative;
  overflow: hidden;
}

.gharsetu-hero-modern::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(24, 54, 91, 0.05) 0%,
    rgba(249, 115, 22, 0.05) 100%
  );
  top: -300px;
  right: -200px;
  z-index: 0;
}

.gharsetu-hero-modern::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.05) 0%,
    rgba(24, 54, 91, 0.05) 100%
  );
  bottom: -200px;
  left: -100px;
  z-index: 0;
}

.gharsetu-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gharsetu-hero-text {
  max-width: 600px;
}

.gharsetu-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f97316, #ff8c42);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.2);
}

.gharsetu-hero-title {
  font-size: 52px;
  font-weight: 600;
  color: #18365b;
  line-height: 1.1;
  margin-bottom: 20px;
}

.gharsetu-hero-title span {
  color: #f97316;
}

.gharsetu-hero-description {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.7;
}

.gharsetu-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.gharsetu-stat-item {
  text-align: center;
}

.gharsetu-stat-number {
  font-size: 36px;
  font-weight: 600;
  color: #18365b;
  line-height: 1;
}

.gharsetu-stat-label {
  font-size: 14px;
  color: #6c757d;
  margin-top: 8px;
}

.gharsetu-hero-search {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.gharsetu-search-title {
  font-size: 22px;
  font-weight: 600;
  color: #18365b;
  margin-bottom: 20px;
}

.gharsetu-search-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.gharsetu-search-input-modern {
  padding: 16px 20px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Jost", sans-serif;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}

.gharsetu-search-input-modern:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.gharsetu-search-full {
  grid-column: span 2;
}

.gharsetu-search-btn-modern {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #18365b, #2a4a7a);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gharsetu-search-btn-modern:hover {
  background: linear-gradient(135deg, #2a4a7a, #18365b);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(24, 54, 91, 0.2);
}

/* feature property css start */
.prop-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: #ffffff;
  position: relative;
}

/* Header */
.prop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 20px;
}

.prop-title-box {
  flex: 1;
}

.prop-main-title {
  font-size: 42px;
  font-weight: 600;
  color: #18365b;
  position: relative;
  padding-bottom: 15px;
}

.prop-main-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ff8c42);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.prop-subtitle {
  font-size: 18px;
  color: #6c757d;
  max-width: 500px;
  margin-top: 15px;
}

.prop-all-link {
  color: #f97316;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 15px;
  white-space: nowrap;
}

.prop-all-link:hover {
  gap: 12px;
  color: #ff8c42;
}

/* Desktop Navigation Icons - 993px se upar */
.prop-desktop-nav {
  display: none;
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  pointer-events: none;
  z-index: 10;
}

.prop-nav-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f97316;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  pointer-events: all;
}
.prop-nav-btn:hover {
  background: #f97316;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.prop-nav-prev {
  left: -10px;
}

.prop-nav-next {
  right: -10px;
}

/* Property Cards Container */
.prop-grid-container {
  position: relative;
  overflow: hidden;
}

/* Desktop Grid - 3 Cards (993px se upar) */

.prop-grid {
  display: flex;
  gap: 25px;
  overflow-x: hidden;
  scroll-behavior: unset;
  padding: 10px 5px 20px;
}
#propertyGrid::-webkit-scrollbar {
  height: 8px; /* scrollbar thickness */
}

#propertyGrid::-webkit-scrollbar-track {
  background: #ffe1cc; /* light orange track */
  border-radius: 10px;
}

#propertyGrid::-webkit-scrollbar-thumb {
  background: #ff6f00; /* main orange */
  border-radius: 10px;
}

#propertyGrid::-webkit-scrollbar-thumb:hover {
  background: #e86200;
}

.prop-grid::-webkit-scrollbar {
  display: none;
}

/* Prevent cards from shrinking */
.prop-grid > .prop-card {
  flex: 0 0 calc(33.333% - 17px);
  min-width: 300px;
}

/* Card */
.prop-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.prop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Image Box */
.prop-img-box {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.prop-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.prop-card:hover .prop-img-box img {
  transform: scale(1.05);
}

.prop-badge {
  position: absolute;
  top: 5px;
  right: 10px;
  background: #f97316;
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  z-index: 2;
  float: right;
}

/* Content */
.prop-content {
  padding: 20px;
}

.prop-price {
  font-size: 20px;
  font-weight: 600;
  color: #18365b;
  margin-bottom: 8px;
}

.prop-unit {
  font-size: 14px;
  font-weight: 600;
  color: #6c757d;
}

.prop-name {
  font-size: 16px;
  font-weight: 600;
  color: #18365b;
  margin-bottom: 8px;
  line-height: 1.4;
}

.prop-location {
  display: flex;
  align-items: center;
  color: #6c757d;
  margin-bottom: 15px;
  font-size: 14px;
}

.prop-location i {
  margin-right: 6px;
  color: #f97316;
  font-size: 14px;
}

.prop-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 15px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.prop-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.prop-feature-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(24, 54, 91, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #18365b;
  font-size: 16px;
  flex-shrink: 0;
}

.prop-feature-value {
  font-weight: 600;
  color: #18365b;
  font-size: 15px;
}

.prop-feature-label {
  font-size: 12px;
  color: #6c757d;
}

/* Buttons */
.prop-buttons {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.prop-btn {
  flex: 1;
  padding: 15px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.prop-btn-primary {
  background-color: #f97316;
  color: white;
}

.prop-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* feature property end */

/* Footer */
.gharsetu-footer {
  background: linear-gradient(135deg, #0f253f, #18365b);
  color: white;
  padding: 70px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo-column img {
  max-width: 180px;
  margin-bottom: 20px;
  /* filter: brightness(0) invert(1); */
}

.footer-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #f97316;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  /* margin-bottom: 25px; */
  margin-bottom: 13px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: #f97316;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.footer-links a:hover {
  color: #f97316;
  transform: translateX(5px);
}

.footer-links a i {
  color: #f97316;
  font-size: 12px;
}

.footer-contact li {
  margin-bottom: 20px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: #f97316;
}

.footer-contact i {
  color: #f97316;
  font-size: 18px;
  margin-top: 2px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-copyright a {
  color: #f97316;
  text-decoration: none;
}

/* RESPONSIVE DESIGN */

@media (min-width: 993px) {
  .gharsetu-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .prop-desktop-nav {
    display: block;
  }

  .prop-grid > .prop-card {
    flex: 0 0 calc(33.333% - 17px);
  }

  .gharsetu-mobile-search-icon,
  .gharsetu-menu-toggle {
    display: none;
  }
}

@media (max-width: 1200px) {
  .prop-nav-prev {
    left: 7px;
  }
  .prop-nav-next {
    right: 7px;
  }
  .prop-desktop-nav {
    top: 61%;
  }
}

@media (max-width: 992px) {
  .gharsetu-header-modern.scrolled {
    padding: 25px 0;
  }
  .gharsetu-header-modern {
    -color: #ffffff;
    padding: 30px 0;
  }
  /* Show mobile icons */
  .gharsetu-menu-toggle {
    display: block;
    order: 1;
    margin-right: auto;
  }

  .gharsetu-mobile-search-icon {
    display: block;
    order: 2;
  }

  .gharsetu-logo-modern {
    order: 3;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .gharsetu-logo-modern img {
    max-width: 100px;
  }

  /* Hide desktop nav */
  .gharsetu-nav-modern,
  .gharsetu-header-buttons {
    display: none;
  }

  /* Hero adjustments */
  .gharsetu-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gharsetu-hero-text {
    max-width: 100%;
    text-align: center;
  }

  .gharsetu-hero-stats {
    justify-content: center;
  }

  .gharsetu-hero-search {
    max-width: 600px;
    margin: 0 auto;
  }

  /* Property cards adjustments */
  .prop-grid > .prop-card {
    flex: 0 0 calc(85% - 20px);
  }

  .prop-grid {
    margin-right: -15px;
    padding-right: 15px;
  }

  /* Footer adjustments */
  .footer-content {
    grid-template-columns: 1fr;
    /* gap: 30px; */
    gap: 21px;
  }

  .prop-desktop-nav {
    display: none;
  }
  /* .prop-grid {
    display: flex;
    gap: 25px;
    overflow-x: hidden;
    scroll-behavior: unset;
    padding: 10px 5px 20px;
  } */
  .prop-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 20px;
  }
}

/* 768px se niche - Mobile */
@media (max-width: 768px) {
  .gharsetu-hero-title {
    font-size: 36px;
  }

  .gharsetu-hero-description {
    font-size: 16px;
  }

  .gharsetu-hero-stats {
    gap: 30px;
  }

  .gharsetu-stat-number {
    font-size: 28px;
  }

  .prop-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .prop-main-title {
    font-size: 32px;
  }

  .prop-grid > .prop-card {
    flex: 0 0 calc(90% - 15px);
  }
}

/* Accordion Mobile View  + and -*/
.accordion-icon {
  display: none;
}
@media (max-width: 768px) {
  .footer-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-accordion .accordion-content {
    overflow: hidden;
    height: 0;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .accordion-icon {
    display: inline-block;
  }

  .accordion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .accordion-icon i {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;

    transition: all 0.25s ease;
  }

  /* Hover / Tap effect */
  .accordion-toggle:active .accordion-icon i,
  .footer-accordion.active .accordion-icon i {
    background: #f97316;
    border-color: #f97316;
    color: #fff;
  }
}

/* 576px se niche - Small Mobile */
@media (max-width: 576px) {
  .gharsetu-hero-title {
    font-size: 28px;
  }

  .gharsetu-hero-search {
    padding: 20px;
  }

  .gharsetu-search-grid {
    grid-template-columns: 1fr;
  }

  .gharsetu-search-full {
    grid-column: span 1;
  }

  .prop-main-title {
    font-size: 24px;
  }

  .prop-grid > .prop-card {
    flex: 0 0 calc(80% - 10px);
  }
  .prop-features .prop-feature:nth-child(2),
  .prop-features .prop-feature:nth-child(4) {
    display: none;
  }
  .prop-card {
    max-width: 280px;
  }
  .prop-price {
    font-size: 16px;
    flex-direction: column;
    display: flex;
  }
  .prop-badge {
    width: 36%;
  }
  .prop-features {
    padding: 10px 0;
  }
  .prop-grid > .prop-card {
    min-width: 280px;
  }
  .prop-container {
    padding: 40px 20px;
  }
  .prop-header {
    margin-bottom: 10px;
  }
  .prop-img-box {
    height: 160px;
    position: relative;
    overflow: hidden;
  }
  .footer-title {
    font-size: 18px;
  }

  .footer-content {
    margin-bottom: 20px;
  }
}

/* slider css */
/* ===== Slider Container ===== */
.main_home_page .swiper-button-next,
.main_home_page .swiper-button-prev,
.search-property .swiper-button-next,
.search-property .swiper-button-prev {
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.main_home_page .swiper-button-next::after,
.main_home_page .swiper-button-prev::after,
.search-property .swiper-button-next::after,
.search-property .swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
}

/* ===== Pagination Styling ===== */
.main_home_page .swiper-pagination-bullet,
.search-property .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
}

.main_home_page .swiper-pagination-bullet-active,
.search-property .swiper-pagination-bullet-active {
  background: #ff6600;
}

.main_home_page .propertySwiper,
.search-property .propertySwiper {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.main_home_page .swiper-pagination,
.search-property .swiper-pagination {
  position: absolute;
  bottom: 8px !important;
  /* Image ke andar rakhega */
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5;
}

.main_home_page .swiper-pagination-bullet,
.search-property .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
  width: 7px;
  height: 7px;
}

.main_home_page .swiper-pagination-bullet-active,
.search-property .swiper-pagination-bullet-active {
  background: #ff6600;
  transform: scale(1.2);
}

@media (max-width: 500px) {
  .main_home_page .prop-img-box .propertySwiper,
  .search-property .prop-img-box .propertySwiper {
    height: 160px;
  }

  .main_home_page .card-image-rental .propertySwiper,
  .search-property .card-image-rental .propertySwiper {
    height: 180px;
  }

  .swiper-pagination {
    display: none;
  }

  .gharsetu-hero-modern {
    padding: 160px 0 50px;
  }
}
