
/***blog page end***/

@media (min-width: 768px){
	
}

@media only screen and (max-width: 1199px){
	
}

@media only screen and (max-width: 767px){
	
}

/* Care Expert Form Modal Styles */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
}

.modal {
  z-index: 1060;
}

.modal-content {
  border-radius: 10px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1061;
}

.modal-header {
  border-bottom: 1px solid #f1f1f1;
  padding: 1.25rem 1.5rem;
}

.modal-header .modal-title {
  font-weight: 600;
  color: #CE0135;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid #f1f1f1;
  padding: 1.25rem 1.5rem;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-control:focus,
.form-select:focus {
  border-color: #CE0135;
  box-shadow: 0 0 0 0.2rem rgba(206, 1, 53, 0.25);
}

/* Submit button styles matching the site's design */
.modal-footer .btn_cmn {
  background: #CE0135;
  color: #fff;
  border: none;
  border-radius: 40px;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: background 0.3s;
}

.modal-footer .btn_cmn:hover {
  background: #a8012c;
}

.modal-footer .btn_cmn:disabled {
  background: #e5e5e5;
  color: #888;
  cursor: not-allowed;
}

.modal-footer .btn-secondary {
  background: #ffffff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 40px;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: background 0.3s;
}

.modal-footer .btn-secondary:hover {
  background: #f5f5f5;
}


