  /* Section Container */
        .content-section {
            background-color: #ffffff;
            margin: 16px 0;
            padding: 20px 0;
            border-radius: 14px;
            overflow: hidden;
        }
        
           
.section {
  padding: 20px 0;
}
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 16px 16px;
            gap: 12px;
        }
        
        
     

        .section-header-text {
            min-width: 0;
        }
        
    
  .section-see-all {
            flex-shrink: 0;
            font-size: 14px;
            font-weight: 600;
            color: #000;
            text-decoration: none;
            border-bottom: 2px solid #C41E3A;
            margin-right: 8px;
            white-space: nowrap;
            transition: color 0.2s, border-color 0.2s;
        }

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.section-subtitle {
font-size: 15px;
    font-weight: 400;
    color: #5a6470;
    line-height: 20px;
    margin-bottom: 6px;
}   
        
  .section-see-all:hover {
            color: #333;
            border-bottom-color: #8B1538;
        }

       
      /* Ready to Move Projects section - proper display + minimal image-content spacing */
        .section-ready-to-move .slider-container {
            padding: 0 56px 0 16px;
        }

 /* Property Card */
        .property-card {
            flex-shrink: 0;
            width: 240px;
            border-radius: 12px;
            overflow: hidden; /* allow content to grow; no clipping */
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
            background-color: white;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .property-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }

        .property-card:hover .property-type,
        .property-card:hover .property-name {
            color: #C41E3A;
        }

        .property-card:hover .property-price {
            color: #C41E3A;
        }

        .property-card:hover .property-card-image {
            transform: scale(1.05);
        }

        .property-image-wrapper {
            position: relative;
            width: 100%;
            height: 150px;
            overflow: hidden;
        }

        .property-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .property-image-count {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background-color: rgba(0,0,0,0.75);
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
            font-weight: 600;
        }

        .property-card-content {
            padding: 12px;
        }

        .property-card .card-actions,
        .property-card-large .card-actions {
            justify-content: flex-start;
            margin-top: 10px;
        }

        .property-type {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .property-price {
            font-size: 16px;
            font-weight: 700;
            color: #333;
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .property-location {
            font-size: 13px;
            color: #666;
            margin-bottom: 4px;
        }

        .property-status {
            font-size: 13px;
            color: #00A550;
            font-weight: 600;
        }

        .possession-badge {
            position: absolute;
            bottom: 18px;
            left: 10px;
            background-color: rgba(0,0,0,0.75);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
        }




.property-card {
  min-width: 280px;
  background: white;
  border-radius: 15px;
  overflow: hidden; /* allow content to grow; no clipping */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.property-card:hover .property-name,
.property-card:hover .property-type {
  color: #C41E3A;
}

.property-card:hover .property-price {
  color: #C41E3A;
}

.property-card-large {
  min-width: 320px;
}

.property-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  position: relative;
  transition: transform 0.3s ease;
}

.property-card:hover .property-image {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-red);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  z-index: 1;
}

.property-badge-rera {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1abc9c;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s;
}

.property-favorite:hover {
  background: white;
  transform: scale(1.1);
}

.property-favorite i {
  transition: color 0.2s;
}

.property-favorite.active i,
.property-favorite.active:hover i {
  color: #C41E3A;
}

.property-image-wrapper {
  position: relative;
  overflow: hidden;
}



.property-logo {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.property-content {
  padding: 40px 15px 15px;
  text-align: center;
}

.property-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 22px;
  white-space: normal;
  word-break: break-word;
}

.property-details {
  font-size: 14px;
    font-weight: 400;
    color: #5a6470;
    line-height: 20px;
    margin-bottom: 6px;
    white-space: normal;
    word-break: break-word;
}

.property-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.property-card-small {
  min-width: 220px;
}

.property-card-small .property-image {
  height: 140px;
}

.property-card-small .property-content {
  padding: 15px;
  text-align: left;
}

.property-card-small .property-name {
  font-size: 14px;
  margin-bottom: 8px;
}

.property-card-small .property-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.property-card-small .property-location {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.property-card-small .property-status {
  font-size: 12px;
  color: var(--text-light);
}

.property-gallery-count {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}


    /* Slider Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 38px;
            height: 38px;
            background-color: white;
            border: none;
            border-radius: 50%;
            box-shadow: 0 2px 12px rgba(0,0,0,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
        }

        .slider-arrow:hover {
            background-color: #f8f8f8;
            box-shadow: 0 4px 16px rgba(0,0,0,0.35);
        }

        .slider-arrow:active {
            transform: translateY(-50%) scale(0.95);
        }

        .slider-arrow i {
            font-size: 22px;
            color: #333;
        }

        .slider-arrow.left {
            left: 8px;
        }

        .slider-arrow.right {
            right: 8px;
        }

        .slider-arrow.hidden {
            display: none;
        }

    

        .btn-enquiry {
            padding: 8px 8px;
            background: #C41E3A;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-enquiry:hover {
            background: #8B1538;
        }

        .btn-read-more {
            padding: 8px 8px;
            border: 2px solid #C41E3A;
            color: #C41E3A;
            background: white;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-read-more:hover {
            background: #fef2f2;
        }

       
       /* Slider Wrapper */
        .slider-wrapper {
            position: relative;
            padding: 0;
        }

        .slider-container {
            display: flex;
            gap: 16px;
            padding: 0 16px;
            overflow-x: auto;
            overflow-y: visible; /* allow taller cards; don't clip */
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            -webkit-overflow-scrolling: touch;
        }

        .slider-container::-webkit-scrollbar {
            display: none;
        }

        
 .see-properties-btn {
            flex: 1;
            padding: 7px 12px;
            border: none;
            background-color: #C41E3A;
            color: white;
            border-radius: 6px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .see-properties-btn:hover {
            background-color: #8B1538;
        }


      

.possession-date {
  position: absolute;
  bottom: 2px;
  left: 10px;
  background: rgba(0,0,0,.5);
  color: #fff;
  padding: 2px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}

