.accordian-text{
	text-align: center;
	 margin-top: 25px;
}

/* Search page wrapper */
.search-results-wrapper {
    padding-top: 120px;
    padding-bottom: 60px;
}

/* Header */
.search-page-header {
    margin-bottom: 40px;
    text-align: center;
}

.search-page-header .page-title {
    font-size: 32px;
    font-weight: 600;
}

/* Grid layout */
.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Individual search card */
.search-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.search-card-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
	
}

.search-card-content {
    padding: 20px;
}

.search-card-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.search-card-designation {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.search-card-excerpt {
    font-size: 14px;
    color: #444;
}
.file-upload__input {
  display: none !important;
}

.upload-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.upload-label {
  font-weight: 400;
  white-space: nowrap;
  margin-right: 10px;
}

.upload-text {
  border-bottom: 1px solid red;
  cursor: pointer;
  white-space: nowrap;
  padding-bottom: 2px;
  line-height: 1.2;
}
.file-name{
	border-bottom : 1px solid #a71b28;
}

.section {
  overflow: visible !important; /* instead of overflow: hidden or auto */
}

.container,
.row,
.col-lg-7,
.col-lg-5 {
  overflow: visible !important;
  max-height: none !important;
}

body.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0,0,0,0.5);
  overflow-y: auto;;
}

.modal.open {
    display: block;
}
body.no-scroll {
    overflow: hidden;
}
.modal {
    display: none;
}
.modal.show {
    display: block;
}

.quick-enquiry-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.quick-enquiry-button {
  display: flex;
  align-items: center;
  background-color: #a71b28;
  color: #fff;
  padding: 10px 16px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
	 border-top-right-radius: 6px;
	border-top-left-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: background 0.3s ease;
}

.quick-enquiry-button .icon {
  margin-right: 8px;
  font-size: 18px;
}

.quick-enquiry-button:hover {
 color: #ffffff;
}
#accordion-images .accordion-image {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
  
}

#accordion-images .accordion-image.show {
  display: block;
}

.mobile-only {
  display: none;
}
@media (max-width: 767px) {
  .mobile-only {
    display: block;
  }
}
.listing__card--disabled {
  cursor: default;
  pointer-events: none; /* disables all clicks */
}




